-
Notifications
You must be signed in to change notification settings - Fork 72
/
parser.go
673 lines (558 loc) · 16.3 KB
/
parser.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
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
package gosql
import (
"errors"
"fmt"
)
func tokenFromKeyword(k Keyword) Token {
return Token{
Kind: KeywordKind,
Value: string(k),
}
}
func tokenFromSymbol(s Symbol) Token {
return Token{
Kind: SymbolKind,
Value: string(s),
}
}
type Parser struct {
HelpMessagesDisabled bool
}
// helpMessage prints errors found while parsing
func (p Parser) helpMessage(tokens []*Token, cursor uint, msg string) {
if p.HelpMessagesDisabled {
return
}
var c *Token
if cursor+1 < uint(len(tokens)) {
c = tokens[cursor+1]
} else {
c = tokens[cursor]
}
fmt.Printf("[%d,%d]: %s, near: %s\n", c.Loc.Line, c.Loc.Col, msg, c.Value)
}
// parseTokenKind looks for a token of the given kind
func (p Parser) parseTokenKind(tokens []*Token, initialCursor uint, kind TokenKind) (*Token, uint, bool) {
cursor := initialCursor
if cursor >= uint(len(tokens)) {
return nil, initialCursor, false
}
current := tokens[cursor]
if current.Kind == kind {
return current, cursor + 1, true
}
return nil, initialCursor, false
}
// parseToken looks for a Token the same as passed in (ignoring Token
// location)
func (p Parser) parseToken(tokens []*Token, initialCursor uint, t Token) (*Token, uint, bool) {
cursor := initialCursor
if cursor >= uint(len(tokens)) {
return nil, initialCursor, false
}
if p := tokens[cursor]; t.equals(p) {
return p, cursor + 1, true
}
return nil, initialCursor, false
}
func (p Parser) parseLiteralExpression(tokens []*Token, initialCursor uint) (*Expression, uint, bool) {
cursor := initialCursor
kinds := []TokenKind{IdentifierKind, NumericKind, StringKind, BoolKind, NullKind}
for _, kind := range kinds {
t, newCursor, ok := p.parseTokenKind(tokens, cursor, kind)
if ok {
return &Expression{
Literal: t,
Kind: LiteralKind,
}, newCursor, true
}
}
return nil, initialCursor, false
}
func (p Parser) parseExpression(tokens []*Token, initialCursor uint, delimiters []Token, minBp uint) (*Expression, uint, bool) {
cursor := initialCursor
var exp *Expression
_, newCursor, ok := p.parseToken(tokens, cursor, tokenFromSymbol(LeftParenSymbol))
if ok {
cursor = newCursor
RightParenToken := tokenFromSymbol(RightParenSymbol)
exp, cursor, ok = p.parseExpression(tokens, cursor, append(delimiters, RightParenToken), minBp)
if !ok {
p.helpMessage(tokens, cursor, "Expected expression after opening paren")
return nil, initialCursor, false
}
_, cursor, ok = p.parseToken(tokens, cursor, RightParenToken)
if !ok {
p.helpMessage(tokens, cursor, "Expected closing paren")
return nil, initialCursor, false
}
} else {
exp, cursor, ok = p.parseLiteralExpression(tokens, cursor)
if !ok {
return nil, initialCursor, false
}
}
lastCursor := cursor
outer:
for cursor < uint(len(tokens)) {
for _, d := range delimiters {
_, _, ok = p.parseToken(tokens, cursor, d)
if ok {
break outer
}
}
binOps := []Token{
tokenFromKeyword(AndKeyword),
tokenFromKeyword(OrKeyword),
tokenFromSymbol(EqSymbol),
tokenFromSymbol(NeqSymbol),
tokenFromSymbol(LtSymbol),
tokenFromSymbol(LteSymbol),
tokenFromSymbol(GtSymbol),
tokenFromSymbol(GteSymbol),
tokenFromSymbol(ConcatSymbol),
tokenFromSymbol(PlusSymbol),
}
var op *Token
for _, bo := range binOps {
var t *Token
t, cursor, ok = p.parseToken(tokens, cursor, bo)
if ok {
op = t
break
}
}
if op == nil {
p.helpMessage(tokens, cursor, "Expected binary operator")
return nil, initialCursor, false
}
bp := op.bindingPower()
if bp < minBp {
cursor = lastCursor
break
}
b, newCursor, ok := p.parseExpression(tokens, cursor, delimiters, bp)
if !ok {
p.helpMessage(tokens, cursor, "Expected right operand")
return nil, initialCursor, false
}
exp = &Expression{
Binary: &BinaryExpression{
*exp,
*b,
*op,
},
Kind: BinaryKind,
}
cursor = newCursor
lastCursor = cursor
}
return exp, cursor, true
}
func (p Parser) parseSelectItem(tokens []*Token, initialCursor uint, delimiters []Token) (*[]*SelectItem, uint, bool) {
cursor := initialCursor
var s []*SelectItem
outer:
for {
if cursor >= uint(len(tokens)) {
return nil, initialCursor, false
}
current := tokens[cursor]
for _, delimiter := range delimiters {
if delimiter.equals(current) {
break outer
}
}
var ok bool
if len(s) > 0 {
_, cursor, ok = p.parseToken(tokens, cursor, tokenFromSymbol(CommaSymbol))
if !ok {
p.helpMessage(tokens, cursor, "Expected comma")
return nil, initialCursor, false
}
}
var si SelectItem
_, cursor, ok = p.parseToken(tokens, cursor, tokenFromSymbol(AsteriskSymbol))
if ok {
si = SelectItem{Asterisk: true}
} else {
asToken := tokenFromKeyword(AsKeyword)
delimiters := append(delimiters, tokenFromSymbol(CommaSymbol), asToken)
exp, newCursor, ok := p.parseExpression(tokens, cursor, delimiters, 0)
if !ok {
p.helpMessage(tokens, cursor, "Expected expression")
return nil, initialCursor, false
}
cursor = newCursor
si.Exp = exp
_, cursor, ok = p.parseToken(tokens, cursor, asToken)
if ok {
id, newCursor, ok := p.parseTokenKind(tokens, cursor, IdentifierKind)
if !ok {
p.helpMessage(tokens, cursor, "Expected identifier after AS")
return nil, initialCursor, false
}
cursor = newCursor
si.As = id
}
}
s = append(s, &si)
}
return &s, cursor, true
}
func (p Parser) parseSelectStatement(tokens []*Token, initialCursor uint, delimiter Token) (*SelectStatement, uint, bool) {
var ok bool
cursor := initialCursor
_, cursor, ok = p.parseToken(tokens, cursor, tokenFromKeyword(SelectKeyword))
if !ok {
return nil, initialCursor, false
}
slct := SelectStatement{}
fromToken := tokenFromKeyword(FromKeyword)
item, newCursor, ok := p.parseSelectItem(tokens, cursor, []Token{fromToken, delimiter})
if !ok {
return nil, initialCursor, false
}
slct.Item = item
cursor = newCursor
whereToken := tokenFromKeyword(WhereKeyword)
_, cursor, ok = p.parseToken(tokens, cursor, fromToken)
if ok {
from, newCursor, ok := p.parseTokenKind(tokens, cursor, IdentifierKind)
if !ok {
p.helpMessage(tokens, cursor, "Expected FROM item")
return nil, initialCursor, false
}
slct.From = from
cursor = newCursor
}
limitToken := tokenFromKeyword(LimitKeyword)
offsetToken := tokenFromKeyword(OffsetKeyword)
_, cursor, ok = p.parseToken(tokens, cursor, whereToken)
if ok {
where, newCursor, ok := p.parseExpression(tokens, cursor, []Token{limitToken, offsetToken, delimiter}, 0)
if !ok {
p.helpMessage(tokens, cursor, "Expected WHERE conditionals")
return nil, initialCursor, false
}
slct.Where = where
cursor = newCursor
}
_, cursor, ok = p.parseToken(tokens, cursor, limitToken)
if ok {
limit, newCursor, ok := p.parseExpression(tokens, cursor, []Token{offsetToken, delimiter}, 0)
if !ok {
p.helpMessage(tokens, cursor, "Expected LIMIT value")
return nil, initialCursor, false
}
slct.Limit = limit
cursor = newCursor
}
_, cursor, ok = p.parseToken(tokens, cursor, offsetToken)
if ok {
offset, newCursor, ok := p.parseExpression(tokens, cursor, []Token{delimiter}, 0)
if !ok {
p.helpMessage(tokens, cursor, "Expected OFFSET value")
return nil, initialCursor, false
}
slct.Offset = offset
cursor = newCursor
}
return &slct, cursor, true
}
func (p Parser) parseExpressions(tokens []*Token, initialCursor uint, delimiter Token) (*[]*Expression, uint, bool) {
cursor := initialCursor
var exps []*Expression
for {
if cursor >= uint(len(tokens)) {
return nil, initialCursor, false
}
current := tokens[cursor]
if delimiter.equals(current) {
break
}
if len(exps) > 0 {
var ok bool
_, cursor, ok = p.parseToken(tokens, cursor, tokenFromSymbol(CommaSymbol))
if !ok {
p.helpMessage(tokens, cursor, "Expected comma")
return nil, initialCursor, false
}
}
exp, newCursor, ok := p.parseExpression(tokens, cursor, []Token{tokenFromSymbol(CommaSymbol), tokenFromSymbol(RightParenSymbol)}, 0)
if !ok {
p.helpMessage(tokens, cursor, "Expected expression")
return nil, initialCursor, false
}
cursor = newCursor
exps = append(exps, exp)
}
return &exps, cursor, true
}
func (p Parser) parseInsertStatement(tokens []*Token, initialCursor uint, _ Token) (*InsertStatement, uint, bool) {
cursor := initialCursor
ok := false
_, cursor, ok = p.parseToken(tokens, cursor, tokenFromKeyword(InsertKeyword))
if !ok {
return nil, initialCursor, false
}
_, cursor, ok = p.parseToken(tokens, cursor, tokenFromKeyword(IntoKeyword))
if !ok {
p.helpMessage(tokens, cursor, "Expected into")
return nil, initialCursor, false
}
table, newCursor, ok := p.parseTokenKind(tokens, cursor, IdentifierKind)
if !ok {
p.helpMessage(tokens, cursor, "Expected table name")
return nil, initialCursor, false
}
cursor = newCursor
_, cursor, ok = p.parseToken(tokens, cursor, tokenFromKeyword(ValuesKeyword))
if !ok {
p.helpMessage(tokens, cursor, "Expected VALUES")
return nil, initialCursor, false
}
_, cursor, ok = p.parseToken(tokens, cursor, tokenFromSymbol(LeftParenSymbol))
if !ok {
p.helpMessage(tokens, cursor, "Expected left paren")
return nil, initialCursor, false
}
values, newCursor, ok := p.parseExpressions(tokens, cursor, tokenFromSymbol(RightParenSymbol))
if !ok {
p.helpMessage(tokens, cursor, "Expected expressions")
return nil, initialCursor, false
}
cursor = newCursor
_, cursor, ok = p.parseToken(tokens, cursor, tokenFromSymbol(RightParenSymbol))
if !ok {
p.helpMessage(tokens, cursor, "Expected right paren")
return nil, initialCursor, false
}
return &InsertStatement{
Table: *table,
Values: values,
}, cursor, true
}
func (p Parser) parseColumnDefinitions(tokens []*Token, initialCursor uint, delimiter Token) (*[]*ColumnDefinition, uint, bool) {
cursor := initialCursor
var cds []*ColumnDefinition
for {
if cursor >= uint(len(tokens)) {
return nil, initialCursor, false
}
current := tokens[cursor]
if delimiter.equals(current) {
break
}
if len(cds) > 0 {
var ok bool
_, cursor, ok = p.parseToken(tokens, cursor, tokenFromSymbol(CommaSymbol))
if !ok {
p.helpMessage(tokens, cursor, "Expected comma")
return nil, initialCursor, false
}
}
id, newCursor, ok := p.parseTokenKind(tokens, cursor, IdentifierKind)
if !ok {
p.helpMessage(tokens, cursor, "Expected column name")
return nil, initialCursor, false
}
cursor = newCursor
ty, newCursor, ok := p.parseTokenKind(tokens, cursor, KeywordKind)
if !ok {
p.helpMessage(tokens, cursor, "Expected column type")
return nil, initialCursor, false
}
cursor = newCursor
primaryKey := false
_, cursor, ok = p.parseToken(tokens, cursor, tokenFromKeyword(PrimarykeyKeyword))
if ok {
primaryKey = true
}
cds = append(cds, &ColumnDefinition{
Name: *id,
Datatype: *ty,
PrimaryKey: primaryKey,
})
}
return &cds, cursor, true
}
func (p Parser) parseCreateTableStatement(tokens []*Token, initialCursor uint, _ Token) (*CreateTableStatement, uint, bool) {
cursor := initialCursor
ok := false
_, cursor, ok = p.parseToken(tokens, cursor, tokenFromKeyword(CreateKeyword))
if !ok {
return nil, initialCursor, false
}
_, cursor, ok = p.parseToken(tokens, cursor, tokenFromKeyword(TableKeyword))
if !ok {
return nil, initialCursor, false
}
name, newCursor, ok := p.parseTokenKind(tokens, cursor, IdentifierKind)
if !ok {
p.helpMessage(tokens, cursor, "Expected table name")
return nil, initialCursor, false
}
cursor = newCursor
_, cursor, ok = p.parseToken(tokens, cursor, tokenFromSymbol(LeftParenSymbol))
if !ok {
p.helpMessage(tokens, cursor, "Expected left parenthesis")
return nil, initialCursor, false
}
cols, newCursor, ok := p.parseColumnDefinitions(tokens, cursor, tokenFromSymbol(RightParenSymbol))
if !ok {
return nil, initialCursor, false
}
cursor = newCursor
_, cursor, ok = p.parseToken(tokens, cursor, tokenFromSymbol(RightParenSymbol))
if !ok {
p.helpMessage(tokens, cursor, "Expected right parenthesis")
return nil, initialCursor, false
}
return &CreateTableStatement{
Name: *name,
Cols: cols,
}, cursor, true
}
func (p Parser) parseDropTableStatement(tokens []*Token, initialCursor uint, _ Token) (*DropTableStatement, uint, bool) {
cursor := initialCursor
ok := false
_, cursor, ok = p.parseToken(tokens, cursor, tokenFromKeyword(DropKeyword))
if !ok {
return nil, initialCursor, false
}
_, cursor, ok = p.parseToken(tokens, cursor, tokenFromKeyword(TableKeyword))
if !ok {
return nil, initialCursor, false
}
name, newCursor, ok := p.parseTokenKind(tokens, cursor, IdentifierKind)
if !ok {
p.helpMessage(tokens, cursor, "Expected table name")
return nil, initialCursor, false
}
cursor = newCursor
return &DropTableStatement{
Name: *name,
}, cursor, true
}
func (p Parser) parseStatement(tokens []*Token, initialCursor uint, _ Token) (*Statement, uint, bool) {
cursor := initialCursor
semicolonToken := tokenFromSymbol(SemicolonSymbol)
slct, newCursor, ok := p.parseSelectStatement(tokens, cursor, semicolonToken)
if ok {
return &Statement{
Kind: SelectKind,
SelectStatement: slct,
}, newCursor, true
}
inst, newCursor, ok := p.parseInsertStatement(tokens, cursor, semicolonToken)
if ok {
return &Statement{
Kind: InsertKind,
InsertStatement: inst,
}, newCursor, true
}
crtTbl, newCursor, ok := p.parseCreateTableStatement(tokens, cursor, semicolonToken)
if ok {
return &Statement{
Kind: CreateTableKind,
CreateTableStatement: crtTbl,
}, newCursor, true
}
crtIdx, newCursor, ok := p.parseCreateIndexStatement(tokens, cursor, semicolonToken)
if ok {
return &Statement{
Kind: CreateIndexKind,
CreateIndexStatement: crtIdx,
}, newCursor, true
}
dpTbl, newCursor, ok := p.parseDropTableStatement(tokens, cursor, semicolonToken)
if ok {
return &Statement{
Kind: DropTableKind,
DropTableStatement: dpTbl,
}, newCursor, true
}
return nil, initialCursor, false
}
func (p Parser) parseCreateIndexStatement(tokens []*Token, initialCursor uint, delimiter Token) (*CreateIndexStatement, uint, bool) {
cursor := initialCursor
ok := false
_, cursor, ok = p.parseToken(tokens, cursor, tokenFromKeyword(CreateKeyword))
if !ok {
return nil, initialCursor, false
}
unique := false
_, cursor, ok = p.parseToken(tokens, cursor, tokenFromKeyword(UniqueKeyword))
if ok {
unique = true
}
_, cursor, ok = p.parseToken(tokens, cursor, tokenFromKeyword(IndexKeyword))
if !ok {
return nil, initialCursor, false
}
name, newCursor, ok := p.parseTokenKind(tokens, cursor, IdentifierKind)
if !ok {
p.helpMessage(tokens, cursor, "Expected index name")
return nil, initialCursor, false
}
cursor = newCursor
_, cursor, ok = p.parseToken(tokens, cursor, tokenFromKeyword(OnKeyword))
if !ok {
p.helpMessage(tokens, cursor, "Expected ON Keyword")
return nil, initialCursor, false
}
table, newCursor, ok := p.parseTokenKind(tokens, cursor, IdentifierKind)
if !ok {
p.helpMessage(tokens, cursor, "Expected table name")
return nil, initialCursor, false
}
cursor = newCursor
e, newCursor, ok := p.parseExpression(tokens, cursor, []Token{delimiter}, 0)
if !ok {
p.helpMessage(tokens, cursor, "Expected table name")
return nil, initialCursor, false
}
cursor = newCursor
return &CreateIndexStatement{
Name: *name,
Unique: unique,
Table: *table,
Exp: *e,
}, cursor, true
}
func (p Parser) Parse(source string) (*Ast, error) {
tokens, err := lex(source)
if err != nil {
return nil, err
}
semicolonToken := tokenFromSymbol(SemicolonSymbol)
if len(tokens) > 0 && !tokens[len(tokens)-1].equals(&semicolonToken) {
tokens = append(tokens, &semicolonToken)
}
a := Ast{}
cursor := uint(0)
for cursor < uint(len(tokens)) {
stmt, newCursor, ok := p.parseStatement(tokens, cursor, tokenFromSymbol(SemicolonSymbol))
if !ok {
p.helpMessage(tokens, cursor, "Expected statement")
return nil, errors.New("Failed to parse, expected statement")
}
cursor = newCursor
a.Statements = append(a.Statements, stmt)
atLeastOneSemicolon := false
for {
_, cursor, ok = p.parseToken(tokens, cursor, tokenFromSymbol(SemicolonSymbol))
if ok {
atLeastOneSemicolon = true
} else {
break
}
}
if !atLeastOneSemicolon {
p.helpMessage(tokens, cursor, "Expected semi-colon delimiter between statements")
return nil, errors.New("Missing semi-colon between statements")
}
}
return &a, nil
}