forked from mbordner/kazaam
-
Notifications
You must be signed in to change notification settings - Fork 1
/
expr.go
300 lines (259 loc) · 7.12 KB
/
expr.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
package transform
import (
"errors"
"go/ast"
"go/constant"
"go/parser"
"go/token"
"strconv"
"github.com/semarcial/kazaam/v5/registry"
)
// support for basic expression evaluation support.
// NOTE: expressions must evaluate to a bool value, i.e. true or false
// supports
// ! - unary not operator
// && - binary logical and
// || - binary logical or
// == - binary equality
// != - binary equality negated
// < - binary less than
// > - binary greater than
// <= - binary less than or equal to
// >= - binary greater than or equal to
// ( ) - parentheses grouping
// true - boolean true constant
// false - boolean false constant
// <number constants> - number constants
// <string constants> - string constants ( "" )
// <func calls> - converter function call, f( jsonPath, stringArgs ) where, f is a converter id, jsonPath is a json path, and args are arguments to the converter
// <json path resolution> - a json path.. does not support path parameters, i.e. ? conditionals and converter extensions
type BasicExpr struct {
fullExpression string
data []byte
astExpr ast.Expr
}
// json data for evaluating json paths, and the expression string to evaluate to a boolean true/false constant value
// err will be returned if the expression can't be parsed
func NewBasicExpr(data []byte, exprStr string) (expr *BasicExpr, err error) {
astExpr, err := parser.ParseExpr(exprStr)
if err != nil {
return
}
expr = new(BasicExpr)
expr.data = data
expr.fullExpression = exprStr
expr.astExpr = astExpr
return
}
// returns true|false, otherwise error if the expression can not be evaluated
func (expr *BasicExpr) Eval() (val bool, err error) {
var evaluation constant.Value
evaluation, err = expr.evalExpr(expr.astExpr)
if err != nil {
return
}
val = constant.BoolVal(evaluation)
return
}
func (expr *BasicExpr) evalBinaryExpr(exp *ast.BinaryExpr) (val constant.Value, err error) {
var left, right constant.Value
left, err = expr.evalExpr(exp.X)
if err != nil {
return
}
right, err = expr.evalExpr(exp.Y)
if err != nil {
return
}
switch exp.Op {
// logical operators
case token.LOR:
fallthrough
case token.LAND:
l := left.Kind()
r := right.Kind()
if l != constant.Bool || r != constant.Bool {
err = errors.New("logical operators require bool values")
return
}
val = constant.BinaryOp(left, exp.Op, right)
return
// comparison operators
case token.GTR:
fallthrough
case token.LSS:
fallthrough
case token.EQL:
fallthrough
case token.NEQ:
fallthrough
case token.GEQ:
fallthrough
case token.LEQ:
l := left.Kind()
r := right.Kind()
if l != r && !(expr.isNumKind(l) && expr.isNumKind(r)) {
err = errors.New("comparison operators require types to be the same")
return
}
val = constant.MakeBool(constant.Compare(left, exp.Op, right))
return
}
err = errors.New("unsupported operator")
return
}
func (expr *BasicExpr) isNumKind(k constant.Kind) bool {
return k == constant.Int || k == constant.Float
}
func (expr *BasicExpr) evalExpr(exp ast.Expr) (val constant.Value, err error) {
switch exp := exp.(type) {
case *ast.UnaryExpr:
if exp.Op == token.NOT {
val, err = expr.evalExpr(exp.X)
if err != nil {
return
}
val = constant.MakeBool(!(constant.BoolVal(val)))
return
}
case *ast.ParenExpr:
val, err = expr.evalExpr(exp.X)
return
case *ast.BinaryExpr:
val, err = expr.evalBinaryExpr(exp)
return
case *ast.Ident:
if exp.Name == "true" || exp.Name == "false" {
val = constant.MakeBool(exp.Name == "true")
return
} else if exp.Name == "null" || exp.Name == "nil" {
val = constant.MakeUnknown()
return
} else {
// assumed to be a json path variable -- without selector syntax, e.g top level prop
val, err = expr.evalJsonPath(exp.Name)
return
}
case *ast.SelectorExpr:
pos := exp.Pos()
end := exp.End()
path := expr.fullExpression[pos-1 : end-1]
val, err = expr.evalJsonPath(path)
return
case *ast.BasicLit:
switch exp.Kind {
case token.STRING:
val = constant.MakeFromLiteral(exp.Value, exp.Kind, 0)
return
case token.INT:
val = constant.MakeFromLiteral(exp.Value, exp.Kind, 0)
return
case token.FLOAT:
val = constant.MakeFromLiteral(exp.Value, exp.Kind, 0)
return
}
case *ast.CallExpr:
val, err = expr.evalConverterFunc(exp.Fun.(*ast.Ident).Name, exp.Args)
return
}
err = errors.New("unsupported expression syntax")
return
}
func (expr *BasicExpr) evalJsonPath(path string) (val constant.Value, err error) {
var jsonPathSimpleValue *JSONValue
jsonPathSimpleValue, err = GetJsonPathValue(expr.data, path)
if err != nil {
return
}
switch jsonPathSimpleValue.valueType {
case JSONNull:
val = constant.MakeUnknown()
case JSONString:
val = constant.MakeString(jsonPathSimpleValue.GetStringValue())
case JSONInt:
val = constant.MakeInt64(jsonPathSimpleValue.GetIntValue())
case JSONFloat:
val = constant.MakeFloat64(jsonPathSimpleValue.GetFloatValue())
case JSONBool:
val = constant.MakeBool(jsonPathSimpleValue.GetBoolValue())
default:
err = errors.New("unsupported type")
}
return
}
func (expr *BasicExpr) evalConverterFunc(name string, args []ast.Expr) (val constant.Value, err error) {
var jsonPath, converterArgs string
if len(args) > 0 {
argValues := make([]constant.Value, 0, len(args))
for _, a := range args {
v, e := expr.evalExpr(a)
if e != nil {
err = e
return
}
argValues = append(argValues, v)
}
if argValues[0].Kind() == constant.String {
jsonPath = constant.StringVal(argValues[0])
} else {
err = errors.New("expected json path as string")
return
}
if len(args) > 1 {
if argValues[1].Kind() == constant.String {
converterArgs = constant.StringVal(argValues[1])
} else {
err = errors.New("expected converter arguments as string")
return
}
}
} else {
err = errors.New("expected path string, and optional arguments as string")
return
}
conv := registry.GetConverter(name)
if conv != nil {
var jsonPathBytes, converterArgsBytes []byte
// get json path (string)'s value as simple value
jsonPathValue, e := GetJsonPathValue(expr.data, jsonPath)
if e != nil {
err = e
return
}
// get the bytes for this value
jsonPathBytes = jsonPathValue.GetData()
if len(converterArgs) > 0 {
converterArgsBytes = []byte(strconv.Quote(converterArgs))
}
// run them through the converter, and get the new value's bytes
var newValue []byte
newValue, err = conv.Convert(expr.data, jsonPathBytes, converterArgsBytes)
if err != nil {
return
}
// convert to simple value
var simpleValue *JSONValue
simpleValue, err = NewJSONValue(newValue)
if err != nil {
return
}
switch simpleValue.valueType {
case JSONNull:
val = constant.MakeUnknown()
case JSONString:
val = constant.MakeString(simpleValue.GetStringValue())
case JSONInt:
val = constant.MakeInt64(simpleValue.GetIntValue())
case JSONFloat:
val = constant.MakeFloat64(simpleValue.GetFloatValue())
case JSONBool:
val = constant.MakeBool(simpleValue.GetBoolValue())
default:
err = errors.New("unsupported type")
}
} else {
val = constant.MakeUnknown()
err = errors.New("missing converter")
}
return
}