-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjson-parser.js
459 lines (432 loc) · 16.3 KB
/
json-parser.js
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
// deno-lint-ignore-file no-unused-vars no-case-declarations
// Modernized/de-nodified version of creationix/jsonparse
// Copyright (c) 2012 Tim Caswell
// Licensed under the MIT (licenses/MIT.md) license.
// TODO: TypeScript conversion?
// TODO: Integrate with other modules for better performance
// Named constants with unique integer values
const C = {};
// Tokens
const LEFT_BRACE = C.LEFT_BRACE = 0x1;
const RIGHT_BRACE = C.RIGHT_BRACE = 0x2;
const LEFT_BRACKET = C.LEFT_BRACKET = 0x3;
const RIGHT_BRACKET = C.RIGHT_BRACKET = 0x4;
const COLON = C.COLON = 0x5;
const COMMA = C.COMMA = 0x6;
const TRUE = C.TRUE = 0x7;
const FALSE = C.FALSE = 0x8;
const NULL = C.NULL = 0x9;
const STRING = C.STRING = 0xa;
const NUMBER = C.NUMBER = 0xb;
// Tokenizer States
const START = C.START = 0x11;
const STOP = C.STOP = 0x12;
const TRUE1 = C.TRUE1 = 0x21;
const TRUE2 = C.TRUE2 = 0x22;
const TRUE3 = C.TRUE3 = 0x23;
const FALSE1 = C.FALSE1 = 0x31;
const FALSE2 = C.FALSE2 = 0x32;
const FALSE3 = C.FALSE3 = 0x33;
const FALSE4 = C.FALSE4 = 0x34;
const NULL1 = C.NULL1 = 0x41;
const NULL2 = C.NULL2 = 0x42;
const NULL3 = C.NULL3 = 0x43;
const NUMBER1 = C.NUMBER1 = 0x51;
const NUMBER3 = C.NUMBER3 = 0x53;
const STRING1 = C.STRING1 = 0x61;
const STRING2 = C.STRING2 = 0x62;
const STRING3 = C.STRING3 = 0x63;
const STRING4 = C.STRING4 = 0x64;
const STRING5 = C.STRING5 = 0x65;
const STRING6 = C.STRING6 = 0x66;
// Parser States
const VALUE = C.VALUE = 0x71;
const KEY = C.KEY = 0x72;
// Parser Modes
const OBJECT = C.OBJECT = 0x81;
const ARRAY = C.ARRAY = 0x82;
// Character constants
const BACK_SLASH = "\\".charCodeAt(0);
const FORWARD_SLASH = "\/".charCodeAt(0);
const BACKSPACE = "\b".charCodeAt(0);
const FORM_FEED = "\f".charCodeAt(0);
const NEWLINE = "\n".charCodeAt(0);
const CARRIAGE_RETURN = "\r".charCodeAt(0);
const TAB = "\t".charCodeAt(0);
const STRING_BUFFER_SIZE = 64 * 1024;
function alloc(size) {
return new Uint8Array(size);
}
class Parser {
constructor() {
this.tState = START;
this.value = undefined;
this.string = undefined; // string data
this.stringBuffer = alloc(STRING_BUFFER_SIZE);
this.stringBufferOffset = 0;
this.unicode = undefined; // unicode escapes
this.highSurrogate = undefined;
this.key = undefined;
this.mode = undefined;
this.stack = [];
this.state = VALUE;
this.bytes_remaining = 0; // number of bytes remaining in multi byte utf8 char to read after split boundary
this.bytes_in_sequence = 0; // bytes in multi byte utf8 char to read
this.temp_buffs = { "2": alloc(2), "3": alloc(3), "4": alloc(4) }; // for rebuilding chars split before boundary is reached
this.encoder = new TextEncoder();
this.decoder = new TextDecoder();
// Stream offset
this.offset = -1;
}
// Slow code to string converter (only used when throwing syntax errors)
static toknam(code) {
const keys = Object.keys(C);
for (let i = 0, l = keys.length; i < l; i++) {
const key = keys[i];
if (C[key] === code) { return key; }
}
return code && ("0x" + code.toString(16));
}
encode(string) { return this.encoder.encode(string) }
decode(buffer) { return this.decoder.decode(buffer) }
onError(err) { throw err; }
charError(buffer, i) {
this.tState = STOP;
this.onError(new Error("Unexpected " + JSON.stringify(String.fromCharCode(buffer[i])) + " at position " + i + " in state " + Parser.toknam(this.tState)));
}
appendStringChar(char) {
if (this.stringBufferOffset >= STRING_BUFFER_SIZE) {
this.string += this.decode(this.stringBuffer);
this.stringBufferOffset = 0;
}
this.stringBuffer[this.stringBufferOffset++] = char;
}
appendStringBuf(buf, start, end) {
let size = buf.length;
if (typeof start === 'number') {
if (typeof end === 'number') {
if (end < 0) {
// adding a negative end decreeses the size
size = buf.length - start + end;
} else {
size = end - start;
}
} else {
size = buf.length - start;
}
}
if (size < 0) {
size = 0;
}
if (this.stringBufferOffset + size > STRING_BUFFER_SIZE) {
this.string += this.decode(this.stringBuffer.subarray(0, this.stringBufferOffset));
this.stringBufferOffset = 0;
}
this.stringBuffer.set(buf.subarray(start, end), this.stringBufferOffset);
this.stringBufferOffset += size;
}
write(buffer) {
if (typeof buffer === "string") buffer = this.encode(buffer);
let n;
for (let i = 0, l = buffer.length; i < l; i++) {
if (this.tState === START) {
n = buffer[i];
this.offset++;
if (n === 0x7b) {
this.onToken(LEFT_BRACE, "{"); // {
} else if (n === 0x7d) {
this.onToken(RIGHT_BRACE, "}"); // }
} else if (n === 0x5b) {
this.onToken(LEFT_BRACKET, "["); // [
} else if (n === 0x5d) {
this.onToken(RIGHT_BRACKET, "]"); // ]
} else if (n === 0x3a) {
this.onToken(COLON, ":"); // :
} else if (n === 0x2c) {
this.onToken(COMMA, ","); // ,
} else if (n === 0x74) {
this.tState = TRUE1; // t
} else if (n === 0x66) {
this.tState = FALSE1; // f
} else if (n === 0x6e) {
this.tState = NULL1; // n
} else if (n === 0x22) { // "
this.string = "";
this.stringBufferOffset = 0;
this.tState = STRING1;
} else if (n === 0x2d) {
this.string = "-"; this.tState = NUMBER1; // -
} else {
if (n >= 0x30 && n < 0x40) { // 1-9
this.string = String.fromCharCode(n); this.tState = NUMBER3;
} else if (n === 0x20 || n === 0x09 || n === 0x0a || n === 0x0d) {
// whitespace
} else {
return this.charError(buffer, i);
}
}
} else if (this.tState === STRING1) { // After open quote
n = buffer[i]; // get current byte from buffer
// check for carry over of a multi byte char split between data chunks
// & fill temp buffer it with start of this data chunk up to the boundary limit set in the last iteration
if (this.bytes_remaining > 0) {
let j;
for (j = 0; j < this.bytes_remaining; j++) {
this.temp_buffs[this.bytes_in_sequence][this.bytes_in_sequence - this.bytes_remaining + j] = buffer[j];
}
this.appendStringBuf(this.temp_buffs[this.bytes_in_sequence]);
this.bytes_in_sequence = this.bytes_remaining = 0;
i = i + j - 1;
} else if (this.bytes_remaining === 0 && n >= 128) { // else if no remainder bytes carried over, parse multi byte (>=128) chars one at a time
if (n <= 193 || n > 244) {
return this.onError(new Error("Invalid UTF-8 character at position " + i + " in state " + Parser.toknam(this.tState)));
}
if ((n >= 194) && (n <= 223)) this.bytes_in_sequence = 2;
if ((n >= 224) && (n <= 239)) this.bytes_in_sequence = 3;
if ((n >= 240) && (n <= 244)) this.bytes_in_sequence = 4;
if ((this.bytes_in_sequence + i) > buffer.length) { // if bytes needed to complete char fall outside buffer length, we have a boundary split
for (let k = 0; k <= (buffer.length - 1 - i); k++) {
this.temp_buffs[this.bytes_in_sequence][k] = buffer[i + k]; // fill temp buffer of correct size with bytes available in this chunk
}
this.bytes_remaining = (i + this.bytes_in_sequence) - buffer.length;
i = buffer.length - 1;
} else {
this.appendStringBuf(buffer, i, i + this.bytes_in_sequence);
i = i + this.bytes_in_sequence - 1;
}
} else if (n === 0x22) {
this.tState = START;
this.string += this.decode(this.stringBuffer.subarray(0, this.stringBufferOffset));
this.stringBufferOffset = 0;
this.onToken(STRING, this.string);
this.offset += this.encode(this.string).length + 1;
this.string = undefined;
}
else if (n === 0x5c) {
this.tState = STRING2;
}
else if (n >= 0x20) { this.appendStringChar(n); }
else {
return this.charError(buffer, i);
}
} else if (this.tState === STRING2) { // After backslash
n = buffer[i];
if (n === 0x22) {
this.appendStringChar(n); this.tState = STRING1;
} else if (n === 0x5c) {
this.appendStringChar(BACK_SLASH); this.tState = STRING1;
} else if (n === 0x2f) {
this.appendStringChar(FORWARD_SLASH); this.tState = STRING1;
} else if (n === 0x62) {
this.appendStringChar(BACKSPACE); this.tState = STRING1;
} else if (n === 0x66) {
this.appendStringChar(FORM_FEED); this.tState = STRING1;
} else if (n === 0x6e) {
this.appendStringChar(NEWLINE); this.tState = STRING1;
} else if (n === 0x72) {
this.appendStringChar(CARRIAGE_RETURN); this.tState = STRING1;
} else if (n === 0x74) {
this.appendStringChar(TAB); this.tState = STRING1;
} else if (n === 0x75) {
this.unicode = ""; this.tState = STRING3;
} else {
return this.charError(buffer, i);
}
} else if (this.tState === STRING3 || this.tState === STRING4 || this.tState === STRING5 || this.tState === STRING6) { // unicode hex codes
n = buffer[i];
// 0-9 A-F a-f
if ((n >= 0x30 && n < 0x40) || (n > 0x40 && n <= 0x46) || (n > 0x60 && n <= 0x66)) {
this.unicode += String.fromCharCode(n);
if (this.tState++ === STRING6) {
const intVal = parseInt(this.unicode, 16);
this.unicode = undefined;
if (this.highSurrogate !== undefined && intVal >= 0xDC00 && intVal < (0xDFFF + 1)) { //<56320,57343> - lowSurrogate
this.appendStringBuf(this.encode(String.fromCharCode(this.highSurrogate, intVal)));
this.highSurrogate = undefined;
} else if (this.highSurrogate === undefined && intVal >= 0xD800 && intVal < (0xDBFF + 1)) { //<55296,56319> - highSurrogate
this.highSurrogate = intVal;
} else {
if (this.highSurrogate !== undefined) {
this.appendStringBuf(this.encode(String.fromCharCode(this.highSurrogate)));
this.highSurrogate = undefined;
}
this.appendStringBuf(this.encode(String.fromCharCode(intVal)));
}
this.tState = STRING1;
}
} else {
return this.charError(buffer, i);
}
} else if (this.tState === NUMBER1 || this.tState === NUMBER3) {
n = buffer[i];
switch (n) {
case 0x30: // 0
case 0x31: // 1
case 0x32: // 2
case 0x33: // 3
case 0x34: // 4
case 0x35: // 5
case 0x36: // 6
case 0x37: // 7
case 0x38: // 8
case 0x39: // 9
case 0x2e: // .
case 0x65: // e
case 0x45: // E
case 0x2b: // +
case 0x2d: // -
this.string += String.fromCharCode(n);
this.tState = NUMBER3;
break;
default:
this.tState = START;
const error = this.numberReviver(this.string);
if (error) {
return error;
}
this.offset += this.string.length - 1;
this.string = undefined;
i--;
break;
}
} else if (this.tState === TRUE1) { // r
if (buffer[i] === 0x72) { this.tState = TRUE2; }
else { return this.charError(buffer, i); }
} else if (this.tState === TRUE2) { // u
if (buffer[i] === 0x75) { this.tState = TRUE3; }
else { return this.charError(buffer, i); }
} else if (this.tState === TRUE3) { // e
if (buffer[i] === 0x65) { this.tState = START; this.onToken(TRUE, true); this.offset += 3; }
else { return this.charError(buffer, i); }
} else if (this.tState === FALSE1) { // a
if (buffer[i] === 0x61) { this.tState = FALSE2; }
else { return this.charError(buffer, i); }
} else if (this.tState === FALSE2) { // l
if (buffer[i] === 0x6c) { this.tState = FALSE3; }
else { return this.charError(buffer, i); }
} else if (this.tState === FALSE3) { // s
if (buffer[i] === 0x73) { this.tState = FALSE4; }
else { return this.charError(buffer, i); }
} else if (this.tState === FALSE4) { // e
if (buffer[i] === 0x65) { this.tState = START; this.onToken(FALSE, false); this.offset += 4; }
else { return this.charError(buffer, i); }
} else if (this.tState === NULL1) { // u
if (buffer[i] === 0x75) { this.tState = NULL2; }
else { return this.charError(buffer, i); }
} else if (this.tState === NULL2) { // l
if (buffer[i] === 0x6c) { this.tState = NULL3; }
else { return this.charError(buffer, i); }
} else if (this.tState === NULL3) { // l
if (buffer[i] === 0x6c) { this.tState = START; this.onToken(NULL, null); this.offset += 3; }
else { return this.charError(buffer, i); }
}
}
}
parseError(token, value) {
this.tState = STOP;
this.onError(new Error("Unexpected " + Parser.toknam(token) + (value ? ("(" + JSON.stringify(value) + ")") : "") + " in state " + Parser.toknam(this.state)));
}
push() {
this.stack.push({ value: this.value, key: this.key, mode: this.mode });
}
pop() {
const value = this.value;
const parent = this.stack.pop();
this.value = parent.value;
this.key = parent.key;
this.mode = parent.mode;
this.emit(value);
if (!this.mode) { this.state = VALUE; }
}
emit(value) {
if (this.mode) { this.state = COMMA; }
this.onValue(value);
}
onValue(value) {
// Override me
}
onToken(token, value) {
if (this.state === VALUE) {
if (token === STRING || token === NUMBER || token === TRUE || token === FALSE || token === NULL) {
if (this.value) {
this.value[this.key] = value;
}
this.emit(value);
} else if (token === LEFT_BRACE) {
this.push();
if (this.value) {
this.value = this.value[this.key] = {};
} else {
this.value = {};
}
this.key = undefined;
this.state = KEY;
this.mode = OBJECT;
} else if (token === LEFT_BRACKET) {
this.push();
if (this.value) {
this.value = this.value[this.key] = [];
} else {
this.value = [];
}
this.key = 0;
this.mode = ARRAY;
this.state = VALUE;
} else if (token === RIGHT_BRACE) {
if (this.mode === OBJECT) {
this.pop();
} else {
return this.parseError(token, value);
}
} else if (token === RIGHT_BRACKET) {
if (this.mode === ARRAY) {
this.pop();
} else {
return this.parseError(token, value);
}
} else {
return this.parseError(token, value);
}
} else if (this.state === KEY) {
if (token === STRING) {
this.key = value;
this.state = COLON;
} else if (token === RIGHT_BRACE) {
this.pop();
} else {
return this.parseError(token, value);
}
} else if (this.state === COLON) {
if (token === COLON) { this.state = VALUE; }
else { return this.parseError(token, value); }
} else if (this.state === COMMA) {
if (token === COMMA) {
if (this.mode === ARRAY) { this.key++; this.state = VALUE; }
else if (this.mode === OBJECT) { this.state = KEY; }
} else if (token === RIGHT_BRACKET && this.mode === ARRAY || token === RIGHT_BRACE && this.mode === OBJECT) {
this.pop();
} else {
return this.parseError(token, value);
}
} else {
return this.parseError(token, value);
}
}
// Override to implement your own number reviver.
// Any value returned is treated as error and will interrupt parsing.
numberReviver(text) {
const result = Number(text);
if (isNaN(result)) {
return this.charError(buffer, i);
}
if ((text.match(/[0-9]+/) == text) && (result.toString() != text)) {
// Long string of digits which is an ID string and not valid and/or safe JavaScript integer Number
this.onToken(STRING, text);
} else {
this.onToken(NUMBER, result);
}
}
}
Parser.C = C;
export { Parser as JSONParser };
export default Parser;