-
Notifications
You must be signed in to change notification settings - Fork 523
/
Copy pathReflectionObjectDecoder.java
455 lines (427 loc) · 17 KB
/
ReflectionObjectDecoder.java
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
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
package com.jsoniter;
import com.jsoniter.any.Any;
import com.jsoniter.spi.*;
import java.io.IOException;
import java.lang.reflect.Method;
import java.util.*;
class ReflectionObjectDecoder {
protected static Object NOT_SET = new Object() {
@Override
public String toString() {
return "NOT_SET";
}
};
protected Map<Slice, Binding> allBindings = new HashMap<Slice, Binding>();
protected String tempCacheKey;
protected String ctorArgsCacheKey;
protected int tempCount;
protected long expectedTracker;
protected int requiredIdx;
protected int tempIdx;
protected ClassDescriptor desc;
public ReflectionObjectDecoder(ClassInfo classInfo) {
try {
init(classInfo);
} catch (JsonException e) {
throw e;
} catch (Exception e) {
throw new JsonException(e);
}
}
protected final void init(ClassInfo classInfo) throws Exception {
Class clazz = classInfo.clazz;
ClassDescriptor desc = ClassDescriptor.getDecodingClassDescriptor(classInfo, true);
for (Binding param : desc.ctor.parameters) {
addBinding(classInfo, param);
}
this.desc = desc;
if (desc.ctor.objectFactory == null && desc.ctor.ctor == null && desc.ctor.staticFactory == null) {
throw new JsonException("no constructor for: " + desc.clazz);
}
for (Binding field : desc.fields) {
addBinding(classInfo, field);
}
for (Binding setter : desc.setters) {
addBinding(classInfo, setter);
}
for (WrapperDescriptor setter : desc.bindingTypeWrappers) {
for (Binding param : setter.parameters) {
addBinding(classInfo, param);
}
}
if (requiredIdx > 63) {
throw new JsonException("too many required properties to track");
}
expectedTracker = Long.MAX_VALUE >> (63 - requiredIdx);
if (!desc.ctor.parameters.isEmpty() || !desc.bindingTypeWrappers.isEmpty()) {
tempCount = tempIdx;
tempCacheKey = "temp@" + clazz.getCanonicalName();
ctorArgsCacheKey = "ctor@" + clazz.getCanonicalName();
}
}
private void addBinding(ClassInfo classInfo, final Binding binding) {
if (binding.fromNames.length == 0) {
return;
}
if (binding.asMissingWhenNotPresent) {
binding.mask = 1L << requiredIdx;
requiredIdx++;
}
if (binding.asExtraWhenPresent) {
binding.decoder = new Decoder() {
@Override
public Object decode(JsonIterator iter) throws IOException {
throw new JsonException("found should not present property: " + binding.name);
}
};
}
if (binding.decoder == null) {
// field decoder might be special customized
binding.decoder = JsoniterSpi.getDecoder(binding.decoderCacheKey());
}
if (binding.decoder == null) {
binding.decoder = Codegen.getDecoder(binding.valueTypeLiteral.getDecoderCacheKey(), binding.valueType);
}
binding.idx = tempIdx;
for (String fromName : binding.fromNames) {
Slice slice = Slice.make(fromName);
if (allBindings.containsKey(slice)) {
throw new JsonException("name conflict found in " + classInfo.clazz + ": " + fromName);
}
allBindings.put(slice, binding);
}
tempIdx++;
}
public Decoder create() {
if (desc.ctor.parameters.isEmpty()) {
if (desc.bindingTypeWrappers.isEmpty()) {
return new OnlyField();
} else {
return new WithWrapper();
}
} else {
return new WithCtor();
}
}
public class OnlyField implements Decoder {
public Object decode(JsonIterator iter) throws IOException {
try {
return decode_(iter);
} catch (RuntimeException e) {
throw e;
} catch (Exception e) {
throw new JsonException(e);
}
}
private Object decode_(JsonIterator iter) throws Exception {
if (iter.readNull()) {
CodegenAccess.resetExistingObject(iter);
return null;
}
Object obj = CodegenAccess.existingObject(iter) == null ? createNewObject() : CodegenAccess.resetExistingObject(iter);
if (!CodegenAccess.readObjectStart(iter)) {
if (requiredIdx > 0) {
if (desc.onMissingProperties == null) {
throw new JsonException("missing required properties: " + collectMissingFields(0));
} else {
setToBinding(obj, desc.onMissingProperties, collectMissingFields(0));
}
}
return obj;
}
Map<String, Object> extra = null;
long tracker = 0L;
Slice fieldName = CodegenAccess.readObjectFieldAsSlice(iter);
Binding binding = allBindings.get(fieldName);
if (binding == null) {
extra = onUnknownProperty(iter, fieldName, extra);
} else {
if (binding.asMissingWhenNotPresent) {
tracker |= binding.mask;
}
setToBinding(obj, binding, decodeBinding(iter, obj, binding));
}
while (CodegenAccess.nextToken(iter) == ',') {
fieldName = CodegenAccess.readObjectFieldAsSlice(iter);
binding = allBindings.get(fieldName);
if (binding == null) {
extra = onUnknownProperty(iter, fieldName, extra);
} else {
if (binding.asMissingWhenNotPresent) {
tracker |= binding.mask;
}
setToBinding(obj, binding, decodeBinding(iter, obj, binding));
}
}
if (tracker != expectedTracker) {
if (desc.onMissingProperties == null) {
throw new JsonException("missing required properties: " + collectMissingFields(tracker));
} else {
setToBinding(obj, desc.onMissingProperties, collectMissingFields(tracker));
}
}
setExtra(obj, extra);
return obj;
}
}
public class WithCtor implements Decoder {
@Override
public Object decode(JsonIterator iter) throws IOException {
try {
return decode_(iter);
} catch (RuntimeException e) {
throw e;
} catch (Exception e) {
throw new JsonException(e);
}
}
private Object decode_(JsonIterator iter) throws Exception {
if (iter.readNull()) {
CodegenAccess.resetExistingObject(iter);
return null;
}
if (iter.tempObjects == null) {
iter.tempObjects = new HashMap<String, Object>();
}
Object[] temp = (Object[]) iter.tempObjects.get(tempCacheKey);
if (temp == null) {
temp = new Object[tempCount];
iter.tempObjects.put(tempCacheKey, temp);
}
Arrays.fill(temp, NOT_SET);
if (!CodegenAccess.readObjectStart(iter)) {
if (requiredIdx > 0) {
throw new JsonException("missing required properties: " + collectMissingFields(0));
}
return createNewObject(iter, temp);
}
Map<String, Object> extra = null;
long tracker = 0L;
Slice fieldName = CodegenAccess.readObjectFieldAsSlice(iter);
Binding binding = allBindings.get(fieldName);
if (binding == null) {
extra = onUnknownProperty(iter, fieldName, extra);
} else {
if (binding.asMissingWhenNotPresent) {
tracker |= binding.mask;
}
temp[binding.idx] = decodeBinding(iter, binding);
}
while (CodegenAccess.nextToken(iter) == ',') {
fieldName = CodegenAccess.readObjectFieldAsSlice(iter);
binding = allBindings.get(fieldName);
if (binding == null) {
extra = onUnknownProperty(iter, fieldName, extra);
} else {
if (binding.asMissingWhenNotPresent) {
tracker |= binding.mask;
}
temp[binding.idx] = decodeBinding(iter, binding);
}
}
if (tracker != expectedTracker) {
throw new JsonException("missing required properties: " + collectMissingFields(tracker));
}
Object obj = createNewObject(iter, temp);
setExtra(obj, extra);
for (Binding field : desc.fields) {
Object val = temp[field.idx];
if (val != NOT_SET && field.fromNames.length > 0) {
field.field.set(obj, val);
}
}
for (Binding setter : desc.setters) {
Object val = temp[setter.idx];
if (val != NOT_SET) {
setter.method.invoke(obj, val);
}
}
applyWrappers(temp, obj);
return obj;
}
}
public class WithWrapper implements Decoder {
@Override
public Object decode(JsonIterator iter) throws IOException {
try {
return decode_(iter);
} catch (RuntimeException e) {
throw e;
} catch (Exception e) {
throw new JsonException(e);
}
}
private Object decode_(JsonIterator iter) throws Exception {
if (iter.readNull()) {
CodegenAccess.resetExistingObject(iter);
return null;
}
Object obj = createNewObject();
if (!CodegenAccess.readObjectStart(iter)) {
if (requiredIdx > 0) {
if (desc.onMissingProperties == null) {
throw new JsonException("missing required properties: " + collectMissingFields(0));
} else {
setToBinding(obj, desc.onMissingProperties, collectMissingFields(0));
}
}
return obj;
}
Map<String, Object> extra = null;
long tracker = 0L;
if (iter.tempObjects == null) {
iter.tempObjects = new HashMap<String, Object>();
}
Object[] temp = (Object[]) iter.tempObjects.get(tempCacheKey);
if (temp == null) {
temp = new Object[tempCount];
iter.tempObjects.put(tempCacheKey, temp);
}
Arrays.fill(temp, NOT_SET);
Slice fieldName = CodegenAccess.readObjectFieldAsSlice(iter);
Binding binding = allBindings.get(fieldName);
if (binding == null) {
extra = onUnknownProperty(iter, fieldName, extra);
} else {
if (binding.asMissingWhenNotPresent) {
tracker |= binding.mask;
}
if (canNotSetDirectly(binding)) {
temp[binding.idx] = decodeBinding(iter, obj, binding);
} else {
setToBinding(obj, binding, decodeBinding(iter, obj, binding));
}
}
while (CodegenAccess.nextToken(iter) == ',') {
fieldName = CodegenAccess.readObjectFieldAsSlice(iter);
binding = allBindings.get(fieldName);
if (binding == null) {
extra = onUnknownProperty(iter, fieldName, extra);
} else {
if (binding.asMissingWhenNotPresent) {
tracker |= binding.mask;
}
if (canNotSetDirectly(binding)) {
temp[binding.idx] = decodeBinding(iter, obj, binding);
} else {
setToBinding(obj, binding, decodeBinding(iter, obj, binding));
}
}
}
if (tracker != expectedTracker) {
if (desc.onMissingProperties == null) {
throw new JsonException("missing required properties: " + collectMissingFields(tracker));
} else {
setToBinding(obj, desc.onMissingProperties, collectMissingFields(tracker));
}
}
setExtra(obj, extra);
applyWrappers(temp, obj);
return obj;
}
}
private void setToBinding(Object obj, Binding binding, Object value) throws Exception {
if (binding.field != null) {
binding.field.set(obj, value);
} else {
binding.method.invoke(obj, value);
}
}
protected void setExtra(Object obj, Map<String, Object> extra) throws Exception {
if (extra == null) {
return;
}
if (desc.asExtraForUnknownProperties) {
if (desc.onExtraProperties == null) {
for (String fieldName : extra.keySet()) {
throw new JsonException("unknown property: " + fieldName);
}
} else {
setToBinding(obj, desc.onExtraProperties, extra);
}
}
for (Method wrapper : desc.keyValueTypeWrappers) {
for (Map.Entry<String, Object> entry : extra.entrySet()) {
Any value = (Any) entry.getValue();
wrapper.invoke(obj, entry.getKey(), value.object());
}
}
}
protected boolean canNotSetDirectly(Binding binding) {
return binding.field == null && binding.method == null;
}
protected Object decodeBinding(JsonIterator iter, Binding binding) throws Exception {
Object value;
value = binding.decoder.decode(iter);
return value;
}
protected Object decodeBinding(JsonIterator iter, Object obj, Binding binding) throws Exception {
if (binding.valueCanReuse) {
CodegenAccess.setExistingObject(iter, binding.field.get(obj));
}
return decodeBinding(iter, binding);
}
protected Map<String, Object> onUnknownProperty(JsonIterator iter, Slice fieldName, Map<String, Object> extra) throws IOException {
boolean shouldReadValue = desc.asExtraForUnknownProperties || !desc.keyValueTypeWrappers.isEmpty();
if (shouldReadValue) {
Any value = iter.readAny();
if (extra == null) {
extra = new HashMap<String, Object>();
}
extra.put(fieldName.toString(), value);
} else {
iter.skip();
}
return extra;
}
protected List<String> collectMissingFields(long tracker) {
List<String> missingFields = new ArrayList<String>();
for (Binding binding : allBindings.values()) {
if (binding.asMissingWhenNotPresent) {
long mask = binding.mask;
CodegenAccess.addMissingField(missingFields, tracker, mask, binding.name);
}
}
return missingFields;
}
protected void applyWrappers(Object[] temp, Object obj) throws Exception {
for (WrapperDescriptor wrapper : desc.bindingTypeWrappers) {
Object[] args = new Object[wrapper.parameters.size()];
for (int i = 0; i < wrapper.parameters.size(); i++) {
Object arg = temp[wrapper.parameters.get(i).idx];
if (arg != NOT_SET) {
args[i] = arg;
}
}
wrapper.method.invoke(obj, args);
}
}
protected Object createNewObject(JsonIterator iter, Object[] temp) throws Exception {
if (iter.tempObjects == null) {
iter.tempObjects = new HashMap<String, Object>();
}
Object[] ctorArgs = (Object[]) iter.tempObjects.get(ctorArgsCacheKey);
if (ctorArgs == null) {
ctorArgs = new Object[desc.ctor.parameters.size()];
iter.tempObjects.put(ctorArgsCacheKey, ctorArgs);
}
Arrays.fill(ctorArgs, null);
for (int i = 0; i < desc.ctor.parameters.size(); i++) {
Object arg = temp[desc.ctor.parameters.get(i).idx];
if (arg != NOT_SET) {
ctorArgs[i] = arg;
}
}
return createNewObject(ctorArgs);
}
private Object createNewObject(Object... args) throws Exception {
if (desc.ctor.objectFactory != null) {
return desc.ctor.objectFactory.create(desc.clazz);
}
if (desc.ctor.staticFactory != null) {
return desc.ctor.staticFactory.invoke(null, args);
} else {
return desc.ctor.ctor.newInstance(args);
}
}
}