-
Notifications
You must be signed in to change notification settings - Fork 0
/
parser.go
411 lines (392 loc) · 8.47 KB
/
parser.go
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
package njson
import (
"strings"
)
type parser struct {
nodes []node
n uint
err error
}
// Parse parses a JSON string and returns the root node
func (d *Document) Parse(s string) (Node, string, error) {
p := d.parser()
id := p.n
pos := p.parseValue(s, 0)
switch p.err.(type) {
case nil:
d.nodes = p.nodes[:p.n]
d.get(id).info |= infRoot
// Return tail of input string
if pos < uint(len(s)) {
return Node{id, d.rev, d}, s[pos:], nil
}
return Node{id, d.rev, d}, "", nil
case UnexpectedEOF:
// Return input as is. Caller can append more data and re-parse.
return Node{}, s, p.err
default:
return Node{}, "", p.err
}
}
func (d *Document) parser() parser {
return parser{
nodes: d.nodes[:cap(d.nodes)],
n: uint(len(d.nodes)),
}
}
func (p *parser) abort(pos uint, typ Type, got, want interface{}) uint {
p.err = abort(int(pos), typ, got, want)
return pos
}
// node returns a node pointer. The pointer is valid until the next call to node()
func (p *parser) node() *node {
if p.n < uint(len(p.nodes)) {
n := &p.nodes[p.n]
p.n++
return n
}
nodes := make([]node, 2*len(p.nodes)+1)
copy(nodes, p.nodes)
p.nodes = nodes
if p.n < uint(len(p.nodes)) {
n := &p.nodes[p.n]
p.n++
return n
}
return nil
}
func appendV(values []V, key string, id, i uint) []V {
if i < uint(len(values)) {
values[i] = V{id, key}
return values
}
tmp := make([]V, 2*len(values)+1)
copy(tmp, values)
if i < uint(len(tmp)) {
tmp[i] = V{id, key}
}
return tmp
}
func (p *parser) eof(typ Type, pos uint) uint {
p.err = UnexpectedEOF(typ)
return pos
}
func (p *parser) parseValue(s string, pos uint) uint {
var (
c byte
info info
)
for ; pos < uint(len(s)); pos++ {
c = s[pos]
if bytemapIsSpace[c] == 0 {
if c == delimString {
goto readString
}
if c == delimBeginObject {
return p.parseObject(s, pos+1)
}
if c == delimBeginArray {
return p.parseArray(s, pos+1)
}
if bytemapIsDigit[c] == 1 {
s = s[pos:]
goto readNumber
}
if c == 'n' {
s = s[pos:]
goto readNull
}
if c == '-' {
s = s[pos:]
goto readNumber
}
if c == 'f' {
s = s[pos:]
goto readFalse
}
if c == 't' {
s = s[pos:]
goto readTrue
}
return p.abort(pos, TypeAnyValue, c, "any value")
}
}
return p.eof(TypeAnyValue, pos)
readNumber:
info |= vNumber
for i := uint(0); i < uint(len(s)); i++ {
if bytemapIsNumberEnd[s[i]] == 0 {
continue
}
s = s[:i]
pos += i
goto done
}
pos += uint(len(s))
goto done
readString:
info |= vString
if pos++; pos < uint(len(s)) {
// Slice after the opening quote
s = s[pos:]
pos++ // Early jump to the next character after the closing quote
// Immediately decrement to check if previous byte is '\'
i := strings.IndexByte(s, delimString) - 1
if 0 <= i && i < len(s) {
if s[i] == delimEscape {
// Advance past '\' and '"' and scan the remaining string
for i += 2; 0 <= i && i < len(s); i++ { // Avoid bounds check
switch s[i] {
case delimString:
// Slice until the closing quote
s = s[:i]
pos += uint(i)
goto done
case delimEscape:
// Jump over the next character
i++
}
}
} else if i++; 0 <= i && i <= len(s) { // Avoid bounds check
// Slice until the closing quote
s = s[:i]
pos += uint(i)
goto done
}
} else if i == -1 {
s = ""
goto done
}
}
return p.eof(TypeString, pos-1)
readTrue:
info |= vBoolean
if len(s) >= 4 {
if s = s[:4]; s == strTrue {
pos += 4
goto done
}
return p.abort(pos, TypeBoolean, s, strTrue)
}
return p.eof(TypeBoolean, pos)
readFalse:
info |= vBoolean
if len(s) >= 5 {
if s = s[:5]; s == strFalse {
pos += 5
goto done
}
return p.abort(pos, TypeBoolean, s, strFalse)
}
return p.eof(TypeBoolean, pos)
readNull:
info |= vNull
if len(s) >= 4 {
if s = s[:4]; s == strNull {
pos += 4
goto done
}
return p.abort(pos, TypeNull, s, strNull)
}
return p.eof(TypeNull, pos)
done:
n := p.node()
n.set(info, s)
for i := range n.values {
n.values[i] = V{}
}
n.values = n.values[:0]
return pos
}
func (p *parser) parseArray(s string, pos uint) uint {
var (
id = p.n
n = p.node()
c byte
// v *N
values []V
numV uint
)
n.set(vArray, "")
// Skip space after '['
for ; pos < uint(len(s)); pos++ {
c = s[pos]
if bytemapIsSpace[c] == 0 {
if c == delimEndArray {
for i := range n.values {
n.values[i] = V{}
}
n.values = n.values[:0]
return pos + 1
}
values = n.values[:cap(n.values)]
goto readValue
}
}
return p.eof(TypeArray, pos)
readValue:
values = appendV(values, "", p.n, numV)
numV++
// pos = p.parseValue(s, pos, p.node())
pos = p.parseValue(s, pos)
if p.err != nil {
return pos
}
// Skip space after value
for ; pos < uint(len(s)); pos++ {
c = s[pos]
switch c {
case delimValueSeparator:
pos++
goto readValue
case delimEndArray:
if numV < uint(len(n.values)) {
values = n.values[:numV]
n.values = n.values[numV:]
for i := range n.values {
n.values[i] = V{}
}
} else if numV < uint(len(values)) {
values = values[:numV]
}
if id < uint(len(p.nodes)) {
p.nodes[id].values = values
}
return pos + 1
default:
if bytemapIsSpace[c] == 0 {
return p.abort(pos, TypeArray, c, []rune{delimValueSeparator, delimEndArray})
}
}
}
return p.eof(TypeArray, pos)
}
func (p *parser) parseObject(s string, pos uint) uint {
var (
id = p.n
n = p.node()
c byte
key string
values []V
numV uint
i uint
)
n.set(vObject, "")
// Skip space after opening '{'
for ; pos < uint(len(s)); pos++ {
c = s[pos]
switch c {
case delimEndObject:
// Zero out the values slice to release key strings
for i := range n.values {
n.values[i] = V{}
}
n.values = n.values[:0]
return pos + 1
case delimString:
values = n.values[:cap(n.values)]
goto readKey
default:
if bytemapIsSpace[c] == 0 {
return p.abort(pos, TypeObject, c, []rune{delimEndObject, delimString})
}
}
}
return p.eof(TypeObject, pos)
// Current pos is at the opening quote of a key.
readKey:
if pos++; pos < uint(len(s)) {
// Slice after the opening quote
key = s[pos:]
pos++ // Early jump after the closing quote
// Keys are usually small.
// IndexByte seems to have a performance benefit only if the
// byte we're looking for is more than 16 bytes away.
// Since most keys are less than 16 bytes using a simple loop
// actually improves throughput.
for i = 0; i < uint(len(key)); i++ {
switch key[i] {
case delimString:
// key = key[:i]
// Slice until closing quote
values = appendV(values, key[:i], p.n, numV)
numV++
pos += i
// key = key[:i]
// Skip space after closing quote
for ; pos < uint(len(s)); pos++ {
c = s[pos]
if c == delimNameSeparator {
goto readValue
}
if bytemapIsSpace[c] == 0 {
return p.abort(pos, TypeObject, c, delimNameSeparator)
}
// Space
}
return p.eof(TypeObject, pos)
case delimEscape:
i++
}
}
// end of input reached
}
return p.eof(TypeObject, pos+i)
readValue:
// We're at ':' after key
pos = p.parseValue(s, pos+1)
if p.err != nil {
return pos
}
// Skip space after value
for ; pos < uint(len(s)); pos++ {
c = s[pos]
switch c {
case delimValueSeparator:
// Skip space after ','
for pos++; pos < uint(len(s)); pos++ {
c = s[pos]
if c == delimString {
goto readKey
}
if bytemapIsSpace[c] == 0 {
return p.abort(pos, TypeObject, c, delimString)
}
}
return p.eof(TypeObject, pos)
case delimEndObject:
if numV < uint(len(n.values)) {
values = n.values[:numV]
n.values = n.values[numV:]
// Zero out unused values to release key strings
for i := range n.values {
n.values[i] = V{}
}
} else if numV < uint(len(values)) {
values = values[:numV]
// No need to zero out n.values because n will have no references after return
}
// Use id because n pointer might be invalid after a node() call
if id < uint(len(p.nodes)) {
n = &p.nodes[id]
n.values = values
}
return pos + 1
default:
if bytemapIsSpace[c] == 0 {
return p.abort(pos, TypeObject, c, []rune{delimValueSeparator, delimEndObject})
}
}
}
return p.eof(TypeObject, pos)
}
const (
delimString = '"'
delimEscape = '\\'
delimBeginObject = '{'
delimEndObject = '}'
delimBeginArray = '['
delimEndArray = ']'
delimNameSeparator = ':'
delimValueSeparator = ','
)