-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathparser.go
More file actions
166 lines (152 loc) · 2.91 KB
/
parser.go
File metadata and controls
166 lines (152 loc) · 2.91 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
package iterjson
import (
"fmt"
"iter"
)
func Parse(in []byte) iter.Seq2[Item, error] {
return func(yield func(Item, error) bool) {
defer func() {
if r := recover(); r != nil {
yield(Item{}, fmt.Errorf("%v", r))
}
}()
var tok, next RawToken
remain := in
path := make([]PathItem, 1, 16)
last := &path[0]
advance := func() {
var err error
tok = next
next, remain, err = NextToken(remain)
must(err)
}
push := func() {
path = append(path, PathItem{Token: tok})
last = &path[len(path)-1]
}
pop := func() {
path = path[:len(path)-1]
last = &path[len(path)-1]
}
yieldValue := func(key RawToken) bool {
item := Item{
Level: len(path) - 1, Index: last.Index,
Key: key, Token: tok, path: path,
}
return yield(item, nil)
}
advance()
advance()
value:
switch {
case tok.typ == TokenArrayOpen:
if !yieldValue(last.Key) {
return
}
push()
advance()
if tok.typ == TokenArrayClose {
goto close
} else {
goto value
}
case tok.typ == TokenObjectOpen:
if !yieldValue(last.Key) {
return
}
push()
advance()
if tok.typ == TokenObjectClose {
goto close
} else {
goto key_value
}
case tok.IsValue():
if !yieldValue(last.Key) {
return
}
switch {
case last.Token.typ == 0 && next.typ == 0:
return // ✅ done
case last.Token.typ == 0 && next.typ != 0:
panicf("parser: unexpected token(%s)", tok.typ)
default:
advance()
goto close
}
default:
panicf("parser: expected value, got(%s)", tok.typ)
}
key_value:
switch {
case tok.typ == TokenString:
last.Key = tok
advance()
if tok.typ == TokenColon {
advance()
goto value
} else {
panicf("parser: expected colon, got(%s)", tok.typ)
}
default:
panicf("parser: expected key, got(%s)", tok.typ)
}
close:
switch {
case tok.typ == TokenArrayClose:
if last.Token.typ != TokenArrayOpen {
panicf("parser: unexpected array end")
}
pop()
if !yieldValue(RawToken{}) {
return
}
advance()
if len(path) > 1 {
goto close
} else {
goto end
}
case tok.typ == TokenObjectClose:
if last.Token.typ != TokenObjectOpen {
panicf("parser: unexpected object end")
}
pop()
if !yieldValue(RawToken{}) {
return
}
advance()
if len(path) > 1 {
goto close
} else {
goto end
}
case tok.typ == TokenComma:
last.Index++
last.Key = RawToken{}
advance()
switch {
case last.Token.typ == TokenArrayOpen:
goto value
case last.Token.typ == TokenObjectOpen:
goto key_value
default:
panicf("parser: unexpected comma")
}
default:
panicf("parser: unexpected token(%s)", tok.typ)
}
end:
if tok.typ != 0 {
panicf("parser: unexpected token(%s)", tok.typ)
}
}
}
func panicf(format string, args ...any) {
panic(fmt.Errorf(format, args...))
}
func must(err error) {
if err != nil {
panic(err)
}
}