forked from tursodatabase/turso
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathturso-sql-split.mjs
More file actions
293 lines (265 loc) · 8.13 KB
/
turso-sql-split.mjs
File metadata and controls
293 lines (265 loc) · 8.13 KB
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
const ReadState = Object.freeze({
Invalid: 'Invalid',
Start: 'Start',
Normal: 'Normal',
Explain: 'Explain',
Create: 'Create',
Trigger: 'Trigger',
Semi: 'Semi',
End: 'End',
});
const Token = Object.freeze({
TkSemi: 'TkSemi',
TkWhitespace: 'TkWhitespace',
TkOther: 'TkOther',
TkExplain: 'TkExplain',
TkCreate: 'TkCreate',
TkTemp: 'TkTemp',
TkTrigger: 'TkTrigger',
TkEnd: 'TkEnd',
});
function isAsciiWhitespace(char) {
const code = char.charCodeAt(0);
return code === 0x20 || code === 0x09 || code === 0x0a || code === 0x0b || code === 0x0c || code === 0x0d;
}
function isAsciiAlpha(char) {
const code = char.charCodeAt(0);
return (code >= 0x41 && code <= 0x5a) || (code >= 0x61 && code <= 0x7a);
}
function isAsciiAlnum(char) {
const code = char.charCodeAt(0);
return isAsciiAlpha(char) || (code >= 0x30 && code <= 0x39);
}
function classifyKeyword(word) {
switch (word) {
case 'EXPLAIN':
return Token.TkExplain;
case 'CREATE':
return Token.TkCreate;
case 'TEMP':
case 'TEMPORARY':
return Token.TkTemp;
case 'TRIGGER':
return Token.TkTrigger;
case 'END':
return Token.TkEnd;
default:
return Token.TkOther;
}
}
function nextToken(sql, start) {
let i = start;
while (i < sql.length) {
const char = sql[i];
const nextChar = sql[i + 1];
if (char === '\'' || char === '"' || char === '`' || char === '[') {
const endChar = char === '[' ? ']' : char;
i++;
while (i < sql.length) {
const current = sql[i];
i++;
if (current === endChar) {
break;
}
}
continue;
}
if (char === '-' && nextChar === '-') {
i += 2;
while (i < sql.length && sql[i] !== '\n') {
i++;
}
continue;
}
if (char === '/' && nextChar === '*') {
i += 2;
let sawStar = false;
while (i < sql.length) {
const current = sql[i];
i++;
if (sawStar && current === '/') {
break;
}
sawStar = current === '*';
}
continue;
}
if (char === ';') {
return {
token: Token.TkSemi,
nextIndex: i + 1,
tokenEnd: i + 1,
};
}
if (isAsciiWhitespace(char)) {
return {
token: Token.TkWhitespace,
nextIndex: i + 1,
tokenEnd: i + 1,
};
}
if (isAsciiAlpha(char) || char === '_') {
let end = i + 1;
while (end < sql.length && (isAsciiAlnum(sql[end]) || sql[end] === '_')) {
end++;
}
return {
token: classifyKeyword(sql.slice(i, end).toUpperCase()),
nextIndex: end,
tokenEnd: end,
};
}
return {
token: Token.TkOther,
nextIndex: i + 1,
tokenEnd: i + 1,
};
}
return null;
}
function transition(state, token) {
switch (state) {
case ReadState.Invalid:
switch (token) {
case Token.TkSemi:
return ReadState.Start;
case Token.TkWhitespace:
return ReadState.Invalid;
case Token.TkExplain:
return ReadState.Explain;
case Token.TkCreate:
return ReadState.Create;
default:
return ReadState.Normal;
}
case ReadState.Start:
switch (token) {
case Token.TkSemi:
return ReadState.Start;
case Token.TkWhitespace:
return ReadState.Start;
case Token.TkExplain:
return ReadState.Explain;
case Token.TkCreate:
return ReadState.Create;
default:
return ReadState.Normal;
}
case ReadState.Normal:
switch (token) {
case Token.TkSemi:
return ReadState.Start;
case Token.TkWhitespace:
return ReadState.Normal;
default:
return ReadState.Normal;
}
case ReadState.Explain:
switch (token) {
case Token.TkSemi:
return ReadState.Start;
case Token.TkWhitespace:
return ReadState.Explain;
case Token.TkCreate:
return ReadState.Create;
case Token.TkExplain:
case Token.TkTemp:
case Token.TkTrigger:
case Token.TkEnd:
return ReadState.Normal;
default:
return ReadState.Explain;
}
case ReadState.Create:
switch (token) {
case Token.TkSemi:
return ReadState.Start;
case Token.TkWhitespace:
return ReadState.Create;
case Token.TkTemp:
return ReadState.Create;
case Token.TkTrigger:
return ReadState.Trigger;
default:
return ReadState.Normal;
}
case ReadState.Trigger:
switch (token) {
case Token.TkSemi:
return ReadState.Semi;
case Token.TkWhitespace:
return ReadState.Trigger;
default:
return ReadState.Trigger;
}
case ReadState.Semi:
switch (token) {
case Token.TkSemi:
return ReadState.Semi;
case Token.TkWhitespace:
return ReadState.Semi;
case Token.TkEnd:
return ReadState.End;
default:
return ReadState.Trigger;
}
case ReadState.End:
switch (token) {
case Token.TkSemi:
return ReadState.Start;
case Token.TkWhitespace:
return ReadState.End;
default:
return ReadState.Trigger;
}
default:
return ReadState.Invalid;
}
}
function hasMeaningfulSql(sql) {
let index = 0;
while (true) {
const token = nextToken(sql, index);
if (!token) {
return false;
}
if (token.token !== Token.TkWhitespace && token.token !== Token.TkSemi) {
return true;
}
index = token.nextIndex;
}
}
/**
* Split SQL text into individual statements using sqlite3_complete-like semantics.
*
* This matches testing/sqltests/src/parser/sql_complete.rs so CREATE TRIGGER bodies
* containing semicolons are treated as a single statement until the ;END; sentinel.
*/
function splitStatements(sql) {
const statements = [];
let state = ReadState.Invalid;
let statementStart = 0;
let index = 0;
while (true) {
const tokenInfo = nextToken(sql, index);
if (!tokenInfo) {
break;
}
const newState = transition(state, tokenInfo.token);
if (newState === ReadState.Start && state !== ReadState.Start) {
const candidate = sql.slice(statementStart, tokenInfo.tokenEnd).trim();
if (candidate && hasMeaningfulSql(candidate)) {
statements.push(candidate);
}
statementStart = tokenInfo.tokenEnd;
}
state = newState;
index = tokenInfo.nextIndex;
}
const remainder = sql.slice(statementStart).trim();
if (remainder && hasMeaningfulSql(remainder)) {
statements.push(remainder);
}
return statements;
}
export { splitStatements };