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
|
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
namespace I2.Loc.SimpleJSON;
public class JSONNode
{
public virtual JSONNode this[int aIndex]
{
get
{
return null;
}
set
{
}
}
public virtual JSONNode this[string aKey]
{
get
{
return null;
}
set
{
}
}
public virtual string Value
{
get
{
return "";
}
set
{
}
}
public virtual int Count => 0;
public virtual IEnumerable<JSONNode> Childs
{
get
{
yield break;
}
}
public IEnumerable<JSONNode> DeepChilds
{
get
{
foreach (JSONNode child in Childs)
{
foreach (JSONNode deepChild in child.DeepChilds)
{
yield return deepChild;
}
}
}
}
public virtual int AsInt
{
get
{
int result = 0;
if (int.TryParse(Value, out result))
{
return result;
}
return 0;
}
set
{
Value = value.ToString();
}
}
public virtual float AsFloat
{
get
{
float result = 0f;
if (float.TryParse(Value, out result))
{
return result;
}
return 0f;
}
set
{
Value = value.ToString();
}
}
public virtual double AsDouble
{
get
{
double result = 0.0;
if (double.TryParse(Value, out result))
{
return result;
}
return 0.0;
}
set
{
Value = value.ToString();
}
}
public virtual bool AsBool
{
get
{
bool result = false;
if (bool.TryParse(Value, out result))
{
return result;
}
return !string.IsNullOrEmpty(Value);
}
set
{
Value = (value ? "true" : "false");
}
}
public virtual JSONArray AsArray => this as JSONArray;
public virtual JSONClass AsObject => this as JSONClass;
public virtual void Add(string aKey, JSONNode aItem)
{
}
public virtual void Add(JSONNode aItem)
{
Add("", aItem);
}
public virtual JSONNode Remove(string aKey)
{
return null;
}
public virtual JSONNode Remove(int aIndex)
{
return null;
}
public virtual JSONNode Remove(JSONNode aNode)
{
return aNode;
}
public override string ToString()
{
return "JSONNode";
}
public virtual string ToString(string aPrefix)
{
return "JSONNode";
}
public static implicit operator JSONNode(string s)
{
return new JSONData(s);
}
public static implicit operator string(JSONNode d)
{
if (!(d == null))
{
return d.Value;
}
return null;
}
public static bool operator ==(JSONNode a, object b)
{
if (b == null && a is JSONLazyCreator)
{
return true;
}
return (object)a == b;
}
public static bool operator !=(JSONNode a, object b)
{
return !(a == b);
}
public override bool Equals(object obj)
{
return (object)this == obj;
}
public override int GetHashCode()
{
return base.GetHashCode();
}
internal static string Escape(string aText)
{
string text = "";
for (int i = 0; i < aText.Length; i++)
{
char c = aText[i];
text = c switch
{
'\\' => text + "\\\\",
'"' => text + "\\\"",
'\n' => text + "\\n",
'\r' => text + "\\r",
'\t' => text + "\\t",
'\b' => text + "\\b",
'\f' => text + "\\f",
_ => text + c,
};
}
return text;
}
public static JSONNode Parse(string aJSON)
{
Stack<JSONNode> stack = new Stack<JSONNode>();
JSONNode jSONNode = null;
int i = 0;
string text = "";
string text2 = "";
bool flag = false;
for (; i < aJSON.Length; i++)
{
switch (aJSON[i])
{
case '{':
if (flag)
{
text += aJSON[i];
break;
}
stack.Push(new JSONClass());
if (jSONNode != null)
{
text2 = text2.Trim();
if (jSONNode is JSONArray)
{
jSONNode.Add(stack.Peek());
}
else if (text2 != "")
{
jSONNode.Add(text2, stack.Peek());
}
}
text2 = "";
text = "";
jSONNode = stack.Peek();
break;
case '[':
if (flag)
{
text += aJSON[i];
break;
}
stack.Push(new JSONArray());
if (jSONNode != null)
{
text2 = text2.Trim();
if (jSONNode is JSONArray)
{
jSONNode.Add(stack.Peek());
}
else if (text2 != "")
{
jSONNode.Add(text2, stack.Peek());
}
}
text2 = "";
text = "";
jSONNode = stack.Peek();
break;
case ']':
case '}':
if (flag)
{
text += aJSON[i];
break;
}
if (stack.Count == 0)
{
throw new Exception("JSON Parse: Too many closing brackets");
}
stack.Pop();
if (text != "")
{
text2 = text2.Trim();
if (jSONNode is JSONArray)
{
jSONNode.Add(text);
}
else if (text2 != "")
{
jSONNode.Add(text2, text);
}
}
text2 = "";
text = "";
if (stack.Count > 0)
{
jSONNode = stack.Peek();
}
break;
case ':':
if (flag)
{
text += aJSON[i];
break;
}
text2 = text;
text = "";
break;
case '"':
flag = !flag;
break;
case ',':
if (flag)
{
text += aJSON[i];
break;
}
if (text != "")
{
if (jSONNode is JSONArray)
{
jSONNode.Add(text);
}
else if (text2 != "")
{
jSONNode.Add(text2, text);
}
}
text2 = "";
text = "";
break;
case '\t':
case ' ':
if (flag)
{
text += aJSON[i];
}
break;
case '\\':
i++;
if (flag)
{
char c = aJSON[i];
switch (c)
{
case 't':
text += "\t";
break;
case 'r':
text += "\r";
break;
case 'n':
text += "\n";
break;
case 'b':
text += "\b";
break;
case 'f':
text += "\f";
break;
case 'u':
{
string s = aJSON.Substring(i + 1, 4);
text += (char)int.Parse(s, NumberStyles.AllowHexSpecifier);
i += 4;
break;
}
default:
text += c;
break;
}
}
break;
default:
text += aJSON[i];
break;
case '\n':
case '\r':
break;
}
}
if (flag)
{
throw new Exception("JSON Parse: Quotation marks seems to be messed up.");
}
return jSONNode;
}
public virtual void Serialize(BinaryWriter aWriter)
{
}
public void SaveToStream(Stream aData)
{
BinaryWriter aWriter = new BinaryWriter(aData);
Serialize(aWriter);
}
public void SaveToCompressedStream(Stream aData)
{
throw new Exception("Can't use compressed functions. You need include the SharpZipLib and uncomment the define at the top of SimpleJSON");
}
public void SaveToCompressedFile(string aFileName)
{
throw new Exception("Can't use compressed functions. You need include the SharpZipLib and uncomment the define at the top of SimpleJSON");
}
public string SaveToCompressedBase64()
{
throw new Exception("Can't use compressed functions. You need include the SharpZipLib and uncomment the define at the top of SimpleJSON");
}
public void SaveToFile(string aFileName)
{
Directory.CreateDirectory(new FileInfo(aFileName).Directory.FullName);
using FileStream aData = File.OpenWrite(aFileName);
SaveToStream(aData);
}
public string SaveToBase64()
{
using MemoryStream memoryStream = new MemoryStream();
SaveToStream(memoryStream);
memoryStream.Position = 0L;
return Convert.ToBase64String(memoryStream.ToArray());
}
public static JSONNode Deserialize(BinaryReader aReader)
{
JSONBinaryTag jSONBinaryTag = (JSONBinaryTag)aReader.ReadByte();
switch (jSONBinaryTag)
{
case JSONBinaryTag.Array:
{
int num2 = aReader.ReadInt32();
JSONArray jSONArray = new JSONArray();
for (int j = 0; j < num2; j++)
{
jSONArray.Add(Deserialize(aReader));
}
return jSONArray;
}
case JSONBinaryTag.Class:
{
int num = aReader.ReadInt32();
JSONClass jSONClass = new JSONClass();
for (int i = 0; i < num; i++)
{
string aKey = aReader.ReadString();
JSONNode aItem = Deserialize(aReader);
jSONClass.Add(aKey, aItem);
}
return jSONClass;
}
case JSONBinaryTag.Value:
return new JSONData(aReader.ReadString());
case JSONBinaryTag.IntValue:
return new JSONData(aReader.ReadInt32());
case JSONBinaryTag.DoubleValue:
return new JSONData(aReader.ReadDouble());
case JSONBinaryTag.BoolValue:
return new JSONData(aReader.ReadBoolean());
case JSONBinaryTag.FloatValue:
return new JSONData(aReader.ReadSingle());
default:
throw new Exception("Error deserializing JSON. Unknown tag: " + jSONBinaryTag);
}
}
public static JSONNode LoadFromCompressedFile(string aFileName)
{
throw new Exception("Can't use compressed functions. You need include the SharpZipLib and uncomment the define at the top of SimpleJSON");
}
public static JSONNode LoadFromCompressedStream(Stream aData)
{
throw new Exception("Can't use compressed functions. You need include the SharpZipLib and uncomment the define at the top of SimpleJSON");
}
public static JSONNode LoadFromCompressedBase64(string aBase64)
{
throw new Exception("Can't use compressed functions. You need include the SharpZipLib and uncomment the define at the top of SimpleJSON");
}
public static JSONNode LoadFromStream(Stream aData)
{
using BinaryReader aReader = new BinaryReader(aData);
return Deserialize(aReader);
}
public static JSONNode LoadFromFile(string aFileName)
{
using FileStream aData = File.OpenRead(aFileName);
return LoadFromStream(aData);
}
public static JSONNode LoadFromBase64(string aBase64)
{
return LoadFromStream(new MemoryStream(Convert.FromBase64String(aBase64))
{
Position = 0L
});
}
}
|