-
Notifications
You must be signed in to change notification settings - Fork 3
/
jsonpath.go
210 lines (187 loc) · 4.59 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
package jsonpath
import (
"encoding/json"
"fmt"
"io"
"strings"
)
type Slice struct{ Start, Stop int }
type pathTypeMismatch struct{}
type notFound struct{}
type unknownPathType struct{}
func recursiveGet(data interface{}, path []interface{}) interface{} {
if len(path) == 0 {
switch data.(type) {
case string:
return data.(string)
case float64:
return data.(float64)
case bool:
return data.(bool)
case nil:
return nil
case []interface{}:
return data
case map[string]interface{}:
return data
}
}
switch path[0].(type) {
case string:
switch data.(type) {
case map[string]interface{}:
for k, v := range data.(map[string]interface{}) {
if k == path[0].(string) {
return recursiveGet(v, path[1:])
}
}
return notFound{}
default:
return pathTypeMismatch{}
}
case int:
switch data.(type) {
case []interface{}:
for i, v := range data.([]interface{}) {
if i == path[0].(int) {
return recursiveGet(v, path[1:])
}
}
return notFound{}
default:
return pathTypeMismatch{}
}
case func(int, interface{}) bool:
switch data.(type) {
case []interface{}:
ret := make([]interface{}, 0)
for i, v := range data.([]interface{}) {
if path[0].(func(int, interface{}) bool)(i, v) {
val := recursiveGet(v, path[1:])
switch val.(type) {
case pathTypeMismatch, notFound:
continue
case unknownPathType:
return val
}
ret = append(ret, val)
}
}
return ret
}
case func(string, interface{}) bool:
switch data.(type) {
case map[string]interface{}:
ret := make([]interface{}, 0)
for k, v := range data.(map[string]interface{}) {
if path[0].(func(string, interface{}) bool)(k, v) {
val := recursiveGet(v, path[1:])
switch val.(type) {
case pathTypeMismatch, notFound:
continue
case unknownPathType:
return val
}
ret = append(ret, val)
}
}
return ret
}
case Slice:
switch data.(type) {
case []interface{}:
ret := make([]interface{}, 0)
start := path[0].(Slice).Start
stop := path[0].(Slice).Stop
for i, v := range data.([]interface{}) {
if start <= i && i < stop {
ret = append(ret, recursiveGet(v, path[1:]))
}
}
return ret
}
}
return unknownPathType{}
}
func Get(decoded interface{}, path []interface{}, defaultValue interface{}) (interface{}, error) {
val := recursiveGet(decoded, path)
switch val.(type) {
case notFound:
return defaultValue, fmt.Errorf("not found")
case unknownPathType:
return defaultValue, fmt.Errorf("unknown path type")
case pathTypeMismatch:
return defaultValue, fmt.Errorf("mismatched path type")
}
return val, nil
}
func GetString(decoded interface{}, path []interface{}, defaultValue string) (string, error) {
value, err := Get(decoded, path, nil)
if err != nil {
return defaultValue, err
}
switch value.(type) {
case string:
return value.(string), nil
}
return defaultValue, fmt.Errorf("unexpected type")
}
func GetNumber(decoded interface{}, path []interface{}, defaultValue float64) (float64, error) {
value, err := Get(decoded, path, nil)
if err != nil {
return defaultValue, err
}
switch value.(type) {
case float64:
return value.(float64), nil
}
return defaultValue, fmt.Errorf("unexpected type")
}
func GetBool(decoded interface{}, path []interface{}, defaultValue bool) (bool, error) {
value, err := Get(decoded, path, nil)
if err != nil {
return defaultValue, err
}
switch value.(type) {
case bool:
return value.(bool), nil
}
return defaultValue, fmt.Errorf("unexpected type")
}
func DecodeString(s string) (interface{}, error) {
return DecodeReader(strings.NewReader(s))
}
func DecodeReader(r io.Reader) (interface{}, error) {
var data interface{}
dec := json.NewDecoder(r)
err := dec.Decode(&data)
return data, err
}
func Read(r io.Reader, path []interface{}, defaultValue interface{}) (interface{}, error) {
data, err := DecodeReader(r)
if err != nil {
return nil, err
}
return Get(data, path, defaultValue)
}
func ReadString(r io.Reader, path []interface{}, defaultValue string) (string, error) {
data, err := DecodeReader(r)
if err != nil {
return defaultValue, err
}
return GetString(data, path, defaultValue)
}
func ReadNumber(r io.Reader, path []interface{}, defaultValue float64) (float64, error) {
data, err := DecodeReader(r)
if err != nil {
return defaultValue, err
}
return GetNumber(data, path, defaultValue)
}
func ReadBool(r io.Reader, path []interface{}, defaultValue bool) (bool, error) {
data, err := DecodeReader(r)
if err != nil {
return defaultValue, err
}
return GetBool(data, path, defaultValue)
}