-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexpression_converter.go
77 lines (68 loc) · 1.96 KB
/
expression_converter.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
/*
Copyright 2020 The Vitess Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package sqlparser
import (
"fmt"
"github.com/Bill-cc/go-sql2struct/evalengine"
)
// ErrExprNotSupported signals that the expression cannot be handled by expression evaluation engine.
var ErrExprNotSupported = fmt.Errorf("Expr Not Supported")
//Convert converts between AST expressions and executable expressions
func Convert(e Expr) (evalengine.Expr, error) {
switch node := e.(type) {
case Argument:
return evalengine.NewBindVar(string(node[1:])), nil
case *Literal:
switch node.Type {
case IntVal:
return evalengine.NewLiteralIntFromBytes(node.Val)
case FloatVal:
return evalengine.NewLiteralFloat(node.Val)
case StrVal:
return evalengine.NewLiteralString(node.Val), nil
}
case BoolVal:
if node {
return evalengine.NewLiteralIntFromBytes([]byte("1"))
}
return evalengine.NewLiteralIntFromBytes([]byte("0"))
case *BinaryExpr:
var op evalengine.BinaryExpr
switch node.Operator {
case PlusOp:
op = &evalengine.Addition{}
case MinusOp:
op = &evalengine.Subtraction{}
case MultOp:
op = &evalengine.Multiplication{}
case DivOp:
op = &evalengine.Division{}
default:
return nil, ErrExprNotSupported
}
left, err := Convert(node.Left)
if err != nil {
return nil, err
}
right, err := Convert(node.Right)
if err != nil {
return nil, err
}
return &evalengine.BinaryOp{
Expr: op,
Left: left,
Right: right,
}, nil
}
return nil, ErrExprNotSupported
}