-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiterator.go
429 lines (352 loc) · 8.17 KB
/
iterator.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
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
package json2
import (
"errors"
"io"
"nikand.dev/go/skip"
)
type (
// Iterator is a group of methods to parse JSON.
// Iterator is stateless.
// All the needed state is passed though arguments and return values.
//
// Most of the methods take buffer with json and start position
// and return a value, end position and possible error.
Iterator struct{}
Type byte
)
// Value types returned by Iterator.
const (
None Type = 0 // never returned in successful case
Null Type = 'n'
Bool Type = 'b'
String Type = 's'
Array Type = '['
Object Type = '{'
Number Type = '1'
Comment Type = '/'
)
var whitespaces uint64 = 1<<'\n' | 1<<'\r' | 1<<'\t' | 1<<' '
// Iterator errors. Plus Str errors from skip module.
var (
ErrBadNumber = errors.New("bad number")
ErrShortBuffer = io.ErrShortBuffer
ErrSyntax = errors.New("syntax error")
ErrType = errors.New("incompatible type")
)
// Type finds the beginning of the next value and detects its type.
// It doesn't parse the value so it can't detect if it's incorrect.
func (d *Iterator) Type(b []byte, st int) (tp Type, i int, err error) {
for i = st; i < len(b); i++ {
if isWhitespace(b[i]) {
continue
}
switch b[i] {
case ',', ':':
continue
case '/':
i, err = d.skipComment(b, i)
if err != nil {
return None, i, err
}
continue
case 't', 'f':
return Bool, i, nil
case '"':
return String, i, nil
case byte(Null), byte(Array), byte(Object):
return Type(b[i]), i, nil
case '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
'+', '-', '.',
'N', // NaN
'i', 'I': // Inf
return Number, i, nil
}
return None, i, ErrSyntax
}
return None, i, ErrShortBuffer
}
// Skip skips the next value.
func (d *Iterator) Skip(b []byte, st int) (i int, err error) {
return d.Break(b, st, 0)
}
// Raw skips the next value and returns subslice with the value trimming whitespaces.
func (d *Iterator) Raw(b []byte, st int) (v []byte, i int, err error) {
_, st, err = d.Type(b, st)
if err != nil {
return nil, st, err
}
i, err = d.Break(b, st, 0)
if err != nil {
return
}
return b[st:i], i, nil
}
// Break breaks from inside the object to the end of it on depth levels.
// As a special case with depth=0 it skips the next value.
// Skip and Raw do exactly that.
//
// It's intended for exiting out of arrays and objects when their content is not needed anymore
// (all the needed indexes or keys are already parsed) and we want to parse the next array or object.
func (d *Iterator) Break(b []byte, st, depth int) (i int, err error) {
i = st
for i < len(b) {
if isWhitespace(b[i]) {
i++
continue
}
switch b[i] {
case ',', ':':
i++
continue
case '/':
i, err = d.skipComment(b, i)
if err != nil {
return i, err
}
continue
case '"':
i, err = d.skipString(b, i)
case 'n', 't', 'f':
i, err = d.skipLit(b, i)
case '[', '{':
i++
depth++
case ']', '}':
i++
depth--
default:
i, err = d.skipNum(b, i)
}
if err != nil {
return
}
if depth == 0 {
return
}
}
return st, ErrShortBuffer
}
// Key reads the next string removing quotes but not decoding the string value.
// So escape sequences (\n, \uXXXX) are not decoded. They are returned as is.
// This is intended for object keys as they usually contain alpha-numeric symbols only.
// This is faster and does not require additional buffer for decoding.
func (d *Iterator) Key(b []byte, st int) (k []byte, i int, err error) {
tp, i, err := d.Type(b, st)
if err != nil {
return
}
if tp != String {
return nil, i, ErrType
}
raw, i, err := d.Raw(b, i)
if err != nil {
return
}
return raw[1 : len(raw)-1], i, nil
}
// DecodeString reads the next string, decodes escape sequences (\n, \uXXXX),
// and appends the result to the buf.
func (d *Iterator) DecodeString(b []byte, st int, buf []byte) (s []byte, i int, err error) {
tp, i, err := d.Type(b, st)
if err != nil {
return buf, i, err
}
if tp != String {
return buf, i, ErrType
}
ss, w, _, i := skip.DecodeString(b, i, skip.Quo|skip.ErrRune|skip.ErrEscape, buf)
if ss.Is(skip.ErrBuffer) {
return w, st, ErrShortBuffer
}
if ss.Err() {
return w, i, ss
}
return w, i, nil
}
// DecodedStringLength reads and decodes the next string but only return the result length.
// It doesn't allocate while DecodeString does.
func (d *Iterator) DecodedStringLength(b []byte, st int) (bs, rs, i int, err error) {
tp, i, err := d.Type(b, st)
if err != nil {
return
}
if tp != String {
return 0, 0, i, ErrType
}
ss, bs, rs, i := skip.String(b, i, skip.Quo|skip.ErrRune)
if ss.Is(skip.ErrBuffer) {
return bs, rs, st, ErrShortBuffer
}
if ss.Err() {
return bs, rs, i, ss
}
return bs, rs, i, nil
}
// Enter enters an Array or an Object. typ is checked to match with the actual container type.
// Use More or, more convenient form, ForMore to iterate over container.
// See examples to better understand usage pattern.
func (d *Iterator) Enter(b []byte, st int, typ Type) (i int, err error) {
tp, i, err := d.Type(b, st)
if err != nil {
return
}
if tp != typ || typ != Array && typ != Object {
return i, ErrType
}
i++
return
}
// More iterates over an Array or an Object elements entered by the Enter method.
func (d *Iterator) More(b []byte, st int, typ Type) (more bool, i int, err error) {
for i = st; i < len(b); i++ {
if isWhitespace(b[i]) || b[i] == ',' {
continue
}
break
}
if i == len(b) {
return false, i, ErrShortBuffer
}
if b[i] == byte(typ)+2 {
i++
return false, i, nil
}
tp, i, err := d.Type(b, i)
if err != nil {
return false, i, err
}
if typ == Object && tp != String {
return false, i, ErrSyntax
}
return true, i, nil
}
// ForMore is a convenient wrapper for More which makes iterating code shorter and simpler.
func (d *Iterator) ForMore(b []byte, i *int, typ Type, errp *error) bool { //nolint:gocritic
more, j, err := d.More(b, *i, typ)
*i = j
if errp != nil {
*errp = err
}
return more
}
// Length calculates number of elements in Array or Object.
func (d *Iterator) Length(b []byte, st int) (n, i int, err error) {
tp, i, err := d.Type(b, st)
if err != nil {
return 0, i, err
}
switch tp {
case Array, Object:
default:
return 0, i, ErrType
}
i, err = d.Enter(b, i, tp)
if err != nil {
return 0, i, err
}
for d.ForMore(b, &i, tp, &err) {
if tp == Object {
_, i, err = d.Key(b, i)
if err != nil {
return n, i, err
}
}
i, err = d.Skip(b, i)
if err != nil {
return n, i, err
}
n++
}
if err != nil {
return n, i, err
}
return n, i, nil
}
// SkipSpaces skips whitespaces.
func (d *Iterator) SkipSpaces(b []byte, i int) int {
for i < len(b) && isWhitespace(b[i]) {
i++
}
return i
}
func (d *Iterator) skipString(b []byte, st int) (i int, err error) {
ss, _, _, i := skip.String(b, st, skip.Quo)
if ss.Is(skip.ErrBuffer) {
return st, ErrShortBuffer
}
if ss.Err() {
return i, ss
}
return i, nil
}
func (d *Iterator) skipNum(b []byte, st int) (i int, err error) {
n, i := skip.Number(b, st, 0)
if !n.Ok() {
return i, ErrBadNumber
}
return i, nil
}
func (d *Iterator) skipLit(b []byte, st int) (i int, err error) {
var lit string
switch b[st] {
case 't':
lit = "true"
case 'f':
lit = "false"
case 'n':
lit = "null"
}
return d.skipVal(b, st, lit)
}
func (d *Iterator) skipVal(b []byte, st int, val string) (i int, err error) {
end := st + len(val)
if end <= len(b) && string(b[st:end]) == val {
return end, nil
}
if end > len(b) && string(b[st:]) == val[:len(b)-st] {
return st, ErrShortBuffer
}
return st, ErrSyntax
}
func (d *Iterator) skipComment(b []byte, st int) (i int, err error) {
i = st
if i+1 >= len(b) {
return st, ErrShortBuffer
}
if b[i] != '/' {
return st, ErrSyntax
}
i++
switch b[i] {
case '/':
for i < len(b) && b[i] != '\n' {
i++
}
return i, nil
case '*':
//
default:
return st, ErrSyntax
}
for {
for i < len(b) && b[i] != '*' {
i++
}
if i+1 >= len(b) {
return st, ErrShortBuffer
}
i++
if b[i] == '/' {
i++
break
}
}
return i, nil
}
// SkipSpaces skips whitespaces.
func SkipSpaces(b []byte, i int) int {
return skip.Spaces(b, i)
}
func isWhitespace(b byte) bool {
return b <= 0x20 && whitespaces&(1<<b) != 0
}