-
Notifications
You must be signed in to change notification settings - Fork 0
/
ast.go
88 lines (66 loc) · 1.57 KB
/
ast.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
package dibbi
import "fmt"
type ast struct {
Statements []*statement
}
func (a *ast) String() string {
return fmt.Sprintf("%v", a.Statements)
}
type statementType uint
const (
SelectType statementType = iota
CreateTableType
InsertType
)
func (at statementType) String() string {
return [...]string{"Select", "Create Table", "Insert"}[at]
}
type statement struct {
selectStatement *selectStatement
createTableStatement *createTableStatement
insertStatement *insertStatement
statementType statementType
}
func (a *statement) String() string {
return fmt.Sprintf("Type: %v\nSelect: '%v'\nInsert: %v\n", a.
statementType, a.selectStatement, a.insertStatement)
}
// Insert
type insertStatement struct {
Table token
Values *[]*expression
}
func (s *insertStatement) String() string {
return fmt.Sprintf("Table: %v, Values: %v", s.Table.value, s.Values)
}
type ExpressionType uint
const (
LiteralType ExpressionType = iota
)
func (lt ExpressionType) String() string {
return [...]string{"Literal"}[lt]
}
type expression struct {
Literal *token
ExpressionType ExpressionType
}
func (e *expression) String() string {
return fmt.Sprintf("Literal: %v, Type: %v", e.Literal.value, e.ExpressionType)
}
// Create
type columnDefinition struct {
Name *token
Datatype *token
}
type createTableStatement struct {
Name *token
Columns *[]*columnDefinition
}
// Select
type selectStatement struct {
from *token
items []*expression
}
func (s *selectStatement) String() string {
return fmt.Sprintf("From: %v, Items: %v", s.from.value, s.items)
}