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
use std::char;
use std::fmt;
use ore::lex::LexBuf;
use ore::str::StrExt;
use crate::keywords::Keyword;
use crate::parser::ParserError;
#[derive(Debug, Clone, PartialEq)]
pub enum Token {
Keyword(Keyword),
Ident(String),
String(String),
HexString(String),
Number(String),
Parameter(usize),
Op(String),
Star,
Eq,
LParen,
RParen,
LBracket,
RBracket,
Dot,
Comma,
Colon,
DoubleColon,
Semicolon,
}
impl fmt::Display for Token {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match self {
Token::Keyword(kw) => f.write_str(kw.as_str()),
Token::Ident(id) => write!(f, "identifier {}", id.quoted()),
Token::String(s) => write!(f, "string literal {}", s.quoted()),
Token::HexString(s) => write!(f, "hex string literal {}", s.quoted()),
Token::Number(n) => write!(f, "number \"{}\"", n),
Token::Parameter(n) => write!(f, "parameter \"${}\"", n),
Token::Op(op) => write!(f, "operator {}", op.quoted()),
Token::Star => f.write_str("star"),
Token::Eq => f.write_str("equals sign"),
Token::LParen => f.write_str("left parenthesis"),
Token::RParen => f.write_str("right parenthesis"),
Token::LBracket => f.write_str("left square bracket"),
Token::RBracket => f.write_str("right square bracket"),
Token::Dot => f.write_str("dot"),
Token::Comma => f.write_str("comma"),
Token::Colon => f.write_str("colon"),
Token::DoubleColon => f.write_str("double colon"),
Token::Semicolon => f.write_str("semicolon"),
}
}
}
macro_rules! bail {
($pos:expr, $($fmt:expr),*) => {
return Err(ParserError::new($pos, format!($($fmt),*)))
}
}
pub fn lex(query: &str) -> Result<Vec<(Token, usize)>, ParserError> {
let buf = &mut LexBuf::new(query);
let mut tokens = vec![];
while let Some(ch) = buf.next() {
let pos = buf.pos() - ch.len_utf8();
let token = match ch {
_ if ch.is_ascii_whitespace() => continue,
'-' if buf.consume('-') => {
lex_line_comment(buf);
continue;
}
'/' if buf.consume('*') => {
lex_multiline_comment(buf)?;
continue;
}
'\'' => Token::String(lex_string(buf)?),
'x' | 'X' if buf.consume('\'') => Token::HexString(lex_string(buf)?),
'e' | 'E' if buf.consume('\'') => lex_extended_string(buf)?,
'A'..='Z' | 'a'..='z' | '_' | '\u{80}'..=char::MAX => lex_ident(buf),
'"' => lex_quoted_ident(buf)?,
'0'..='9' => lex_number(buf)?,
'.' if matches!(buf.peek(), Some('0'..='9')) => lex_number(buf)?,
'$' if matches!(buf.peek(), Some('0'..='9')) => lex_parameter(buf)?,
'$' => lex_dollar_string(buf)?,
'(' => Token::LParen,
')' => Token::RParen,
',' => Token::Comma,
'.' => Token::Dot,
':' if buf.consume(':') => Token::DoubleColon,
':' => Token::Colon,
';' => Token::Semicolon,
'[' => Token::LBracket,
']' => Token::RBracket,
#[rustfmt::skip]
'+'|'-'|'*'|'/'|'<'|'>'|'='|'~'|'!'|'@'|'#'|'%'|'^'|'&'|'|'|'`'|'?' => lex_op(buf)?,
_ => bail!(pos, "unexpected character in input: {}", ch),
};
tokens.push((token, pos))
}
#[cfg(debug_assertions)]
for (_token, pos) in &tokens {
assert!(query.is_char_boundary(*pos));
}
Ok(tokens)
}
fn lex_line_comment(buf: &mut LexBuf) {
buf.take_while(|ch| ch != '\n');
}
fn lex_multiline_comment(buf: &mut LexBuf) -> Result<(), ParserError> {
let pos = buf.pos() - 2;
let mut nesting = 0;
while let Some(ch) = buf.next() {
match ch {
'*' if buf.consume('/') => {
if nesting == 0 {
return Ok(());
} else {
nesting -= 1;
}
}
'/' if buf.consume('*') => nesting += 1,
_ => (),
}
}
bail!(pos, "unterminated multiline comment")
}
fn lex_ident(buf: &mut LexBuf) -> Token {
buf.prev();
let word = buf.take_while(
|ch| matches!(ch, 'A'..='Z' | 'a'..='z' | '0'..='9' | '$' | '_' | '\u{80}'..=char::MAX),
);
match word.parse() {
Ok(kw) => Token::Keyword(kw),
Err(_) => Token::Ident(word.to_lowercase()),
}
}
fn lex_quoted_ident(buf: &mut LexBuf) -> Result<Token, ParserError> {
let mut s = String::new();
let pos = buf.pos() - 1;
loop {
match buf.next() {
Some('"') if buf.consume('"') => s.push('"'),
Some('"') => break,
Some(c) => s.push(c),
None => bail!(pos, "unterminated quoted identifier"),
}
}
Ok(Token::Ident(s))
}
fn lex_string(buf: &mut LexBuf) -> Result<String, ParserError> {
let mut s = String::new();
loop {
let pos = buf.pos() - 1;
loop {
match buf.next() {
Some('\'') if buf.consume('\'') => s.push('\''),
Some('\'') => break,
Some(c) => s.push(c),
None => bail!(pos, "unterminated quoted string"),
}
}
if !lex_to_adjacent_string(buf) {
return Ok(s);
}
}
}
fn lex_extended_string(buf: &mut LexBuf) -> Result<Token, ParserError> {
fn lex_unicode_escape(buf: &mut LexBuf, n: usize) -> Result<char, ParserError> {
let pos = buf.pos() - 2;
buf.next_n(n)
.and_then(|s| u32::from_str_radix(s, 16).ok())
.and_then(|codepoint| char::try_from(codepoint).ok())
.ok_or_else(|| ParserError::new(pos, "invalid unicode escape"))
}
fn lex_octal_escape(buf: &mut LexBuf) -> ParserError {
let pos = buf.pos() - 2;
buf.take_while(|ch| matches!(ch, '0'..='7'));
ParserError::new(pos, "octal escapes are not supported")
}
fn lex_hexadecimal_escape(buf: &mut LexBuf) -> ParserError {
let pos = buf.pos() - 2;
buf.take_while(|ch| matches!(ch, '0'..='9' | 'A'..='F' | 'a'..='f'));
ParserError::new(pos, "hexadecimal escapes are not supported")
}
let mut s = String::new();
loop {
let pos = buf.pos() - 1;
loop {
match buf.next() {
Some('\'') if buf.consume('\'') => s.push('\''),
Some('\'') => break,
Some('\\') => match buf.next() {
Some('b') => s.push('\x08'),
Some('f') => s.push('\x0c'),
Some('n') => s.push('\n'),
Some('r') => s.push('\r'),
Some('t') => s.push('\t'),
Some('u') => s.push(lex_unicode_escape(buf, 4)?),
Some('U') => s.push(lex_unicode_escape(buf, 8)?),
Some('0'..='7') => return Err(lex_octal_escape(buf)),
Some('x') => return Err(lex_hexadecimal_escape(buf)),
Some(c) => s.push(c),
None => bail!(pos, "unterminated quoted string"),
},
Some(c) => s.push(c),
None => bail!(pos, "unterminated quoted string"),
}
}
if !lex_to_adjacent_string(buf) {
return Ok(Token::String(s));
}
}
}
fn lex_to_adjacent_string(buf: &mut LexBuf) -> bool {
let whitespace = buf.take_while(|ch| ch.is_ascii_whitespace());
whitespace.contains(&['\n', '\r'][..]) && buf.consume('\'')
}
fn lex_dollar_string(buf: &mut LexBuf) -> Result<Token, ParserError> {
let pos = buf.pos() - 1;
let tag = format!("${}$", buf.take_while(|ch| ch != '$'));
let _ = buf.next();
if let Some(s) = buf.take_to_delimiter(&tag) {
Ok(Token::String(s.into()))
} else {
Err(ParserError::new(pos, "unterminated dollar-quoted string"))
}
}
fn lex_parameter(buf: &mut LexBuf) -> Result<Token, ParserError> {
let pos = buf.pos() - 1;
let n = buf
.take_while(|ch| matches!(ch, '0'..='9'))
.parse()
.map_err(|_| ParserError::new(pos, "invalid parameter number"))?;
Ok(Token::Parameter(n))
}
fn lex_number(buf: &mut LexBuf) -> Result<Token, ParserError> {
buf.prev();
let mut s = buf.take_while(|ch| matches!(ch, '0'..='9')).to_owned();
if buf.consume('.') {
s.push('.');
s.push_str(buf.take_while(|ch| matches!(ch, '0'..='9')));
}
if buf.consume('e') || buf.consume('E') {
s.push('E');
let require_exp = if buf.consume('-') {
s.push('-');
true
} else {
buf.consume('+')
};
let exp = buf.take_while(|ch| matches!(ch, '0'..='9'));
if require_exp && exp.is_empty() {
return Err(ParserError::new(buf.pos() - 1, "missing required exponent"));
} else if exp.is_empty() {
buf.prev();
s.pop();
} else {
s.push_str(exp);
}
}
Ok(Token::Number(s))
}
fn lex_op(buf: &mut LexBuf) -> Result<Token, ParserError> {
buf.prev();
let mut s = String::new();
while let Some(ch) = buf.next() {
match ch {
'-' if buf.consume('-') => lex_line_comment(buf),
'/' if buf.consume('*') => lex_multiline_comment(buf)?,
#[rustfmt::skip]
'+'|'-'|'*'|'/'|'<'|'>'|'='|'~'|'!'|'@'|'#'|'%'|'^'|'&'|'|'|'`'|'?' => s.push(ch),
_ => {
buf.prev();
break;
}
}
}
if s.len() > 1
&& s.ends_with(&['-', '+'][..])
&& !s.contains(&['~', '!', '@', '#', '%', '^', '&', '|', '`', '?'][..])
{
while s.len() > 1 && s.ends_with(&['-', '+'][..]) {
buf.prev();
s.pop();
}
}
match s.as_str() {
"*" => Ok(Token::Star),
"=" => Ok(Token::Eq),
"!=" => Ok(Token::Op("<>".into())),
_ => Ok(Token::Op(s)),
}
}