- Notifications
You must be signed in to change notification settings - Fork 255
/
Copy pathtokenizer.cc
457 lines (339 loc) · 9.33 KB
/
tokenizer.cc
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
/*
* Copyright (c) 2015, 2024, Oracle and/or its affiliates.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, version 2.0, as
* published by the Free Software Foundation.
*
* This program is designed to work with certain software (including
* but not limited to OpenSSL) that is licensed under separate terms, as
* designated in a particular file or component or in included license
* documentation. The authors of MySQL hereby grant you an additional
* permission to link the program and your derivative works with the
* separately licensed software that they have either included with
* the program or referenced in the documentation.
*
* Without limiting anything contained in the foregoing, this file,
* which is part of Connector/C++, is also subject to the
* Universal FOSS Exception, version 1.0, a copy of which can be found at
* https://oss.oracle.com/licenses/universal-foss-exception.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License, version 2.0, for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include<mysql/cdk/common.h>
PUSH_SYS_WARNINGS_CDK
#include<stdexcept>
#include<memory>
#include<cstdlib>
#include<cctype>
#include<cstring>
#include<cstdlib>
POP_SYS_WARNINGS_CDK
#include"tokenizer.h"
usingnamespaceparser;
using std::string;
boolTokenizer::iterator::get_next_token()
{
skip_ws();
m_pos = char_iterator::cur_pos();
if (m_at_end || char_iterator::at_end())
{
m_at_end = true;
returnfalse;
}
if ((unsigned)*m_pos < 127)
{
switch (*m_pos)
{
case'"': case'\'':
if (parse_string())
returntrue;
break;
case'x': case'X':
case'0':
if (parse_hex())
returntrue;
case'.': case'1': case'2': case'3': case'4':
case'5': case'6': case'7': case'8': case'9':
if (parse_number())
returntrue;
break;
default: break;
}
assert(!char_iterator::at_end());
// check symbol tokens, starting with 2+ char ones
staticstructsymb_table_t
{
std::map<char, std::vector<std::pair<constchar*, Token::Type>>> m_map;
symb_table_t()
{
#definesymbol_check(T,X) \
{ \
auto &entry = m_map[(X)[0]]; \
entry.push_back({X,Token::T}); \
}
SYMBOL_LIST2(symbol_check)
}
}
symb_table;
auto it = symb_table.m_map.find((char)*m_pos);
if (it != symb_table.m_map.end())
{
for (auto symb : it->second)
{
if (consume_chars(symb.first)) {
set_token(symb.second);
returntrue;
}
}
}
switch (*m_pos)
{
#definesymbol_check1(T,X) \
case (X)[0]: consume_char(*m_pos); set_token(Token::T); returntrue;
SYMBOL_LIST1(symbol_check1)
default: break;
}
}
/*
Note: it is important to parse word last as some words can qualify as
other tokens.
*/
if (parse_word())
returntrue;
returnfalse;
}
/*
Parse number literal starting at position i.
Returns Token::T_NULL if no number literal can start at position i (and
leaves i unchanged). Otherwise returns Token::LINTEGER or Token::LNUM
and sets i to the first position after the literal.
The grammar used for numeric literals:
number -> int | float
int -> digit+
float -> digit* '.' digit+ expo? | digit+ expo
expo -> ('E'|'e') ('+'|'-')? digit+
which is replaced by equivalent:
number -> digit* ('.' digit+)? expo?
with extra check that there is at least one digit if fractional part is missing.
Original grammar for floating numbers:
FLOAT ::= DIGIT* '.' DIGIT+ ('E' ('+'|'-')? DIGIT+)? | DIGIT+ 'E' ('+'|'-')? DIGIT+
*/
boolTokenizer::iterator::parse_digits() noexcept
{
bool has_digits = false;
while (!char_iterator::at_end() && cur_char_in("0123456789"))
{
has_digits = true;
next_unit();
}
return has_digits;
}
boolTokenizer::iterator::parse_number()
{
if (at_end())
returnfalse;
bool is_float = false;
bool exponent = false;
/*
Note: '.' starts NUMBER token only if followed by a digit.
Otherwise it is a single DOT token.
*/
if (cur_char_is(L'.') && !char_iterator::at_end(1) && !next_char_in("0123456789"))
returnfalse;
// Parse leading digits, if any
if (!parse_digits() && !cur_char_is('.'))
{
returnfalse;
}
// Handle decimal point, if any
if (!char_iterator::at_end() && consume_char('.'))
{
is_float = true;
if (!parse_digits())
throw_error("No digits after decimal point");
}
// See if we have exponent (but it is not parsed yet)
if (!char_iterator::at_end() && consume_char("Ee"))
{
is_float = true;
exponent = true;
}
/*
If nothing indicates a floating number, we have already
parsed the digits of an integer number and we can report
it now.
*/
if (!is_float)
{
set_token(Token::INTEGER);
returntrue;
}
// Parse exponent if present.
if (exponent)
{
consume_char("+-");
if (!parse_digits())
throw_error("No digits in the exponent");
}
// Report floating number.
set_token(Token::NUMBER);
returntrue;
}
/*
Check if we have a Hexadecimal literal:
X'12ab'
x'12ab'
0x12ab
*/
boolTokenizer::iterator::parse_hex()
{
if (char_iterator::at_end())
returnfalse;
if (!cur_char_in("Xx0"))
returnfalse;
switch (cur_char())
{
case'X': case'x':
{
if (char_iterator::at_end(1) || !next_char_is('\''))
returnfalse;
next_unit();
next_unit();
pos_type start = char_iterator::cur_pos();
if (!parse_hex_digits())
throw_error("Unexpected character inside hex literal");
set_token(Token::HEX, start);
if (char_iterator::at_end() || !consume_char('\''))
throw_error("Unexpected character inside hex literal");
returntrue;
}
case'0':
{
if (char_iterator::at_end(1) || !next_char_in("Xx"))
returnfalse;
next_unit();
next_unit();
pos_type start = char_iterator::cur_pos();
if (!parse_hex_digits())
throw_error("No hex digits found after 0x");
set_token(Token::HEX, start);
returntrue;
}
default:
returnfalse;
}
}
boolTokenizer::iterator::parse_hex_digits() noexcept
{
bool ret = false;
for (; !char_iterator::at_end() && consume_char("0123456789ABCDEFabcdef"); ret = true);
return ret;
}
/*
See if next token is:
WORD - plain word
QWORD - word quotted in back-ticks
*/
boolTokenizer::iterator::parse_word()
{
if (char_iterator::at_end())
returnfalse;
if (cur_char_is('`'))
{
parse_quotted_string('`');
set_tok_type(Token::QWORD);
returntrue;
}
bool has_word = false;
while (!char_iterator::at_end() && cur_char_is_word())
{
next_unit();
has_word = true;
}
if (!has_word)
returnfalse;
set_token(Token::WORD);
returntrue;
}
/*
See if next token is:
QSTRING - a string in single quotes
QQSTRING - a string in double quotes
*/
boolTokenizer::iterator::parse_string()
{
char_t quote = cur_char();
if (!(U'\"' == quote || U'\'' == quote))
returnfalse;
if (!parse_quotted_string((char)quote))
returnfalse;
set_tok_type('\"' == quote ? Token::QQSTRING : Token::QSTRING);
returntrue;
}
boolTokenizer::iterator::parse_quotted_string(char qchar)
{
if (!consume_char(qchar))
returnfalse;
pos_type start_pos = char_iterator::cur_pos();
// Store first few characters for use in error message.
staticconstsize_t start_len = 8;
cdk::string error("Unterminated quoted string starting with ");
error.push_back((char_t)qchar);
while (!char_iterator::at_end())
{
// if we do not have escaped char, look at the end of the string
if (!consume_char('\\'))
{
// if quote char is repeated, then it does not terminate string
if (
consume_char(qchar) && (char_iterator::at_end() || !cur_char_is(qchar))
)
{
// end of the string, set token extend
set_tok_pos(start_pos, char_iterator::cur_pos() - 1);
returntrue;
}
}
char_t c = consume_char();
if (c == invalid_char)
throw_error("Invalid utf8 string");
if (char_iterator::cur_pos() < start_pos + start_len)
error.push_back(c);
}
throw_error(error + "...");
returnfalse; // quiet compile warnings
}
/*
Low-level character iterator.
*/
std::locale char_iterator::m_cloc("C");
bytes char_iterator::get_seen(size_t len, bool *complete)
{
char_iterator_base it(m_ctx_beg, cur_pos());
while (!it.at_end() && (it.cur_pos() + len <= cur_pos()))
it++;
if (complete)
*complete = (it.cur_pos() == get_beg());
return { (byte*)it.cur_pos(), (byte*)cur_pos() };
}
bytes char_iterator::get_ahead(size_t len, bool *complete)
{
char_iterator_base it(cur_pos(), get_end());
constchar *pos = it.cur_pos();
while (!it.at_end() && (it.cur_pos() < cur_pos() + len))
{
pos = it.cur_pos();
it++;
}
if (complete)
*complete = (pos == get_end());
return { (byte*)cur_pos(), (byte*)pos };
}