-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
321 lines (293 loc) · 21 KB
/
main.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
package main
import (
"fmt"
"log"
"os"
"os/signal"
"strconv"
"strings"
"syscall"
"time"
"github.com/chzyer/readline"
"github.com/srmadden/godb"
)
var helpText = `Enter a SQL query terminated by a ; to process it. Commands prefixed with \ are processed as shell commands.
Available shell commands:
\h : This help
\c path/to/catalog : Change the current database to a specified catalog file
\d : List tables and fields in the current database
\f : List available functions for use in queries
\a : Toggle aligned vs csv output
\o : Toggle query optimization
\l table path/to/file [sep] [hasHeader]: Append csv file to end of table. Default to sep = ',', hasHeader = 'true'
\z : Compute statistics for the database`
func printCatalog(c *godb.Catalog) {
s := c.CatalogString()
fmt.Printf("\033[34m%s\n\033[0m", s)
}
func main() {
alarm := make(chan int, 1)
go func() {
c := make(chan os.Signal)
signal.Notify(c, os.Interrupt, syscall.SIGINT)
go func() {
for {
<-c
alarm <- 1
fmt.Println("Interrupted query.")
}
}()
}()
bp, err := godb.NewBufferPool(10000)
if err != nil {
log.Fatal(err.Error())
}
catName := "catalog.txt"
catPath := "godb"
c, err := godb.NewCatalogFromFile(catName, bp, catPath)
if err != nil {
fmt.Printf("failed load catalog, %s", err.Error())
return
}
rl, err := readline.New("> ")
if err != nil {
panic(err)
}
defer rl.Close()
fmt.Printf("\033[35;1m")
fmt.Println(`Welcome to
[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[0m
[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[0m
[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[0m
[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;93;48;5;54m░[38;5;55;48;5;54m░[38;5;55;48;5;54m░[38;5;93;48;5;54m░[38;5;55;48;5;54m░[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;55;48;5;54m░[38;5;55;48;5;54m░[38;5;55;48;5;54m░[38;5;55;48;5;54m░[38;5;55;48;5;54m░[38;5;55;48;5;54m░[38;5;55;48;5;54m░[38;5;55;48;5;54m░[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;55;48;5;54m░[38;5;55;48;5;54m░[38;5;93;48;5;54m░[38;5;55;48;5;54m░[38;5;55;48;5;54m░[38;5;55;48;5;54m░[38;5;55;48;5;54m░[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[0m
[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;92;48;5;54m░[38;5;92;48;5;54m░[38;5;92;48;5;54m░[38;5;92;48;5;54m░[38;5;92;48;5;54m░[38;5;92;48;5;54m░[38;5;92;48;5;54m░[38;5;92;48;5;54m░[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;92;48;5;54m░[38;5;92;48;5;54m░[38;5;92;48;5;54m░[38;5;92;48;5;54m░[38;5;92;48;5;54m░[38;5;92;48;5;54m░[38;5;92;48;5;54m░[38;5;92;48;5;54m░[38;5;92;48;5;54m░[38;5;92;48;5;54m░[38;5;92;48;5;54m░[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;92;48;5;54m░[38;5;92;48;5;54m░[38;5;92;48;5;54m░[38;5;92;48;5;54m░[38;5;92;48;5;54m░[38;5;92;48;5;54m░[38;5;92;48;5;54m░[38;5;92;48;5;54m░[38;5;92;48;5;54m░[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[0m
[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;91;48;5;54m░[38;5;128;48;5;54m░[38;5;91;48;5;54m░[38;5;128;48;5;54m░[38;5;91;48;5;54m░[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;128;48;5;54m░[38;5;91;48;5;54m░[38;5;91;48;5;54m░[38;5;91;48;5;54m░[38;5;128;48;5;54m░[38;5;129;48;5;232m [38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;128;48;5;54m░[38;5;91;48;5;54m░[38;5;91;48;5;54m░[38;5;128;48;5;54m░[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;91;48;5;54m░[38;5;128;48;5;54m░[38;5;91;48;5;54m░[38;5;91;48;5;54m░[38;5;91;48;5;54m░[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;91;48;5;54m░[38;5;128;48;5;54m░[38;5;91;48;5;54m░[38;5;128;48;5;54m░[38;5;16;48;5;16m▓[38;5;91;48;5;54m░[38;5;128;48;5;54m░[38;5;91;48;5;54m░[38;5;91;48;5;54m░[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[0m
[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;170;48;5;5m░[38;5;170;48;5;5m░[38;5;170;48;5;5m░[38;5;170;48;5;5m░[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;170;48;5;5m░[38;5;170;48;5;5m░[38;5;170;48;5;5m░[38;5;170;48;5;5m░[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;170;48;5;5m░[38;5;170;48;5;5m░[38;5;170;48;5;5m░[38;5;170;48;5;5m░[38;5;170;48;5;5m░[38;5;170;48;5;5m░[38;5;170;48;5;5m░[38;5;170;48;5;5m░[38;5;170;48;5;5m░[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;170;48;5;5m░[38;5;170;48;5;5m░[38;5;170;48;5;5m░[38;5;170;48;5;5m░[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;53;48;5;53m░[38;5;170;48;5;5m░[38;5;170;48;5;5m░[38;5;170;48;5;5m░[38;5;170;48;5;5m░[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;170;48;5;5m░[38;5;170;48;5;5m░[38;5;170;48;5;5m░[38;5;170;48;5;5m░[38;5;170;48;5;5m░[38;5;170;48;5;5m░[38;5;170;48;5;5m░[38;5;53;48;5;53m░[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[0m
[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;163;48;5;90m░[38;5;163;48;5;90m░[38;5;163;48;5;90m░[38;5;163;48;5;90m░[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;163;48;5;90m░[38;5;163;48;5;90m░[38;5;163;48;5;90m░[38;5;163;48;5;90m░[38;5;163;48;5;5m░[38;5;163;48;5;5m░[38;5;163;48;5;90m░[38;5;163;48;5;90m░[38;5;163;48;5;90m░[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;163;48;5;90m░[38;5;163;48;5;90m░[38;5;163;48;5;90m░[38;5;163;48;5;90m░[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;163;48;5;90m░[38;5;163;48;5;90m░[38;5;163;48;5;90m░[38;5;163;48;5;90m░[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;163;48;5;90m░[38;5;163;48;5;90m░[38;5;163;48;5;90m░[38;5;163;48;5;90m░[38;5;200;48;5;89m░[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;163;48;5;90m░[38;5;163;48;5;90m░[38;5;163;48;5;90m░[38;5;163;48;5;90m░[38;5;163;48;5;90m░[38;5;163;48;5;90m░[38;5;163;48;5;90m░[38;5;163;48;5;90m░[38;5;163;48;5;90m░[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[0m
[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;199;48;5;126m░[38;5;199;48;5;126m░[38;5;199;48;5;126m░[38;5;199;48;5;126m░[38;5;199;48;5;126m░[38;5;199;48;5;126m░[38;5;199;48;5;126m░[38;5;199;48;5;126m░[38;5;199;48;5;126m░[38;5;199;48;5;126m░[38;5;199;48;5;126m░[38;5;16;48;5;16m▓[38;5;199;48;5;126m░[38;5;199;48;5;126m░[38;5;199;48;5;126m░[38;5;199;48;5;126m░[38;5;199;48;5;126m░[38;5;199;48;5;126m░[38;5;199;48;5;126m░[38;5;199;48;5;126m░[38;5;199;48;5;126m░[38;5;199;48;5;126m░[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;199;48;5;126m░[38;5;199;48;5;126m░[38;5;199;48;5;126m░[38;5;199;48;5;126m░[38;5;199;48;5;126m░[38;5;199;48;5;126m░[38;5;199;48;5;126m░[38;5;199;48;5;126m░[38;5;199;48;5;126m░[38;5;199;48;5;126m░[38;5;199;48;5;126m░[38;5;199;48;5;126m░[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;199;48;5;126m░[38;5;199;48;5;126m░[38;5;199;48;5;126m░[38;5;199;48;5;126m░[38;5;212;48;5;53m░[38;5;199;48;5;126m░[38;5;199;48;5;126m░[38;5;199;48;5;126m░[38;5;199;48;5;126m░[38;5;199;48;5;126m░[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[0m
[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;162;48;5;126m░[38;5;125;48;5;126m░[38;5;162;48;5;126m░[38;5;162;48;5;126m░[38;5;162;48;5;126m░[38;5;162;48;5;126m░[38;5;162;48;5;126m░[38;5;162;48;5;126m░[38;5;162;48;5;126m░[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;162;48;5;126m░[38;5;162;48;5;126m░[38;5;162;48;5;126m░[38;5;162;48;5;126m░[38;5;162;48;5;126m░[38;5;125;48;5;126m░[38;5;162;48;5;126m░[38;5;162;48;5;89m░[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;162;48;5;126m░[38;5;162;48;5;126m░[38;5;162;48;5;126m░[38;5;162;48;5;126m░[38;5;162;48;5;126m░[38;5;162;48;5;126m░[38;5;162;48;5;126m░[38;5;162;48;5;126m░[38;5;162;48;5;126m░[38;5;162;48;5;126m░[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;162;48;5;126m░[38;5;162;48;5;126m░[38;5;162;48;5;126m░[38;5;162;48;5;126m░[38;5;162;48;5;126m░[38;5;162;48;5;126m░[38;5;162;48;5;126m░[38;5;162;48;5;126m░[38;5;162;48;5;126m░[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[0m
[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[38;5;16;48;5;16m▓[0m
[0m
[35;1mType \h for help`)
fmt.Printf("\033[0m\n")
query := ""
var autocommit bool = true
var tid godb.TransactionID
aligned := true
for {
text, err := rl.Readline()
if err != nil { // io.EOF
break
}
text = strings.TrimSpace(text)
if len(text) == 0 {
continue
}
if text[0] == '\\' {
switch text[1] {
case 'd':
printCatalog(c)
case 'c':
if len(text) <= 3 {
fmt.Printf("Expected catalog file name after \\c")
continue
}
rest := text[3:]
pathAr := strings.Split(rest, "/")
catName = pathAr[len(pathAr)-1]
catPath = strings.Join(pathAr[0:len(pathAr)-1], "/")
c, err = godb.NewCatalogFromFile(catName, bp, catPath)
if err != nil {
fmt.Printf("failed load catalog, %s\n", err.Error())
continue
}
fmt.Printf("Loaded %s/%s\n", catPath, catName)
printCatalog(c)
case 'f':
fmt.Println("Available functions:")
fmt.Print(godb.ListOfFunctions())
case 'a':
aligned = !aligned
if aligned {
fmt.Println("Output aligned")
} else {
fmt.Println("Output unaligned")
}
case 'o':
godb.EnableJoinOptimization = !godb.EnableJoinOptimization
if godb.EnableJoinOptimization {
fmt.Println("\033[32;1mOptimization enabled\033[0m\n\n")
} else {
fmt.Println("\033[32;1mOptimization disabled\033[0m\n\n")
}
case 'z':
c.ComputeTableStats()
fmt.Printf("\033[32;1mAnalysis Complete\033[0m\n\n")
case '?':
fallthrough
case 'h':
fmt.Println(helpText)
case 'l':
splits := strings.Split(text, " ")
table := splits[1]
path := splits[2]
sep := ","
hasHeader := true
if len(splits) > 3 {
sep = splits[3]
}
if len(splits) > 4 {
hasHeader = splits[4] != "false"
}
//todo -- following code assumes data is in heap files
hf, err := c.GetTable(table)
if err != nil {
fmt.Printf("\033[31;1m%s\033[0m\n", err.Error())
continue
}
heapFile := hf.(*godb.HeapFile)
f, err := os.Open(path)
if err != nil {
fmt.Printf("\033[31;1m%s\033[0m\n", err.Error())
continue
}
err = heapFile.LoadFromCSV(f, hasHeader, sep, false)
if err != nil {
fmt.Printf("\033[31;1m%s\033[0m\n", err.Error())
continue
}
bp.FlushAllPages() //gross, if in a transaction, but oh well!
fmt.Printf("\033[32;1mLOAD\033[0m\n\n")
}
query = ""
continue
}
if text[len(text)-1] != ';' {
query = query + " " + text
continue
}
query = strings.TrimSpace(query + " " + text[0:len(text)-1])
explain := false
if strings.HasPrefix(strings.ToLower(query), "explain") {
queryParts := strings.Split(query, " ")
query = strings.Join(queryParts[1:], " ")
explain = true
}
queryType, plan, err := godb.Parse(c, query)
query = ""
nresults := 0
if err != nil {
errStr := err.Error()
if strings.Contains(errStr, "position") {
positionPos := strings.LastIndex(errStr, "position")
positionPos += 9
spacePos := strings.Index(errStr[positionPos:], " ")
if spacePos == -1 {
spacePos = len(errStr) - positionPos
}
posStr := errStr[positionPos : spacePos+positionPos]
pos, err := strconv.Atoi(posStr)
if err == nil {
s := strings.Repeat(" ", pos)
fmt.Printf("\033[31;1m%s^\033[0m\n", s)
}
}
fmt.Printf("\033[31;1mInvalid query (%s)\033[0m\n", err.Error())
continue
}
switch queryType {
case godb.UnknownQueryType:
fmt.Printf("\033[31;1mUnknown query type\033[0m\n")
continue
case godb.IteratorType:
if explain {
fmt.Printf("\033[32m")
godb.PrintPhysicalPlan(plan, "")
fmt.Printf("\033[0m\n")
break
}
if autocommit {
tid = godb.NewTID()
err := bp.BeginTransaction(tid)
if err != nil {
fmt.Printf("\033[31;1m%s\033[0m\n", err.Error())
continue
}
}
start := time.Now()
iter, err := plan.Iterator(tid)
if err != nil {
fmt.Printf("\033[31;1m%s\033[0m\n", err.Error())
continue
}
fmt.Printf("\033[32;4m%s\033[0m\n", plan.Descriptor().HeaderString(aligned))
for {
tup, err := iter()
if err != nil {
fmt.Printf("%s\n", err.Error())
break
}
if tup == nil {
break
} else {
fmt.Printf("\033[32m%s\033[0m\n", tup.PrettyPrintString(aligned))
}
nresults++
select {
case <-alarm:
fmt.Println("Aborting")
goto outer
default:
}
}
if autocommit {
bp.CommitTransaction(tid)
}
outer:
fmt.Printf("\033[32;1m(%d results)\033[0m\n", nresults)
duration := time.Since(start)
fmt.Printf("\033[32;1m%v\033[0m\n\n", duration)
case godb.BeginXactionType:
if !autocommit {
fmt.Printf("\033[31;1m%s\033[0m\n", "Cannot start transaction while in transaction")
continue
}
tid = godb.NewTID()
err := bp.BeginTransaction(tid)
if err != nil {
fmt.Printf("\033[31;1m%s\033[0m\n", err.Error())
continue
}
autocommit = false
fmt.Printf("\033[32;1mBEGIN\033[0m\n\n")
case godb.AbortXactionType:
if autocommit {
fmt.Printf("\033[31;1m%s\033[0m\n", "Cannot abort transaction unless in transaction")
continue
}
bp.AbortTransaction(tid)
autocommit = true
fmt.Printf("\033[32;1mABORT\033[0m\n\n")
case godb.CommitXactionType:
if autocommit {
fmt.Printf("\033[31;1m%s\033[0m\n", "Cannot commit transaction unless in transaction")
continue
}
bp.CommitTransaction(tid)
autocommit = true
fmt.Printf("\033[32;1mCOMMIT\033[0m\n\n")
case godb.CreateTableQueryType:
fmt.Printf("\033[32;1mCREATE\033[0m\n\n")
err := c.SaveToFile(catName, catPath)
if err != nil {
fmt.Printf("\033[31;1m%s\033[0m\n", err.Error())
}
case godb.DropTableQueryType:
fmt.Printf("\033[32;1mDROP\033[0m\n\n")
err := c.SaveToFile(catName, catPath)
if err != nil {
fmt.Printf("\033[31;1m%s\033[0m\n", err.Error())
}
}
}
}