-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerator.go
279 lines (221 loc) · 5.55 KB
/
generator.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
package main
import (
"errors"
"fmt"
"regexp"
"strings"
)
type Provider string
type Type map[Provider]string
const (
sqlite Provider = "sqlite"
)
var provider Provider = sqlite
var types map[string]Type
var attrFuncMap map[string]func(attr *AttributeAST) (string, error)
func initValues() {
INT := Type{
sqlite: "INTEGER",
}
STRING := Type{
sqlite: "TEXT",
}
BOOL := Type{
sqlite: "NUMERIC",
}
DATETIME := Type{
sqlite: "NUMERIC",
}
FLOAT := Type{
sqlite: "REAL",
}
BLOB := Type{
sqlite: "BLOB",
}
types = map[string]Type{
"int": INT,
"string": STRING,
"boolean": BOOL,
"bool": BOOL,
"datetime": DATETIME,
"float": FLOAT,
"blob": BLOB,
}
attrFuncMap = map[string]func(*AttributeAST) (string, error){
"id": handleIdAttr,
"default": handleDefaultAttr,
"auto_increment": handleAutoIncrementAttr,
"nullable": handleNullableAttr,
}
}
func GenerateSQL(ast *AST) (string, error) {
initValues()
if !isProviderAvailable(ast.Configuration["provider"]) {
return "", errors.New("Error: Provider not supported")
}
if len(ast.Tables) == 0 {
return "", errors.New("Error: No tables declared")
}
builder := strings.Builder{}
for _, table := range ast.Tables {
sqlStr, err := generateTableSQL(table)
if err != nil {
return "", err
}
builder.WriteString(sqlStr + "\n\n")
}
return builder.String(), nil
}
func generateTableSQL(tableAST *TabelAST) (string, error) {
if !isValidTableName(tableAST.Name) {
return "", errors.New(fmt.Sprintf("Error: Bad name for table '%s'", tableAST.Name))
}
if len(tableAST.Colmuns) == 0 {
return "", errors.New("Error: No Colmuns Specified for Table")
}
builder := strings.Builder{}
builder.WriteString(fmt.Sprintf("CREATE TABLE %s (\n", tableAST.Name))
for _, colmun := range tableAST.Colmuns {
colStr, err := handleColmun(colmun, tableAST.Name)
if err != nil {
return "", err
}
builder.WriteString("\t" + colStr + "\n")
}
for _, ref := range tableAST.References {
builder.WriteString(handleRef(ref))
}
builder.WriteString(");")
return builder.String(), nil
}
func handleRef(ref *ReferenceAST) string {
builder := strings.Builder{}
builder.WriteString(
fmt.Sprintf(
"\tFOREIGN KEY (%s) REFERENCES %s(%s)",
ref.SourceCol,
ref.TargetTable,
ref.TargetCol,
),
)
if len(ref.OnDelete) > 0 {
builder.WriteString(fmt.Sprintf(" ON DELETE %s", ref.OnDelete))
}
if len(ref.OnUpdate) > 0 {
builder.WriteString(fmt.Sprintf(" ON UPDATE %s", ref.OnUpdate))
}
builder.WriteString(",\n")
return builder.String()
}
func handleColmun(
colmun *ColmunAST,
tableName string,
) (string, error) {
if !isValidColmunName(colmun.Name) {
return "", errors.New(
fmt.Sprintf("Error: Bad colmun name '%s' for table '%s'", colmun.Name, tableName),
)
}
colmunType, err := getType(colmun)
if err != nil {
return "", err
}
builder := &strings.Builder{}
builder.WriteString(fmt.Sprintf("%s %s", colmun.Name, colmunType))
hasNullableAttr := false
for _, attr := range *colmun.Attributes {
if attr.Name == "nullable" {
hasNullableAttr = true
}
str, err := handleAttr(attr)
if err != nil {
return "", err
}
builder.WriteString(" " + str)
}
if !hasNullableAttr {
builder.WriteString(" NOT NULL")
}
builder.WriteString(",")
return builder.String(), nil
}
func handleAttr(attr *AttributeAST) (string, error) {
if attr.Name == "raw" {
return "", nil
}
f, exists := attrFuncMap[attr.Name]
if !exists {
return "", errors.New(
fmt.Sprintf("Error: '%s' Does not exist in the current context.", attr.Name),
)
}
sqlStr, err := f(attr)
return sqlStr, err
}
func handleIdAttr(attr *AttributeAST) (string, error) {
if len(attr.Values) != 0 {
return "", errors.New("Error: id takes no parameters")
}
return "PRIMARY KEY UNIQUE", nil
}
func handleDefaultAttr(attr *AttributeAST) (string, error) {
output := "DEFAULT "
if len(attr.Values) != 1 {
return "", errors.New("Error: default takes one parameter")
}
if attr.Values[0].Type == "raw" {
output += fmt.Sprintf("%s", attr.Values[0].Value)
} else {
output += fmt.Sprintf("'%s'", attr.Values[0].Value)
}
return output, nil
}
func handleAutoIncrementAttr(attr *AttributeAST) (string, error) {
if len(attr.Values) > 0 {
return "", errors.New("Error: auto_increment takes no parameters")
}
if ast.Configuration["provider"] == "sqlite" {
return "AUTOINCREMENT", nil
}
return "AUTO_INCREMENT", nil
}
func handleNullableAttr(attr *AttributeAST) (string, error) {
if len(attr.Values) > 0 {
return "", errors.New("Error: nullable takes no parameters")
}
return "NULL", nil
}
func getType(colmun *ColmunAST) (string, error) {
var colmunDataTypeRes string
if colmun.Data_type == "raw" {
attr, exists := (*colmun.Attributes)["raw"]
if !exists {
return "", errors.New("Error: Expected raw attribute")
}
if len(attr.Values) != 1 {
return "", errors.New("Error: Raw attribute requires one parameter")
}
colmunDataTypeRes = attr.Values[0].Value
} else {
colmunDataType, exists := types[colmun.Data_type][provider]
if !exists {
return "", errors.New(fmt.Sprintf("Error: Invalid data type: %s", colmun.Data_type))
}
colmunDataTypeRes = colmunDataType
}
return colmunDataTypeRes, nil
}
func isProviderAvailable(provider string) bool {
if provider != string(sqlite) {
return false
}
return true
}
func isValidTableName(tableName string) bool {
pattern := `^[a-zA-Z_][a-zA-Z0-9_$]*$`
regex := regexp.MustCompile(pattern)
return regex.MatchString(tableName)
}
func isValidColmunName(colName string) bool {
return true
}