-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjsonpath.go
265 lines (211 loc) · 5.7 KB
/
jsonpath.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
package conflint
import (
"fmt"
"strconv"
"strings"
yaml "gopkg.in/yaml.v3"
)
type Path struct {
Getter []Getter
}
type Getter struct {
Get func(node *yaml.Node) (*yaml.Node, error)
Expr string
}
func yamlMapGet(key string) Getter {
return Getter{
Expr: "." + key,
Get: func(node *yaml.Node) (*yaml.Node, error) {
var found *yaml.Node
switch node.Kind {
case yaml.MappingNode:
for j := 0; j < len(node.Content); j += 2 {
k := node.Content[j]
v := node.Content[j+1]
if k.Value == key {
found = v
break
}
}
case yaml.SequenceNode:
idx, err := strconv.Atoi(key)
if err != nil {
return nil, fmt.Errorf("converting %q to int: %w", key, err)
}
found = node.Content[idx]
default:
return nil, fmt.Errorf("expected mapping or sequence node: got %+v(%v)", node, node.Kind)
}
if found == nil {
return nil, fmt.Errorf("%s does not have child named %s", node.Value, key)
}
return found, nil
},
}
}
func yamlArrayElemIndex(idx int) Getter {
return Getter{
Expr: fmt.Sprintf("[%d]", idx),
Get: func(node *yaml.Node) (*yaml.Node, error) {
if node.Kind != yaml.SequenceNode {
return nil, fmt.Errorf("expected sequence node: got %v(%v)", node.Value, node.Kind)
}
if idx > len(node.Content)-1 {
return nil, fmt.Errorf("index out of range: index = %v, len = %v, value = %+v", idx, len(node.Content), node)
}
return node.Content[idx], nil
},
}
}
func yamlArrayElemWhere(expr BoolExpr) Getter {
return Getter{
Expr: expr.String(),
Get: func(node *yaml.Node) (*yaml.Node, error) {
if node.Kind != yaml.SequenceNode {
return nil, fmt.Errorf("expected sequence node: got %v(%v)", node.Value, node.Kind)
}
for i, n := range node.Content {
ok, err := expr.Eval(Context{Current: n})
if err != nil {
return nil, fmt.Errorf("reading index %d in array: %w", i, err)
}
if ok {
return n, nil
}
}
return nil, fmt.Errorf("no array element matching `%s` found in %+v", expr.String(), node)
},
}
}
func (p *Path) Get(node *yaml.Node) (*yaml.Node, error) {
for i, g := range p.Getter {
next, err := g.Get(node)
if err != nil {
return nil, fmt.Errorf("evaluating jsonpath `%s` at %d: %w", g.Expr, i, err)
}
node = next
}
return node, nil
}
func parseJsonpath(expr string) (*Path, error) {
type State int
const (
Init State = iota
Next
ReadPropertySelector
ReadArrayElementWithWhereClause
ReadArrayElementWithInlineWhereClause
ReadArrayElementWithIndex
End
)
state := Init
var path Path
for i := 0; i < len(expr); {
cur := expr[i]
switch state {
case Init:
if cur != '$' && cur != '@' {
return nil, fmt.Errorf("expression must start with $ or @, but got: %c in %s", cur, expr)
}
if expr[i+1] != '.' {
return nil, fmt.Errorf("the root element must be an object value to be queried by .KEY, but got %s in %s", expr[i:i+2], expr)
}
state = ReadPropertySelector
i += 1
case Next:
if expr[i] == '.' {
state = ReadPropertySelector
} else if strings.HasPrefix(expr[i:], "[*]?(@") {
state = ReadArrayElementWithWhereClause
} else if strings.HasPrefix(expr[i:], "[?(@") {
state = ReadArrayElementWithInlineWhereClause
} else if strings.HasPrefix(expr[i:], "[") {
state = ReadArrayElementWithIndex
} else {
return nil, fmt.Errorf("reading next token from %s: unexpected string in buffer. expected any of %v", expr[i:], strings.Join([]string{".", "["}, ", "))
}
case ReadPropertySelector:
start := i + 1
j := start
for {
if j == len(expr)-1 {
state = End
break
} else if expr[j+1] == '.' || expr[j+1] == '[' {
state = Next
break
} else if expr[j+1] == '-' || expr[j+1] == '+' {
return nil, fmt.Errorf("reading property selector from %s: unexpected character found at beginning", expr[j:])
}
j++
}
getter := yamlMapGet(expr[start : j+1])
path.Getter = append(path.Getter, getter)
i = j + 1
case ReadArrayElementWithIndex:
j := i
idxStart := i + 1
for {
if j == len(expr)-1 {
return nil, fmt.Errorf("reading array element with index: unexpected EOS found at index %d", j)
} else if expr[j+1] == ']' {
break
}
j++
}
idxStr := expr[idxStart : j+1]
idx, err := strconv.Atoi(idxStr)
if err != nil {
return nil, fmt.Errorf("converting %s to int: %w", idxStr, err)
}
getter := yamlArrayElemIndex(idx)
path.Getter = append(path.Getter, getter)
state = Next
i = j + 2
case ReadArrayElementWithWhereClause:
condStart := i + 5
j := condStart
for {
if j == len(expr)-1 {
return nil, fmt.Errorf("reading array element with where clause: unexpected EOS found at index %d", j)
} else if expr[j+1] == ')' {
break
}
j++
}
condStr := expr[condStart : j+1]
boolExp, err := parseBoolExp(condStr)
if err != nil {
return nil, fmt.Errorf("parsing %s: %w", condStr, err)
}
getter := yamlArrayElemWhere(boolExp)
path.Getter = append(path.Getter, getter)
state = Next
i = j + 2
case ReadArrayElementWithInlineWhereClause:
condStart := i + 3
j := condStart
for {
if j == len(expr)-1 {
return nil, fmt.Errorf("reading array element with inline where clause: unexpected EOS found at index %d", j)
} else if expr[j+1] == ')' {
break
}
j++
}
condStr := expr[condStart : j+1]
boolExp, err := parseBoolExp(condStr)
if err != nil {
return nil, fmt.Errorf("parsing %s: %w", condStr, err)
}
getter := yamlArrayElemWhere(boolExp)
path.Getter = append(path.Getter, getter)
state = Next
i = j + 3
case End:
default:
panic(fmt.Errorf("unexpected state: %v", state))
}
}
return &path, nil
}