This repository has been archived by the owner on May 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
lexer.go
218 lines (186 loc) · 3.83 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
package module
import (
"fmt"
"strings"
"unicode"
"unicode/utf8"
)
const eof = rune(-1)
type tokenKind int
const (
// special kind
tokenError tokenKind = iota // error
tokenEOF // end of file
// operators
tokenMapFun // "=>"
// delimiters
tokenLeftParen // "("
tokenRightParen // ")"
tokenNewline // "\n"
// literals
tokenNakedVal // naked value (string like, without double quote)
// keywords
tokenModule // module
tokenRequire // require
tokenExclude // exclude
tokenReplace // replace
)
var key = map[string]tokenKind{
"module": tokenModule,
"require": tokenRequire,
"exclude": tokenExclude,
"replace": tokenReplace,
}
type token struct {
kind tokenKind
val string
}
func (t token) String() string {
switch t.kind {
case tokenEOF:
return "EOF"
case tokenError:
return t.val
case tokenNewline:
return "newline"
}
if len(t.val) > 10 {
return fmt.Sprintf("%.10q...", t.val)
}
return fmt.Sprintf("%q", t.val)
}
type lexFn func(l *lexer) lexFn
type lexer struct {
start int // start position of the token
pos int // current read position of the input
width int // width of the last runes read from the input
input []byte // the input bytes being scanned
tokens chan token // the scanned tokens
state lexFn // the current state of lexer
}
func lex(b []byte) *lexer {
l := &lexer{
input: b,
tokens: make(chan token, 2),
state: lexFile,
}
return l
}
func lexInString(s string) *lexer {
return lex([]byte(s))
}
func (l *lexer) nextToken() token {
for {
select {
case t, ok := <-l.tokens:
if !ok {
return token{kind: tokenError, val: "no more token"}
}
if t.kind == tokenEOF {
close(l.tokens)
}
return t
default:
l.state = l.state(l)
}
}
}
func (l *lexer) next() (r rune) {
if l.pos >= len(l.input) {
l.width = 0
return eof
}
r, l.width = utf8.DecodeRune(l.input[l.pos:])
l.pos += l.width
return r
}
func (l *lexer) backup() {
l.pos -= l.width
}
func (l *lexer) val() string {
return string(l.input[l.start:l.pos])
}
func (l *lexer) emit(kind tokenKind) {
i := token{kind: kind, val: l.val()}
l.tokens <- i
l.start = l.pos
}
func (l *lexer) emitErrorf(format string, args ...interface{}) lexFn {
l.tokens <- token{kind: tokenError, val: fmt.Sprintf(format, args...)}
return nil
}
func (l *lexer) ignore() {
l.start = l.pos
}
func lexFile(l *lexer) lexFn {
for {
switch r := l.next(); {
case isWhiteSpace(r):
l.ignore()
case r == '\n':
l.emit(tokenNewline)
return lexFile
case r == '"':
return lexString
case r == '(':
l.emit(tokenLeftParen)
return lexFile
case r == ')':
l.emit(tokenRightParen)
return lexFile
case r == '=':
if l.next() != '>' {
return l.emitErrorf("expect => got %q", string(r))
}
l.emit(tokenMapFun)
return lexFile
case isAlpha(r):
return lexKeywordOrNakedVal
case r == eof:
l.ignore()
l.emit(tokenEOF)
return nil
default:
return l.emitErrorf("expecting valid keyword while lexFile, got %q", string(r))
}
}
}
func lexKeywordOrNakedVal(l *lexer) lexFn {
for {
switch r := l.next(); {
case unicode.IsLetter(r), unicode.IsDigit(r), strings.ContainsRune("+-./", r):
// absorb
default:
l.backup()
word := l.val()
if kind, ok := key[word]; ok {
l.emit(kind)
return lexFile
}
l.emit(tokenNakedVal)
return lexFile
}
}
}
func lexString(l *lexer) lexFn {
for {
switch r := l.next(); {
case r == '\n', r == eof:
return l.emitErrorf("unterminated string, got %s", string(r))
case r == '\\':
r = l.next()
if !(r == 't' || r == '\\') {
return l.emitErrorf(`invalid escape char \%s`, string(r))
}
fallthrough
default:
// absorp
}
}
}
func isWhiteSpace(r rune) bool {
return strings.ContainsRune(" \t", r)
}
func isAlpha(r rune) bool {
return unicode.IsLetter(r)
}