-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathJson.java
More file actions
458 lines (428 loc) · 14.1 KB
/
Copy pathJson.java
File metadata and controls
458 lines (428 loc) · 14.1 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
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
package fr.maif.json;
import com.fasterxml.jackson.annotation.JsonInclude;
import tools.jackson.core.json.JsonWriteFeature;
import tools.jackson.core.type.TypeReference;
import tools.jackson.databind.DeserializationFeature;
import tools.jackson.databind.JsonNode;
import tools.jackson.databind.ObjectMapper;
import tools.jackson.databind.ObjectWriter;
import tools.jackson.databind.SerializationFeature;
import tools.jackson.databind.cfg.DateTimeFeature;
import tools.jackson.databind.json.JsonMapper;
import tools.jackson.databind.node.ArrayNode;
import tools.jackson.databind.node.BooleanNode;
import tools.jackson.databind.node.IntNode;
import tools.jackson.databind.node.LongNode;
import tools.jackson.databind.node.ObjectNode;
import tools.jackson.databind.node.StringNode;
import io.vavr.collection.List;
import io.vavr.collection.Traversable;
import io.vavr.control.Option;
import io.vavr.jackson.datatype.VavrModule;
import java.io.IOException;
import java.util.Objects;
import java.util.StringJoiner;
public class Json {
private static ObjectMapper defaultObjectMapper = newDefaultMapper();
public static ObjectMapper newDefaultMapper() {
return JsonMapper.builder()
.addModule(new VavrModule())
.configure(DateTimeFeature.WRITE_DATES_AS_TIMESTAMPS, false)
.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false)
.configure(SerializationFeature.FAIL_ON_EMPTY_BEANS, false)
.changeDefaultPropertyInclusion(incl -> incl.withValueInclusion(JsonInclude.Include.NON_ABSENT))
.build();
}
/**
* Change the underlying mapper.
* WARNING: you should register the modules: VavrModule, Jdk8Module and JavaTimeModule
* @param mapper the new ObjectMapper instance
*/
public static void setMapper(ObjectMapper mapper) {
Json.defaultObjectMapper = mapper;
}
/**
* Gets the ObjectMapper used to serialize and deserialize objects to and from JSON values.
*
* This can be set to a custom implementation using Json.setObjectMapper.
*
* @return the ObjectMapper currently being used
*/
public static ObjectMapper mapper() {
return defaultObjectMapper;
}
private static String generateJson(Object o, boolean prettyPrint, boolean escapeNonASCII) {
ObjectWriter writer = mapper().writer();
if (prettyPrint) {
writer = writer.with(SerializationFeature.INDENT_OUTPUT);
}
if (escapeNonASCII) {
writer = writer.with(JsonWriteFeature.ESCAPE_NON_ASCII);
}
return writer.writeValueAsString(o);
}
/**
* Converts an object to JsonNode.
*
* @param data Value to convert in Json.
* @param write a JsonWrite instance for the type.
* @return the JSON node.
*/
public static <T> JsonNode toJson(final T data, JsonWrite<T> write) {
return write.write(data);
}
/**
* Converts a JsonNode to a Java value
*
* @param <A> the type of the return value.
* @param json Json value to convert.
* @param jsonRead a JsonRead instance for the type.
* @return the JsResult value.
*/
public static <A> JsResult<A> fromJson(JsonNode json, JsonRead<A> jsonRead) {
return jsonRead.read(json);
}
/**
* Converts a JsonNode to a Java value
*
* @param <A> the type of the return value.
* @param json Json value to convert.
* @param klass class A
* @return the JsResult value.
*/
public static <A> JsResult<A> fromJson(JsonNode json, Class<A> klass) {
return fromJson(json, JsonRead._fromClass(klass));
}
/**
* Converts a JsonNode to a Java parametrized value
*
* @param <A> the type of the return value.
* @param json Json value to convert.
* @param typeReference type reference of the parametrized type
* @return the JsResult value.
*/
public static <A> JsResult<A> fromJson(JsonNode json, TypeReference<A> typeReference) {
return fromJson(json, JsonRead._fromClass(typeReference));
}
/**
* Creates a new empty ObjectNode.
* @return new empty ObjectNode.
*/
public static ObjectNode newObject() {
return mapper().createObjectNode();
}
/**
* Creates a new empty ArrayNode.
* @return a new empty ArrayNode.
*/
public static ArrayNode newArray() {
return mapper().createArrayNode();
}
/**
* Converts a JsonNode to its string representation.
* @param json the JSON node to convert.
* @return the string representation.
*/
public static String stringify(JsonNode json) {
return generateJson(json, false, false);
}
/**
* Converts a JsonNode to its string representation.
* @param json the JSON node to convert.
* @return the string representation, pretty printed.
*/
public static String prettyPrint(JsonNode json) {
return generateJson(json, true, false);
}
/**
* Parses a String representing a json, and return it as a JsonNode.
* @param src the JSON string.
* @return the JSON node.
*/
public static JsonNode parse(String src) {
try {
return mapper().readTree(src);
} catch(Throwable t) {
throw new RuntimeException(t);
}
}
/**
* New ObjectNode from pairs
* <pre>{@code
* JsonNode myJson = Json.obj(
* $("name", "Ragnar Lodbrock"),
* $("city", Some("Kattegat")),
* $("weight", 80),
* $("birthDate", LocalDate.of(766, 1, 1), $localdate()),
* $("sons", Json.arr(
* Json.obj("name", "Bjorn"),
* Json.obj("name", "Ubbe"),
* Json.obj("name", "Hvitserk"),
* Json.obj("name", "Sigurd"),
* Json.obj("name", "Ivar")
* ))
* );
* }</pre>
* @param pairs array of field name / value pairs
* @return the json object
*/
public static ObjectNode obj(JsPair ...pairs) {
return obj(newObject(), pairs);
}
public static ObjectNode obj(ObjectNode obj, JsPair ...pairs) {
List.of(pairs).filter(p -> p.value.isDefined()).forEach(p -> obj.set(p.field, p.value.get()));
return obj;
}
public static ObjectNode merge(ObjectNode obj, ObjectNode obj2) {
obj.properties().forEach(e ->
obj2.set(e.getKey(), e.getValue())
);
return obj2;
}
/**
* ArrayNode from JsonNodes
* <pre>{@code
* ArrayNode array = Json.arr(
* Json.obj("name", "Bjorn"),
* Json.obj("name", "Ubbe"),
* Json.obj("name", "Hvitserk"),
* Json.obj("name", "Sigurd"),
* Json.obj("name", "Ivar")
* );
* }</pre>
* @param nodes array of json nodes
* @return the json array
*/
public static ArrayNode arr(JsonNode...nodes) {
return arr(List.of(nodes));
}
/**
* ArrayNode from JsonNodes
* <pre>{@code
* ArrayNode array = Json.arr(
* Json.obj("name", "Bjorn"),
* Json.obj("name", "Ubbe"),
* Json.obj("name", "Hvitserk"),
* Json.obj("name", "Sigurd"),
* Json.obj("name", "Ivar")
* );
* }</pre>
* @param nodes array of json nodes
* @return the json array
*/
public static ArrayNode arr(Traversable<JsonNode> nodes) {
ArrayNode array = newArray();
nodes.forEach(array::add);
return array;
}
/**
* ArrayNode from strings
* <pre>{@code
* ArrayNode array = Json.arr(
* "Bjorn",
* "Ubbe",
* "Hvitserk",
* "Sigurd",
* "Ivar
* );
* }</pre>
* @param nodes array of strings
* @return the json array
*/
public static ArrayNode arr(String ...nodes) {
ArrayNode obj = newArray();
List.of(nodes).map(StringNode::new).forEach(obj::add);
return obj;
}
/**
* An object field for int value
* @param field the name
* @param value the value
* @return the field name / value pair
*/
public static JsPair $(String field, Integer value) {
return new JsPair(field, Option.of(value).map(IntNode::new));
}
/**
* An object field for int value
* @param field the name
* @param value the value
* @return the field name / value pair
*/
public static JsPair $$(String field, Integer value) {
return Json.$(field, value);
}
/**
* An object field for long value
* @param field the name
* @param value the value
* @return the field name / value pair
*/
public static JsPair $(String field, Long value) {
return new JsPair(field, Option.of(value).map(LongNode::new));
}
/**
* An object field for long value
* @param field the name
* @param value the value
* @return the field name / value pair
*/
public static JsPair $$(String field, Long value) {
return Json.$(field, value);
}
/**
* An object field for a string option.
* If the option is empty, the field is not written in the object.
* @param field the name
* @param value the value
* @return the field name / value pair
*/
public static JsPair $(String field, Option<String> value) {
return new JsPair(field, value.map(StringNode::new));
}
/**
* An object field for a string option.
* If the option is empty, the field is not written in the object.
* @param field the name
* @param value the value
* @return the field name / value pair
*/
public static JsPair $$(String field, Option<String> value) {
return Json.$(field, value);
}
/**
* An object field for an enum value
* @param field the name
* @param value the value
* @return the field name / value pair
*/
public static JsPair $(String field, Enum<?> value) {
return Json.$(field, Option.of(value).map(Enum::name));
}
/**
* An object field for an enum value
* @param field the name
* @param value the value
* @return the field name / value pair
*/
public static JsPair $$(String field, Enum<?> value) {
return Json.$(field, value);
}
/**
* An object field for a string value
* @param field the name
* @param value the value
* @return the field name / value pair
*/
public static JsPair $(String field, String value) {
return Json.$(field, Option.of(value));
}
/**
* An object field for a string value
* @param field the name
* @param value the value
* @return the field name / value pair
*/
public static JsPair $$(String field, String value) {
return Json.$(field, value);
}
/**
* An object field for a boolean value
* @param field the name
* @param value the value
* @return the field name / value pair
*/
public static JsPair $(String field, Boolean value) {
return new JsPair(field, Option.of(value).map(BooleanNode::valueOf));
}
/**
* An object field for a boolean value
* @param field the name
* @param value the value
* @return the field name / value pair
*/
public static JsPair $$(String field, Boolean value) {
return Json.$(field, value);
}
/**
* An object field for a nested json
* @param field the name
* @param value the value
* @return the field name / value pair
*/
public static JsPair $(String field, JsonNode value) {
return new JsPair(field, Option.of(value));
}
/**
* An object field for a nested json
* @param field the name
* @param value the value
* @return the field name / value pair
*/
public static JsPair $$(String field, JsonNode value) {
return Json.$(field, value);
}
/**
* An object field for any value using a writer
* @param field the name
* @param value the value
* @return the field name / value pair
*/
public static <T> JsPair $(String field, T value, JsonWrite<T> jsonWrite) {
return new JsPair(field, Option.of(value).map(jsonWrite::write));
}
/**
* An object field for any value using a writer
* @param field the name
* @param value the value
* @return the field name / value pair
*/
public static <T> JsPair $$(String field, T value, JsonWrite<T> jsonWrite) {
return Json.$(field, value, jsonWrite);
}
/**
* An object field for any optional value using a writer
* @param field the name
* @param value the value
* @return the field name / value pair
*/
public static <T> JsPair $(String field, Option<T> value, JsonWrite<T> jsonWrite) {
return new JsPair(field, Objects.isNull(value) ? Option.none() : value.map(jsonWrite::write));
}
/**
* An object field for any optional value using a writer
* @param field the name
* @param value the value
* @return the field name / value pair
*/
public static <T> JsPair $$(String field, Option<T> value, JsonWrite<T> jsonWrite) {
return Json.$(field, value, jsonWrite);
}
public static class JsPair {
final String field;
final Option<JsonNode> value;
public JsPair(String field, Option<JsonNode> value) {
this.field = field;
this.value = value;
}
@Override
public String toString() {
return new StringJoiner(", ", JsPair.class.getSimpleName() + "[", "]")
.add("field='" + field + "'")
.add("value=" + value)
.toString();
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
JsPair jsPair = (JsPair) o;
return Objects.equals(field, jsPair.field) &&
Objects.equals(value, jsPair.value);
}
@Override
public int hashCode() {
return Objects.hash(field, value);
}
}
}