-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathtoken.ts
175 lines (156 loc) · 3.75 KB
/
token.ts
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
import {
Parser,
attempt,
constant,
expectString,
keyword,
lazy,
many,
map,
match,
oneOf,
seq,
seq1,
seq2,
seqConst,
seqNull,
skip,
stringBefore,
stringBeforeEndOr,
stringUntil,
} from '../typed-parser'
import { sqlReservedWords } from '../constants'
// Token parsers
// whitespace and comments
export const _: Parser<null> = seqNull(
skip('\\s*'),
many(
oneOf(
seqNull(expectString('--'), stringBeforeEndOr('\n'), skip('\\s*')),
seqNull(expectString('/*'), stringUntil('\\*/'), skip('\\s*'))
)
)
)
export function symbol(s: string): Parser<null> {
return seqNull(expectString(s, 'symbol'), _)
}
// Like symbol but doesn't skip whitespace
export function symbolKeepWS(s: string): Parser<null> {
return expectString(s, 'symbol')
}
export const matchIdentifier = match('[a-zA-Z_][a-zA-Z0-9_]*')
export const unquotedIdentifier: Parser<string> = map(
(identifier, toError) =>
sqlReservedWords.includes(identifier.toUpperCase())
? toError(`Expected an identifier, got reserved word ${identifier}`)
: identifier,
matchIdentifier
)
export const quotedEscape = seq2(
symbolKeepWS('\\'),
oneOf(keyword('"', '"'), keyword('\\', '\\'))
)
export const quotedInner: Parser<string> = seq(
stringBefore('[\\"]'),
oneOf(
seq(
quotedEscape,
lazy(() => quotedInner)
)((e, t) => e + t),
constant('')
)
)((s, tail) => s + tail)
export const quotedIdentifier = seq2(
symbolKeepWS('"'),
quotedInner,
symbol('"')
)
export const identifier = seq1(
attempt(oneOf(unquotedIdentifier, quotedIdentifier)),
_
)
export function expectIdentifier<T extends string>(ident: T): Parser<T> {
return seqConst(
ident,
attempt(
map(
(match, toError) =>
match.toLowerCase() !== ident.toLowerCase()
? toError(`Expected ${ident}, got ${match}`)
: ident,
matchIdentifier
)
),
_
)
}
export const reservedWord = <A extends string>(word: A): Parser<A> => {
if (!sqlReservedWords.includes(word))
throw new Error(`INTERNAL ERROR: ${word} is not included in reservedWords`)
return seq1(
attempt(
map(
(match, toError) =>
match.toUpperCase() !== word
? toError(`Expected ${word}, got ${match}`)
: word,
matchIdentifier
)
),
_
)
}
const sep = (
makeParser: (word: string) => Parser<unknown>,
words: string
): Parser<string> =>
attempt(
seq(...words.split(/\s+/).map((word) => makeParser(word)))((_) => words)
)
export const sepReserveds = (words: string): Parser<string> =>
sep(reservedWord, words)
export const sepExpectIdentifiers = (words: string): Parser<string> =>
sep(expectIdentifier, words)
export const anyOperator = seq1(match('[-+*/<>=~!@#%^&|`?]{1,63}'), _)
export const operator = (op: string): Parser<string> =>
attempt(
map(
(match, toError) =>
match != op ? toError(`Operator ${op} expected`) : match,
anyOperator
)
)
export const anyOperatorExcept = (exclude: string[]): Parser<string> =>
attempt(
map(
(match, toError) =>
exclude.includes(match)
? toError(`Operator other than ${exclude.join(' ')} expected`)
: match,
anyOperator
)
)
const strEscape = seq2(
symbolKeepWS('\\'),
oneOf(
keyword("'", "'"),
keyword('\\', '\\'),
keyword('/', '/'),
keyword('b', '\b'),
keyword('f', '\f'),
keyword('n', '\n'),
keyword('r', '\r'),
keyword('t', '\t')
)
)
const strInner: Parser<string> = seq(
stringBefore("[\\']"),
oneOf(
seq(
strEscape,
lazy(() => strInner)
)((e, t) => e + t),
constant('')
)
)((s, tail) => s + tail)
export const stringConstant = seq2(symbolKeepWS("'"), strInner, symbol("'"))