-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathPbJsonReader.java
467 lines (441 loc) · 16.1 KB
/
PbJsonReader.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
456
457
458
459
460
461
462
463
464
465
466
467
/**
* Copyright (C) 2014 Telenor Digital AS
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package no.hassle.protobuf.json;
import com.google.protobuf.Descriptors;
import com.google.protobuf.Message;
import static com.google.protobuf.Descriptors.FieldDescriptor.Type;
import org.codehaus.jackson.JsonFactory;
import org.codehaus.jackson.JsonParser;
import org.codehaus.jackson.JsonToken;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
/**
* Deserialize JSON documents to Protobuf messages using {@link
* JsonFactory Jackson}.
*
*/
public class PbJsonReader
{
private final JsonFactory factory = new JsonFactory();
private boolean allowUnknownFields = false;
private boolean allowComments = false;
/**
* Construct new reader instance. Readers can be reused and
* shared. Setting feature flags between invocations is
* supported, but discouraged if the instance is shared.
*/
public PbJsonReader()
{
}
/**
* Toggle behavior when encountering fields in the JSON documents
* that are not described in the schema for the protobuf message
* type being marshalled.
*
* @param value when {@code true}, allow (and ignore) unknown
* fields instead of throwing parse error exceptions. Defaults to
* {@code false}.
*/
public void setAllowUnknownFields(boolean value)
{
allowUnknownFields = value;
}
/**
* Fluent interface method that corresponds to calling {@link
* #setAllowUnknownFields} with an argument of {@code true}.
* @return reader instance
*/
public PbJsonReader withAllowUnknownFields()
{
setAllowUnknownFields(true);
return this;
}
/**
* Toggle behavior when encountering JavaScript-type comments in
* JSON documents being parsed.
*
* @param value when {@code true}, allow (and ignore) commented
* regions, instead of throwing parse error exceptions. Defaults
* to {@code false}.
*/
public void setAllowComments(boolean value)
{
allowComments = value;
}
/**
* Fluent interface method that corresponds to calling {@link
* #setAllowComments} with an argument of {@code true}.
* @return reader instance
*/
public PbJsonReader withAllowComments()
{
setAllowComments(true);
return this;
}
/**
* Parse a JSON document given as a {@link String}.
*
* @param typeInstance {@link Message} instance describing object
* type to marshall to. Typically an incomplete message obtained
* using e.g getDefaultInstance(). The instance is used only for
* schema reference, existing values are not merged to the
* resulting message object.
* @param json JSON document.
*/
public <T extends Message> T parse(T typeInstance, String json)
throws ReaderException
{
try {
JsonParser parser = factory.createJsonParser(json);
return parse(typeInstance, parser);
}
catch (IOException e) {
throw new InputException(e);
}
}
/**
* Parse a JSON document given as an {@link InputStream}. See
* {@link #parse parse(T, String)}.
*
* @param typeInstance {@link Message} instance describing object
* type to marshall to.
* @param stream JSON document.
*/
public <T extends Message> T parse(T typeInstance, InputStream stream)
throws ReaderException
{
try {
JsonParser parser = factory.createJsonParser(stream);
return parse(typeInstance, parser);
}
catch (IOException e) {
throw new InputException(e);
}
}
/**
* Parse a JSON document given as a {@link File}. See {@link
* #parse parse(T, String)}.
*
* @param typeInstance {@link Message} instance describing object
* type to marshall to.
* @param file JSON document.
*/
public <T extends Message> T parse(T typeInstance, File file)
throws ReaderException
{
try {
JsonParser parser = factory.createJsonParser(file);
return parse(typeInstance, parser);
}
catch (IOException e) {
throw new InputException(e);
}
}
/**
* Parse a JSON document given as a {@link String}.
*
* @param builder {@link com.google.protobuf.Message.Builder}
* instance for object type to marshall to.
* @param json JSON document.
*/
public Message parse(Message.Builder builder, String json)
throws ReaderException
{
try {
JsonParser parser = factory.createJsonParser(json);
return parse(builder, parser);
}
catch (IOException e) {
throw new InputException(e);
}
}
/**
* Parse a JSON document given as an {@link InputStream}. See
* {@link #parse parse(Message.Builder, String)}.
*
* @param builder {@link com.google.protobuf.Message.Builder}
* instance for object type to marshall to.
* @param stream JSON document.
*/
public Message parse(Message.Builder builder, InputStream stream)
throws ReaderException
{
try {
JsonParser parser = factory.createJsonParser(stream);
return parse(builder, parser);
}
catch (IOException e) {
throw new InputException(e);
}
}
/**
* Parse a JSON document given as a {@link File}. See {@link
* #parse parse(Message.Builder, String)}.
*
* @param builder {@link com.google.protobuf.Message.Builder}
* instance for object type to marshall to.
* @param file JSON document.
*/
public Message parse(Message.Builder builder, File file)
throws ReaderException
{
try {
JsonParser parser = factory.createJsonParser(file);
return parse(builder, parser);
}
catch (IOException e) {
throw new InputException(e);
}
}
@SuppressWarnings("unchecked")
private <T extends Message> T parse(T typeInstance, JsonParser parser)
throws ReaderException
{
parser.configure(JsonParser.Feature.ALLOW_COMMENTS, allowComments);
try {
JsonToken token = parser.nextToken();
if (token == null) {
return null;
}
if (!token.equals(JsonToken.START_OBJECT)) {
throw new ReaderException(
"JSON document did not start with opening brace");
}
Message.Builder builder
= parseObject(typeInstance.newBuilderForType(), parser);
Message result = builder.build();
if (!result.getClass().isAssignableFrom(typeInstance.getClass())) {
throw new ReaderException(
"Unexpected class mismatch: builder constructed for "
+ typeInstance.getClass() + " built object of class "
+ result.getClass());
}
return (T) result;
}
catch (IOException e) {
throw new InputException(e);
}
}
private Message parse(Message.Builder builder, JsonParser parser)
throws ReaderException
{
parser.configure(JsonParser.Feature.ALLOW_COMMENTS, allowComments);
try {
JsonToken token = parser.nextToken();
if (token == null) {
return null;
}
if (!token.equals(JsonToken.START_OBJECT)) {
throw new ReaderException(
"JSON document did not start with opening brace");
}
return parseObject(builder, parser).build();
}
catch (IOException e) {
throw new InputException(e);
}
}
private <T extends Message.Builder> T parseObject(T builder, JsonParser parser)
throws ReaderException, IOException
{
final Descriptors.Descriptor descriptor = builder.getDescriptorForType();
while (true) {
final JsonToken token = parser.nextToken();
if (token == null) {
throw new InputException("EOF during parsing");
}
switch (token) {
case END_OBJECT:
return builder;
case FIELD_NAME:
final String name = parser.getText();
final JsonToken valueToken = parser.nextToken();
if (valueToken == null) {
throw new InputException("EOF during parsing");
}
final Descriptors.FieldDescriptor field = descriptor.findFieldByName(name);
if (field == null) {
if (!allowUnknownFields) {
throw new TypeMismatchException("Unknown field " + name + " encountered in input");
}
parser.skipChildren();
continue;
}
if (valueToken.equals(JsonToken.VALUE_NULL)) {
continue;
}
if (valueToken.equals(JsonToken.START_ARRAY) != field.isRepeated()) {
throw new TypeMismatchException(
name,
valueToken.equals(JsonToken.START_ARRAY) ? "ARRAY" : "SINGULAR",
field.isRepeated() ? "REPEATED" : "SINGULAR");
}
if (valueToken.equals(JsonToken.START_ARRAY)) {
parseRepeatedField(builder, field, parser);
}
else {
Object value = parseValue(builder, field, parser);
if (value != null) {
// Null values in the JSON document must be
// represented as absent values in the
// protobuf representation.
builder.setField(field, value);
}
}
break;
default:
throw new InputException(
"Saw token " + token.name()
+ " when expecting either END_OBJECT or FIELD_NAME");
}
}
}
private Object parseValue(
final Message.Builder builder,
final Descriptors.FieldDescriptor field,
final JsonParser parser)
throws ReaderException, IOException
{
final JsonToken token = parser.getCurrentToken();
final Type type = field.getType();
switch (token) {
case START_OBJECT:
if (!type.equals(Type.MESSAGE)) {
throw new TypeMismatchException(field.getName(), "OBJECT", type.name());
}
return parseObject(builder.newBuilderForField(field), parser).build();
case VALUE_FALSE:
if (!type.equals(Type.BOOL)) {
throw new TypeMismatchException(field.getName(), "BOOLEAN", type.name());
}
return Boolean.FALSE;
case VALUE_TRUE:
if (!type.equals(Type.BOOL)) {
throw new TypeMismatchException(field.getName(), "BOOLEAN", type.name());
}
return Boolean.TRUE;
case VALUE_NUMBER_FLOAT:
switch (type) {
case DOUBLE:
return Double.valueOf(parser.getDoubleValue());
case FLOAT:
return Float.valueOf(parser.getFloatValue());
default:
throw new TypeMismatchException(field.getName(), "FRACTIONAL", type.name());
}
case VALUE_NUMBER_INT:
switch (type) {
case INT32:
case SINT32:
case UINT32:
case FIXED32:
case SFIXED32:
return Integer.valueOf(parser.getIntValue());
case INT64:
case SINT64:
case UINT64:
case FIXED64:
case SFIXED64:
return Long.valueOf(parser.getLongValue());
case DOUBLE:
return Double.valueOf(parser.getLongValue());
case FLOAT:
return Float.valueOf(parser.getLongValue());
case ENUM:
Descriptors.EnumDescriptor desc = field.getEnumType();
Descriptors.EnumValueDescriptor val
= desc.findValueByNumber(parser.getIntValue());
if (val == null) {
throw new TypeMismatchException(
"Schema/input mismatch, enum " + field.getName()
+ " has no member numbered " + parser.getIntValue());
}
return val;
default:
throw new TypeMismatchException(field.getName(), "NUMBER", type.name());
}
case VALUE_STRING:
switch (type) {
case STRING:
return parser.getText();
case BYTES:
return parser.getBinaryValue();
case ENUM:
Descriptors.EnumDescriptor desc = field.getEnumType();
Descriptors.EnumValueDescriptor val
= desc.findValueByName(parser.getText());
if (val == null) {
throw new TypeMismatchException(
"Schema/input mismatch, enum " + field.getName()
+ " has no member " + parser.getText());
}
return val;
default:
throw new TypeMismatchException(field.getName(), "STRING", type.name());
}
default:
throw new TypeMismatchException(
"Schema/input mismatch, don't know how to parse " + token.name());
}
}
private void parseRepeatedField(
final Message.Builder builder,
final Descriptors.FieldDescriptor field,
final JsonParser parser)
throws ReaderException, IOException
{
while (true) {
final JsonToken elem = parser.nextToken();
if (elem == null) {
throw new InputException("EOF during parsing");
}
if (elem.equals(JsonToken.END_ARRAY)) {
break;
}
Object value = parseValue(builder, field, parser);
if (value != null) {
// This skips null-value array elements when
// representing as protobuf. Arguably we might want
// to throw a parse error here.
builder.addRepeatedField(field, value);
}
}
}
public static class ReaderException extends Exception
{
public ReaderException(String message) { super(message); }
public ReaderException(String message, Throwable cause) { super(message, cause); }
public ReaderException(Throwable cause) { super(cause); }
}
public static class TypeMismatchException extends ReaderException
{
public TypeMismatchException(String message) { super(message); }
public TypeMismatchException(String message, Throwable cause) { super(message, cause); }
public TypeMismatchException(Throwable cause) { super(cause); }
public TypeMismatchException(String field, String input, String schema)
{
super("Schema/input mismatch for field " + field
+ ", can't coerce " + input + " to " + schema);
}
}
public static class InputException extends ReaderException
{
public InputException(String message) { super(message); }
public InputException(String message, Throwable cause) { super(message, cause); }
public InputException(Throwable cause) { super(cause); }
}
}