-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathparse.go
356 lines (318 loc) · 6.14 KB
/
parse.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
package main
import (
"errors"
"regexp"
"strconv"
)
// These constants...
const MaxUint = ^uint(0)
const MaxInt = int(MaxUint >> 1)
const MinInt = -MaxInt - 1
// ...are needed for this
const InvalidAddr = MinInt
const SkipAddr = InvalidAddr + 1
const NOLINE = InvalidAddr
const NORUNE = 0xfffd
var ErrNoMatch = errors.New("no match")
// ----------
// LineParser
//
// LineParser is a simple two-index parser.
// Main index advances only on successful rule matches
// Secondary index is used in intermediate matching.
type LineParser struct {
// Main and secondary indices
mi int
si int
text []rune
ctx *Context
editor *Editor
}
func NewLineParser(e *Editor, t string) *LineParser {
return &LineParser{
mi: 0,
si: 0,
text: []rune(t),
ctx: nil, // DO NOT forget to initialize
editor: e,
}
}
// Advance is called on rule match success
func (lp *LineParser) Advance() {
lp.mi = lp.si
}
// Rewind is called on rule match failure
func (lp *LineParser) Rewind() {
lp.si = lp.mi
}
func (lp *LineParser) LookAhead() (r rune, ok bool) {
if lp.si >= len(lp.text) {
return NORUNE, false
}
return lp.text[lp.si], true
}
func (lp *LineParser) Consume() {
if lp.si <= len(lp.text) {
lp.si++
}
}
func (lp *LineParser) ConsumeAll() {
for lp.si < len(lp.text) {
lp.si++
}
}
func (lp *LineParser) ConsumeSpace() {
outer:
for {
la, ok := lp.LookAhead()
if !ok {
break
}
switch la {
case '\t', ' ':
lp.Consume()
default:
break outer
}
}
lp.Advance()
}
func (lp *LineParser) Match(r rune) bool {
la, ok := lp.LookAhead()
if !ok {
return false
}
if la == r {
lp.Consume()
return true
}
return false
}
func (lp *LineParser) Parse() (start, end int, cmd rune, text string, count int, err error) {
if len(lp.text) == 0 { // just Enter
addr := lp.editor.CurrentAddr() + 1
return addr, addr, 'p', "p", 0, nil
}
ctx := NewContext(lp, lp.editor)
lp.ctx = ctx
count = addrRange(ctx)
if lp.si >= len(lp.text) {
lp.text = append(lp.text, 'p') // default command
}
return ctx.fstAddr, ctx.sndAddr, lp.text[lp.si], string(lp.text[lp.si:]), count, ctx.err
}
// Instead of global state in C
type Context struct {
fstAddr int
sndAddr int
addrCnt int
lp *LineParser
e *Editor
err error
}
func NewContext(lp *LineParser, e *Editor) *Context {
return &Context{
fstAddr: InvalidAddr,
sndAddr: InvalidAddr,
addrCnt: 0,
lp: lp,
e: e,
err: nil,
}
}
func invalidAddr(ctx *Context) {
ctx.err = errors.New("invalid address")
}
func skipBlanks(ctx *Context) {
ctx.lp.ConsumeSpace()
}
func isDigit(r rune) bool {
switch r {
case '0', '1', '2', '3', '4', '5', '6', '7', '8', '9':
return true
}
return false
}
func nextAddr(ctx *Context) (int, bool) { // addr, ok
skipBlanks(ctx)
mi := ctx.lp.mi
addr := ctx.e.CurrentAddr()
first := true
for {
r, ok := ctx.lp.LookAhead()
if !ok {
r = NORUNE
}
if isDigit(r) {
if !first {
invalidAddr(ctx)
return InvalidAddr, false
}
addr, ok = readInt(ctx)
if !ok {
invalidAddr(ctx)
return InvalidAddr, false
}
} else {
switch r {
case '+', '\t', ' ', '-':
ctx.lp.Consume()
ctx.lp.ConsumeSpace()
r2, ok := ctx.lp.LookAhead()
if !ok {
r2 = NORUNE
}
if isDigit(r2) {
if n, ok := readInt(ctx); ok {
if r == '-' {
n = -n
}
addr += n
} else {
return addr, false
}
} else if r == '+' {
addr++
} else if r == '-' {
addr--
}
case '.', '$':
if !first {
invalidAddr(ctx)
return addr, false
}
ctx.lp.Consume()
addr = ctx.e.LastAddr()
if r == '.' {
addr = ctx.e.CurrentAddr()
}
case '/', '?':
if !first {
invalidAddr(ctx)
return addr, false
}
rx, ok := matchDelimitedRegexp(ctx, r)
if !ok {
return addr, false
}
if len(rx) > 0 {
regexp, err := regexp.Compile(rx)
if err != nil {
return addr, false
}
ctx.e.pattern = regexp
}
var err error
addr, err = ctx.e.Search(r == '/')
if err != nil {
return addr, false
}
case '%', ',', ';':
if first {
ctx.lp.Consume()
ctx.addrCnt++
ctx.sndAddr = 1
if r == ';' {
ctx.sndAddr = ctx.e.CurrentAddr() // current line
}
addr = ctx.e.LastAddr()
break // from switch, read next addr in for loop
}
fallthrough
default:
// if no addr given at all
if mi == ctx.lp.si {
return InvalidAddr, false
}
if addr < 0 || addr > ctx.e.LastAddr() {
invalidAddr(ctx)
return addr, false
}
ctx.addrCnt++
return addr, true
} // switch r
}
first = false
} // for
}
// addrRange returns number of addresses read
func addrRange(ctx *Context) int {
addr := InvalidAddr
ok := false
ctx.addrCnt = 0
ctx.fstAddr = ctx.e.CurrentAddr()
ctx.sndAddr = ctx.fstAddr
for {
addr, ok = nextAddr(ctx)
if !ok {
break
}
ctx.fstAddr = ctx.sndAddr
ctx.sndAddr = addr
r, ok := ctx.lp.LookAhead()
if !ok || (r != ',' && r != ';') {
break
}
if r == ';' {
ctx.e.line = addr
}
ctx.lp.Consume()
}
if ctx.addrCnt == 1 || ctx.sndAddr != addr {
ctx.fstAddr = ctx.sndAddr
}
return ctx.addrCnt
}
func readInt(c *Context) (int, bool) { // n, ok
num := ""
cur := c.lp.si
for {
r, ok := c.lp.LookAhead()
if !ok || !isDigit(r) {
break
}
c.lp.Consume()
}
num = string(c.lp.text)[cur:c.lp.si]
n, err := strconv.Atoi(num)
if err != nil {
return InvalidAddr, false
}
c.lp.Advance()
return n, true
}
func matchDelimitedRegexp(c *Context, r rune) (string, bool) {
ok := c.lp.Match(r)
if !ok {
return "", false
}
raw := []rune("")
escaped := false
for {
la, ok := c.lp.LookAhead()
if !ok {
break // break loop if end of input
}
c.lp.Consume()
if la == '\\' {
if escaped {
raw = append(raw, '\\')
escaped = false
} else {
escaped = true
}
continue
}
if la == r {
if !escaped {
break // break loop if unescaped delimiter met
}
}
escaped = false
raw = append(raw, la)
}
// No point in matching delimiter now
// Either we have already matched it in loop or reached end of input
rx := string(raw)
return rx, true
}