-
Notifications
You must be signed in to change notification settings - Fork 0
/
sqlb_jel.go
409 lines (346 loc) · 10.6 KB
/
sqlb_jel.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
package sqlb
import (
"bytes"
"encoding/json"
"fmt"
r "reflect"
)
/*
Known SQL operations used in JEL. Serves as a whitelist, allowing us to
differentiate them from casts, and describes how to transform JEL Lisp-style
calls into SQL expressions (prefix, infix, etc.). This is case-sensitive and
whitespace-sensitive.
*/
var Ops = map[string]Op{
`and`: OpInfix,
`or`: OpInfix,
`not`: OpPrefix,
`is null`: OpPostfix,
`is not null`: OpPostfix,
`is true`: OpPostfix,
`is not true`: OpPostfix,
`is false`: OpPostfix,
`is not false`: OpPostfix,
`is unknown`: OpPostfix,
`is not unknown`: OpPostfix,
`is distinct from`: OpInfix,
`is not distinct from`: OpInfix,
`=`: OpInfix,
`~`: OpInfix,
`~*`: OpInfix,
`~=`: OpInfix,
`<>`: OpInfix,
`<`: OpInfix,
`>`: OpInfix,
`>=`: OpInfix,
`<=`: OpInfix,
`@@`: OpInfix,
`any`: OpAny,
`between`: OpBetween,
}
/*
Syntax type of SQL operator expressions used in JEL. Allows us to convert JEL
Lisp-style "calls" into SQL-style operations that use prefix, infix, etc.
*/
type Op byte
const (
OpPrefix Op = iota + 1
OpPostfix
OpInfix
OpFunc
OpAny
OpBetween
)
/*
Shortcut for instantiating `Jel` with the type of the given value. The input is
used only as a type carrier.
*/
func JelFor(typ any) Jel { return Jel{Type: typeElemOf(typ)} }
/*
Short for "JSON Expression Language". Provides support for expressing a
whitelisted subset of SQL with JSON, as Lisp-style nested lists. Transcodes
JSON to SQL on the fly. Implements `Expr`. Can be transparently used as a
sub-expression in other `sqlb` expressions. See the provided example.
Expressions are Lisp-style, using nested lists to express "calls". This syntax
is used for all SQL operations. Binary infix operators are considered
variadic.
Lists are used for calls and casts. The first element must be a string. It may
be one of the whitelisted operators or functions, listed in `Ops`. If not, it
must be a field name or a dot-separated field path. Calls are arbitrarily
nestable.
["and", true, ["or", true, ["and", true, false]]]
["<=", 10, 20]
["=", "someField", "otherField"]
["and",
["=", "someField", "otherField"],
["<=", "dateField", ["dateField", "9999-01-01T00:00:00Z"]]
]
Transcoding from JSON to SQL is done by consulting two things: the built-in
whitelist of SQL operations (`Ops`, shared), and a struct type provided to that
particular decoder. The struct serves as a whitelist of available identifiers,
and allows to determine value types via casting.
Casting allows to decode arbitrary JSON directly into the corresponding Go type:
["someDateField", "9999-01-01T00:00:00Z"]
["someGeoField", {"lng": 10, "lat": 20}]
Such decoded values are substituted with ordinal parameters such as $1, and
appended to the slice of arguments (see below).
A string not in a call position and not inside a cast is interpreted as an
identifier: field name or nested field path, dot-separated. It must be found on
the reference struct, otherwise transcoding fails with an error.
"someField"
"outerField.innerField"
Literal numbers, booleans, and nulls that occur outside of casts are decoded
into their Go equivalents. Like casts, they're substituted with ordinal
parameters and appended to the slice of arguments.
JSON queries are transcoded against a struct, by matching fields tagged with
`json` against fields tagged with `db`. Literal values are JSON-decoded into
the types of the corresponding struct fields.
type Input struct {
FieldOne string `json:"fieldOne" db:"field_one"`
FieldTwo struct {
FieldThree *time.Time `json:"fieldThree" db:"field_three"`
} `json:"fieldTwo" db:"field_two"`
}
const src = `
["and",
["=", "fieldOne", ["fieldOne", "literal string"]],
["<", "fieldTwo.fieldThree", ["fieldTwo.fieldThree", "9999-01-01T00:00:00Z"]]
]
`
expr := Jel{Type: reflect.TypeOf((*Input)(nil)).Elem(), Text: src}
text, args := Reify(expr)
The result is roughly equivalent to the following (formatted for clarity):
text := `
"field_one" = 'literal string'
and
("field_two")."field_three" < '9999-01-01T00:00:00Z'
`
args := []any{"literal string", time.Time("9999-01-01T00:00:00Z")}
*/
type Jel struct {
Type r.Type
Text string
}
var _ = Expr(Jel{})
/*
Implement `Expr`, allowing this to be used as a sub-expression in queries built
with "github.com/mitranim/sqlb". Always generates a valid boolean expression,
falling back on "true" if empty.
*/
func (self Jel) AppendExpr(text []byte, args []any) ([]byte, []any) {
bui := Bui{text, args}
if len(self.Text) <= 0 {
bui.Str(`true`)
} else {
self.decode(&bui, stringToBytesUnsafe(self.Text))
}
return bui.Get()
}
// Implement the `AppenderTo` interface, sometimes allowing more efficient text
// encoding.
func (self Jel) AppendTo(text []byte) []byte { return exprAppend(&self, text) }
// Implement the `fmt.Stringer` interface for debug purposes.
func (self Jel) String() string { return exprString(&self) }
// Stores the input for future use in `.AppendExpr`. Input must be valid JSON.
func (self *Jel) Parse(val string) error {
self.Text = val
return nil
}
// Stores the input for future use in `.AppendExpr`. Input must be valid JSON.
func (self *Jel) UnmarshalText(val []byte) error {
// TODO consider using unsafe conversions.
self.Text = string(val)
return nil
}
// Stores the input for future use in `.AppendExpr`. Input must be valid JSON.
func (self *Jel) UnmarshalJSON(val []byte) error {
// TODO consider using unsafe conversions.
self.Text = string(val)
return nil
}
/*
If `.Type` is empty, sets the type of the provided value. Otherwise this is a
nop. The input is used only as a type carrier; its actual value is ignored.
*/
func (self *Jel) OrType(typ any) {
if self.Type == nil {
self.Type = typeElemOf(typ)
}
}
func (self *Jel) decode(bui *Bui, input []byte) {
input = bytes.TrimSpace(input)
if isJsonDict(input) {
panic(ErrInvalidInput{Err{
`decoding JEL`,
errf(`unexpected dict in input: %q`, input),
}})
} else if isJsonList(input) {
self.decodeList(bui, input)
} else if isJsonString(input) {
self.decodeString(bui, input)
} else {
self.decodeAny(bui, input)
}
}
func (self *Jel) decodeList(bui *Bui, input []byte) {
var list []json.RawMessage
err := json.Unmarshal(input, &list)
if err != nil {
panic(ErrInvalidInput{Err{
`decoding JEL list`,
fmt.Errorf(`failed to unmarshal as JSON list: %w`, err),
}})
}
if !(len(list) > 0) {
panic(ErrInvalidInput{Err{
`decoding JEL list`,
ErrStr(`lists must have at least one element, found empty list`),
}})
}
head, args := list[0], list[1:]
if !isJsonString(head) {
panic(ErrInvalidInput{Err{
`decoding JEL list`,
errf(`first list element must be a string, found %q`, head),
}})
}
var name string
err = json.Unmarshal(head, &name)
if err != nil {
panic(ErrInvalidInput{Err{
`decoding JEL list`,
fmt.Errorf(`failed to unmarshal JSON list head as string: %w`, err),
}})
}
switch Ops[name] {
case OpPrefix:
self.decodeOpPrefix(bui, name, args)
case OpPostfix:
self.decodeOpPostfix(bui, name, args)
case OpInfix:
self.decodeOpInfix(bui, name, args)
case OpFunc:
self.decodeOpFunc(bui, name, args)
case OpAny:
self.decodeOpAny(bui, name, args)
case OpBetween:
self.decodeOpBetween(bui, name, args)
default:
self.decodeCast(bui, name, args)
}
}
func (self *Jel) decodeOpPrefix(bui *Bui, name string, args []json.RawMessage) {
if len(args) != 1 {
panic(ErrInvalidInput{Err{
`decoding JEL op (prefix)`,
errf(`prefix operation %q must have exactly 1 argument, found %v`, name, len(args)),
}})
}
bui.Str(`(`)
bui.Str(name)
self.decode(bui, args[0])
bui.Str(`)`)
}
func (self *Jel) decodeOpPostfix(bui *Bui, name string, args []json.RawMessage) {
if len(args) != 1 {
panic(ErrInvalidInput{Err{
`decoding JEL op (postfix)`,
errf(`postfix operation %q must have exactly 1 argument, found %v`, name, len(args)),
}})
}
bui.Str(`(`)
self.decode(bui, args[0])
bui.Str(name)
bui.Str(`)`)
}
func (self *Jel) decodeOpInfix(bui *Bui, name string, args []json.RawMessage) {
if !(len(args) >= 2) {
panic(ErrInvalidInput{Err{
`decoding JEL op (infix)`,
errf(`infix operation %q must have at least 2 arguments, found %v`, name, len(args)),
}})
}
bui.Str(`(`)
for ind, arg := range args {
if ind > 0 {
bui.Str(name)
}
self.decode(bui, arg)
}
bui.Str(`)`)
}
func (self *Jel) decodeOpFunc(bui *Bui, name string, args []json.RawMessage) {
bui.Str(name)
bui.Str(`(`)
for ind, arg := range args {
if ind > 0 {
bui.Str(`,`)
}
self.decode(bui, arg)
}
bui.Str(`)`)
}
func (self *Jel) decodeOpAny(bui *Bui, name string, args []json.RawMessage) {
if len(args) != 2 {
panic(ErrInvalidInput{Err{
`decoding JEL op`,
errf(`operation %q must have exactly 2 arguments, found %v`, name, len(args)),
}})
}
bui.Str(`(`)
self.decode(bui, args[0])
bui.Str(`=`)
bui.Str(name)
bui.Str(`(`)
self.decode(bui, args[1])
bui.Str(`)`)
bui.Str(`)`)
}
func (self *Jel) decodeOpBetween(bui *Bui, name string, args []json.RawMessage) {
if len(args) != 3 {
panic(ErrInvalidInput{Err{
`decoding JEL op (between)`,
errf(`operation %q must have exactly 3 arguments, found %v`, name, len(args)),
}})
}
bui.Str(`(`)
self.decode(bui, args[0])
bui.Str(`between`)
self.decode(bui, args[1])
bui.Str(`and`)
self.decode(bui, args[2])
bui.Str(`)`)
}
func (self *Jel) decodeCast(bui *Bui, name string, args []json.RawMessage) {
if len(args) != 1 {
panic(ErrInvalidInput{Err{
`decoding JEL op (cast)`,
errf(`cast into %q must have exactly 1 argument, found %v`, name, len(args)),
}})
}
typ := self.Type
field, ok := loadStructJsonPathToNestedDbFieldMap(typ)[name]
if !ok {
panic(errUnknownField(`decoding JEL op (cast)`, name, typeName(typ)))
}
val := r.New(field.Field.Type)
try(json.Unmarshal(args[0], val.Interface()))
bui.Arg(val.Elem().Interface())
}
func (self *Jel) decodeString(bui *Bui, input []byte) {
var str string
try(json.Unmarshal(input, &str))
typ := self.Type
val, ok := loadStructJsonPathToNestedDbFieldMap(typ)[str]
if !ok {
panic(errUnknownField(`decoding JEL string`, str, typeName(typ)))
}
bui.Set(Path(val.DbPath).AppendExpr(bui.Get()))
}
// Should be used only for numbers, bools, nulls.
// TODO: unmarshal integers into `int64` rather than `float64`.
func (self *Jel) decodeAny(bui *Bui, input []byte) {
var val any
try(json.Unmarshal(input, &val))
bui.Arg(val)
}