using MediaBrowser.Model.Serialization; using System; using System.IO; using MediaBrowser.Common.IO; namespace MediaBrowser.Common.Implementations.Serialization { /// /// Provides a wrapper around third party json serialization. /// public class JsonSerializer : IJsonSerializer { private readonly IFileSystem _fileSystem; public JsonSerializer(IFileSystem fileSystem) { _fileSystem = fileSystem; Configure(); } /// /// Serializes to stream. /// /// The obj. /// The stream. /// obj public void SerializeToStream(object obj, Stream stream) { if (obj == null) { throw new ArgumentNullException("obj"); } if (stream == null) { throw new ArgumentNullException("stream"); } ServiceStack.Text.JsonSerializer.SerializeToStream(obj, obj.GetType(), stream); } /// /// Serializes to file. /// /// The obj. /// The file. /// obj public void SerializeToFile(object obj, string file) { if (obj == null) { throw new ArgumentNullException("obj"); } if (string.IsNullOrEmpty(file)) { throw new ArgumentNullException("file"); } using (Stream stream = _fileSystem.GetFileStream(file, FileMode.Create, FileAccess.Write, FileShare.Read)) { SerializeToStream(obj, stream); } } private Stream OpenFile(string path) { return new FileStream(path, FileMode.Open, FileAccess.Read, FileShare.Read, 131072); } /// /// Deserializes from file. /// /// The type. /// The file. /// System.Object. /// type public object DeserializeFromFile(Type type, string file) { if (type == null) { throw new ArgumentNullException("type"); } if (string.IsNullOrEmpty(file)) { throw new ArgumentNullException("file"); } using (Stream stream = OpenFile(file)) { return DeserializeFromStream(stream, type); } } /// /// Deserializes from file. /// /// /// The file. /// ``0. /// file public T DeserializeFromFile(string file) where T : class { if (string.IsNullOrEmpty(file)) { throw new ArgumentNullException("file"); } using (Stream stream = OpenFile(file)) { return DeserializeFromStream(stream); } } /// /// Deserializes from stream. /// /// /// The stream. /// ``0. /// stream public T DeserializeFromStream(Stream stream) { if (stream == null) { throw new ArgumentNullException("stream"); } return ServiceStack.Text.JsonSerializer.DeserializeFromStream(stream); } /// /// Deserializes from string. /// /// /// The text. /// ``0. /// text public T DeserializeFromString(string text) { if (string.IsNullOrEmpty(text)) { throw new ArgumentNullException("text"); } return ServiceStack.Text.JsonSerializer.DeserializeFromString(text); } /// /// Deserializes from stream. /// /// The stream. /// The type. /// System.Object. /// stream public object DeserializeFromStream(Stream stream, Type type) { if (stream == null) { throw new ArgumentNullException("stream"); } if (type == null) { throw new ArgumentNullException("type"); } return ServiceStack.Text.JsonSerializer.DeserializeFromStream(type, stream); } /// /// Configures this instance. /// private void Configure() { ServiceStack.Text.JsConfig.DateHandler = ServiceStack.Text.DateHandler.ISO8601; ServiceStack.Text.JsConfig.ExcludeTypeInfo = true; ServiceStack.Text.JsConfig.IncludeNullValues = false; ServiceStack.Text.JsConfig.AlwaysUseUtc = true; ServiceStack.Text.JsConfig.AssumeUtc = true; } /// /// Deserializes from string. /// /// The json. /// The type. /// System.Object. /// json public object DeserializeFromString(string json, Type type) { if (string.IsNullOrEmpty(json)) { throw new ArgumentNullException("json"); } if (type == null) { throw new ArgumentNullException("type"); } return ServiceStack.Text.JsonSerializer.DeserializeFromString(json, type); } /// /// Serializes to string. /// /// The obj. /// System.String. /// obj public string SerializeToString(object obj) { if (obj == null) { throw new ArgumentNullException("obj"); } return ServiceStack.Text.JsonSerializer.SerializeToString(obj, obj.GetType()); } } }