parse.go
14.5 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
package json
import (
"bytes"
"math"
"reflect"
"unicode"
"unicode/utf16"
"unicode/utf8"
"github.com/segmentio/encoding/ascii"
)
// All spaces characters defined in the json specification.
const (
sp = ' '
ht = '\t'
nl = '\n'
cr = '\r'
)
const (
escape = '\\'
quote = '"'
)
func skipSpaces(b []byte) []byte {
b, _ = skipSpacesN(b)
return b
}
func skipSpacesN(b []byte) ([]byte, int) {
for i := range b {
switch b[i] {
case sp, ht, nl, cr:
default:
return b[i:], i
}
}
return nil, 0
}
// parseInt parses a decimanl representation of an int64 from b.
//
// The function is equivalent to calling strconv.ParseInt(string(b), 10, 64) but
// it prevents Go from making a memory allocation for converting a byte slice to
// a string (escape analysis fails due to the error returned by strconv.ParseInt).
//
// Because it only works with base 10 the function is also significantly faster
// than strconv.ParseInt.
func parseInt(b []byte, t reflect.Type) (int64, []byte, error) {
var value int64
var count int
if len(b) == 0 {
return 0, b, syntaxError(b, "cannot decode integer from an empty input")
}
if b[0] == '-' {
const max = math.MinInt64
const lim = max / 10
if len(b) == 1 {
return 0, b, syntaxError(b, "cannot decode integer from '-'")
}
if len(b) > 2 && b[1] == '0' && '0' <= b[2] && b[2] <= '9' {
return 0, b, syntaxError(b, "invalid leading character '0' in integer")
}
for _, d := range b[1:] {
if !(d >= '0' && d <= '9') {
if count == 0 {
b, err := inputError(b, t)
return 0, b, err
}
break
}
if value < lim {
return 0, b, unmarshalOverflow(b, t)
}
value *= 10
x := int64(d - '0')
if value < (max + x) {
return 0, b, unmarshalOverflow(b, t)
}
value -= x
count++
}
count++
} else {
const max = math.MaxInt64
const lim = max / 10
if len(b) > 1 && b[0] == '0' && '0' <= b[1] && b[1] <= '9' {
return 0, b, syntaxError(b, "invalid leading character '0' in integer")
}
for _, d := range b {
if !(d >= '0' && d <= '9') {
if count == 0 {
b, err := inputError(b, t)
return 0, b, err
}
break
}
x := int64(d - '0')
if value > lim {
return 0, b, unmarshalOverflow(b, t)
}
if value *= 10; value > (max - x) {
return 0, b, unmarshalOverflow(b, t)
}
value += x
count++
}
}
if count < len(b) {
switch b[count] {
case '.', 'e', 'E': // was this actually a float?
v, r, err := parseNumber(b)
if err != nil {
v, r = b[:count+1], b[count+1:]
}
return 0, r, unmarshalTypeError(v, t)
}
}
return value, b[count:], nil
}
// parseUint is like parseInt but for unsigned integers.
func parseUint(b []byte, t reflect.Type) (uint64, []byte, error) {
const max = math.MaxUint64
const lim = max / 10
var value uint64
var count int
if len(b) == 0 {
return 0, b, syntaxError(b, "cannot decode integer value from an empty input")
}
if len(b) > 1 && b[0] == '0' && '0' <= b[1] && b[1] <= '9' {
return 0, b, syntaxError(b, "invalid leading character '0' in integer")
}
for _, d := range b {
if !(d >= '0' && d <= '9') {
if count == 0 {
b, err := inputError(b, t)
return 0, b, err
}
break
}
x := uint64(d - '0')
if value > lim {
return 0, b, unmarshalOverflow(b, t)
}
if value *= 10; value > (max - x) {
return 0, b, unmarshalOverflow(b, t)
}
value += x
count++
}
if count < len(b) {
switch b[count] {
case '.', 'e', 'E': // was this actually a float?
v, r, err := parseNumber(b)
if err != nil {
v, r = b[:count+1], b[count+1:]
}
return 0, r, unmarshalTypeError(v, t)
}
}
return value, b[count:], nil
}
// parseUintHex parses a hexadecimanl representation of a uint64 from b.
//
// The function is equivalent to calling strconv.ParseUint(string(b), 16, 64) but
// it prevents Go from making a memory allocation for converting a byte slice to
// a string (escape analysis fails due to the error returned by strconv.ParseUint).
//
// Because it only works with base 16 the function is also significantly faster
// than strconv.ParseUint.
func parseUintHex(b []byte) (uint64, []byte, error) {
const max = math.MaxUint64
const lim = max / 0x10
var value uint64
var count int
if len(b) == 0 {
return 0, b, syntaxError(b, "cannot decode hexadecimal value from an empty input")
}
parseLoop:
for i, d := range b {
var x uint64
switch {
case d >= '0' && d <= '9':
x = uint64(d - '0')
case d >= 'A' && d <= 'F':
x = uint64(d-'A') + 0xA
case d >= 'a' && d <= 'f':
x = uint64(d-'a') + 0xA
default:
if i == 0 {
return 0, b, syntaxError(b, "expected hexadecimal digit but found '%c'", d)
}
break parseLoop
}
if value > lim {
return 0, b, syntaxError(b, "hexadecimal value out of range")
}
if value *= 0x10; value > (max - x) {
return 0, b, syntaxError(b, "hexadecimal value out of range")
}
value += x
count++
}
return value, b[count:], nil
}
func parseNull(b []byte) ([]byte, []byte, error) {
if hasNullPrefix(b) {
return b[:4], b[4:], nil
}
if len(b) < 4 {
return nil, b[len(b):], unexpectedEOF(b)
}
return nil, b, syntaxError(b, "expected 'null' but found invalid token")
}
func parseTrue(b []byte) ([]byte, []byte, error) {
if hasTruePrefix(b) {
return b[:4], b[4:], nil
}
if len(b) < 4 {
return nil, b[len(b):], unexpectedEOF(b)
}
return nil, b, syntaxError(b, "expected 'true' but found invalid token")
}
func parseFalse(b []byte) ([]byte, []byte, error) {
if hasFalsePrefix(b) {
return b[:5], b[5:], nil
}
if len(b) < 5 {
return nil, b[len(b):], unexpectedEOF(b)
}
return nil, b, syntaxError(b, "expected 'false' but found invalid token")
}
func parseNumber(b []byte) (v, r []byte, err error) {
if len(b) == 0 {
r, err = b, unexpectedEOF(b)
return
}
i := 0
// sign
if b[i] == '-' {
i++
}
if i == len(b) {
r, err = b[i:], syntaxError(b, "missing number value after sign")
return
}
if b[i] < '0' || b[i] > '9' {
r, err = b[i:], syntaxError(b, "expected digit but got '%c'", b[i])
return
}
// integer part
if b[i] == '0' {
i++
if i == len(b) || (b[i] != '.' && b[i] != 'e' && b[i] != 'E') {
v, r = b[:i], b[i:]
return
}
if '0' <= b[i] && b[i] <= '9' {
r, err = b[i:], syntaxError(b, "cannot decode number with leading '0' character")
return
}
}
for i < len(b) && '0' <= b[i] && b[i] <= '9' {
i++
}
// decimal part
if i < len(b) && b[i] == '.' {
i++
decimalStart := i
for i < len(b) {
if c := b[i]; !('0' <= c && c <= '9') {
if i == decimalStart {
r, err = b[i:], syntaxError(b, "expected digit but found '%c'", c)
return
}
break
}
i++
}
if i == decimalStart {
r, err = b[i:], syntaxError(b, "expected decimal part after '.'")
return
}
}
// exponent part
if i < len(b) && (b[i] == 'e' || b[i] == 'E') {
i++
if i < len(b) {
if c := b[i]; c == '+' || c == '-' {
i++
}
}
if i == len(b) {
r, err = b[i:], syntaxError(b, "missing exponent in number")
return
}
exponentStart := i
for i < len(b) {
if c := b[i]; !('0' <= c && c <= '9') {
if i == exponentStart {
err = syntaxError(b, "expected digit but found '%c'", c)
return
}
break
}
i++
}
}
v, r = b[:i], b[i:]
return
}
func parseUnicode(b []byte) (rune, int, error) {
if len(b) < 4 {
return 0, 0, syntaxError(b, "unicode code point must have at least 4 characters")
}
u, r, err := parseUintHex(b[:4])
if err != nil {
return 0, 0, syntaxError(b, "parsing unicode code point: %s", err)
}
if len(r) != 0 {
return 0, 0, syntaxError(b, "invalid unicode code point")
}
return rune(u), 4, nil
}
func parseStringFast(b []byte) ([]byte, []byte, bool, error) {
if len(b) < 2 {
return nil, b[len(b):], false, unexpectedEOF(b)
}
if b[0] != '"' {
return nil, b, false, syntaxError(b, "expected '\"' at the beginning of a string value")
}
if i := bytes.IndexByte(b[1:], '"') + 1; i > 0 && i < len(b) {
if bytes.IndexByte(b[1:i], '\\') < 0 && ascii.ValidPrint(b[1:i]) {
return b[:i+1], b[i+1:], false, nil
}
}
for i := 1; i < len(b); {
quoteIndex := bytes.IndexByte(b[i:], '"')
if quoteIndex < 0 {
break
}
quoteIndex += i
var c byte
var s = b[i:quoteIndex]
for i := range s {
if c = s[i]; c < 0x20 {
return nil, b, false, syntaxError(b[i:quoteIndex], "invalid character '%c' in string literal", c)
}
}
escapeIndex := bytes.IndexByte(b[i:quoteIndex], '\\')
if escapeIndex < 0 {
return b[:quoteIndex+1], b[quoteIndex+1:], true, nil
}
if i += escapeIndex + 1; i < len(b) {
switch b[i] {
case '"', '\\', '/', 'n', 'r', 't', 'f', 'b':
i++
case 'u':
i++
_, n, err := parseUnicode(b[i:])
if err != nil {
return nil, b, false, err
}
i += n
default:
return nil, b, false, syntaxError(b[i:i], "invalid character '%c' in string escape code", b[i])
}
}
}
return nil, b[len(b):], false, syntaxError(b, "missing '\"' at the end of a string value")
}
func parseString(b []byte) ([]byte, []byte, error) {
s, b, _, err := parseStringFast(b)
return s, b, err
}
func parseStringUnquote(b []byte, r []byte) ([]byte, []byte, bool, error) {
s, b, escaped, err := parseStringFast(b)
if err != nil {
return s, b, false, err
}
s = s[1 : len(s)-1] // trim the quotes
if !escaped {
return s, b, false, nil
}
if r == nil {
r = make([]byte, 0, len(s))
}
for len(s) != 0 {
i := bytes.IndexByte(s, '\\')
if i < 0 {
r = appendCoerceInvalidUTF8(r, s)
break
}
r = appendCoerceInvalidUTF8(r, s[:i])
s = s[i+1:]
c := s[0]
switch c {
case '"', '\\', '/':
// simple escaped character
case 'n':
c = '\n'
case 'r':
c = '\r'
case 't':
c = '\t'
case 'b':
c = '\b'
case 'f':
c = '\f'
case 'u':
s = s[1:]
r1, n1, err := parseUnicode(s)
if err != nil {
return r, b, true, err
}
s = s[n1:]
if utf16.IsSurrogate(r1) {
if !hasPrefix(s, `\u`) {
r1 = unicode.ReplacementChar
} else {
r2, n2, err := parseUnicode(s[2:])
if err != nil {
return r, b, true, err
}
if r1 = utf16.DecodeRune(r1, r2); r1 != unicode.ReplacementChar {
s = s[2+n2:]
}
}
}
r = appendRune(r, r1)
continue
default: // not sure what this escape sequence is
return r, b, false, syntaxError(s, "invalid character '%c' in string escape code", c)
}
r = append(r, c)
s = s[1:]
}
return r, b, true, nil
}
func appendRune(b []byte, r rune) []byte {
n := len(b)
b = append(b, 0, 0, 0, 0)
return b[:n+utf8.EncodeRune(b[n:], r)]
}
func appendCoerceInvalidUTF8(b []byte, s []byte) []byte {
c := [4]byte{}
for _, r := range string(s) {
b = append(b, c[:utf8.EncodeRune(c[:], r)]...)
}
return b
}
func parseObject(b []byte) ([]byte, []byte, error) {
if len(b) < 2 {
return nil, b[len(b):], unexpectedEOF(b)
}
if b[0] != '{' {
return nil, b, syntaxError(b, "expected '{' at the beginning of an object value")
}
var err error
var a = b
var n = len(b)
var i = 0
b = b[1:]
for {
b = skipSpaces(b)
if len(b) == 0 {
return nil, b, syntaxError(b, "cannot decode object from empty input")
}
if b[0] == '}' {
j := (n - len(b)) + 1
return a[:j], a[j:], nil
}
if i != 0 {
if len(b) == 0 {
return nil, b, syntaxError(b, "unexpected EOF after object field value")
}
if b[0] != ',' {
return nil, b, syntaxError(b, "expected ',' after object field value but found '%c'", b[0])
}
b = skipSpaces(b[1:])
if len(b) == 0 {
return nil, b, unexpectedEOF(b)
}
if b[0] == '}' {
return nil, b, syntaxError(b, "unexpected trailing comma after object field")
}
}
_, b, err = parseString(b)
if err != nil {
return nil, b, err
}
b = skipSpaces(b)
if len(b) == 0 {
return nil, b, syntaxError(b, "unexpected EOF after object field key")
}
if b[0] != ':' {
return nil, b, syntaxError(b, "expected ':' after object field key but found '%c'", b[0])
}
b = skipSpaces(b[1:])
_, b, err = parseValue(b)
if err != nil {
return nil, b, err
}
i++
}
}
func parseArray(b []byte) ([]byte, []byte, error) {
if len(b) < 2 {
return nil, b[len(b):], unexpectedEOF(b)
}
if b[0] != '[' {
return nil, b, syntaxError(b, "expected '[' at the beginning of array value")
}
var err error
var a = b
var n = len(b)
var i = 0
b = b[1:]
for {
b = skipSpaces(b)
if len(b) == 0 {
return nil, b, syntaxError(b, "missing closing ']' after array value")
}
if b[0] == ']' {
j := (n - len(b)) + 1
return a[:j], a[j:], nil
}
if i != 0 {
if len(b) == 0 {
return nil, b, syntaxError(b, "unexpected EOF after array element")
}
if b[0] != ',' {
return nil, b, syntaxError(b, "expected ',' after array element but found '%c'", b[0])
}
b = skipSpaces(b[1:])
if len(b) == 0 {
return nil, b, unexpectedEOF(b)
}
if b[0] == ']' {
return nil, b, syntaxError(b, "unexpected trailing comma after object field")
}
}
_, b, err = parseValue(b)
if err != nil {
return nil, b, err
}
i++
}
}
func parseValue(b []byte) ([]byte, []byte, error) {
if len(b) != 0 {
switch b[0] {
case '{':
return parseObject(b)
case '[':
return parseArray(b)
case '"':
return parseString(b)
case 'n':
return parseNull(b)
case 't':
return parseTrue(b)
case 'f':
return parseFalse(b)
case '-', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9':
return parseNumber(b)
default:
return nil, b, syntaxError(b, "invalid character '%c' looking for beginning of value", b[0])
}
}
return nil, b, syntaxError(b, "unexpected end of JSON input")
}
func hasNullPrefix(b []byte) bool {
return len(b) >= 4 && string(b[:4]) == "null"
}
func hasTruePrefix(b []byte) bool {
return len(b) >= 4 && string(b[:4]) == "true"
}
func hasFalsePrefix(b []byte) bool {
return len(b) >= 5 && string(b[:5]) == "false"
}
func hasPrefix(b []byte, s string) bool {
return len(b) >= len(s) && s == string(b[:len(s)])
}
func hasLeadingSign(b []byte) bool {
return len(b) > 0 && (b[0] == '+' || b[0] == '-')
}
func hasLeadingZeroes(b []byte) bool {
if hasLeadingSign(b) {
b = b[1:]
}
return len(b) > 1 && b[0] == '0' && '0' <= b[1] && b[1] <= '9'
}
func appendToLower(b, s []byte) []byte {
if ascii.Valid(s) { // fast path for ascii strings
i := 0
for j := range s {
c := s[j]
if 'A' <= c && c <= 'Z' {
b = append(b, s[i:j]...)
b = append(b, c+('a'-'A'))
i = j + 1
}
}
return append(b, s[i:]...)
}
for _, r := range string(s) {
b = appendRune(b, foldRune(r))
}
return b
}
func foldRune(r rune) rune {
if r = unicode.SimpleFold(r); 'A' <= r && r <= 'Z' {
r = r + ('a' - 'A')
}
return r
}