-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtokenize.go
More file actions
237 lines (210 loc) · 5.12 KB
/
Copy pathtokenize.go
File metadata and controls
237 lines (210 loc) · 5.12 KB
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
package glerp
import (
"bufio"
"io"
"unicode"
)
type tokenizerMode int
const (
modeNormal tokenizerMode = iota
modeQuoted
modeInterpString // inside $"...", outside a {} block
modeInterpExpr // inside {} within an interpolated string
modeInterpQuoted // inside a "" string literal within a {} block
)
// Tokenizer can read from a reader and split the content up into Tokens. It
// holds the mode state so that tokens that require more than 1 character can
// be tokenized. Currently is supports two modes: normal and quoted. Normal
// mode can read and tokenize all delimeters except string quotes, and all
// atoms except strings. Quoted mode is used to keep track of whether or not we
// are reading a string. Quoted mode is started when the tokenizer sees a " and
// is flipped back to normal mode when it sees another ".
type Tokenizer struct {
toks []Token
current string
mode tokenizerMode
braceDepth int
}
// Run takes an io.Reader and returns a slice of Tokens. The content read from
// r must be a scheme expression, but this is not a parser, so incorrect scheme
// can still be successfully tokenized.
func (t *Tokenizer) Run(r io.Reader) ([]Token, error) {
scanner := bufio.NewScanner(r)
for scanner.Scan() {
line := scanner.Text()
t.toks = append(t.toks, t.tokenizeLine(line)...)
}
for i, tok := range t.toks {
if tok.Kind == Atom {
t.toks[i] = t.tokenizeAtom(tok.Value)
}
}
t.toks = append(t.toks, Token{Kind: EOF})
return t.toks, scanner.Err()
}
func (t *Tokenizer) tokenizeLine(line string) []Token {
var toks []Token
skip := false
for i, r := range line {
if skip {
skip = false
continue
}
if t.mode == modeQuoted {
if r != '"' {
t.current += string(r)
}
if r == '"' {
toks = append(toks, Token{
Kind: String,
Value: t.current,
})
t.current = ""
t.mode = modeNormal
}
continue
}
if t.mode == modeInterpString {
switch r {
case '"':
toks = append(toks, Token{Kind: InterpString, Value: t.current})
t.current = ""
t.mode = modeNormal
case '{':
t.current += "{"
t.mode = modeInterpExpr
t.braceDepth = 1
default:
t.current += string(r)
}
continue
}
if t.mode == modeInterpExpr {
switch r {
case '{':
t.braceDepth++
t.current += "{"
case '}':
t.braceDepth--
t.current += "}"
if t.braceDepth == 0 {
t.mode = modeInterpString
}
case '"':
t.current += "\""
t.mode = modeInterpQuoted
default:
t.current += string(r)
}
continue
}
if t.mode == modeInterpQuoted {
t.current += string(r)
if r == '"' {
t.mode = modeInterpExpr
}
continue
}
switch {
case unicode.IsSpace(r):
if t.current != "" {
toks = append(toks, Token{
Kind: lookupToken(t.current),
Value: t.current,
})
t.current = ""
}
case r == '"':
if t.current == "$" {
t.current = ""
t.mode = modeInterpString
} else {
t.mode = modeQuoted
}
case r == ',':
// #, and #,@ are syntax-case shorthands.
if t.current == "#" {
if i+1 < len(line) && line[i+1] == '@' {
toks = append(toks, Token{Kind: HashCommaAt, Value: "#,@"})
skip = true
} else {
toks = append(toks, Token{Kind: HashComma, Value: "#,"})
}
t.current = ""
continue
}
if t.current != "" {
toks = append(toks, Token{
Kind: lookupToken(t.current),
Value: t.current,
})
t.current = ""
}
if i+1 < len(line) && line[i+1] == '@' {
toks = append(toks, Token{Kind: CommaAt, Value: ",@"})
skip = true
} else {
toks = append(toks, Token{Kind: Comma, Value: ","})
}
case isDelimiter(string(r)):
// #-prefixed delimiters: #( vector, #' syntax, #` quasisyntax
if t.current == "#" {
switch r {
case '(':
toks = append(toks, Token{Kind: HashLParen, Value: "#("})
t.current = ""
continue
case '\'':
toks = append(toks, Token{Kind: HashQuote, Value: "#'"})
t.current = ""
continue
case '`':
toks = append(toks, Token{Kind: HashBacktick, Value: "#`"})
t.current = ""
continue
}
}
if t.current != "" {
toks = append(toks, Token{
Kind: lookupToken(t.current),
Value: t.current,
})
t.current = ""
}
toks = append(toks, Token{
Kind: lookupToken(string(r)),
Value: string(r),
})
case r == ';':
toks = append(toks, Token{
Kind: Comment,
Value: line[i:],
})
return toks
default:
t.current += string(r)
if i == len(line)-1 {
toks = append(toks, Token{
Kind: lookupToken(t.current),
Value: t.current,
})
t.current = ""
}
}
}
return toks
}
func (t *Tokenizer) tokenizeAtom(atom string) Token {
if unicode.IsDigit(rune(atom[0])) {
return Token{Kind: Number, Value: atom}
}
// Negative numeric literal: '-' followed by a digit (e.g. -5, -3.14).
if len(atom) > 1 && atom[0] == '-' && unicode.IsDigit(rune(atom[1])) {
return Token{Kind: Number, Value: atom}
}
return Token{Kind: Symbol, Value: atom}
}
// NewTokenizer returns a new Tokenizer with its mode set to normal.
func NewTokenizer() *Tokenizer {
return &Tokenizer{mode: modeNormal}
}