-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJsonParser.pas
More file actions
469 lines (453 loc) · 12.2 KB
/
JsonParser.pas
File metadata and controls
469 lines (453 loc) · 12.2 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
type
TJsonNumber = Double;
TJsonString = WideString;
TJsonChar = WideChar;
TJsonWord = (JWUnknown, JWTrue, JWFalse, JWNull);
TJsonValueKind = (JVKUnknown, JVKNumber, JVKString, JVKWord, JVKArray, JVKObject);
TJsonValue = record
Kind: TJsonValueKind;
Index: Integer;
end;
TJsonArray = array of TJsonValue;
TJsonPair = record
Key: TJsonString;
Value: TJsonValue;
end;
TJsonObject = array of TJsonPair;
TJsonParserOutput = record
Numbers: array of TJsonNumber;
Strings: array of TJsonString;
Words: array of TJsonWord;
Arrays: array of TJsonArray;
Objects: array of TJsonObject; // The root object is the first one
Errors: array of TJsonString;
end;
TJsonParser = record
At: Integer; // The index of the current character
Ch: TJsonChar; // The current character
Text: TJsonString;
Output: TJsonParserOutput;
end;
TJsonValueParser = function (var JsonParser: TJsonParser): TJsonValue;
// Call error when something is wrong.
procedure Error(var JsonParser: TJsonParser; Msg: TJsonString);
var
ErrorMsg: TJsonString;
N: Integer;
begin
ErrorMsg := Format('Error: "%s". Position: %d. Text: "%s"', [Msg, JsonParser.At, JsonParser.Text]);
N := Length(JsonParser.Output.Errors);
SetLength(JsonParser.Output.Errors, N + 1);
JsonParser.Output.Errors[N] := ErrorMsg;
end;
function Next(var JsonParser: TJsonParser; C: TJsonChar): TJsonChar;
begin
Result := #0;
// If a non-#0 C parameter is provided, verify that it matches the current character.
if (C <> #0) and (C <> JsonParser.Ch) then
begin
Error(JsonParser, 'Expected "' + C + '" instead of "' + JsonParser.Ch + '"');
Exit;
end;
// Get the next character. When there are no more characters, return #0.
if JsonParser.At > Length(JsonParser.Text) then
begin
JsonParser.Ch := #0;
Exit;
end;
JsonParser.Ch := JsonParser.Text[JsonParser.At];
Inc(JsonParser.At);
Result := JsonParser.Ch;
end;
// Parse a number value.
function Number(var JsonParser: TJsonParser): Double;
var
S: WideString;
begin
Result := 0;
S := '';
if JsonParser.Ch = '-' then
begin
S := '-';
Next(JsonParser, '-');
end;
while (JsonParser.Ch >= '0') and (JsonParser.Ch <= '9') do
begin
S := S + JsonParser.Ch;
Next(JsonParser, #0);
end;
if JsonParser.Ch = '.' then
begin
S := S + '.';
while (Next(JsonParser, #0) <> #0) and (JsonParser.Ch >= '0') and (JsonParser.Ch <= '9') do
S := S + JsonParser.Ch;
end;
if (JsonParser.Ch = 'e') or (JsonParser.Ch = 'E') then
begin
S := S + JsonParser.Ch;
Next(JSonParser, #0);
if (JsonParser.Ch = '-') or (JsonParser.Ch = '+') then
begin
S := S + JsonParser.Ch;
Next(JsonParser, #0);
end;
while (JsonParser.Ch >= '0') and (JsonParser.Ch <= '9') do
begin
S := S + JsonParser.Ch;
Next(JsonParser, #0);
end;
end;
if S = '' then
Error(JsonParser, 'Bad number')
else
Result := StrToFloat(S);
end;
// Parse a string value.
function String_(var JsonParser: TJsonParser): TJsonString;
var
HexDigit, HexValue: Integer;
I: Integer;
SpecChar: TJsonChar;
begin
Result := '';
// When parsing for string values, we must look for " and \ characters.
if JsonParser.Ch = '"' then
begin
while Next(JsonParser, #0) <> #0 do
begin
if JsonParser.Ch = '"' then
begin
Next(JsonParser, #0);
Exit;
end;
if JsonParser.Ch = '\' then
begin
Next(JsonParser, #0);
if JsonParser.Ch = 'u' then
begin
HexValue := 0;
for I := 1 to 4 do
begin
HexDigit := StrToInt('0x' + Next(JsonParser, #0));
HexValue := HexValue * 16 + HexDigit;
end;
Result := Result + Chr(HexValue);
end
else
begin
case JsonParser.Ch of
'"': SpecChar := '"';
'\': SpecChar := '\';
'/': SpecChar := '/';
'b': SpecChar := #8;
'f': SpecChar := #12;
'n': SpecChar := #10;
'r': SpecChar := #13;
't': SpecChar := #9;
else
Break;
end;
Result := Result + SpecChar;
end;
end
else
Result := Result + JsonParser.Ch;
end;
end;
Error(JsonParser, 'Bad string');
end;
// Skip whitespace.
procedure White(var JsonParser: TJsonParser);
begin
while (JsonParser.Ch <> #0) and (JsonParser.Ch <= ' ') do
Next(JsonParser, #0);
end;
// true, false, or null.
function Word_(var JsonParser: TJsonParser): TJsonWord;
begin
Result := JWUnknown;
case JsonParser.Ch of
't':
begin
Next(JsonParser, 't');
Next(JsonParser, 'r');
Next(JsonParser, 'u');
Next(JsonParser, 'e');
Result := JWTrue;
Exit;
end;
'f':
begin
Next(JsonParser, 'f');
Next(JsonParser, 'a');
Next(JsonParser, 'l');
Next(JsonParser, 's');
Next(JsonParser, 'e');
Result := JWFalse;
Exit;
end;
'n':
begin
Next(JsonParser, 'n');
Next(JsonParser, 'u');
Next(JsonParser, 'l');
Next(JsonParser, 'l');
Result := JWNull;
Exit;
end;
end;
Error(JsonParser, 'Unexpected "' + JsonParser.Ch + '"');
end;
// Parse an array value.
function Array_(var JsonParser: TJsonParser; Value: TJsonValueParser): TJsonArray;
var
N: Integer;
begin
SetLength(Result, 0); // Empty array
N := 0;
if JsonParser.Ch = '[' then
begin
Next(JsonParser, '[');
White(JsonParser);
if JsonParser.Ch = ']' then
begin
Next(JsonParser, ']');
Exit; // Return empty array
end;
while JsonParser.Ch <> #0 do
begin
Inc(N);
SetLength(Result, N);
Result[N - 1] := Value(JsonParser);
White(JsonParser);
if JsonParser.Ch = ']' then
begin
Next(JsonParser, ']');
Exit;
end;
Next(JsonParser, ',');
White(JsonParser);
end;
end;
Error(JsonParser, 'Bad array');
end;
// Parse an object value.
function Object_(var JsonParser: TJsonParser; Value: TJsonValueParser): TJsonObject;
var
Key: TJsonString;
I, N: Integer;
begin
SetLength(Result, 0); // Empty object
N := 0;
if JsonParser.Ch = '{' then
begin
Next(JsonParser, '{');
White(JsonParser);
if JsonParser.Ch = '}' then
begin
Next(JsonParser, '}');
Exit; // Return empty object
end;
while JsonParser.Ch <> #0 do
begin
Key := String_(JsonParser);
White(JsonParser);
Next(JsonParser, ':');
for I := 0 to N - 1 do
begin
if Key = Result[I].Key then
Error(JsonParser, 'Duplicate key "' + Key + '"');
end;
Inc(N);
SetLength(Result, N);
Result[N - 1].Key := Key;
Result[N - 1].Value := Value(JsonParser);
White(JsonParser);
if JsonParser.Ch = '}' then
begin
Next(JsonParser, '}');
Exit;
end;
Next(JsonParser, ',');
White(JsonParser);
end;
end;
Error(JsonParser, 'Bad object');
end;
// Parse a JSON value. It could be a number, a string, a word, an array, or an object.
function Value(var JsonParser: TJsonParser): TJsonValue;
var
N: Integer;
A: TJsonArray;
O: TJsonObject;
begin
Result.Kind := JVKUnknown;
Result.Index := -1;
White(JsonParser);
case JsonParser.Ch of
'-', '0'..'9':
begin
N := Length(JsonParser.Output.Numbers);
SetLength(JsonParser.Output.Numbers, N + 1);
JsonParser.Output.Numbers[N] := Number(JsonParser);
Result.Kind := JVKNumber;
Result.Index := N;
end;
'"':
begin
N := Length(JsonParser.Output.Strings);
SetLength(JsonParser.Output.Strings, N + 1);
JsonParser.Output.Strings[N] := String_(JsonParser);
Result.Kind := JVKString;
Result.Index := N;
end;
't', 'f', 'n':
begin
N := Length(JsonParser.Output.Words);
SetLength(JsonParser.Output.Words, N + 1);
JsonParser.Output.Words[N] := Word_(JsonParser);
Result.Kind := JVKWord;
Result.Index := N;
end;
'[':
begin
N := Length(JsonParser.Output.Arrays);
SetLength(JsonParser.Output.Arrays, N + 1);
A := Array_(JsonParser, @Value);
JsonParser.Output.Arrays[N] := A;
Result.Kind := JVKArray;
Result.Index := N;
end;
'{':
begin
N := Length(JsonParser.Output.Objects);
SetLength(JsonParser.Output.Objects, N + 1);
O := Object_(JsonParser, @Value);
JsonParser.Output.Objects[N] := O;
Result.Kind := JVKObject;
Result.Index := N;
end;
else
Error(JsonParser, 'Bad JSON value');
end;
end;
procedure ParseJson(var JsonParser: TJsonParser; const Source: WideString);
begin
if Source = '' then
Exit;
JsonParser.At := 1;
JsonParser.Ch := ' ';
JsonParser.Text := Source;
Value(JsonParser);
White(JsonParser);
if JsonParser.Ch <> #0 then
Error(JsonParser, 'Syntax error');
end;
procedure ClearJsonParser(var JsonParser: TJsonParser);
begin
JsonParser.At := 0;
JsonParser.Ch := #0;
JsonParser.Text := '';
SetLength(JsonParser.Output.Numbers, 0);
SetLength(JsonParser.Output.Strings, 0);
SetLength(JsonParser.Output.Words, 0);
SetLength(JsonParser.Output.Arrays, 0);
SetLength(JsonParser.Output.Objects, 0);
SetLength(JsonParser.Output.Errors, 0);
end;
function IndentString(Indent: Integer): TJsonString;
var
I: Integer;
begin
for I := 1 to 4 * Indent do
Result := Result + ' ';
end;
procedure PrintJsonObject(const Output: TJsonParserOutput; Index, Indent: Integer; Lines: TStringList; CommaAfter: TJsonString); forward;
procedure PrintJsonArray(const Output: TJsonParserOutput; Index, Indent: Integer; Lines: TStringList; CommaAfter: TJsonString);
var
IS0, IS1: TJsonString;
I: Integer;
V: TJsonValue;
S, Comma: TJsonString;
begin
IS0 := IndentString(Indent);
IS1 := IndentString(Indent + 1);
Lines.Add(IS0 + '[');
for I := 0 to Length(Output.Arrays[Index]) - 1 do
begin
if I < Length(Output.Arrays[Index]) - 1 then
Comma := ','
else
Comma := '';
V := Output.Arrays[Index][I];
case V.Kind of
JVKUnknown: Lines.Add(IS1 + '?kind?' + Comma);
JVKNumber: Lines.Add(Format('%s%g' + Comma, [IS1, Output.Numbers[V.Index]]));
JVKString: Lines.Add(IS1 + '"' + Output.Strings[V.Index] + '"' + Comma);
JVKWord:
begin
case Output.Words[V.Index] of
JWUnknown: S := '?word?';
JWTrue: S := 'true';
JWFalse: S := 'false';
JWNull: S := 'null';
end;
Lines.Add(IS1 + S + Comma);
end;
JVKArray: PrintJsonArray(Output, V.Index, Indent + 1, Lines, Comma);
JVKObject: PrintJsonObject(Output, V.Index, Indent + 1, Lines, Comma);
end;
end;
Lines.Add(IS0 + ']' + CommaAfter);
end;
procedure PrintJsonObject(const Output: TJsonParserOutput; Index, Indent: Integer; Lines: TStringList; CommaAfter: TJsonString);
var
IS0, IS1: TJsonString;
I: Integer;
K: TJsonString;
V: TJsonValue;
S, Comma: TJsonString;
begin
IS0 := IndentString(Indent);
IS1 := IndentString(Indent + 1);
Lines.Add(IS0 + '{');
for I := 0 to Length(Output.Objects[Index]) - 1 do
begin
if I < Length(Output.Objects[Index]) - 1 then
Comma := ','
else
Comma := '';
K := '"' + Output.Objects[Index][I].Key + '"';
V := Output.Objects[Index][I].Value;
case V.Kind of
JVKUnknown: Lines.Add(IS1 + K + ': ?kind?' + Comma);
JVKNumber: Lines.Add(Format('%s: %g' + Comma, [IS1 + K, Output.Numbers[V.Index]]));
JVKString: Lines.Add(IS1 + K + ': "' + Output.Strings[V.Index] + '"' + Comma);
JVKWord:
begin
case Output.Words[V.Index] of
JWUnknown: S := '?word?';
JWTrue: S := 'true';
JWFalse: S := 'false';
JWNull: S := 'null';
end;
Lines.Add(IS1 + K + ': ' + S + Comma);
end;
JVKArray:
begin
Lines.Add(IS1 + K + ':');
PrintJsonArray(Output, V.Index, Indent + 1, Lines, Comma);
end;
JVKObject:
begin
Lines.Add(IS1 + K + ':');
PrintJsonObject(Output, V.Index, Indent + 1, Lines, Comma);
end;
end;
end;
Lines.Add(IS0 + '}' + CommaAfter);
end;
procedure PrintJsonParserOutput(const Output: TJsonParserOutput; Lines: TStringList);
begin
PrintJsonObject(Output, 0, 0, Lines, '');
end;