using System; using System.IO; namespace CPF.Windows.Json { /// /// KoobooJson Serializer /// public class JsonSerializer { private static readonly JsonSerializerOption defaultSerializerOption = new JsonSerializerOption(); private static readonly JsonDeserializeOption defaultDeserializeOption = new JsonDeserializeOption(); /// /// Serialize objects into JSON strings /// /// Value type /// Value /// Serialize option /// JSON strings public static string ToJson(T value, JsonSerializerOption option = null) { var handler = new JsonSerializerHandler(new System.Text.StringBuilder()) { Option = option?? defaultSerializerOption }; Serializer.FormattingProvider.Get(value, handler); return handler.ToString(); } /// /// Serialize Object from the StreamWriter /// /// Value type /// Value /// Stream /// Serialize option public static void ToJson(T value, StreamWriter streamWriter, JsonSerializerOption option = null) { streamWriter.Flush();//posting set 0 bool isAutoFlush = false; if (streamWriter.AutoFlush) { isAutoFlush = true; streamWriter.AutoFlush = false; } var handler = new JsonSerializerHandler(streamWriter) { Option = option ?? defaultSerializerOption }; Serializer.FormattingProvider.Get(value, handler); if(isAutoFlush) streamWriter.AutoFlush = true; } /// /// Converting Json strings to objects /// /// Types converted /// Json string /// Json Deserialize Option /// Object public static T ToObject(string json, JsonDeserializeOption option=null) { var handler = new JsonDeserializeHandler { Option = option?? defaultDeserializeOption }; return Deserialize.ResolveProvider.Convert(json, handler); } /// /// Converting Json strings to objects /// /// Json string /// Types converted /// Json Deserialize Option /// Object public static object ToObject(string json, Type type, JsonDeserializeOption option=null) { var handler = new JsonDeserializeHandler { Option = option ?? defaultDeserializeOption }; return Deserialize.DeserializeObjectJump.GetThreadSafetyJumpFunc(json, type, handler); } /// /// Deserializes JSON from the StreamReader /// /// Types converted /// Stream /// Json Deserialize Option /// Object [Obsolete("Current convection processing does not achieve the meaning of the stream itself. Errors occur when the length of the deserialized character exceeds the length of StreamReader's charBuffer. This method will be revised in the next version.", false)] public static T ToObject(StreamReader streamReader, JsonDeserializeOption option = null) { var handler = new JsonDeserializeHandler { Option = option ?? defaultDeserializeOption }; return Deserialize.ResolveProvider.Convert(streamReader, handler); } /// /// Deserializes JSON from the StreamReader /// /// Stream /// Types converted /// Json Deserialize Option /// Object [Obsolete("Current convection processing does not achieve the meaning of the stream itself. Errors occur when the length of the deserialized character exceeds the length of StreamReader's charBuffer. This method will be revised in the next version.", false)] public static object ToObject(StreamReader streamReader, Type type, JsonDeserializeOption option = null) { var handler = new JsonDeserializeHandler { Option = option ?? defaultDeserializeOption }; return Deserialize.DeserializeObjectJump.GetThreadSafetyJumpFunc(streamReader, type, handler); } } }