-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfetch.go
423 lines (376 loc) · 7.83 KB
/
fetch.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
// Package Fetch allows the querying of nested data through javascript-style accessors
package fetch
import (
"errors"
"fmt"
"strconv"
"strings"
"unicode"
"unicode/utf8"
)
const (
itemError = iota
itemBeginArray
itemEndArray
itemString
itemNumber
itemDot
itemField
itemSpace
fieldDot
fieldMap
fieldArray
)
var ident = map[int]string{
itemError: "itemError",
itemBeginArray: "itemBeginArray",
itemEndArray: "itemEndArray",
itemString: "itemString",
itemNumber: "itemNumber",
itemDot: "itemDot",
itemField: "itemField",
itemSpace: "itemSpace",
fieldDot: "fieldDot",
fieldMap: "fieldMap",
fieldArray: "fieldArray",
}
const eof = -1
type itemType int
type stateFn func(*Query) stateFn
type item struct {
typ itemType
pos int
val string
}
type fieldType int
type field struct {
typ fieldType
index int
key string
}
type Query struct {
state stateFn
pos int
width int
input string
start int
lastPos int
items chan item
fields []field
}
func (l *Query) run() {
for l.state = startLex; l.state != nil; {
l.state = l.state(l)
}
}
func (l *Query) next() rune {
if int(l.pos) >= len(l.input) {
l.width = 0
return eof
}
r, w := utf8.DecodeRuneInString(l.input[l.pos:])
l.width = w
l.pos += l.width
return r
}
func (l *Query) peek() rune {
r := l.next()
l.backup()
return r
}
func (l *Query) backup() {
l.pos -= l.width
}
func (l *Query) emit(t itemType) {
l.items <- item{t, l.start, l.input[l.start:l.pos]}
l.start = l.pos
}
func (l *Query) ignore() {
l.start = l.pos
}
func (l *Query) errorf(format string, args ...interface{}) stateFn {
l.items <- item{itemError, l.start, fmt.Sprintf(format, args...)}
return nil
}
func (l *Query) accept(valid string) bool {
if strings.IndexRune(valid, l.next()) >= 0 {
return true
}
l.backup()
return false
}
func (l *Query) acceptRun(valid string) {
for strings.IndexRune(valid, l.next()) >= 0 {
}
l.backup()
}
func (l *Query) String() string {
return l.input
}
func (l *Query) MarshalJSON() ([]byte, error) {
return []byte("\"" + l.input + "\""), nil
}
func startLex(l *Query) stateFn {
c := l.next()
switch {
case c == '[':
l.emit(itemBeginArray)
return startLex
case c == ']':
l.emit(itemEndArray)
return startLex
case c == '"':
return lexQuote
case c == '\'':
return lexSQuote
case c == '.':
if !isAlphaNumeric(l.peek()) {
l.emit(itemDot)
} else {
return lexField
}
return startLex
case '0' <= c && c <= '9':
l.backup()
return lexNumber
case c == eof:
l.emit(eof)
return nil
case isAlphaNumeric(c):
l.emit(itemError)
case !isAlphaNumeric(c):
l.emit(itemError)
return startLex
}
return startLex
}
func lexField(l *Query) stateFn {
Loop:
for {
switch r := l.next(); {
case isAlphaNumeric(r):
default:
l.backup()
word := l.input[l.start:l.pos]
if !l.atTerminator() {
return l.errorf("bad character %#U", r)
}
switch {
case word[0] == '.':
l.emit(itemField)
default:
l.emit(itemError)
}
break Loop
}
}
return startLex
}
func lexQuote(l *Query) stateFn {
Loop:
for {
switch l.next() {
case '\\':
if r := l.next(); r != eof && r != '\n' {
break
}
fallthrough
case eof, '\n':
return l.errorf("unterminated quoted string")
case '"':
break Loop
}
}
l.emit(itemString)
return startLex
}
func lexSQuote(l *Query) stateFn {
Loop:
for {
switch l.next() {
case '\\':
if r := l.next(); r != eof && r != '\n' {
break
}
fallthrough
case eof, '\n':
return l.errorf("unterminated quoted string")
case '\'':
break Loop
}
}
l.emit(itemString)
return startLex
}
func lexNumber(l *Query) stateFn {
if !l.scanNumber() {
return l.errorf("bad number syntax: %q", l.input[l.start:l.pos])
}
l.emit(itemNumber)
return startLex
}
func lexSpace(l *Query) stateFn {
for isSpace(l.peek()) {
l.next()
}
l.emit(itemSpace)
return startLex
}
func (l *Query) atTerminator() bool {
r := l.peek()
if isSpace(r) || isEndOfLine(r) {
return true
}
switch r {
case eof, '.', ',', '|', ':', ')', '(', '[', ']', '{', '}', '+', '-', '/', '*':
return true
}
return false
}
func (l *Query) runField() error {
accessor := false
pos := 0
var i *field
for pos <= len(l.input) {
c := l.nextItem()
switch c.typ {
case itemField:
l.fields = append(l.fields, field{typ: fieldMap, key: c.val[1:]})
case itemBeginArray:
if accessor {
return errors.New(fmt.Sprintf("Unexpected token %s at position %d", c.val, c.pos))
}
accessor = true
case itemString:
if i != nil || !accessor {
return errors.New(fmt.Sprintf("Unexpected token %s at position %d", c.val, c.pos))
}
k := c.val[1:]
k = k[:len(k)-1]
i = &field{
typ: fieldMap,
key: k,
}
case itemNumber:
if i != nil || !accessor {
return errors.New(fmt.Sprintf("Unexpected token %s at position %d", c.val, c.pos))
}
index, err := strconv.Atoi(c.val)
if err != nil {
return err
}
i = &field{
typ: fieldArray,
index: index,
}
case itemEndArray:
if i == nil || !accessor {
return errors.New(fmt.Sprintf("Unexpected token %s at position %d", c.val, c.pos))
}
l.fields = append(l.fields, *i)
i = nil
accessor = false
case eof:
return nil
case itemDot:
if pos == 0 {
break
}
fallthrough
default:
return errors.New(fmt.Sprintf("Unexpected token %s at position %d", c.val, c.pos))
}
pos += len(c.val)
}
return nil
}
func (l *Query) nextItem() item {
item := <-l.items
l.lastPos = item.pos
return item
}
func (l *Query) scanNumber() bool {
digits := "0123456789"
l.acceptRun(digits)
return true
}
func isSpace(r rune) bool {
return r == ' ' || r == '\t'
}
func isEndOfLine(r rune) bool {
return r == '\r' || r == '\n'
}
func isAlphaNumeric(r rune) bool {
return r == '_' || unicode.IsLetter(r) || unicode.IsDigit(r)
}
func mapValue(o interface{}, key string) (interface{}, error) {
n, ok := o.(map[string]interface{})
if !ok {
return nil, errors.New("Not of type object")
}
p, ok := n[key]
if !ok {
return nil, errors.New(fmt.Sprintf("Key (%s) does not exist", key))
}
return p, nil
}
func indexValue(o interface{}, index int) (interface{}, error) {
n, ok := o.([]interface{})
if !ok {
return nil, errors.New("Not of type array")
}
if index > len(n) {
return nil, errors.New(fmt.Sprintf("Index (%d) out of range", index))
}
return n[index], nil
}
// Converts a query string into a *Fetch.Query.
// Fetch.Parse is similar to jq, in that in order to reference the base value,
// you must begin a query with '.'
// For example, a query string of '.' will return an entire value, a query string
// of '.foo' will return the value of key foo on the root of the value. Every
// subsequent field can be accessed through javascript-style dot/bracket notation.
// for example, .foo[0] would return the first element of array foo, and
// .["foo"][0] would do the same as well.
func Parse(input string) (*Query, error) {
l := &Query{
input: input,
items: make(chan item),
fields: []field{},
}
go l.run()
err := l.runField()
if err != nil {
return nil, err
}
return l, nil
}
// Executes a *Fetch.Query on some data. Returns the result of the query.
func Run(l *Query, o interface{}) (interface{}, error) {
var err error
for _, v := range l.fields {
switch v.typ {
case fieldMap:
o, err = mapValue(o, v.key)
if err != nil {
return nil, err
}
case fieldArray:
o, err = indexValue(o, v.index)
if err != nil {
return nil, err
}
}
}
return o, nil
}
// A convenience function that runs both Parse() and Run() automatically.
// It is highly recommended that you parse your query ahead of time
// with Fetch.Parse() and follow up with Fetch.Run() instead.
func Fetch(input string, obj interface{}) (interface{}, error) {
l, err := Parse(input)
if err != nil {
return nil, err
}
return Run(l, obj)
}