-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathJSON.cs
More file actions
822 lines (709 loc) · 17 KB
/
JSON.cs
File metadata and controls
822 lines (709 loc) · 17 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
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
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
using System;
using System.Collections.Generic;
using System.Text;
using Waher.Content.Json;
using Waher.Runtime.Collections;
using Waher.Runtime.Inventory;
using Waher.Script.Abstraction.Elements;
namespace Waher.Content
{
/// <summary>
/// Helps with common JSON-related tasks.
/// </summary>
public static class JSON
{
/// <summary>
/// Unix Date and Time epoch, starting at 1970-01-01T00:00:00Z
/// </summary>
public static readonly DateTime UnixEpoch = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc);
private static readonly Dictionary<Type, IJsonEncoder> encoders;
static JSON()
{
encoders = new Dictionary<Type, IJsonEncoder>();
Types.OnInvalidated += Types_OnInvalidated;
}
private static void Types_OnInvalidated(object Sender, EventArgs e)
{
lock (encoders)
{
encoders.Clear();
}
}
#region Parsing
/// <summary>
/// Parses a JSON string.
/// </summary>
/// <param name="Json">JSON</param>
/// <returns>Parsed content.</returns>
public static object Parse(string Json)
{
int Pos = 0;
int Len = Json.Length;
object Result = Parse(Json, ref Pos, Len, false);
char ch;
while (Pos < Len && ((ch = Json[Pos]) <= ' ' || ch == 160))
Pos++;
if (Pos < Len)
throw new Exception("Unexpected content at end of string.");
return Result;
}
private static object Parse(string Json, ref int Pos, int Len, bool AllowLabel)
{
StringBuilder sb = null;
int State = 0;
int Start = 0;
int i = 0;
char ch;
while (Pos < Len)
{
ch = Json[Pos++];
switch (State)
{
case 0:
if (ch <= ' ' || ch == 160)
break;
if ((ch >= '0' && ch <= '9') || (ch == '-') || (ch == '+'))
{
Start = Pos - 1;
State++;
}
else if (ch == '.')
{
Start = Pos - 1;
State += 2;
}
else if (ch == '"')
{
sb = new StringBuilder();
State += 5;
}
else if (ch == 't')
State += 11;
else if (ch == 'f')
State += 14;
else if (ch == 'n')
State += 18;
else if (ch == '[')
{
while (Pos < Len && ((ch = Json[Pos]) <= ' ' || ch == 160))
Pos++;
if (Pos >= Len)
throw new Exception("Unexpected end of JSON.");
if (ch == ']')
{
Pos++;
return System.Array.Empty<object>();
}
ChunkedList<object> Array = new ChunkedList<object>();
while (true)
{
Array.Add(JSON.Parse(Json, ref Pos, Len, false));
while (Pos < Len && ((ch = Json[Pos]) <= ' ' || ch == 160))
Pos++;
if (Pos >= Len)
throw new Exception("Unexpected end of JSON.");
if (ch == ']')
break;
else if (ch == ',')
Pos++;
else
throw new Exception("Invalid JSON.");
}
Pos++;
return Array.ToArray();
}
else if (ch == '{')
{
Dictionary<string, object> Object = new Dictionary<string, object>();
while (Pos < Len && ((ch = Json[Pos]) <= ' ' || ch == 160))
Pos++;
if (Pos >= Len)
throw new Exception("Unexpected end of JSON.");
if (ch == '}')
{
Pos++;
return Object;
}
while (true)
{
while (Pos < Len && ((ch = Json[Pos]) <= ' ' || ch == 160))
Pos++;
if (!(Parse(Json, ref Pos, Len, true) is string Key))
throw new Exception("Expected member name.");
while (Pos < Len && ((ch = Json[Pos]) <= ' ' || ch == 160))
Pos++;
if (Pos >= Len)
throw new Exception("Unexpected end of JSON.");
if (ch != ':')
throw new Exception("Expected :");
Pos++;
Object[Key] = JSON.Parse(Json, ref Pos, Len, false);
while (Pos < Len && ((ch = Json[Pos]) <= ' ' || ch == 160))
Pos++;
if (Pos >= Len)
throw new Exception("Unexpected end of JSON.");
if (ch == '}')
break;
else if (ch == ',')
{
Pos++;
while (Pos < Len && ((ch = Json[Pos]) <= ' ' || ch == 160))
Pos++;
if (Pos >= Len)
throw new Exception("Unexpected end of JSON.");
if (ch == '}')
break;
}
else
throw new Exception("Invalid JSON.");
}
Pos++;
return Object;
}
else if (AllowLabel && (char.IsLetter(ch) || ch == '_' || ch == '$'))
{
sb = new StringBuilder();
sb.Append(ch);
State += 21;
}
else
throw new Exception("Invalid JSON.");
break;
case 1: // Number (Integer?)
if (ch >= '0' && ch <= '9')
break;
else if (ch == '.')
State++;
else if (ch == 'e' || ch == 'E')
State += 2;
else
{
Pos--;
string s = Json.Substring(Start, Pos - Start);
if (int.TryParse(s, out i))
return i;
else if (long.TryParse(s, out long l))
return l;
else if (CommonTypes.TryParse(s, out double d))
return d;
else if (CommonTypes.TryParse(s, out decimal dec))
return dec;
else
throw new Exception("Invalid JSON.");
}
break;
case 2: // Decimal number, decimal part.
if (ch >= '0' && ch <= '9')
break;
else if (ch == 'e' || ch == 'E')
State++;
else
{
Pos--;
string s = Json.Substring(Start, Pos - Start);
if (CommonTypes.TryParse(s, out double d))
return d;
else if (CommonTypes.TryParse(s, out decimal dec))
return dec;
else
throw new Exception("Invalid JSON.");
}
break;
case 3: // Decimal number, exponent sign.
if (ch == '+' || ch == '-' || (ch >= '0' && ch <= '9'))
State++;
else
throw new Exception("Invalid JSON.");
break;
case 4: // Decimal number, exponent.
if (ch >= '0' && ch <= '9')
break;
else
{
Pos--;
string s = Json.Substring(Start, Pos - Start);
if (CommonTypes.TryParse(s, out double d))
return d;
else if (CommonTypes.TryParse(s, out decimal dec))
return dec;
else
throw new Exception("Invalid JSON.");
}
case 5: // String.
if (ch == '\\')
State++;
else if (ch == '"')
return sb.ToString();
else
sb.Append(ch);
break;
case 6: // String, escaped character.
switch (ch)
{
case 'a':
sb.Append('\a');
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 'v':
sb.Append('\v');
break;
case 'x':
i = 0;
State += 4;
break;
case 'u':
i = 0;
State += 2;
break;
default:
sb.Append(ch);
break;
}
State--;
break;
case 7: // hex digit 1(4)
i = HexDigit(ch);
State++;
break;
case 8: // hex digit 2(4)
i <<= 4;
i |= HexDigit(ch);
State++;
break;
case 9: // hex digit 3(4)
i <<= 4;
i |= HexDigit(ch);
State++;
break;
case 10: // hex digit 4(4)
i <<= 4;
i |= HexDigit(ch);
sb.Append((char)i);
State -= 5;
break;
case 11: // True
if (ch == 'r')
{
State++;
break;
}
else
throw new Exception("Invalid JSON.");
case 12: // tRue
if (ch == 'u')
{
State++;
break;
}
else
throw new Exception("Invalid JSON.");
case 13: // trUe
if (ch == 'e')
return true;
else
throw new Exception("Invalid JSON.");
case 14: // False
if (ch == 'a')
{
State++;
break;
}
else
throw new Exception("Invalid JSON.");
case 15: // fAlse
if (ch == 'l')
{
State++;
break;
}
else
throw new Exception("Invalid JSON.");
case 16: // faLse
if (ch == 's')
{
State++;
break;
}
else
throw new Exception("Invalid JSON.");
case 17: // falsE
if (ch == 'e')
return false;
else
throw new Exception("Invalid JSON.");
case 18: // Null
if (ch == 'u')
{
State++;
break;
}
else
throw new Exception("Invalid JSON.");
case 19: // nUll
if (ch == 'l')
{
State++;
break;
}
else
throw new Exception("Invalid JSON.");
case 20: // nuLl
if (ch == 'l')
return null;
else
throw new Exception("Invalid JSON.");
case 21: // Label.
if (char.IsLetter(ch) || char.IsDigit(ch) || ch == '_' || ch == '$')
sb.Append(ch);
else
{
Pos--;
return sb.ToString();
}
break;
}
}
if (State == 1)
{
string s = Json.Substring(Start, Pos - Start);
if (int.TryParse(s, out i))
return i;
else if (long.TryParse(s, out long l))
return l;
else if (CommonTypes.TryParse(s, out double d))
return d;
else if (CommonTypes.TryParse(s, out decimal dec))
return dec;
else
throw new Exception("Invalid JSON.");
}
else if (State == 2)
{
string s = Json.Substring(Start, Pos - Start);
if (CommonTypes.TryParse(s, out double d))
return d;
else if (CommonTypes.TryParse(s, out decimal dec))
return dec;
else
throw new Exception("Invalid JSON.");
}
else if (State == 4)
{
string s = Json.Substring(Start, Pos - Start);
if (CommonTypes.TryParse(s, out double d))
return d;
else if (CommonTypes.TryParse(s, out decimal dec))
return dec;
else
throw new Exception("Invalid JSON.");
}
else
throw new Exception("Unexpected end of JSON.");
}
internal static int HexDigit(char ch)
{
if (ch >= '0' && ch <= '9')
return ch - '0';
else if (ch >= 'A' && ch <= 'F')
return ch - 'A' + 10;
else if (ch >= 'a' && ch <= 'f')
return ch - 'a' + 10;
else
throw new Exception("Invalid hexadecimal digit.");
}
#endregion
#region Encoding
/// <summary>
/// Encodes a string for inclusion in JSON.
/// </summary>
/// <param name="s">String to encode.</param>
/// <returns>Encoded string.</returns>
public static string Encode(string s)
{
return CommonTypes.Escape(s, jsonCharactersToEscape, jsonCharacterEscapes);
}
private static readonly char[] jsonCharactersToEscape = new char[]
{
'\\',
'"',
'\x00',
'\x01',
'\x02',
'\x03',
'\x04',
'\x05',
'\x06',
'\a', // 7 - 0x07
'\b', // 8 - 0x08
'\t', // 9 - 0x09
'\n', // 10 - 0x0a
'\v', // 11 - 0x0b
'\f', // 12 - 0x0c
'\r', // 13 - 0x0d
'\x0e',
'\x0f',
'\x10',
'\x11',
'\x12',
'\x13',
'\x14',
'\x15',
'\x16',
'\x17',
'\x18',
'\x19',
'\x1a',
'\x1b',
'\x1c',
'\x1d',
'\x1e',
'\x1f'
};
private static readonly string[] jsonCharacterEscapes = new string[]
{
"\\\\",
"\\\"",
"\\u0000",
"\\u0001",
"\\u0002",
"\\u0003",
"\\u0004",
"\\u0005",
"\\u0006",
"\\a",
"\\b",
"\\t",
"\\n",
"\\v",
"\\f",
"\\r",
"\\u000e",
"\\u000f",
"\\u0010",
"\\u0011",
"\\u0012",
"\\u0013",
"\\u0014",
"\\u0015",
"\\u0016",
"\\u0017",
"\\u0018",
"\\u0019",
"\\u001a",
"\\u001b",
"\\u001c",
"\\u001d",
"\\u001e",
"\\u001f"
};
/// <summary>
/// Encodes an object as JSON.
/// </summary>
/// <param name="Object">Object.</param>
/// <param name="Indent">If JSON should be indented.</param>
/// <returns>JSON string.</returns>
public static string Encode(object Object, bool Indent)
{
StringBuilder sb = new StringBuilder();
Encode(Object, Indent, sb);
return sb.ToString();
}
/// <summary>
/// Encodes an object as JSON.
/// </summary>
/// <param name="Object">Object.</param>
/// <param name="Json">JSON Output.</param>
/// <param name="Indent">If JSON should be indented.</param>
public static void Encode(object Object, bool Indent, StringBuilder Json)
{
Encode(Object, Indent ? (int?)0 : null, Json);
}
/// <summary>
/// Encodes an object as JSON.
/// </summary>
/// <param name="Object">Object.</param>
/// <param name="Indent">If JSON should be indented.</param>
/// <param name="AdditionalProperties">Optional additional properties.</param>
/// <returns>Encoded object.</returns>
public static string Encode(IEnumerable<KeyValuePair<string, object>> Object, int? Indent,
params KeyValuePair<string, object>[] AdditionalProperties)
{
StringBuilder Json = new StringBuilder();
Encode(Object, Indent, Json, AdditionalProperties);
return Json.ToString();
}
/// <summary>
/// Encodes an object as JSON.
/// </summary>
/// <param name="Object">Object.</param>
/// <param name="Indent">If JSON should be indented.</param>
/// <param name="Json">JSON Output.</param>
/// <param name="AdditionalProperties">Optional additional properties.</param>
public static void Encode(IEnumerable<KeyValuePair<string, object>> Object, int? Indent, StringBuilder Json,
params KeyValuePair<string, object>[] AdditionalProperties)
{
bool First = true;
Json.Append('{');
if (Indent.HasValue)
Indent++;
if (!(Object is null))
{
foreach (KeyValuePair<string, object> Member in Object)
{
if (First)
First = false;
else
Json.Append(',');
if (Indent.HasValue)
{
Json.AppendLine();
Json.Append(new string('\t', Indent.Value));
}
Json.Append('"');
Json.Append(Encode(Member.Key));
Json.Append("\":");
if (Indent.HasValue)
Json.Append(' ');
Encode(Member.Value, Indent, Json);
}
}
if (!(AdditionalProperties is null))
{
foreach (KeyValuePair<string, object> Member in AdditionalProperties)
{
if (First)
First = false;
else
Json.Append(',');
if (Indent.HasValue)
{
Json.AppendLine();
Json.Append(new string('\t', Indent.Value));
}
Json.Append('"');
Json.Append(Encode(Member.Key));
Json.Append("\":");
if (Indent.HasValue)
Json.Append(' ');
Encode(Member.Value, Indent, Json);
}
}
if (Indent.HasValue)
{
Indent--;
if (!First)
{
Json.AppendLine();
Json.Append(new string('\t', Indent.Value));
}
}
Json.Append('}');
}
/// <summary>
/// Encodes an object as JSON.
/// </summary>
/// <param name="Object">Object.</param>
/// <param name="Indent">If JSON should be indented.</param>
/// <param name="Json">JSON Output.</param>
public static void Encode(IEnumerable<KeyValuePair<string, IElement>> Object, int? Indent, StringBuilder Json)
{
bool First = true;
Json.Append('{');
if (Indent.HasValue)
Indent++;
if (!(Object is null))
{
foreach (KeyValuePair<string, IElement> Member in Object)
{
if (First)
First = false;
else
Json.Append(',');
if (Indent.HasValue)
{
Json.AppendLine();
Json.Append(new string('\t', Indent.Value));
}
Json.Append('"');
Json.Append(Encode(Member.Key));
Json.Append("\":");
if (Indent.HasValue)
Json.Append(' ');
Encode(Member.Value.AssociatedObjectValue, Indent, Json);
}
}
if (Indent.HasValue)
{
Indent--;
if (!First)
{
Json.AppendLine();
Json.Append(new string('\t', Indent.Value));
}
}
Json.Append('}');
}
/// <summary>
/// Extensible encoding of object <paramref name="Object"/>, by using
/// best available <see cref="IJsonEncoder"/> for the corresponding type.
/// </summary>
/// <param name="Object">Object to encode.</param>
/// <param name="Indent">Optional indentation.</param>
/// <param name="Json">JSON output.</param>
public static void Encode(object Object, int? Indent, StringBuilder Json)
{
if (Object is null)
Json.Append("null");
else
{
Type T = Object.GetType();
IJsonEncoder Encoder;
lock (encoders)
{
if (!encoders.TryGetValue(T, out Encoder))
{
Encoder = Types.FindBest<IJsonEncoder, Type>(T)
?? throw new ArgumentException("Unable to encode objects of type " + T.FullName, nameof(Object));
encoders[T] = Encoder;
}
}
Encoder.Encode(Object, Indent, Json);
}
}
#endregion
#region Pretty JSON
/// <summary>
/// Reformats JSON to make it easier to read.
/// </summary>
/// <param name="Json">JSON</param>
/// <returns>Reformatted JSON.</returns>
public static string PrettyJson(string Json)
{
return Encode(Parse(Json), true);
}
/// <summary>
/// Reformats JSON to make it easier to read.
/// </summary>
/// <param name="Object">Object to encode into pretty JSON</param>
/// <returns>Reformatted JSON.</returns>
public static string PrettyJson(object Object)
{
return Encode(Object, true);
}
#endregion
}
}