-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathlexer.go
433 lines (392 loc) · 8.68 KB
/
lexer.go
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
package symexpr
import (
"fmt"
"strings"
"unicode"
"unicode/utf8"
)
func (l *lexer) run() {
for state := lexExpr; state != nil; {
state = state(l)
}
l.items <- item{itemEOF, "eof"}
close(l.items) // No more tokens will be delivered.
}
type item struct {
typ itemType
val string
}
func (i item) String() string {
switch i.typ {
case itemEOF:
return "EOF"
case itemError:
return i.val
}
if len(i.val) > 10 {
return fmt.Sprintf("%.10q...", i.val)
}
return fmt.Sprintf("%d-'%s'", i.typ, i.val)
}
type itemType int
const (
itemNil itemType = iota
itemError
itemEOF // EOF
itemAdd // +
itemMul // *
itemDiv // /
itemDiv2 // {...}//{...}
itemNeg // -
itemLParen // (
itemRParen // )
itemLBrack // {
itemRBrack // }
itemCarrot // ^
itemNumber
itemIndex
itemIdentifier // vars,coeffs,funcs
itemKeyword // placeholder
itemFrac // \frac
itemCDot // \cdot (latex multiplication)
itemSin
itemCos
itemTan
itemAbs
itemSqrt
itemExp
itemLog
)
func isLeaf(it itemType) bool {
switch it {
case itemNumber, itemIdentifier:
return true
}
return false
}
func isUnary(it itemType) bool {
// switch it {
// case itemNeg:
// return true
// }
return false
}
func isBinary(it itemType) bool {
switch it {
case itemAdd, itemNeg, itemMul, itemDiv, itemDiv2, itemCarrot:
return true
}
return false
}
var itemName = map[itemType]string{
itemNil: "nil",
itemError: "error",
itemEOF: "EOF",
itemAdd: "add",
itemMul: "mul",
itemDiv: "div",
itemDiv2: "div2",
itemNeg: "neg",
itemLParen: "lParen",
itemRParen: "rParen",
itemLBrack: "lBrack",
itemRBrack: "rBrack",
itemCarrot: "carrot",
itemNumber: "number",
itemIndex: "index",
itemIdentifier: "identifier",
// keywords
itemCDot: "cdot",
itemFrac: "frac",
itemSin: "sin",
itemCos: "cos",
itemTan: "tan",
itemAbs: "abs",
itemSqrt: "sqrt",
itemExp: "exp",
itemLog: "ln",
}
func (i itemType) String() string {
s := itemName[i]
if s == "" {
return fmt.Sprintf("item%d", int(i))
}
return s
}
var key = map[string]itemType{
"\\cdot": itemCDot,
"\\frac": itemFrac,
"sin": itemSin,
"Sin": itemSin,
"cos": itemCos,
"Cos": itemCos,
"tan": itemTan,
"Tan": itemTan,
"abs": itemAbs,
"Abs": itemAbs,
"sqrt": itemSqrt,
"Sqrt": itemSqrt,
"e": itemExp,
"exp": itemExp,
"Exp": itemExp,
"ln": itemLog,
}
const eof = -1
// stateFn represents the state of the scanner as a function that returns the next state.
type stateFn func(*lexer) stateFn
// lexer holds the state of the scanner.
type lexer struct {
name string // used only for error reports.
input string // the string being scanned.
vars []string // allowable variables
state stateFn // the next lexing function to enter.
start int // start position of this item.
pos int // current position in the input.
width int // width of last rune read from input.
items chan item // channel of scanned items.
nextToken item
}
// next returns the next rune in the input.
func (l *lexer) next() (r rune) {
if l.pos >= len(l.input) {
l.width = 0
return eof
}
r, l.width = utf8.DecodeRuneInString(l.input[l.pos:])
l.pos += l.width
return r
}
// peek returns but does not consume the next rune in the input.
func (l *lexer) peek() rune {
r := l.next()
l.backup()
return r
}
// backup steps back one rune. Can only be called once per call of next.
func (l *lexer) backup() {
l.pos -= l.width
}
// emit passes an item back to the client.
func (l *lexer) emit(t itemType) {
l.items <- item{t, l.input[l.start:l.pos]}
l.start = l.pos
}
// ignore skips over the pending input before this point.
func (l *lexer) ignore() {
l.start = l.pos
}
// accept consumes the next rune if it's from the valid set.
func (l *lexer) accept(valid string) bool {
if strings.IndexRune(valid, l.next()) >= 0 {
return true
}
l.backup()
return false
}
// acceptRun consumes a run of runes from the valid set.
func (l *lexer) acceptRun(valid string) {
for strings.IndexRune(valid, l.next()) >= 0 {
}
l.backup()
}
// lineNumber reports which line we're on. Doing it this way
// means we don't have to worry about peek double counting.
func (l *lexer) lineNumber() int {
return 1 + strings.Count(l.input[:l.pos], "\n")
}
// error returns an error token and terminates the scan by passing
// back a nil pointer that will be the next state, terminating l.nextItem.
func (l *lexer) errorf(format string, args ...interface{}) stateFn {
l.items <- item{itemError, fmt.Sprintf(format, args...)}
return nil
}
// nextItem returns the next item from the input.
func (l *lexer) nextItem() item {
for {
select {
case item := <-l.items:
return item
default:
l.state = l.state(l)
}
}
panic("not reached")
}
// lex creates a new scanner for the input string.
func lex(name, input string, vars []string) *lexer {
l := &lexer{
name: name,
input: input,
vars: vars,
state: lexExpr,
items: make(chan item, 2), // Two items of buffering is sufficient for all state functions
}
return l
}
/***** State Functions *****/
// lexExpr is the top level scanner
func lexExpr(l *lexer) stateFn {
switch r := l.next(); {
case r == eof || r == '\n':
return nil
case isSpace(r):
l.ignore()
case r == '+':
l.emit(itemAdd)
return lexExpr
case r == '*':
l.emit(itemMul)
return lexExpr
case r == '^':
l.emit(itemCarrot)
return lexExpr
case r == '/':
if l.peek() == '/' {
l.emit(itemDiv2)
} else {
l.emit(itemDiv)
}
return lexExpr
case r == '-':
l.emit(itemNeg)
return lexExpr
case r == '(':
l.emit(itemLParen)
return lexExpr
case r == ')':
l.emit(itemRParen)
return lexExpr
case r == '{':
l.emit(itemLBrack)
return lexExpr
case r == '}':
l.emit(itemRBrack)
return lexExpr
case r == '\\':
// l.backup()
return lexIdentifier
case r == '_':
l.ignore()
return lexIndex
case '0' <= r && r <= '9':
l.backup()
return lexNumber
case isAlphaNumeric(r):
l.backup()
return lexIdentifier
default:
return l.errorf("unrecognized character in action: %#U", r)
}
return lexExpr
}
// lexIdentifier scans an alphanumeric or field.
func lexIdentifier(l *lexer) stateFn {
Loop:
for {
switch r := l.next(); {
case isAlphaNumeric(r):
// absorb.
case r == '_':
// absorb and scanIndex
digits := "0123456789"
l.acceptRun(digits)
l.emit(itemIdentifier)
return lexExpr
case r == '.' && (l.input[l.start] == '.' || l.input[l.start] == '$'):
// field chaining; absorb into one token.
default:
l.backup()
word := l.input[l.start:l.pos]
if !l.atTerminator() {
return l.errorf("unexpected character %c", r)
}
switch {
case key[word] > itemKeyword:
l.emit(key[word])
default:
l.emit(itemIdentifier)
}
break Loop
}
}
return lexExpr
}
// atTerminator reports whether the input is at valid termination character to
// appear after an identifier. Mostly to catch cases like "$x+2" not being
// acceptable without a space, in case we decide one day to implement
// arithmetic.
func (l *lexer) atTerminator() bool {
r := l.peek()
if isSpace(r) {
return true
}
switch r {
case eof, '+', '-', '(', ')', '{', '}', '/', '*', '^':
return true
}
return false
}
// lexNumber scans a number: decimal, octal, hex, float, or imaginary. This
// isn't a perfect number scanner - for instance it accepts "." and "0x0.2"
// and "089" - but when it's wrong the input is invalid and the parser (via
// strconv) will notice.
func lexNumber(l *lexer) stateFn {
if !l.scanNumber() {
return l.errorf("bad number syntax: %q", l.input[l.start:l.pos])
} else {
l.emit(itemNumber)
}
return lexExpr
}
func lexIndex(l *lexer) stateFn {
if !l.scanIndex() {
return l.errorf("bad index syntax: %q", l.input[l.start:l.pos])
} else {
l.emit(itemIndex)
}
return lexExpr
}
func (l *lexer) scanIndex() bool {
// Optional leading sign.
digits := "0123456789"
l.acceptRun(digits)
// Next thing mustn't be alphanumeric.
// if isAlphaNumeric(l.peek()) {
// l.next()
// return false
// }
return true
}
func (l *lexer) scanNumber() bool {
// Optional leading sign.
l.accept("+-")
digits := "0123456789"
l.acceptRun(digits)
if l.accept(".") {
l.acceptRun(digits)
}
if l.accept("eE") {
l.accept("+-")
l.acceptRun("0123456789")
}
// Is it imaginary?
l.accept("i")
// Next thing mustn't be alphanumeric.
// if isAlphaNumeric(l.peek()) {
// l.next()
// return false
// }
return true
}
// isSpace reports whether r is a space character.
func isSpace(r rune) bool {
switch r {
case ' ', '\t', '\n', '\r':
return true
}
return false
}
// isAlphaNumeric reports whether r is an alphabetic or digit
func isAlphaNumeric(r rune) bool {
return unicode.IsLetter(r) || unicode.IsDigit(r)
}