You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
2.0 KiB
66 lines
2.0 KiB
using System;
|
|
using System.IO;
|
|
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Converters;
|
|
using Newtonsoft.Json.Serialization;
|
|
|
|
namespace NzbDrone.Common
|
|
{
|
|
public interface IJsonSerializer
|
|
{
|
|
T Deserialize<T>(string json) where T : class, new();
|
|
string Serialize(object obj);
|
|
void Serialize<TModel>(TModel model, TextWriter textWriter);
|
|
void Serialize<TModel>(TModel model, Stream outputStream);
|
|
object Deserialize(string json, Type type);
|
|
}
|
|
|
|
public class JsonSerializer : IJsonSerializer
|
|
{
|
|
private readonly Newtonsoft.Json.JsonSerializer _jsonNetSerializer;
|
|
|
|
public JsonSerializer()
|
|
{
|
|
_jsonNetSerializer = new Newtonsoft.Json.JsonSerializer()
|
|
{
|
|
DateTimeZoneHandling = DateTimeZoneHandling.Utc,
|
|
NullValueHandling = NullValueHandling.Include,
|
|
Formatting = Formatting.Indented,
|
|
DefaultValueHandling = DefaultValueHandling.Include,
|
|
ContractResolver = new CamelCasePropertyNamesContractResolver()
|
|
};
|
|
|
|
_jsonNetSerializer.Converters.Add(new StringEnumConverter { CamelCaseText = true });
|
|
}
|
|
|
|
public T Deserialize<T>(string json) where T : class, new()
|
|
{
|
|
return JsonConvert.DeserializeObject<T>(json);
|
|
}
|
|
|
|
public object Deserialize(string json, Type type)
|
|
{
|
|
return JsonConvert.DeserializeObject(json, type);
|
|
}
|
|
|
|
public string Serialize(object obj)
|
|
{
|
|
return JsonConvert.SerializeObject(obj);
|
|
}
|
|
|
|
|
|
public void Serialize<TModel>(TModel model, TextWriter outputStream)
|
|
{
|
|
var jsonTextWriter = new JsonTextWriter(outputStream);
|
|
_jsonNetSerializer.Serialize(jsonTextWriter, model);
|
|
jsonTextWriter.Flush();
|
|
}
|
|
|
|
public void Serialize<TModel>(TModel model, Stream outputStream)
|
|
{
|
|
Serialize(model, new StreamWriter(outputStream));
|
|
}
|
|
|
|
|
|
}
|
|
} |