aboutsummaryrefslogtreecommitdiffstats
path: root/core/vm/sqlvm/type.go
blob: 890b5e6ee18ecd3bfde9c82cabcc3e17797f6c9b (plain) (blame)
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
package sqlvm

import (
    "fmt"
    "reflect"

    "github.com/shopspring/decimal"
)

type identifierNode string

type valuer interface {
    value() interface{}
}

type boolValueNode bool

func (n boolValueNode) value() interface{} { return bool(n) }

type integerValueNode struct {
    v       decimal.Decimal
    address bool
}

func (n integerValueNode) value() interface{} { return n.v }
func (n integerValueNode) String() string     { return n.v.String() }

type decimalValueNode decimal.Decimal

func (n decimalValueNode) value() interface{} { return decimal.Decimal(n) }
func (n decimalValueNode) String() string     { return decimal.Decimal(n).String() }

type bytesValueNode []byte

func (n bytesValueNode) value() interface{} { return []byte(n) }
func (n bytesValueNode) String() string     { return string(n) }

type anyValueNode struct{}

func (n anyValueNode) value() interface{} { return n }

type defaultValueNode struct{}

func (n defaultValueNode) value() interface{} { return n }

type nullValueNode struct{}

func (n nullValueNode) value() interface{} { return n }

type intTypeNode struct {
    size     int32
    unsigned bool
}

type fixedTypeNode struct {
    integerSize    int32
    fractionalSize int32
    unsigned       bool
}

type dynamicBytesTypeNode struct{}

type fixedBytesTypeNode struct {
    size int32
}

type addressTypeNode struct{}
type boolTypeNode struct{}

type unaryOperator interface {
    getTarget() interface{}
    setTarget(interface{})
}

type binaryOperator interface {
    getObject() interface{}
    getSubject() interface{}
    setObject(interface{})
    setSubject(interface{})
}

type unaryOperatorNode struct {
    target interface{}
}

func (n unaryOperatorNode) getTarget() interface{} {
    return n.target
}

func (n *unaryOperatorNode) setTarget(t interface{}) {
    n.target = t
}

type binaryOperatorNode struct {
    object  interface{}
    subject interface{}
}

func (n binaryOperatorNode) getObject() interface{} {
    return n.object
}

func (n binaryOperatorNode) getSubject() interface{} {
    return n.subject
}

func (n *binaryOperatorNode) setObject(o interface{}) {
    n.object = o
}

func (n *binaryOperatorNode) setSubject(s interface{}) {
    n.subject = s
}

type posOperatorNode struct{ unaryOperatorNode }
type negOperatorNode struct{ unaryOperatorNode }
type notOperatorNode struct{ unaryOperatorNode }
type andOperatorNode struct{ binaryOperatorNode }
type orOperatorNode struct{ binaryOperatorNode }

type greaterOrEqualOperatorNode struct{ binaryOperatorNode }
type lessOrEqualOperatorNode struct{ binaryOperatorNode }
type notEqualOperatorNode struct{ binaryOperatorNode }
type equalOperatorNode struct{ binaryOperatorNode }
type greaterOperatorNode struct{ binaryOperatorNode }
type lessOperatorNode struct{ binaryOperatorNode }

type concatOperatorNode struct{ binaryOperatorNode }
type addOperatorNode struct{ binaryOperatorNode }
type subOperatorNode struct{ binaryOperatorNode }
type mulOperatorNode struct{ binaryOperatorNode }
type divOperatorNode struct{ binaryOperatorNode }
type modOperatorNode struct{ binaryOperatorNode }

type inOperatorNode struct{ binaryOperatorNode }
type isOperatorNode struct{ binaryOperatorNode }
type likeOperatorNode struct{ binaryOperatorNode }

type castOperatorNode struct{ binaryOperatorNode }
type assignOperatorNode struct{ binaryOperatorNode }
type functionOperatorNode struct{ binaryOperatorNode }

type optional interface {
    getOption() map[string]interface{}
}

type nilOptionNode struct{}

func (n nilOptionNode) getOption() map[string]interface{} { return nil }

type whereOptionNode struct {
    condition interface{}
}

func (n whereOptionNode) getOption() map[string]interface{} {
    return map[string]interface{}{
        "condition": n.condition,
    }
}

type orderOptionNode struct {
    expr      interface{}
    desc      bool
    nullfirst bool
}

func (n orderOptionNode) getOption() map[string]interface{} {
    return map[string]interface{}{
        "expr":      n.expr,
        "desc":      n.desc,
        "nullfirst": n.nullfirst,
    }
}

type groupOptionNode struct {
    expr interface{}
}

func (n groupOptionNode) getOption() map[string]interface{} {
    return map[string]interface{}{
        "expr": n.expr,
    }
}

type offsetOptionNode struct {
    value integerValueNode
}

func (n offsetOptionNode) getOption() map[string]interface{} {
    return map[string]interface{}{
        "value": n.value,
    }
}

type limitOptionNode struct {
    value integerValueNode
}

func (n limitOptionNode) getOption() map[string]interface{} {
    return map[string]interface{}{
        "value": n.value,
    }
}

type insertWithColumnOptionNode struct {
    column []interface{}
    value  []interface{}
}

func (n insertWithColumnOptionNode) getOption() map[string]interface{} {
    return map[string]interface{}{
        "column": n.column,
        "value":  n.value,
    }
}

type insertWithDefaultOptionNode struct{ nilOptionNode }
type primaryOptionNode struct{ nilOptionNode }
type notNullOptionNode struct{ nilOptionNode }
type uniqueOptionNode struct{ nilOptionNode }
type autoincrementOptionNode struct{ nilOptionNode }

type defaultOptionNode struct {
    value interface{}
}

func (n defaultOptionNode) getOption() map[string]interface{} {
    return map[string]interface{}{
        "value": n.value,
    }
}

type foreignOptionNode struct {
    table  identifierNode
    column identifierNode
}

func (n foreignOptionNode) getOption() map[string]interface{} {
    return map[string]interface{}{
        "table":  n.table,
        "column": n.column,
    }
}

type selectStmtNode struct {
    column []interface{}
    table  *identifierNode
    where  *whereOptionNode
    group  []interface{}
    order  []interface{}
    limit  *limitOptionNode
    offset *offsetOptionNode
}

func (n selectStmtNode) getOption() map[string]interface{} {
    return map[string]interface{}{
        "column": n.column,
        "table":  n.table,
        "where":  n.where,
        "group":  n.group,
        "order":  n.order,
        "limit":  n.limit,
        "offset": n.offset,
    }
}

type updateStmtNode struct {
    table      identifierNode
    assignment []interface{}
    where      *whereOptionNode
}

func (n updateStmtNode) getOption() map[string]interface{} {
    return map[string]interface{}{
        "table":      n.table,
        "assignment": n.assignment,
        "where":      n.where,
    }
}

type deleteStmtNode struct {
    table identifierNode
    where *whereOptionNode
}

func (n deleteStmtNode) getOption() map[string]interface{} {
    return map[string]interface{}{
        "table": n.table,
        "where": n.where,
    }
}

type insertStmtNode struct {
    table  identifierNode
    insert interface{}
}

func (n insertStmtNode) getOption() map[string]interface{} {
    return map[string]interface{}{
        "table":  n.table,
        "insert": n.insert,
    }
}

type createTableStmtNode struct {
    table  identifierNode
    column []interface{}
}

func (n createTableStmtNode) getOption() map[string]interface{} {
    return map[string]interface{}{
        "table":  n.table,
        "column": n.column,
    }
}

type columnSchemaNode struct {
    column     identifierNode
    dataType   interface{}
    constraint []interface{}
}

func (n columnSchemaNode) getOption() map[string]interface{} {
    return map[string]interface{}{
        "column":     n.column,
        "data_type":  n.dataType,
        "constraint": n.constraint,
    }
}

type createIndexStmtNode struct {
    index  identifierNode
    table  identifierNode
    column []interface{}
    unique *uniqueOptionNode
}

func (n createIndexStmtNode) getOption() map[string]interface{} {
    return map[string]interface{}{
        "index":  n.index,
        "table":  n.table,
        "column": n.column,
        "unique": n.unique,
    }
}

// PrintAST prints ast to stdout.
func PrintAST(n interface{}, indent string) {
    if n == nil {
        fmt.Printf("%snil\n", indent)
        return
    }
    typeOf := reflect.TypeOf(n)
    valueOf := reflect.ValueOf(n)
    name := ""
    if typeOf.Kind() == reflect.Ptr {
        if valueOf.IsNil() {
            fmt.Printf("%snil\n", indent)
            return
        }
        name = "*"
        valueOf = valueOf.Elem()
        typeOf = typeOf.Elem()
    }
    name = name + typeOf.Name()

    if op, ok := n.(optional); ok {
        fmt.Printf("%s%s", indent, name)
        m := op.getOption()
        if m == nil {
            fmt.Printf("\n")
            return
        }
        fmt.Printf(":\n")
        for k := range m {
            fmt.Printf("%s  %s:\n", indent, k)
            PrintAST(m[k], indent+"    ")
        }
        return
    }
    if op, ok := n.(unaryOperator); ok {
        fmt.Printf("%s%s:\n", indent, name)
        fmt.Printf("%s  target:\n", indent)
        PrintAST(op.getTarget(), indent+"    ")
        return
    }
    if op, ok := n.(binaryOperator); ok {
        fmt.Printf("%s%s:\n", indent, name)
        fmt.Printf("%s  object:\n", indent)
        PrintAST(op.getObject(), indent+"    ")
        fmt.Printf("%s  subject:\n", indent)
        PrintAST(op.getSubject(), indent+"    ")
        return
    }
    if arr, ok := n.([]interface{}); ok {
        fmt.Printf("%s[\n", indent)
        for idx := range arr {
            PrintAST(arr[idx], indent+"  ")
        }
        fmt.Printf("%s]\n", indent)
        return
    }
    if stringer, ok := n.(fmt.Stringer); ok {
        fmt.Printf("%s%s: %s\n", indent, name, stringer.String())
        return
    }
    fmt.Printf("%s%s: %+v\n", indent, name, valueOf.Interface())
}