-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathtokenizer.ts
287 lines (275 loc) · 9.74 KB
/
tokenizer.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
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
/**
* 词法分析器,核心算法是DFA,参考:../../01_词法分析/README.md
*/
import { LexicalError } from '../common/LexicalError'
export interface IToken {
type: string
value: string
lineNo?: number
}
export class Tokenizer {
public tokens: Array<IToken> = []
private codeIndex: number = 0 //当前扫描到源码的第codeIndex个字符
private lineNo: number = 0 //行号
readonly KEYWORDS: Array<string> = [
'var',
'if',
'else',
'while',
'for',
'break',
'continue',
'function',
'return',
]
constructor(sourceCode: string) {
this.scanner(sourceCode)
}
//token生成器
private makeToken(type: string, value: string, lineNo?: number): IToken {
return { type, value, lineNo }
}
//自动机装饰器
private decorator(automation_func): Function {
return (...args) => {
const token: IToken = automation_func(...args)
this.codeIndex += token.value.length
token.lineNo = this.lineNo
this.tokens.push(token)
}
}
//源码扫描器
private scanner(sourceCode: string): void {
this.tokens = []
this.codeIndex = 0
this.lineNo = 0
const getTokenLiteral: Function = this.decorator(this.literalAutomat.bind(this))
const getTokenNumber: Function = this.decorator(this.numberAutomat.bind(this))
const getTokenOp: Function = this.decorator(this.operatorAutomat.bind(this))
while (this.codeIndex < sourceCode.length) {
const currentChar: string = sourceCode[this.codeIndex]
if (currentChar.match(/[A-Za-z]/)) {
getTokenLiteral(sourceCode, this.codeIndex)
} else if (currentChar.match(/[0-9.]/)) {
getTokenNumber(sourceCode, this.codeIndex)
} else if (currentChar.match(/[+-\\*/&|=!;()]/)) {
getTokenOp(sourceCode, this.codeIndex)
} else if (currentChar === '{' || currentChar === '}') {
this.codeIndex++
this.tokens.push(this.makeToken('block', currentChar, this.lineNo))
} else if (currentChar === '\n' || currentChar === '\r') {
this.codeIndex++
this.lineNo++
continue
} else if (currentChar === ' ' || currentChar === '\t') {
this.codeIndex++
continue
} else {
throw new LexicalError(`lexical error:unexpected char ${currentChar} in line ${this.lineNo} `)
}
}
}
//变量自动机
private literalAutomat(sourceCode: string, index: number): IToken {
let state: number = 0
let str: string = ''
function getNextChar(): string {
return sourceCode[index++]
}
while (true) {
switch (state) {
case 0: {
const nextChar: string = getNextChar()
if (nextChar.match(/[A-Za-z]/)) {
str += nextChar
state = 1
} else {
throw new LexicalError('not a illegal operator')
}
break
}
case 1: {
const nextChar: string = getNextChar()
if (nextChar && nextChar.match(/[A-Za-z0-9]/)) {
str += nextChar
} else {
if (this.KEYWORDS.indexOf(str) > -1) {
return this.makeToken('keyword', str)
} else {
return this.makeToken('id', str)
}
}
break
}
}
}
}
//数字自动机
private numberAutomat(sourceCode: string, index: number): IToken {
let state: number = 0
let num: string = ''
while (true) {
const nextChar: string = sourceCode[index++]
switch (state) {
case 0: {
if (nextChar === '0') {
num += nextChar
state = 2
} else if (nextChar.match(/^[0-9]$/)) {
num += nextChar
state = 1
} else if (nextChar === '.') {
num += nextChar
state = 3
} else {
throw new LexicalError('not a number')
}
break
}
case 1: {
if (nextChar.match(/[0-9]/)) {
num += nextChar
} else {
return this.makeToken('number', num)
}
break
}
case 2: {
if (nextChar.match(/[1-9]/)) {
num += nextChar
state = 1
} else if (nextChar === '.') {
num += nextChar
state = 4
} else {
return this.makeToken('number', num)
}
break
}
case 3: {
if (nextChar.match(/[0-9]/)) {
state = 5
num += nextChar
} else {
throw new LexicalError('not a number')
}
}
case 4: {
if (nextChar.match(/[0-9]/)) {
state = 5
num += nextChar
} else {
return this.makeToken('number', num)
}
break
}
case 5: {
if (nextChar.match(/[0-9]/)) {
num += nextChar
} else {
return this.makeToken('number', num)
}
}
}
}
}
//运算符自动机
private operatorAutomat(sourceCode: string, index: number): IToken {
let state: number = 0
let operator: string = ''
while (true) {
const nextChar = sourceCode[index++]
operator += nextChar
switch (state) {
case 0: {
switch (nextChar) {
case '+':
state = 1
break
case '-':
state = 2
break
case '*':
case '/':
return this.makeToken('operator', operator)
case '=':
state = 5
break
case '&':
state = 6
break
case '|':
state = 7
break
case '>':
state = 8
break
case '<':
state = 9
break
case '!':
state = 10
break
case '(':
case ')':
case ';':
return this.makeToken('operator', operator)
default:
throw new LexicalError('not an operator')
}
break
}
case 1: {
if (nextChar === '+') {
return this.makeToken('operator', '++')
}
return this.makeToken('operator', '+')
}
case 2: {
if (nextChar === '-') {
return this.makeToken('operator', '--')
}
return this.makeToken('operator', '-')
}
case 5: {
if (nextChar === '=') {
return this.makeToken('operator', '==')
}
return this.makeToken('operator', '=')
}
case 6: {
if (nextChar === '&') {
return this.makeToken('operator', '&&')
}
return this.makeToken('operator', '&')
}
case 7: {
if (nextChar === '|') {
return this.makeToken('operator', '||')
}
return this.makeToken('operator', '|')
}
case 8: {
if (nextChar === '=') {
return this.makeToken('operator', '>=')
}
return this.makeToken('operator', '>')
}
case 9: {
if (nextChar === '=') {
return this.makeToken('operator', '<=')
}
return this.makeToken('operator', '<')
}
case 10: {
if (nextChar === '=') {
return this.makeToken('operator', '!=')
}
return this.makeToken('operator', '!')
}
default:
throw new LexicalError('not an operator')
}
}
}
}