-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlex.go
402 lines (366 loc) · 6.19 KB
/
lex.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
package edit
// Put
import (
"fmt"
"strconv"
"strings"
"unicode"
"unicode/utf8"
)
type item struct {
kind Kind
value string
}
func (i item) String() string {
return fmt.Sprintf("%v %s", i.kind, i.value)
}
const (
ralpha = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ="
rcmd = ralpha + "<>|"
rdigit = "0123456789"
rop = "+-;,"
rmod = "^$#/?"
rescape = `#/?+-;,\abnrtx`
)
const maxBytes = ^uint64(0)
func max() string {
return fmt.Sprintf("%v", maxBytes)
}
type Kind int
const (
kindOp Kind = iota
kindString
kindSlash
kindQuest
kindRel
kindComma
kindDot
kindEof
kindColon
kindSemi
kindHash
kindErr
kindGlobal
kindRegexp
kindRegexpBack
kindByteOffset
kindLineOffset
kindCount
kindCmd
kindArg
)
const (
eof = '\x00'
slash = '/'
quest = '?'
comma = ','
plus = "+"
dot = '.'
colon = ':'
semi = ';'
hash = '#'
dollar = '$'
caret = '^'
)
type statefn func(*lexer) statefn
type lexer struct {
name string
input string
start int
pos int
width int
items chan item
lastop item
first bool
esc bool
}
func lex(name, input string) (*lexer, chan item) {
l := &lexer{
name: name,
input: input,
items: make(chan item),
lastop: item{kindOp, "+"},
first: true,
}
go l.run() // run state machine
return l, l.items
}
func (l *lexer) run() {
for state := lexAny; state != nil; {
state = state(l)
}
close(l.items)
}
func (l *lexer) accept(valid string) bool {
if strings.ContainsRune(valid, l.next()) {
return true
}
l.backup()
return false
}
func (l *lexer) acceptRun(valid string) {
for strings.ContainsRune(valid, l.next()) {
}
l.backup()
}
func (l *lexer) acceptUntil(delim string) {
lim := 8192
i := 0
for !strings.ContainsRune(delim, l.next()) {
i++
if i > lim {
l.errorf("missing terminating char %q: %q\n", delim, l)
l.ignore()
l.emit(kindEof)
return
}
}
l.backup()
}
func (l *lexer) acceptEOF() {
lim := 8192
i := 0
for l.next() != eof {
i++
if i > lim {
l.emit(kindEof)
return
}
}
}
func (l *lexer) backup() {
l.pos -= l.width
}
func (l *lexer) emit(t Kind) {
s, err := strconv.Unquote(`"` + l.String() + `"`)
if err != nil {
l.errorf(err.Error())
}
l.items <- item{t, s}
l.start = l.pos
}
func (l *lexer) inject(it item) {
l.items <- it
}
func (l *lexer) ignore() {
l.start = l.pos
}
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
}
func (l *lexer) peek() rune {
r := l.next()
l.backup()
return r
}
func (l *lexer) String() string {
return string(l.input[l.start:l.pos])
}
func space(r rune) bool {
return unicode.IsSpace(r)
}
func ignoreSpaces(l *lexer) {
if l.accept(" ") {
l.acceptRun(" ")
l.ignore()
}
}
func lexAny(l *lexer) statefn {
ignoreSpaces(l)
if l.accept(rdigit + rop + rmod) {
l.backup()
return lexAddr
}
l.emit(kindDot)
return lexCmd
}
func lexAddr(l *lexer) statefn {
ignoreSpaces(l)
switch l.peek() {
case eof:
l.next()
l.emit(kindEof)
return nil
case ',', ';':
// LHS is empty so use #0
if l.first {
l.inject(item{kindByteOffset, "0"})
l.first = false
}
return lexOp
case '+', '-':
if l.first {
l.first = false
}
l.accept("+-")
l.emit(kindRel)
return lexAddr
case slash, quest:
return lexRegexp
case dot:
l.accept(".")
l.emit(kindDot)
return lexOp
case hash:
l.accept("#")
l.ignore()
ignoreSpaces(l)
if !l.accept(rdigit) {
return l.errorf("non-numeric offset")
}
l.acceptRun(rdigit)
l.emit(kindByteOffset)
return lexOp
default:
if l.accept("$") {
l.ignore()
l.inject(item{kindByteOffset, max()})
return lexCmd
}
if l.accept("^") {
l.ignore()
l.inject(item{kindByteOffset, "0"})
return lexOp
}
if l.accept(rdigit) {
l.acceptRun(rdigit)
l.emit(kindLineOffset)
return lexOp
}
}
return lexCmd
}
func lexArgsTuple(l *lexer) statefn {
if !l.accept("s") {
return l.errorf("want 's', have %q", l.String())
}
l.emit(kindCmd)
if l.accept(rdigit) {
// optional repetition count
l.acceptRun(rdigit)
l.emit(kindCount)
}
r := string(l.next())
l.ignore()
l.acceptUntil(r)
l.emit(kindArg)
if !l.accept(r) {
return l.errorf("bad opening delimiter: %q", r)
}
l.ignore()
l.acceptUntil(r)
l.emit(kindArg)
if !l.accept(r) {
return l.errorf("bad closing delimiter: %q", r)
}
l.ignore()
ignoreSpaces(l)
if l.accept("g") {
l.emit(kindGlobal)
}
return lexCmd
}
func lexCmd(l *lexer) statefn {
ignoreSpaces(l)
if l.peek() == eof {
l.emit(kindEof)
return nil
}
if l.peek() == 's' {
return lexArgsTuple
}
if !l.accept(ralpha) {
if l.accept("|<>") {
l.emit(kindCmd)
return lexArg2
}
return l.errorf("bad command")
}
l.emit(kindCmd)
switch l.peek() {
case eof:
l.emit(kindEof)
return nil
default:
return lexArg
}
}
func lexOp(l *lexer) statefn {
ignoreSpaces(l)
tok := l.peek()
if tok == eof {
l.emit(kindEof)
return nil
}
if tok == dollar {
l.ignore()
l.inject(item{kindByteOffset, max()})
return lexAddr
}
op := ""
if l.accept(rop) {
op = l.String()
l.emit(kindOp)
}
ignoreSpaces(l)
if l.accept(rdigit + rmod) {
if op == "" {
l.inject(l.lastop)
}
l.backup()
l.lastop = item{kindOp, op}
}
// use rcmd to det. whether closing addr is injected
if tok := l.peek(); op != "" && (l.accept(rcmd) || tok == eof) {
l.inject(item{kindByteOffset, max()})
l.backup()
}
return lexAddr
}
func lexArg(l *lexer) statefn {
r := string(l.next())
l.ignore()
l.acceptUntil(r)
l.emit(kindArg)
if !l.accept(string(r)) {
return l.errorf("bad delimiter")
}
l.ignore()
return lexCmd
}
func lexArg2(l *lexer) statefn {
l.acceptEOF()
l.emit(kindArg)
return lexCmd
}
func lexRegexp(l *lexer) statefn {
r := l.next()
if r != '?' && r != '/' {
return l.errorf("bad regexp delimiter: %q", l)
}
l.ignore()
l.acceptUntil(string(rune(r)))
if r == '?' {
l.emit(kindRegexpBack)
} else {
l.emit(kindRegexp)
}
if !l.accept(string(rune(r))) {
return l.errorf("bad regexp terminator: %q", l)
}
l.ignore()
return lexOp
}
func (l *lexer) errorf(format string, args ...interface{}) statefn {
l.items <- item{
kindErr,
fmt.Sprintf(format, args...),
}
return nil
}