|
5 | 5 | using System.Linq;
|
6 | 6 | using System.Text;
|
7 | 7 | using System.Threading.Tasks;
|
| 8 | +using System.Collections; |
8 | 9 |
|
9 | 10 | namespace Low_Code_App_Editor_1.Json
|
10 | 11 | {
|
11 |
| - public class TypeConverter : JsonConverter |
12 |
| - { |
13 |
| - /// <summary> |
14 |
| - /// Determines whether this instance can convert the specified object type. |
15 |
| - /// </summary> |
16 |
| - /// <param name="objectType">The type of the object.</param> |
17 |
| - /// <returns><see langword="true"/> if this instance can convert the specified object type; otherwise, <see langword="false"/>.</returns> |
18 |
| - public override bool CanConvert(Type objectType) |
19 |
| - { |
20 |
| - return true; |
21 |
| - } |
| 12 | + public class TypeConverter : JsonConverter |
| 13 | + { |
| 14 | + /// <summary> |
| 15 | + /// Determines whether this instance can convert the specified object type. |
| 16 | + /// </summary> |
| 17 | + /// <param name="objectType">The type of the object.</param> |
| 18 | + /// <returns><see langword="true"/> if this instance can convert the specified object type; otherwise, <see langword="false"/>.</returns> |
| 19 | + public override bool CanConvert(Type objectType) |
| 20 | + { |
| 21 | + return true; |
| 22 | + } |
22 | 23 |
|
23 |
| - /// <summary> |
24 |
| - /// Reads the JSON representation of the object. |
25 |
| - /// </summary> |
26 |
| - /// <param name="reader">The JsonReader to read from.</param> |
27 |
| - /// <param name="objectType">The type of the object.</param> |
28 |
| - /// <param name="existingValue">The existing value of object being read.</param> |
29 |
| - /// <param name="serializer">The JsonSerializer used to deserialize the object.</param> |
30 |
| - /// <returns>The deserialized object.</returns> |
31 |
| - public override object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer) |
32 |
| - { |
33 |
| - JToken json; |
34 |
| - var foundType = objectType; |
35 |
| - try |
36 |
| - { |
37 |
| - if (reader.TokenType == JsonToken.StartArray) |
38 |
| - { |
39 |
| - json = JArray.Load(reader); |
40 |
| - if (objectType == typeof(object)) |
41 |
| - { |
42 |
| - return null; |
43 |
| - } |
| 24 | + /// <summary> |
| 25 | + /// Reads the JSON representation of the object. |
| 26 | + /// </summary> |
| 27 | + /// <param name="reader">The JsonReader to read from.</param> |
| 28 | + /// <param name="objectType">The type of the object.</param> |
| 29 | + /// <param name="existingValue">The existing value of object being read.</param> |
| 30 | + /// <param name="serializer">The JsonSerializer used to deserialize the object.</param> |
| 31 | + /// <returns>The deserialized object.</returns> |
| 32 | + public override object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer) |
| 33 | + { |
| 34 | + JToken json; |
| 35 | + var foundType = objectType; |
| 36 | + try |
| 37 | + { |
| 38 | + if (reader.TokenType == JsonToken.StartArray) |
| 39 | + { |
| 40 | + json = JArray.Load(reader); |
| 41 | + if (objectType == typeof(object)) |
| 42 | + { |
| 43 | + return null; |
| 44 | + } |
44 | 45 |
|
45 |
| - object[] resultArray = (object[])Array.CreateInstance(foundType.GetElementType(), ((JArray)json).Count); |
46 |
| - for (int i = 0; i < ((JArray)json).Count; i++) |
47 |
| - { |
48 |
| - var itemJson = ((JArray)json)[i]; |
49 |
| - var typeName = Convert.ToString(itemJson["__type"]); |
50 |
| - foundType = objectType.Assembly.GetType(typeName); |
51 |
| - if (foundType == null) foundType = objectType; |
52 |
| - resultArray[i] = Activator.CreateInstance(foundType); |
53 |
| - serializer.Populate(itemJson.CreateReader(), resultArray[i]); |
54 |
| - } |
| 46 | + object[] resultArray = (object[])Array.CreateInstance(foundType.GetElementType(), ((JArray)json).Count); |
| 47 | + for (int i = 0; i < ((JArray)json).Count; i++) |
| 48 | + { |
| 49 | + var itemJson = ((JArray)json)[i]; |
| 50 | + var typeName = Convert.ToString(itemJson["__type"]); |
| 51 | + foundType = objectType.Assembly.GetType(typeName); |
| 52 | + if (foundType == null) foundType = objectType; |
| 53 | + resultArray[i] = Activator.CreateInstance(foundType); |
| 54 | + serializer.Populate(itemJson.CreateReader(), resultArray[i]); |
| 55 | + } |
55 | 56 |
|
56 |
| - return resultArray; |
57 |
| - } |
58 |
| - else if (reader.TokenType == JsonToken.StartObject) |
59 |
| - { |
60 |
| - json = JObject.Load(reader); |
61 |
| - var typeName = Convert.ToString(json["__type"]); |
| 57 | + return resultArray; |
| 58 | + } |
| 59 | + else if (reader.TokenType == JsonToken.StartObject) |
| 60 | + { |
| 61 | + json = JObject.Load(reader); |
| 62 | + var typeName = Convert.ToString(json["__type"]); |
62 | 63 |
|
63 |
| - if (typeName == "Skyline.DataMiner.Web.Common.v1.DMAPrimitiveValue") |
64 |
| - { |
65 |
| - var result = JsonConvert.DeserializeObject<Skyline.DataMiner.Web.Common.v1.DMAPrimitiveValue>(json.ToString()); |
66 |
| - return result; |
67 |
| - } |
68 |
| - else |
69 |
| - { |
70 |
| - foundType = objectType.Assembly.GetType(typeName); |
71 |
| - if (foundType == null) foundType = objectType; |
72 |
| - object result = Activator.CreateInstance(foundType); |
73 |
| - serializer.Populate(json.CreateReader(), result); |
74 |
| - return result; |
75 |
| - } |
76 |
| - } |
77 |
| - else |
78 |
| - { |
79 |
| - json = JToken.Load(reader); |
80 |
| - var jsonValue = json.ToString(); |
81 |
| - if (foundType == typeof(bool)) |
82 |
| - jsonValue = jsonValue.ToLower(); |
83 |
| - if (foundType == typeof(string)) |
84 |
| - return jsonValue; |
85 |
| - if (foundType == typeof(double)) |
86 |
| - return Convert.ToDouble(jsonValue); |
87 |
| - var value = JsonConvert.DeserializeObject(jsonValue, foundType); |
88 |
| - return value; |
89 |
| - } |
90 |
| - } |
91 |
| - catch (Exception) |
92 |
| - { |
93 |
| - return null; |
94 |
| - } |
95 |
| - } |
| 64 | + if (typeName == "Skyline.DataMiner.Web.Common.v1.DMAPrimitiveValue") |
| 65 | + { |
| 66 | + var result = JsonConvert.DeserializeObject<Skyline.DataMiner.Web.Common.v1.DMAPrimitiveValue>(json.ToString()); |
| 67 | + return result; |
| 68 | + } |
| 69 | + else |
| 70 | + { |
| 71 | + foundType = objectType.Assembly.GetType(typeName); |
| 72 | + if (foundType == null) foundType = objectType; |
| 73 | + object result = Activator.CreateInstance(foundType); |
| 74 | + serializer.Populate(json.CreateReader(), result); |
| 75 | + return result; |
| 76 | + } |
| 77 | + } |
| 78 | + else |
| 79 | + { |
| 80 | + json = JToken.Load(reader); |
| 81 | + var jsonValue = json.ToString(); |
| 82 | + if (foundType == typeof(bool)) |
| 83 | + jsonValue = jsonValue.ToLower(); |
| 84 | + if (foundType == typeof(string)) |
| 85 | + return jsonValue; |
| 86 | + if (foundType == typeof(double)) |
| 87 | + return Convert.ToDouble(jsonValue); |
| 88 | + var value = JsonConvert.DeserializeObject(jsonValue, foundType); |
| 89 | + return value; |
| 90 | + } |
| 91 | + } |
| 92 | + catch (Exception) |
| 93 | + { |
| 94 | + return null; |
| 95 | + } |
| 96 | + } |
96 | 97 |
|
97 |
| - /// <summary> |
98 |
| - /// Writes the JSON representation of the object. |
99 |
| - /// </summary> |
100 |
| - /// <param name="writer">The JsonWriter to write to.</param> |
101 |
| - /// <param name="value">The value to write.</param> |
102 |
| - /// <param name="serializer">The JsonSerializer used to serialize the object.</param> |
103 |
| - public override void WriteJson(JsonWriter writer, object value, JsonSerializer serializer) |
104 |
| - { |
105 |
| - throw new NotSupportedException(); |
106 |
| - } |
| 98 | + /// <summary> |
| 99 | + /// Writes the JSON representation of the object. |
| 100 | + /// </summary> |
| 101 | + /// <param name="writer">The JsonWriter to write to.</param> |
| 102 | + /// <param name="value">The value to write.</param> |
| 103 | + /// <param name="serializer">The JsonSerializer used to serialize the object.</param> |
| 104 | + public override void WriteJson(JsonWriter writer, object value, JsonSerializer serializer) |
| 105 | + { |
| 106 | + throw new NotSupportedException(); |
| 107 | + } |
107 | 108 |
|
108 |
| - public override bool CanRead => true; |
| 109 | + public override bool CanRead => true; |
109 | 110 |
|
110 |
| - public override bool CanWrite => false; |
111 |
| - } |
| 111 | + public override bool CanWrite => false; |
| 112 | + } |
112 | 113 | }
|
0 commit comments