forked from couchbaselabs/gojsonsm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslowmatcher.go
317 lines (264 loc) · 6.16 KB
/
slowmatcher.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
// Copyright 2018 Couchbase, Inc. All rights reserved.
package gojsonsm
import (
"encoding/json"
"errors"
"strings"
)
type SlowMatcher struct {
exprs []Expression
exprMatches []bool
vars map[VariableID]interface{}
}
func NewSlowMatcher(exprs []Expression) *SlowMatcher {
return &SlowMatcher{
exprs: exprs,
exprMatches: make([]bool, len(exprs)),
}
}
func (m *SlowMatcher) resolveFieldParam(expr FieldExpr) (interface{}, error) {
rootVal := m.vars[expr.Root]
curVal := rootVal
for _, field := range expr.Path {
if mapVal, ok := curVal.(map[string]interface{}); ok {
curVal = mapVal[field]
} else {
return NewNullFastVal(), errors.New("invalid path")
}
}
return curVal, nil
}
func (m *SlowMatcher) resolveParam(expr Expression) (interface{}, error) {
switch expr := expr.(type) {
case FieldExpr:
return m.resolveFieldParam(expr)
case ValueExpr:
return expr.Value, nil
}
panic("unexpected param expression")
}
func (m *SlowMatcher) matchOrExpr(expr OrExpr) (bool, error) {
for _, subexpr := range expr {
res, err := m.matchOne(subexpr)
if err != nil {
return false, err
}
if res {
return true, nil
}
}
return false, nil
}
func (m *SlowMatcher) matchAndExpr(expr AndExpr) (bool, error) {
if len(expr) == 0 {
return false, nil
}
for _, subexpr := range expr {
res, err := m.matchOne(subexpr)
if err != nil {
return false, err
}
if !res {
return false, nil
}
}
return true, nil
}
func (m *SlowMatcher) compareExprs(lhs Expression, rhs Expression) (int, error) {
lhsVal, err := m.resolveParam(lhs)
if err != nil {
return 0, err
}
rhsVal, err := m.resolveParam(rhs)
if err != nil {
return 0, err
}
switch lhsVal := lhsVal.(type) {
case string:
switch rhsVal := rhsVal.(type) {
case string:
return strings.Compare(lhsVal, rhsVal), nil
}
return 0, errors.New("invalid type comparisons")
case float64:
switch rhsVal := rhsVal.(type) {
case float64:
if lhsVal < rhsVal {
return -1, nil
} else if lhsVal > rhsVal {
return 1, nil
}
return 0, nil
}
return 0, errors.New("invalid type comparisons")
case bool:
switch rhsVal := rhsVal.(type) {
case bool:
if lhsVal == true && rhsVal == false {
return 1, nil
} else if lhsVal == false && rhsVal == true {
return -1, nil
}
return 0, nil
}
case nil:
switch rhsVal.(type) {
case nil:
return 0, nil
}
return -1, nil
}
return 0, errors.New("unexpected lhs type")
}
func (m *SlowMatcher) matchAnyInExpr(expr AnyInExpr) (bool, error) {
vals, err := m.resolveParam(expr.InExpr)
if err != nil {
return false, err
}
switch vals := vals.(type) {
case map[string]interface{}:
for _, val := range vals {
m.vars[expr.VarId] = val
res, err := m.matchOne(expr.SubExpr)
delete(m.vars, expr.VarId)
if err != nil {
return false, err
}
if res {
return true, nil
}
}
return false, nil
case []interface{}:
for _, val := range vals {
m.vars[expr.VarId] = val
res, err := m.matchOne(expr.SubExpr)
delete(m.vars, expr.VarId)
if err != nil {
return false, err
}
if res {
return true, nil
}
}
return false, nil
}
panic("unexpected any in param type")
}
func (m *SlowMatcher) matchEqualsExpr(expr EqualsExpr) (bool, error) {
val, err := m.compareExprs(expr.Lhs, expr.Rhs)
if err != nil {
return false, err
}
return val == 0, nil
}
func (m *SlowMatcher) matchNotEqualsExpr(expr NotEqualsExpr) (bool, error) {
val, err := m.compareExprs(expr.Lhs, expr.Rhs)
if err != nil {
return false, err
}
return val != 0, nil
}
func (m *SlowMatcher) matchLessThanExpr(expr LessThanExpr) (bool, error) {
val, err := m.compareExprs(expr.Lhs, expr.Rhs)
if err != nil {
return false, err
}
return val < 0, nil
}
func (m *SlowMatcher) matchLessEqualsExpr(expr LessEqualsExpr) (bool, error) {
val, err := m.compareExprs(expr.Lhs, expr.Rhs)
if err != nil {
return false, err
}
return val <= 0, nil
}
func (m *SlowMatcher) matchGreaterThanExpr(expr GreaterThanExpr) (bool, error) {
val, err := m.compareExprs(expr.Lhs, expr.Rhs)
if err != nil {
return false, err
}
return val > 0, nil
}
func (m *SlowMatcher) matchGreaterEqualsExpr(expr GreaterEqualsExpr) (bool, error) {
val, err := m.compareExprs(expr.Lhs, expr.Rhs)
if err != nil {
return false, err
}
return val >= 0, nil
}
func (m *SlowMatcher) matchOne(expr Expression) (bool, error) {
switch expr := expr.(type) {
case OrExpr:
return m.matchOrExpr(expr)
case AndExpr:
return m.matchAndExpr(expr)
case AnyInExpr:
return m.matchAnyInExpr(expr)
case EqualsExpr:
return m.matchEqualsExpr(expr)
case NotEqualsExpr:
return m.matchNotEqualsExpr(expr)
case LessThanExpr:
return m.matchLessThanExpr(expr)
case LessEqualsExpr:
return m.matchLessEqualsExpr(expr)
case GreaterThanExpr:
return m.matchGreaterThanExpr(expr)
case GreaterEqualsExpr:
return m.matchGreaterEqualsExpr(expr)
}
panic("unexpected expression")
}
func (m *SlowMatcher) matchOneRootExpr(expr Expression) (bool, error) {
// We do this to match the Matcher requirement that all non-root
// expressions be already compressed of all constant values.
switch expr.(type) {
case TrueExpr:
return true, nil
case FalseExpr:
return false, nil
}
return m.matchOne(expr)
}
func (m *SlowMatcher) Reset() {
for i := range m.vars {
delete(m.vars, i)
}
for i := range m.exprMatches {
m.exprMatches[i] = false
}
}
func (m *SlowMatcher) Match(data []byte) (bool, error) {
var parsedData interface{}
if err := json.Unmarshal(data, &parsedData); err != nil {
return false, err
}
if m.vars == nil {
m.vars = make(map[VariableID]interface{})
}
m.vars[0] = parsedData
matched := false
for i, expr := range m.exprs {
res, err := m.matchOneRootExpr(expr)
if err != nil {
return false, err
}
m.exprMatches[i] = res
if i == 0 && res {
matched = true
} else if !res {
matched = false
}
}
delete(m.vars, 0)
return matched, nil
}
func (m *SlowMatcher) MatchWithStatus(data []byte) (bool, int, error) {
// pass through
matched, err := m.Match(data)
return matched, MatcherNoStatus, err
}
func (m *SlowMatcher) ExpressionMatched(expressionIdx int) bool {
return m.exprMatches[expressionIdx]
}