-
Notifications
You must be signed in to change notification settings - Fork 0
/
Json.java
711 lines (630 loc) · 12.7 KB
/
Json.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
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
// ----------------------------------------------------------------
// The contents of this file are distributed under the CC0 license.
// See http://creativecommons.org/publicdomain/zero/1.0/
// ----------------------------------------------------------------
import java.util.ArrayList;
import java.lang.StringBuilder;
import java.io.BufferedWriter;
import java.io.FileWriter;
import java.nio.file.Paths;
import java.nio.file.Files;
// This class represents a node in a JSON DOM. Here is an example for how to use this class:
//
// class Submarine
// {
// boolean atomic;
// int crewSize;
// double depth;
// Periscope peri;
// ArrayList<Torpedo> ammo;
//
//
// // Unmarshaling constructor
// Submarine(Json ob)
// {
// atomic = ob.getBool("atomic");
// crewSize = (int)ob.getLong("crewSize");
// depth = ob.getDouble("depth");
// peri = new Periscope(ob.get("peri"));
// ammo = new ArrayList<Torpedo>();
// Json tmpList = ob.get("ammo");
// for(int i = 0; i < tmpList.size(); i++)
// ammo.add(new Torpedo(tmpList.get(i)));
// }
//
//
// // Marshals this object into a JSON DOM
// Json marshal()
// {
// Json ob = Json.newObject();
// ob.add("atomic", atomic);
// ob.add("crewSize", crewSize);
// ob.add("depth", depth);
// ob.add("peri", peri.marshal());
// Json tmpList = Json.newList();
// ob.add("ammo", tmpList);
// for(int i = 0; i < ammo.size(); i++)
// tmpList.add(ammo.get(i).marshal());
// return ob;
// }
// }
//
public abstract class Json
{
abstract void write(StringBuilder sb);
public static Json newObject()
{
return new JObject();
}
public static Json newList()
{
return new JList();
}
public static Json parseNode(StringParser p)
{
p.skipWhitespace();
if(p.remaining() == 0)
throw new RuntimeException("Unexpected end of JSON file");
char c = p.peek();
if(c == '"')
return new JString(JString.parseString(p));
else if(c == '{')
return JObject.parseObject(p);
else if(c == '[')
return JList.parseList(p);
else if(c == 't')
{
p.expect("true");
return new JBool(true);
}
else if(c == 'f')
{
p.expect("false");
return new JBool(false);
}
else if(c == 'n')
{
p.expect("null");
return new JNull();
}
else if((c >= '0' && c <= '9') || c == '-')
return JDouble.parseNumber(p);
else
throw new RuntimeException("Unexpected token at " + p.str.substring(p.pos, Math.min(p.remaining(), 50)));
}
public int size()
{
return this.asList().size();
}
public Json get(String name)
{
return this.asObject().field(name);
}
public Json get(int index)
{
return this.asList().get(index);
}
public boolean getBool(String name)
{
return get(name).asBool();
}
public boolean getBool(int index)
{
return get(index).asBool();
}
public long getLong(String name)
{
return get(name).asLong();
}
public long getLong(int index)
{
return get(index).asLong();
}
public double getDouble(String name)
{
return get(name).asDouble();
}
public double getDouble(int index)
{
return get(index).asDouble();
}
public String getString(String name)
{
return get(name).asString();
}
public String getString(int index)
{
return get(index).asString();
}
public void add(String name, Json val)
{
this.asObject().add(name, val);
}
public void add(String name, boolean val)
{
this.asObject().add(name, new Json.JBool(val));
}
public void add(String name, long val)
{
this.asObject().add(name, new Json.JLong(val));
}
public void add(String name, double val)
{
this.asObject().add(name, new Json.JDouble(val));
}
public void add(String name, String val)
{
this.asObject().add(name, new Json.JString(val));
}
public void add(Json item)
{
this.asList().add(item);
}
public void add(boolean val)
{
this.asList().add(new Json.JBool(val));
}
public void add(long val)
{
this.asList().add(new Json.JLong(val));
}
public void add(double val)
{
this.asList().add(new Json.JDouble(val));
}
public void add(String val)
{
this.asList().add(new Json.JString(val));
}
public boolean asBool()
{
return ((JBool)this).value;
}
public long asLong()
{
return ((JLong)this).value;
}
public double asDouble()
{
if(this instanceof JDouble)
return ((JDouble)this).value;
else
return (double)((JLong)this).value;
}
public String asString()
{
return ((JString)this).value;
}
public String toString()
{
StringBuilder sb = new StringBuilder();
write(sb);
return sb.toString();
}
private JObject asObject()
{
return (JObject)this;
}
private JList asList()
{
return (JList)this;
}
public void save(String filename)
{
try
{
BufferedWriter out = new BufferedWriter(new FileWriter(filename));
out.write(toString());
out.close();
}
catch(Exception e)
{
throw new RuntimeException(e);
}
}
public static Json parse(String s)
{
StringParser p = new StringParser(s);
return Json.parseNode(p);
}
public static Json load(String filename)
{
String contents;
try
{
contents = new String(Files.readAllBytes(Paths.get(filename)));
}
catch(Exception e)
{
throw new RuntimeException(e);
}
return parse(contents);
}
public static class StringParser
{
String str;
int pos;
StringParser(String s)
{
str = s;
pos = 0;
}
int remaining()
{
return str.length() - pos;
}
char peek()
{
return str.charAt(pos);
}
void advance(int n)
{
pos += n;
}
void skipWhitespace()
{
while(pos < str.length() && str.charAt(pos) <= ' ')
pos++;
}
void expect(String s)
{
if(!str.substring(pos, Math.min(str.length(), pos + s.length())).equals(s))
throw new RuntimeException("Expected \"" + s + "\", Got \"" + str.substring(pos, Math.min(str.length(), pos + s.length())) + "\"");
pos += s.length();
}
String until(char c)
{
int i = pos;
while(i < str.length() && str.charAt(i) != c)
i++;
String s = str.substring(pos, i);
pos = i;
return s;
}
String until(char a, char b)
{
int i = pos;
while(i < str.length() && str.charAt(i) != a && str.charAt(i) != b)
i++;
String s = str.substring(pos, i);
pos = i;
return s;
}
String untilWhitespace()
{
int i = pos;
while(i < str.length() && str.charAt(i) > ' ')
i++;
String s = str.substring(pos, i);
pos = i;
return s;
}
String untilQuoteSensitive(char a, char b)
{
if(peek() == '"')
{
advance(1);
String s = "\"" + until('"') + "\"";
advance(1);
until(a, b);
return s;
}
else
return until(a, b);
}
String whileReal()
{
int i = pos;
while(i < str.length())
{
char c = str.charAt(i);
if((c >= '0' && c <= '9') ||
c == '-' ||
c == '+' ||
c == '.' ||
c == 'e' ||
c == 'E')
i++;
else
break;
}
String s = str.substring(pos, i);
pos = i;
return s;
}
}
private static class NameVal
{
String name;
Json value;
NameVal(String nam, Json val)
{
if(nam == null)
throw new IllegalArgumentException("The name cannot be null");
if(val == null)
val = new JNull();
name = nam;
value = val;
}
}
private static class JObject extends Json
{
ArrayList<NameVal> fields;
JObject()
{
fields = new ArrayList<NameVal>();
}
public void add(String name, Json val)
{
fields.add(new NameVal(name, val));
}
Json fieldIfExists(String name)
{
for(NameVal nv : fields)
{
if(nv.name.equals(name))
return nv.value;
}
return null;
}
Json field(String name)
{
Json n = fieldIfExists(name);
if(n == null)
throw new RuntimeException("No field named \"" + name + "\" found.");
return n;
}
void write(StringBuilder sb)
{
sb.append("{");
for(int i = 0; i < fields.size(); i++)
{
if(i > 0)
sb.append(",");
NameVal nv = fields.get(i);
JString.write(sb, nv.name);
sb.append(":");
nv.value.write(sb);
}
sb.append("}");
}
static JObject parseObject(StringParser p)
{
p.expect("{");
JObject newOb = new JObject();
boolean readyForField = true;
while(p.remaining() > 0)
{
char c = p.peek();
if(c <= ' ')
{
p.advance(1);
}
else if(c == '}')
{
p.advance(1);
return newOb;
}
else if(c == ',')
{
if(readyForField)
throw new RuntimeException("Unexpected ','");
p.advance(1);
readyForField = true;
}
else if(c == '\"')
{
if(!readyForField)
throw new RuntimeException("Expected a ',' before the next field in JSON file");
p.skipWhitespace();
String name = JString.parseString(p);
p.skipWhitespace();
p.expect(":");
Json value = Json.parseNode(p);
newOb.add(name, value);
readyForField = false;
}
else
throw new RuntimeException("Expected a '}' or a '\"'. Got " + p.str.substring(p.pos, p.pos + 10));
}
throw new RuntimeException("Expected a matching '}' in JSON file");
}
}
private static class JList extends Json
{
ArrayList<Json> list;
JList()
{
list = new ArrayList<Json>();
}
public void add(Json item)
{
if(item == null)
item = new JNull();
list.add(item);
}
public int size()
{
return list.size();
}
public Json get(int index)
{
return list.get(index);
}
void write(StringBuilder sb)
{
sb.append("[");
for(int i = 0; i < list.size(); i++)
{
if(i > 0)
sb.append(",");
list.get(i).write(sb);
}
sb.append("]");
}
static JList parseList(StringParser p)
{
p.expect("[");
JList newList = new JList();
boolean readyForValue = true;
while(p.remaining() > 0)
{
p.skipWhitespace();
char c = p.peek();
if(c == ']')
{
p.advance(1);
return newList;
}
else if(c == ',')
{
if(readyForValue)
throw new RuntimeException("Unexpected ',' in JSON file");
p.advance(1);
readyForValue = true;
}
else
{
if(!readyForValue)
throw new RuntimeException("Expected a ',' or ']' in JSON file");
newList.list.add(Json.parseNode(p));
readyForValue = false;
}
}
throw new RuntimeException("Expected a matching ']' in JSON file");
}
}
private static class JBool extends Json
{
boolean value;
JBool(boolean val)
{
value = val;
}
void write(StringBuilder sb)
{
sb.append(value ? "true" : "false");
}
}
private static class JLong extends Json
{
long value;
JLong(long val)
{
value = val;
}
void write(StringBuilder sb)
{
sb.append(value);
}
}
private static class JDouble extends Json
{
double value;
JDouble(double val)
{
value = val;
}
void write(StringBuilder sb)
{
sb.append(value);
}
static Json parseNumber(StringParser p)
{
String s = p.whileReal();
if(s.indexOf('.') >= 0)
return new JDouble(Double.parseDouble(s));
else
return new JLong(Long.parseLong(s));
}
}
private static class JString extends Json
{
String value;
JString(String val)
{
value = val;
}
static void write(StringBuilder sb, String value)
{
sb.append('"');
for(int i = 0; i < value.length(); i++)
{
char c = value.charAt(i);
if(c < ' ')
{
switch(c)
{
case '\b': sb.append("\\b"); break;
case '\f': sb.append("\\f"); break;
case '\n': sb.append("\\n"); break;
case '\r': sb.append("\\r"); break;
case '\t': sb.append("\\t"); break;
default:
sb.append(c);
}
}
else if(c == '\\')
sb.append("\\\\");
else if(c == '"')
sb.append("\\\"");
else
sb.append(c);
}
sb.append('"');
}
void write(StringBuilder sb)
{
write(sb, value);
}
static String parseString(StringParser p)
{
StringBuilder sb = new StringBuilder();
p.expect("\"");
while(p.remaining() > 0)
{
char c = p.peek();
if(c == '\"')
{
p.advance(1);
return sb.toString();
}
else if(c == '\\')
{
p.advance(1);
c = p.peek();
p.advance(1);
switch(c)
{
case '"': sb.append('"'); break;
case '\\': sb.append('\\'); break;
case '/': sb.append('/'); break;
case 'b': sb.append('\b'); break;
case 'f': sb.append('\f'); break;
case 'n': sb.append('\n'); break;
case 'r': sb.append('\r'); break;
case 't': sb.append('\t'); break;
case 'u': throw new RuntimeException("Sorry, unicode characters are not yet supported");
default: throw new RuntimeException("Unrecognized escape sequence");
}
}
else
{
sb.append(c);
p.advance(1);
}
}
throw new RuntimeException("No closing \"");
}
}
private static class JNull extends Json
{
JNull()
{
}
void write(StringBuilder sb)
{
sb.append("null");
}
}
}