-
Notifications
You must be signed in to change notification settings - Fork 3
/
statement.go
236 lines (203 loc) · 4.15 KB
/
statement.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
package kvql
import "fmt"
var (
_ Statement = (*WhereStmt)(nil)
_ Statement = (*OrderStmt)(nil)
_ Statement = (*GroupByStmt)(nil)
_ Statement = (*LimitStmt)(nil)
_ Statement = (*PutStmt)(nil)
_ Statement = (*RemoveStmt)(nil)
)
type Statement interface {
Name() string
}
type SelectStmt struct {
Pos int
AllFields bool
FieldNames []string
FieldTypes []Type
Fields []Expression
Where *WhereStmt
Order *OrderStmt
Limit *LimitStmt
GroupBy *GroupByStmt
}
func (s *SelectStmt) Name() string {
return "SELECT"
}
type WhereStmt struct {
Pos int
Expr Expression
}
func (s *WhereStmt) Name() string {
return "WHERE"
}
type OrderField struct {
Name string
Field Expression
Order TokenType
}
type OrderStmt struct {
Pos int
Orders []OrderField
}
func (s *OrderStmt) Name() string {
return "ORDER BY"
}
type GroupByField struct {
Name string
Expr Expression
}
type GroupByStmt struct {
Pos int
Fields []GroupByField
}
func (s *GroupByStmt) Name() string {
return "GROUP BY"
}
type LimitStmt struct {
Pos int
Start int
Count int
}
func (s *LimitStmt) Name() string {
return "LIMIT"
}
type PutKVPair struct {
Key Expression
Value Expression
}
func (p *PutKVPair) String() string {
return fmt.Sprintf("{%s: %s}", p.Key.String(), p.Value.String())
}
type PutStmt struct {
Pos int
KVPairs []*PutKVPair
}
func (s *PutStmt) Name() string {
return "PUT"
}
type RemoveStmt struct {
Pos int
Keys []Expression
}
func (s *RemoveStmt) Name() string {
return "REMOVE"
}
type DeleteStmt struct {
Pos int
Where *WhereStmt
Limit *LimitStmt
}
func (s *DeleteStmt) Name() string {
return "DELETE"
}
func (s *RemoveStmt) Validate(ctx *CheckCtx) error {
for _, expr := range s.Keys {
rtype := expr.ReturnType()
if rtype != TSTR && rtype != TNUMBER {
return NewSyntaxError(expr.GetPos(), "need str or number type")
}
if err := expr.Check(ctx); err != nil {
return err
}
}
return nil
}
func (s *PutStmt) Validate(ctx *CheckCtx) error {
for _, kv := range s.KVPairs {
if err := s.validateKVPair(kv, ctx); err != nil {
return err
}
}
return nil
}
func (s *PutStmt) validateKVPair(kv *PutKVPair, ctx *CheckCtx) error {
if err := kv.Key.Check(ctx); err != nil {
return err
}
switch kv.Key.ReturnType() {
case TSTR, TNUMBER:
break
default:
return NewSyntaxError(kv.Key.GetPos(), "need str or number type")
}
if err := kv.Value.Check(ctx); err != nil {
return err
}
switch kv.Value.ReturnType() {
case TSTR, TNUMBER:
break
default:
return NewSyntaxError(kv.Value.GetPos(), "need str or number type")
}
return nil
}
func (s *DeleteStmt) Validate(ctx *CheckCtx) error {
return s.Where.Expr.Check(ctx)
}
func (s *SelectStmt) ValidateFields(ctx *CheckCtx) error {
for _, f := range s.Fields {
if err := s.validateField(f, ctx); err != nil {
return err
}
}
return nil
}
func (s *SelectStmt) validateField(f Expression, ctx *CheckCtx) error {
if err := f.Check(ctx); err != nil {
return err
}
return s.checkAggrFunctionArgs(f)
}
func (s *SelectStmt) checkAggrFunctionArgs(expr Expression) error {
var err error
switch e := expr.(type) {
case *BinaryOpExpr:
err = s.checkAggrFunctionArgs(e.Left)
if err != nil {
return err
}
err = s.checkAggrFunctionArgs(e.Right)
if err != nil {
return err
}
case *FunctionCallExpr:
fname, err := GetFuncNameFromExpr(e)
if err == nil && IsAggrFunc(fname) {
err = s.checkAggrFuncArgs(e.Args)
if err != nil {
return err
}
}
}
return nil
}
func (s *SelectStmt) checkAggrFuncArgs(args []Expression) error {
for _, arg := range args {
if err := s.checkAggrFuncArg(arg); err != nil {
return err
}
}
return nil
}
func (s *SelectStmt) checkAggrFuncArg(arg Expression) error {
var err error
switch e := arg.(type) {
case *BinaryOpExpr:
err = s.checkAggrFuncArg(e.Left)
if err != nil {
return err
}
err = s.checkAggrFuncArg(e.Right)
if err != nil {
return err
}
case *FunctionCallExpr:
fname, err := GetFuncNameFromExpr(e)
if err == nil && IsAggrFunc(fname) {
return NewSyntaxError(arg.GetPos(), "Aggregate function arguments should not contains aggregate function")
}
}
return nil
}