-
Notifications
You must be signed in to change notification settings - Fork 27
/
TinyJSONExt.cs
399 lines (376 loc) · 10.4 KB
/
TinyJSONExt.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
using System;
using System.Reflection;
using System.Collections.Generic;
namespace TinyJSON
{
public sealed partial class JSON
{
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)]
public class EntityAttribute : Attribute
{
public string Name;
public bool Required;
public EntityAttribute()
{
Name = null;
Required = false;
}
}
}
public static partial class JSONExt
{
public static bool Help<T>(this JSON.Object o, ref T value) where T : struct, JSON.Readable
{
return ReadHelper<T>.Read(o, ref value);
}
public static bool Help<T>(this JSON.Object o, T value) where T : class, JSON.Readable
{
return ReadHelper<T>.Read(o, ref value);
}
#region 自动映射Object和指定数据类型
private static bool Get(JSON.Object o, string key, ref bool b)
{
return o.Get(key, ref b);
}
private static bool Get(JSON.Object o, string key, ref int i)
{
return o.Get(key, ref i);
}
private static bool Get(JSON.Object o, string key, ref double d)
{
return o.Get(key, ref d);
}
private static bool Get(JSON.Object o, string key, ref string s)
{
return o.Get(key, ref s);
}
private static bool Get(JSON.Object o, string key, ref JSON.Object oo)
{
return o.Get(key, ref oo);
}
private static bool Get(JSON.Object o, string key, ref JSON.Array a)
{
return o.Get(key, ref a);
}
private static bool GetEnum(JSON.Object o, Type type, string key, ref object value)
{
string result = default(string);
if (!o.Get(key, ref result))
return false;
try
{
value = Enum.Parse(type, result);
}
catch (Exception)
{
return false;
}
return true;
}
private static bool GetEnumNullable(JSON.Object o, Type type, string key, ref object value)
{
string result = default(string);
if (!o.Get(key, ref result))
return false;
if (string.IsNullOrEmpty(result))
{
value = Activator.CreateInstance(typeof(Nullable<>).MakeGenericType(type));
return true;
}
object tmp;
try
{
tmp = Enum.Parse(type, result);
}
catch (Exception)
{
return false;
}
value = Activator.CreateInstance(typeof(Nullable<>).MakeGenericType(type), tmp);
return true;
}
private static bool GetEnumArray(JSON.Object o, Type type, string key, ref object value)
{
JSON.Array result = default(JSON.Array);
if (!o.Get(key, ref result))
return false;
int count = result.Count;
Array array = Array.CreateInstance(type, count);
for (int i = 0; i < count; ++i)
{
string tmp1 = default(string);
if (!o.Get(key, ref tmp1))
return false;
object tmp2;
try
{
tmp2 = Enum.Parse(type, tmp1);
}
catch (Exception)
{
return false;
}
array.SetValue(tmp2, i);
}
value = array;
return true;
}
private static bool GetType(JSON.Object o, Type type, string key, ref object value)
{
JSON.Object result = default(JSON.Object);
if (!o.Get(key, ref result))
return false;
JSON.Readable tmp;
try
{
tmp = (JSON.Readable)Activator.CreateInstance(type);
}
catch (Exception)
{
return false;
}
if (!tmp.Read(result))
return false;
value = tmp;
return true;
}
private static bool GetTypeNullable(JSON.Object o, Type type, string key, ref object value)
{
JSON.Object result = default(JSON.Object);
if (!o.Get(key, ref result))
return false;
if (result == null)
{
value = Activator.CreateInstance(typeof(Nullable<>).MakeGenericType(type));
return true;
}
JSON.Readable tmp;
try
{
tmp = (JSON.Readable)Activator.CreateInstance(type);
}
catch (Exception)
{
return false;
}
if (!tmp.Read(result))
return false;
value = Activator.CreateInstance(typeof(Nullable<>).MakeGenericType(type), tmp);
return true;
}
private static bool GetTypeArray(JSON.Object o, Type type, string key, ref object value)
{
JSON.Array result = default(JSON.Array);
if (!o.Get(key, ref result))
return false;
int count = result.Count;
Array array = Array.CreateInstance(type, count);
for (int i = 0; i < count; ++i)
{
JSON.Object tmp1 = default(JSON.Object);
if (!o.Get(key, ref tmp1))
return false;
JSON.Readable tmp2;
try
{
tmp2 = (JSON.Readable)Activator.CreateInstance(type);
}
catch (Exception)
{
return false;
}
if (!tmp2.Read(tmp1))
return false;
array.SetValue(tmp2, i);
}
value = array;
return true;
}
private enum Modify
{
None,
Array,
Option,
}
private static MethodInfo FindReadValue(Type type, out bool needtype)
{
MethodInfo method = typeof(JSONExt).GetMethod("Get",
BindingFlags.Static | BindingFlags.Public | BindingFlags.NonPublic, null,
new[] {typeof(JSON.Object), typeof(string), type.MakeByRefType()}, null);
if (method != null)
{
needtype = false;
return method;
}
needtype = true;
Modify modify = Modify.None;
if (type.IsArray)
{
if (type.GetArrayRank() > 1)
return null;
modify = Modify.Array;
type = type.GetElementType();
}
else if (type.IsGenericType && type.GetGenericTypeDefinition() == typeof(Nullable<>))
{
modify = Modify.Option;
type = type.GetGenericArguments()[0];
}
if (type.IsEnum)
{
return typeof(JSONExt).GetMethod(
modify == Modify.Array ? "GetEnumArray" : (modify == Modify.Option ? "GetEnumNullable" : "GetEnum"),
BindingFlags.Static | BindingFlags.NonPublic, null,
new[] {typeof(JSON.Object), typeof(Type), typeof(string), typeof(object).MakeByRefType()}, null);
}
if (typeof(JSON.Readable).IsAssignableFrom(type) && type.GetConstructor(Type.EmptyTypes) != null)
{
return typeof(JSONExt).GetMethod(
modify == Modify.Array ? "GetTypeArray" : (modify == Modify.Option ? "GetTypeNullable" : "GetType"),
BindingFlags.Static | BindingFlags.NonPublic, null,
new[] {typeof(JSON.Object), typeof(Type), typeof(string), typeof(object).MakeByRefType()}, null);
}
return null;
}
private static string GetName(MemberInfo member)
{
var attrs = member.GetCustomAttributes(typeof(JSON.EntityAttribute), true);
if (attrs.Length != 0)
{
string s = ((JSON.EntityAttribute)attrs[0]).Name;
if (!string.IsNullOrEmpty(s))
return s;
}
return member.Name;
}
private static bool IsRequired(MemberInfo member)
{
var attrs = member.GetCustomAttributes(typeof(JSON.EntityAttribute), true);
return attrs.Length != 0 && ((JSON.EntityAttribute)attrs[0]).Required;
}
private static class ReadHelper<T>
{
private delegate bool Reader(JSON.Object o, ref T value);
private static readonly List<Reader> readers;
static ReadHelper()
{
readers = new List<Reader>();
foreach (MemberInfo member in typeof(T).GetMembers(BindingFlags.Public | BindingFlags.Instance))
{
Type type;
if (member.MemberType == MemberTypes.Field)
{
type = ((FieldInfo)member).FieldType;
}
else
{
if (member.MemberType != MemberTypes.Property)
continue;
PropertyInfo property = (PropertyInfo)member;
if (property.GetSetMethod() == null || property.GetGetMethod() == null)
continue;
type = property.PropertyType;
}
bool needtype;
MethodInfo method = FindReadValue(type, out needtype);
if (method == null)
{
string name = member.Name;
readers.Add((JSON.Object o, ref T value) => { throw new MissingFieldException(typeof(T).FullName, name); });
}
else
{
string name = GetName(member);
bool require = IsRequired(member);
if (needtype)
{
if (member.MemberType == MemberTypes.Field)
{
FieldInfo field = (FieldInfo)member;
readers.Add((JSON.Object o, ref T value) =>
{
object[] args = new object[4];
args[0] = o;
args[1] = type;
args[2] = name;
args[3] = field.GetValue(value);
bool result = (bool)method.Invoke(null, args);
if (!result)
return !require;
field.SetValue(value, args[3]);
return true;
});
}
else
{
PropertyInfo property = (PropertyInfo)member;
MethodInfo setter = property.GetSetMethod();
MethodInfo getter = property.GetGetMethod();
readers.Add((JSON.Object o, ref T value) =>
{
object[] args = new object[4];
args[0] = o;
args[1] = type;
args[2] = name;
args[3] = getter.Invoke(value, null);
bool result = (bool)method.Invoke(null, args);
if (!result)
return !require;
setter.Invoke(value, new[] {args[3]});
return true;
});
}
}
else
{
if (member.MemberType == MemberTypes.Field)
{
FieldInfo field = (FieldInfo)member;
readers.Add((JSON.Object o, ref T value) =>
{
object[] args = new object[3];
args[0] = o;
args[1] = name;
args[2] = field.GetValue(value);
bool result = (bool)method.Invoke(null, args);
if (!result)
return !require;
field.SetValue(value, args[2]);
return true;
});
}
else
{
PropertyInfo property = (PropertyInfo)member;
MethodInfo setter = property.GetSetMethod();
MethodInfo getter = property.GetGetMethod();
readers.Add((JSON.Object o, ref T value) =>
{
object[] args = new object[4];
args[0] = o;
args[1] = name;
args[2] = getter.Invoke(value, null);
bool result = (bool)method.Invoke(null, args);
if (!result)
return !require;
setter.Invoke(value, new[] {args[2]});
return true;
});
}
}
}
}
}
public static bool Read(JSON.Object o, ref T value)
{
for (int i = 0, j = readers.Count; i < j; ++i)
{
if (!readers[i](o, ref value))
return false;
}
return true;
}
}
#endregion
}
}