forked from PeterWaher/IoTGateway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJSON.cs
669 lines (577 loc) · 14.6 KB
/
JSON.cs
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
using System;
using System.Collections;
using System.Collections.Generic;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
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);
#region Encoding/Decoding
/// <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);
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)
{
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 new object[0];
}
List<object> Array = new List<object>();
while (true)
{
Array.Add(JSON.Parse(Json, ref Pos, Len));
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)
{
if (!(JSON.Parse(Json, ref Pos, Len) 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);
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 Object;
}
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.");
}
}
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.");
}
/// <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[] { '\\', '"', '\n', '\r', '\t', '\b', '\f', '\a' };
private static readonly string[] jsonCharacterEscapes = new string[] { "\\\\", "\\\"", "\\n", "\\r", "\\t", "\\b", "\\f", "\\a" };
/// <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="Json">JSON Output.</param>
/// <param name="Indent">If JSON should be indented.</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 = Indent + 1;
if (Object != 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 != 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 (!First && Indent.HasValue)
{
Json.AppendLine();
Indent = Indent - 1;
Json.Append(new string('\t', Indent.Value));
}
Json.Append('}');
}
private static void Encode(object Object, int? Indent, StringBuilder Json)
{
if (Object is null)
Json.Append("null");
else
{
Type T = Object.GetType();
TypeInfo TI = T.GetTypeInfo();
if (TI.IsValueType)
{
if (Object is bool b)
Json.Append(CommonTypes.Encode(b));
else if (Object is char ch)
{
Json.Append('"');
Json.Append(Encode(new string(ch, 1)));
Json.Append('"');
}
else if (Object is double dbl)
Json.Append(CommonTypes.Encode(dbl));
else if (Object is float fl)
Json.Append(CommonTypes.Encode(fl));
else if (Object is decimal dec)
Json.Append(CommonTypes.Encode(dec));
else if (TI.IsEnum)
{
Json.Append('"');
Json.Append(Encode(Object.ToString()));
Json.Append('"');
}
else if (Object is DateTime TP)
Json.Append(((int)((TP.ToUniversalTime() - UnixEpoch).TotalSeconds)).ToString());
else
Json.Append(Object.ToString());
}
else if (Object is string s)
{
Json.Append('"');
Json.Append(Encode(s));
Json.Append('"');
}
else if (Object is IEnumerable<KeyValuePair<string, object>> Obj)
Encode(Obj, Indent, Json, null);
else if (Object is IEnumerable E)
{
IEnumerator e = E.GetEnumerator();
bool First = true;
Json.Append('[');
if (Indent.HasValue)
Indent = Indent + 1;
while (e.MoveNext())
{
if (First)
First = false;
else
Json.Append(',');
if (Indent.HasValue)
{
Json.AppendLine();
Json.Append(new string('\t', Indent.Value));
}
Encode(e.Current, Indent, Json);
}
if (!First && Indent.HasValue)
{
Json.AppendLine();
Indent = Indent - 1;
Json.Append(new string('\t', Indent.Value));
}
Json.Append(']');
}
else
throw new ArgumentException("Unsupported type: " + T.FullName, nameof(Object));
}
}
#endregion
}
}