-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpath_example_test.go
341 lines (295 loc) · 7.76 KB
/
path_example_test.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
package jsonpath_test
import (
"encoding/json"
"errors"
"fmt"
"log"
"github.com/theory/jsonpath"
"github.com/theory/jsonpath/registry"
"github.com/theory/jsonpath/spec"
)
// Select all the authors of the books in a bookstore object.
func Example() {
// Parse a jsonpath query.
p, err := jsonpath.Parse(`$.store.book[*].author`)
if err != nil {
log.Fatal(err)
}
// Select values from unmarshaled JSON input.
store := bookstore()
nodes := p.Select(store)
// Show the selected values.
items, err := json.Marshal(nodes)
if err != nil {
log.Fatal(err)
}
fmt.Printf("%s\n", items)
// Output: ["Nigel Rees","Evelyn Waugh","Herman Melville","J. R. R. Tolkien"]
}
func ExamplePath_Select() {
// Load some JSON.
menu := map[string]any{
"apps": map[string]any{
"guacamole": 19.99,
"salsa": 5.99,
},
}
// Parse a JSONPath and select from the input.
p := jsonpath.MustParse("$.apps.*")
nodes := p.Select(menu)
// Show the selected values.
for node := range nodes.All() {
fmt.Printf("%v\n", node)
}
// Unordered output:
// 19.99
// 5.99
}
func ExamplePath_SelectLocated() {
// Load some JSON.
menu := map[string]any{
"apps": map[string]any{
"guacamole": 19.99,
"salsa": 5.99,
},
}
// Parse a JSONPath and select from the input.
p := jsonpath.MustParse("$.apps.*")
nodes := p.SelectLocated(menu)
// Show the selected nodes.
for node := range nodes.All() {
fmt.Printf("%v: %v\n", node.Path, node.Node)
}
// Unordered output:
// $['apps']['guacamole']: 19.99
// $['apps']['salsa']: 5.99
}
func ExampleLocatedNodeList() {
// Load some JSON.
menu := map[string]any{
"apps": map[string]any{
"guacamole": 19.99,
"salsa": 5.99,
},
}
// Parse a JSONPath and select from the input.
p := jsonpath.MustParse(`$.apps["salsa", "guacamole"]`)
nodes := p.SelectLocated(menu)
// Show the nodes.
fmt.Println("Nodes:")
for n := range nodes.Nodes() {
fmt.Printf(" %v\n", n)
}
// Show the paths.
fmt.Println("\nPaths:")
for p := range nodes.Paths() {
fmt.Printf(" %v\n", p)
}
// Output:
// Nodes:
// 5.99
// 19.99
//
// Paths:
// $['apps']['salsa']
// $['apps']['guacamole']
}
func ExampleLocatedNodeList_Deduplicate() {
// Load some JSON.
pallet := map[string]any{"colors": []any{"red", "blue"}}
// Parse a JSONPath and select from the input.
p := jsonpath.MustParse("$.colors[0, 1, 1, 0]")
nodes := p.SelectLocated(pallet)
fmt.Printf("Items: %v\n", len(nodes))
// Deduplicate
nodes = nodes.Deduplicate()
fmt.Printf("Items: %v\n", len(nodes))
// Output:
// Items: 4
// Items: 2
}
func ExampleLocatedNodeList_Sort() {
// Load some JSON.
pallet := map[string]any{"colors": []any{"red", "blue", "green"}}
// Parse a JSONPath and select from the input.
p := jsonpath.MustParse("$.colors[2, 0, 1]")
nodes := p.SelectLocated(pallet)
// Show selected.
fmt.Println("Selected:")
for _, node := range nodes {
fmt.Printf(" %v: %v\n", node.Path, node.Node)
}
// Sort by normalized paths and show selected again.
nodes.Sort()
fmt.Println("\nSorted:")
for _, node := range nodes {
fmt.Printf(" %v: %v\n", node.Path, node.Node)
}
// Output:
// Selected:
// $['colors'][2]: green
// $['colors'][0]: red
// $['colors'][1]: blue
//
// Sorted:
// $['colors'][0]: red
// $['colors'][1]: blue
// $['colors'][2]: green
}
func ExampleLocatedNodeList_Clone() {
// Load some JSON.
items := []any{1, 2, 3, 4, 5}
// Parse a JSONPath and select from the input.
p := jsonpath.MustParse("$[2, 0, 1, 0, 1]")
nodes := p.SelectLocated(items)
// Clone the selected nodes then deduplicate.
orig := nodes.Clone()
nodes = nodes.Deduplicate()
// Cloned nodes have the original count.
fmt.Printf("Unique Count: %v\nOriginal Count: %v\n", len(nodes), len(orig))
// Output:
// Unique Count: 3
// Original Count: 5
}
// Use the Parser to parse a collection of paths.
func ExampleParser() {
// Create a new parser using the default function registry.
parser := jsonpath.NewParser()
// Parse a list of paths.
paths := []*jsonpath.Path{}
for _, path := range []string{
"$.store.book[*].author",
"$..author",
"$.store..color",
"$..book[2].author",
"$..book[2].publisher",
"$..book[[email protected]].title",
"$..book[[email protected]<10].title",
} {
p, err := parser.Parse(path)
if err != nil {
log.Fatal(err)
}
paths = append(paths, p)
}
// Later, use the paths to select from JSON inputs.
store := bookstore()
for _, p := range paths {
items := p.Select(store)
array, err := json.Marshal(items)
if err != nil {
log.Fatal(err)
}
fmt.Printf("%s\n", array)
}
// Output:
// ["Nigel Rees","Evelyn Waugh","Herman Melville","J. R. R. Tolkien"]
// ["Nigel Rees","Evelyn Waugh","Herman Melville","J. R. R. Tolkien"]
// ["red"]
// ["Herman Melville"]
// []
// ["Moby Dick","The Lord of the Rings"]
// ["Sayings of the Century","Moby Dick"]
}
// The second use case for the Parser is to provide a [registry.Registry]
// containing function extensions, as [defined by the standard]. This example
// creates a function named "first" that returns the first item in a list of
// nodes.
//
// [defined by the standard]: https://www.rfc-editor.org/rfc/rfc9535.html#name-function-extensions
func ExampleParser_functionExtension() {
// Register the first function.
reg := registry.New()
err := reg.Register(
"first", // name
spec.FuncValue, // returns a single value
validateFirstArgs, // parse-time validation defined below
firstFunc, // function defined below
)
if err != nil {
log.Fatalf("Error %v", err)
}
// Create a parser with the registry that contains the extension.
parser := jsonpath.NewParser(jsonpath.WithRegistry(reg))
// Use the function to select lists that start with 6.
path, err := parser.Parse("$[? first(@.*) == 6]")
if err != nil {
log.Fatalf("Error %v", err)
}
// Do any of these arrays start with 6?
input := []any{
[]any{1, 2, 3, 4, 5},
[]any{6, 7, 8, 9},
[]any{4, 8, 12},
}
nodes := path.Select(input)
fmt.Printf("%v\n", nodes)
// Output: [[6 7 8 9]]
}
// validateFirstArgs validates that a single argument is passed to the first()
// function, and that it can be converted to [spec.PathNodes], so that first()
// can return the first node. It's called by the parser.
func validateFirstArgs(fea []spec.FunctionExprArg) error {
if len(fea) != 1 {
return fmt.Errorf("expected 1 argument but found %v", len(fea))
}
if !fea[0].ResultType().ConvertsTo(spec.PathNodes) {
return errors.New("cannot convert argument to PathNodes")
}
return nil
}
// firstFunc defines the custom first() JSONPath function. It converts its
// single argument to a [spec.NodesType] value and returns a [*spec.ValueType]
// that contains the first node. If there are no nodes it returns nil.
func firstFunc(jv []spec.JSONPathValue) spec.JSONPathValue {
nodes := spec.NodesFrom(jv[0])
if len(nodes) == 0 {
return nil
}
return spec.Value(nodes[0])
}
// bookstore returns an unmarshaled JSON object.
func bookstore() any {
src := []byte(`{
"store": {
"book": [
{
"category": "reference",
"author": "Nigel Rees",
"title": "Sayings of the Century",
"price": 8.95
},
{
"category": "fiction",
"author": "Evelyn Waugh",
"title": "Sword of Honour",
"price": 12.99
},
{
"category": "fiction",
"author": "Herman Melville",
"title": "Moby Dick",
"isbn": "0-553-21311-3",
"price": 8.99
},
{
"category": "fiction",
"author": "J. R. R. Tolkien",
"title": "The Lord of the Rings",
"isbn": "0-395-19395-8",
"price": 22.99
}
],
"bicycle": {
"color": "red",
"price": 399
}
}
}`)
// Parse the JSON.
var value any
if err := json.Unmarshal(src, &value); err != nil {
log.Fatal(err)
}
return value
}