-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlexer.go
301 lines (271 loc) · 7.12 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
package validator
import (
"fmt"
"runtime"
"strings"
"unicode"
)
var eof = rune(-1)
type lexer struct {
buffer string
start int
pos int
len int
parenStack int
debug bool
}
func newLexer(s string) *lexer {
return &lexer{
buffer: s,
len: len(s),
pos: 0,
}
}
func (l *lexer) Peak() *token {
t := l.Next()
l.Backup()
return t
}
func (l *lexer) Next() *token {
l.start = l.pos
l.logd("l.pos = %d", l.pos)
if !l.hasNext() {
if l.parenStack > 0 {
err := l.errorf("missing %d closed parenthasis at EOF", l.parenStack)
return l.emitError(err)
}
return l.emit(typeEOF)
} else if isAnd := l.acceptPrefix("&"); isAnd {
return l.emit(typeAnd)
} else if isOr := l.acceptPrefix("|"); isOr {
return l.emit(typeOr)
} else if isColon := l.acceptPrefix(":"); isColon {
return l.emit(typeColon)
} else if isComma := l.acceptPrefix(","); isComma {
return l.emit(typeComma)
} else if isOpenParen := l.acceptPrefix("("); isOpenParen {
l.parenStack++
return l.emit(typeOpenParen)
} else if isClosedParen := l.acceptPrefix(")"); isClosedParen {
if l.parenStack == 0 {
return l.emitError(l.errorf("closed paren with no open paren at char %d near \"%.10s...\"", l.pos, l.buffer[l.pos:]))
}
l.parenStack--
return l.emit(typeCloseParen)
} else if isBool := l.acceptPrefix("true") || l.acceptPrefix("false"); isBool {
return l.emit(typeBool)
} else if isString, err := l.acceptString(); isString {
return l.emit(typeString)
} else if err != nil {
return l.emitError(err)
} else if isNumber := l.acceptNumber(); isNumber {
return l.emit(typeNumber)
} else if isWhiteSpace := l.acceptSpace(); isWhiteSpace {
return l.emit(typeSpace)
} else if err != nil {
return l.emitError(err)
} else if isFunction := l.acceptFunction(); isFunction {
return l.emit(typeFunction)
} else if err != nil {
return l.emitError(err)
}
return l.emitError(l.errorf("error at char %d near \"%.10s...\"", l.pos, l.buffer[l.pos:]))
}
func (l *lexer) Backup() {
l.logd("Backup [%d:%d] len:%d -> %s", l.start, l.pos, l.len, l.buffer[l.start:l.pos])
if l.pos > l.len {
} else if last := l.buffer[l.start:l.pos]; last == "(" {
l.parenStack--
} else if last == ")" {
l.parenStack++
}
l.pos = l.start
if l.debug {
_, file, line, _ := runtime.Caller(1)
pieces := strings.Split(file, "/")
tag := fmt.Sprintf("%s:%d", pieces[len(pieces)-1], line)
l.logd("%s => Backup() -> l.pos = %d\n", tag, l.pos)
}
}
func (l *lexer) emitError(err error) *token {
return &token{typeError, err.Error()}
}
func (l *lexer) emit(t tokenType) *token {
l.logd("emit(%s) -> l.buffer[%d:%d] = %s\n", t, l.start, l.pos, l.buffer[l.start:l.pos])
tkn := token{
t, l.buffer[l.start:l.pos],
}
return &tkn
}
func (l *lexer) hasNext() bool {
l.logd("hasNext() -> %d < %d = %t", l.pos, l.len, l.pos < l.len)
return l.pos < l.len
}
func (l *lexer) next() rune {
if !l.hasNext() {
return eof
}
l.logd("next[%d] = %s\n", l.pos, string(l.buffer[l.pos]))
r := rune(l.buffer[l.pos])
l.pos++
return r
}
func (l *lexer) peak() rune {
if !l.hasNext() {
return eof
}
r := l.next()
l.backup()
return r
}
func (l *lexer) backup() bool {
if l.pos == 0 {
return false
}
l.pos--
if l.debug {
_, file, line, _ := runtime.Caller(1)
pieces := strings.Split(file, "/")
tag := fmt.Sprintf("%s:%d", pieces[len(pieces)-1], line)
l.logd("%s => backup() -> l.pos = %d\n", tag, l.pos)
}
return true
}
// accept accepts one of the passed in characters in the set next
func (l *lexer) accept(valid string) bool {
if l.hasNext() && strings.ContainsRune(valid, rune(l.buffer[l.pos])) {
l.pos++
l.logd("accept(%s) -> l.pos = %d\n", valid, l.pos)
return true
}
return false
}
// acceptRun accepts one or more of the passed in characters in the set next
func (l *lexer) acceptRun(valid string) bool {
var isAccepted bool
for l.hasNext() && strings.ContainsRune(valid, rune(l.buffer[l.pos])) {
l.pos++
l.logd("acceptRun(%s) -> l.pos = %d -> %s", valid, l.pos, l.buffer[l.start:l.pos])
isAccepted = true
}
return isAccepted
}
// acceptPrefix accepts the entire valid string next
func (l *lexer) acceptPrefix(valid string) bool {
if strings.HasPrefix(l.buffer[l.pos:], valid) {
l.pos += len(valid)
l.logd("acceptPrefix(%s) -> l.pos = %d\n", valid, l.pos)
return true
}
return false
}
// acceptNumber scans a number (taken from the go standard librarys template lexer)
func (l *lexer) acceptNumber() bool {
// Optional leading sign.
l.accept("+-")
// Is it hex?
digits := "0123456789_"
if l.accept("0") {
// Note: Leading 0 does not mean octal in floatl.
if l.accept("xX") {
digits = "0123456789abcdefABCDEF_"
} else if l.accept("oO") {
digits = "01234567_"
} else if l.accept("bB") {
digits = "01_"
}
}
l.acceptRun(digits)
// ignore exponents +/- imaginary numbers and decimials that don't have a number component
if noDigits := l.pos == l.start; noDigits {
l.logd("acceptNumer() -> no digits")
return false
}
if l.accept(".") {
l.acceptRun(digits)
}
if len(digits) == 10+1 && l.accept("eE") {
l.accept("+-")
l.acceptRun("0123456789_")
}
if len(digits) == 16+6+1 && l.accept("pP") {
l.accept("+-")
l.acceptRun("0123456789_")
}
// Is it imaginary?
l.accept("i")
// Next thing mustn't be alphanumeric
if l.isAlphaNumeric(l.peak()) {
l.logd("acceptNumer() -> not alpha numeric")
l.pos = l.start
return false
}
l.logd("acceptNumber() -> l.buffer[%d:%d] = %s\n", l.start, l.pos, l.buffer[l.start:l.pos])
return l.pos != l.start
}
// acceptString accepts a string started by either a single or double quote
func (l *lexer) acceptString() (bool, error) {
var isSingleQuote, isDoubleQuote bool
if isSingleQuote = l.accept("'"); !isSingleQuote {
if isDoubleQuote = l.accept("\""); !isDoubleQuote {
return false, nil
}
}
for {
if isSingleQuote && l.accept("'") {
return true, nil
} else if isDoubleQuote && l.accept("\"") {
return true, nil
} else if l.next() == eof {
break
}
}
return false, l.errorf("string not closed. char %d near \"%.10q...\"", l.pos, l.buffer[l.pos:])
}
// acceptSpace accepts all unicode spaces
func (l *lexer) acceptSpace() bool {
for {
if r := l.next(); !unicode.IsSpace(r) {
if r != eof {
l.backup()
}
break
}
}
return l.start != l.pos
}
func (l *lexer) acceptFunction() bool {
for {
if r := l.next(); !l.isAlphaNumeric(r) {
if r != eof {
l.backup()
}
break
}
}
return l.start != l.pos
}
// isAlphaNumeric reports whether r is an alphabetic, digit, or underscore.
func (l *lexer) isAlphaNumeric(r rune) bool {
return r == '_' || unicode.IsLetter(r) || unicode.IsDigit(r)
}
// errorf formats the internal error messages related to parsing and executing within the framework
func (l *lexer) errorf(v string, is ...interface{}) error {
var tag string
if l.debug {
_, file, line, _ := runtime.Caller(1)
pieces := strings.Split(file, "/")
tag = fmt.Sprintf("%s:%d: ", pieces[len(pieces)-1], line)
}
return fmt.Errorf(tag+v, is...)
}
func (l *lexer) logd(v string, is ...interface{}) {
if l.debug {
if l := len(v); l == 0 {
v = "\n"
} else if l > 0 && v[l-1] != '\n' {
v += "\n"
}
fmt.Printf(" > "+v, is...)
}
}