JsonArrayValidator.cs
8.76 KB
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
using System;
using System.Collections;
using System.Collections.Generic;
using System.Reflection;
namespace UniJSON
{
/// <summary>
/// http://json-schema.org/latest/json-schema-validation.html#rfc.section.6.4
/// </summary>
public class JsonArrayValidator : IJsonSchemaValidator
{
/// <summary>
/// http://json-schema.org/latest/json-schema-validation.html#rfc.section.6.4.1
/// </summary>
public JsonSchema Items
{
get; set;
}
// additionalItems
/// <summary>
/// http://json-schema.org/latest/json-schema-validation.html#rfc.section.6.4.3
/// </summary>
public int? MaxItems
{
get; set;
}
/// <summary>
/// http://json-schema.org/latest/json-schema-validation.html#rfc.section.6.4.4
/// </summary>
public int? MinItems
{
get; set;
}
// uniqueItems
// contains
public override int GetHashCode()
{
return 5;
}
public override bool Equals(object obj)
{
var rhs = obj as JsonArrayValidator;
if (rhs == null) return false;
if (Items != rhs.Items) return false;
if (MaxItems != rhs.MaxItems) return false;
if (MinItems != rhs.MinItems) return false;
return true;
}
public void Merge(IJsonSchemaValidator rhs)
{
throw new NotImplementedException();
}
public bool FromJsonSchema(IFileSystemAccessor fs, string key, ListTreeNode<JsonValue> value)
{
switch (key)
{
case "items":
if (value.IsArray())
{
throw new NotImplementedException();
}
else
{
var sub = new JsonSchema();
sub.Parse(fs, value, "items");
Items = sub;
}
return true;
case "additionalItems":
return true;
case "maxItems":
MaxItems = value.GetInt32();
return true;
case "minItems":
MinItems = value.GetInt32();
return true;
case "uniqueItems":
return true;
case "contains":
return true;
}
return false;
}
static class GenericCounter<T>
{
delegate int Counter(T value);
static Counter s_counter;
public static int Count(T value)
{
if (s_counter == null)
{
var t = typeof(T);
if (t.IsArray)
{
var pi = t.GetProperty("Length");
var compiled = (Func<T, int>)((T array) =>
{
return (int)pi.GetValue(array, null);
});
s_counter = new Counter(compiled);
}
else if (t.GetIsGenericList())
{
var pi = t.GetProperty("Count");
var compiled = (Func<T, int>)((T list) =>
{
return (int)pi.GetValue(list, null);
});
s_counter = new Counter(compiled);
}
else
{
throw new NotImplementedException();
}
}
return s_counter(value);
}
}
public JsonSchemaValidationException Validate<T>(JsonSchemaValidationContext context, T o)
{
if (o == null)
{
return new JsonSchemaValidationException(context, "null");
}
var count = GenericCounter<T>.Count(o);
// Empty array is valid
/*if (count == 0)
{
return new JsonSchemaValidationException(context, "empty");
}*/
if (MaxItems.HasValue && count > MaxItems.Value)
{
return new JsonSchemaValidationException(context, "maxOtems");
}
if (MinItems.HasValue && count < MinItems.Value)
{
return new JsonSchemaValidationException(context, "minItems");
}
if (Items == null)
{
return null; // There are no json schema for items, success
}
var v = Items.Validator;
var t = o.GetType();
IEnumerable iter = null;
if (t.IsArray)
{
iter = o as Array;
}
else if (t.GetIsGenericList())
{
iter = o as IList;
}
else
{
return new JsonSchemaValidationException(context, "non iterable object");
}
foreach(var e in iter)
{
var ex = v.Validate(context, e);
if (ex != null)
{
return ex;
}
};
return null;
}
static void ArraySerializer<U>(IJsonSchemaValidator v, IFormatter f, JsonSchemaValidationContext c, U[] array)
{
f.BeginList(array.Length);
{
//int i = 0;
foreach (var x in array)
{
//using (c.Push(i++))
{
v.Serialize(f, c, x);
}
}
}
f.EndList();
}
static void ListSerializer<U>(IJsonSchemaValidator v, IFormatter f, JsonSchemaValidationContext c, List<U> list)
{
f.BeginList(list.Count);
{
//int i = 0;
foreach (var x in list)
{
//using (c.Push(i++))
{
v.Serialize(f, c, x);
}
}
}
f.EndList();
}
static class GenericSerializer<T>
{
delegate void Serializer(IJsonSchemaValidator v, IFormatter f, JsonSchemaValidationContext c, T o);
static Serializer s_serializer;
public static void Serialize(IJsonSchemaValidator v, IFormatter f, JsonSchemaValidationContext c, T o)
{
if (s_serializer == null)
{
var t = typeof(T);
MethodInfo g = null;
if (t.IsArray)
{
var mi = typeof(JsonArrayValidator).GetMethod("ArraySerializer",
BindingFlags.Static | BindingFlags.NonPublic);
g = mi.MakeGenericMethod(t.GetElementType());
}
else if (t.GetIsGenericList())
{
// ToDo: IList
var mi = typeof(JsonArrayValidator).GetMethod("ListSerializer",
BindingFlags.Static | BindingFlags.NonPublic);
g = mi.MakeGenericMethod(t.GetGenericArguments());
}
else
{
throw new NotImplementedException();
}
var compiled = (Action<
IJsonSchemaValidator,
IFormatter,
JsonSchemaValidationContext,
T>)
GenericInvokeCallFactory.StaticAction<
IJsonSchemaValidator,
IFormatter,
JsonSchemaValidationContext,
T>(g);
s_serializer = new Serializer(compiled);
}
s_serializer(v, f, c, o);
}
}
public void Serialize<T>(IFormatter f, JsonSchemaValidationContext c, T o)
{
GenericSerializer<T>.Serialize(Items.Validator, f, c, o);
}
public void ToJsonScheama(IFormatter f)
{
f.Key("type"); f.Value("array");
if (Items != null)
{
f.Key("items");
Items.ToJson(f);
}
}
public void Deserialize<T, U>(ListTreeNode<T> src, ref U dst)
where T : IListTreeItem, IValue<T>
{
src.Deserialize(ref dst);
}
}
}