-
Notifications
You must be signed in to change notification settings - Fork 2
/
parser.go
392 lines (320 loc) · 7.5 KB
/
parser.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
package vte
import (
"math"
"github.com/danielgatis/go-utf8"
)
// State represents a state type
type State = byte
// Action represents a action type
type Action = byte
// maxIntermediates is the maximum number of intermediates allowed.
const maxIntermediates = 2
// maxOscRaw is the maximum number of bytes allowed in an osc parameter.
const maxOscRaw = 1024
// maxOscParams is the maximum number of osc parameters allowed.
const maxOscParams = 16
// Performer is an interface for parsing.
type Performer interface {
// Print is called when a print action is performed.
Print(r rune)
// Execute is called when an execute action is performed.
Execute(b byte)
// Put is called when a put action is performed.
Put(b byte)
// Unhook is called when an unhook action is performed.
Unhook()
// Hook is called when a hook action is performed.
Hook(params [][]uint16, intermediates []byte, ignore bool, r rune)
// OscDispatch is called when an osc dispatch action is performed.
OscDispatch(params [][]byte, bellTerminated bool)
// CsiDispatch is called when a csi dispatch action is performed.
CsiDispatch(params [][]uint16, intermediates []byte, ignore bool, r rune)
// EscDispatch is called when an esc dispatch action is performed.
EscDispatch(intermediates []byte, ignore bool, b byte)
}
// Parser represents a state machine.
type Parser struct {
state byte
intermediates [maxIntermediates]uint8
intermediateIdx int
params *params
param uint16
hasParam bool
oscRaw []byte
oscParams [maxOscParams][2]int
oscNumParams int
ignoring bool
utf8Parser *utf8.Parser
performer Performer
}
func (p *Parser) prtcb(char rune) {
if p.performer != nil {
p.performer.Print(char)
}
}
func (p *Parser) execb(b byte) {
if p.performer != nil {
p.performer.Execute(b)
}
}
func (p *Parser) putcb(b byte) {
if p.performer != nil {
p.performer.Put(b)
}
}
func (p *Parser) uhocb() {
if p.performer != nil {
p.performer.Unhook()
}
}
func (p *Parser) hokcb(params [][]uint16, intermediates []byte, ignore bool, r rune) {
if p.performer != nil {
p.performer.Hook(params, intermediates, ignore, r)
}
}
func (p *Parser) osccb(params [][]byte, bellTerminated bool) {
if p.performer != nil {
p.performer.OscDispatch(params, bellTerminated)
}
}
func (p *Parser) csicb(params [][]uint16, intermediates []byte, ignore bool, r rune) {
if p.performer != nil {
p.performer.CsiDispatch(params, intermediates, ignore, r)
}
}
func (p *Parser) esccb(intermediates []byte, ignore bool, b byte) {
if p.performer != nil {
p.performer.EscDispatch(intermediates, ignore, b)
}
}
func (p *Parser) setState(state State) {
p.state = state
}
// NewParser returns a new parser.
func NewParser(
performer Performer,
) *Parser {
p := &Parser{
params: new(params),
state: GroundState,
performer: performer,
}
utf8Performer := newUtf8Performer(p.prtcb, p.setState)
p.utf8Parser = utf8.New(utf8Performer)
return p
}
// Advance advances the state machine.
func (p *Parser) Advance(b byte) {
if p.state == Utf8State {
p.processUtf8(b)
} else {
change := stateTable[AnywhereState][b]
if change == 0 {
change = stateTable[p.state][b]
}
state := change & 0x0f
action := change >> 4
p.performStateChange(state, action, b)
}
}
// Intermediates returns the intermediates
func (p *Parser) Intermediates() []byte {
return append([]byte{}, p.intermediates[:p.intermediateIdx]...)
}
// Params returns the params
func (p *Parser) Params() [][]uint16 {
var params [][]uint16
p.params.Range(func(param []uint16) {
params = append(params, param)
})
return params
}
// OscParams returns the osc params
func (p *Parser) OscParams() [][]byte {
params := make([][]byte, 0, maxOscParams)
for i := 0; i < p.oscNumParams; i++ {
indices := p.oscParams[i]
param := p.oscRaw[indices[0]:indices[1]]
params = append(params, param)
}
return params[:p.oscNumParams]
}
// StateName returns the current state name
func (p *Parser) StateName() string {
return stateNames[p.state]
}
// State returns the current state
func (p *Parser) State() State {
return p.state
}
func (p *Parser) processUtf8(b byte) {
p.utf8Parser.Advance(b)
}
func (p *Parser) performStateChange(state, action, b byte) {
switch state {
case AnywhereState:
p.performAction(action, b)
default:
switch p.state {
case DcsPassthroughState:
p.performAction(UnhookAction, b)
case OscStringState:
p.performAction(OscEndAction, b)
default:
break
}
switch action {
case NoneAction:
break
default:
p.performAction(action, b)
}
switch state {
case CsiEntryState, DcsEntryState, EscapeState:
p.performAction(ClearAction, b)
case DcsPassthroughState:
p.performAction(HookAction, b)
case OscStringState:
p.performAction(OscStartAction, b)
default:
break
}
// Assume the new state
p.state = state
}
}
func (p *Parser) performAction(action, b byte) {
switch action {
case IgnoreAction:
break
case NoneAction:
break
case PrintAction:
p.prtcb(rune(b))
case ExecuteAction:
p.execb(b)
case HookAction:
if p.params.IsFull() {
p.ignoring = true
} else {
p.params.Push(p.param)
}
p.hokcb(
p.Params(),
p.Intermediates(),
p.ignoring,
rune(b),
)
case PutAction:
p.putcb(b)
case OscStartAction:
p.oscRaw = make([]byte, 0)
p.oscNumParams = 0
case OscPutAction:
idx := len(p.oscRaw)
if b == ';' {
paramIdx := p.oscNumParams
switch paramIdx {
case maxOscParams:
return
case 0:
p.oscParams[paramIdx] = [2]int{0, idx}
default:
prev := p.oscParams[paramIdx-1]
begin := prev[1]
p.oscParams[paramIdx] = [2]int{begin, idx}
}
p.oscNumParams++
} else {
p.oscRaw = append(p.oscRaw, b)
}
case OscEndAction:
paramIdx := p.oscNumParams
idx := len(p.oscRaw)
switch paramIdx {
case maxOscParams:
break
case 0:
p.oscParams[paramIdx] = [2]int{0, idx}
p.oscNumParams++
default:
prev := p.oscParams[paramIdx-1]
begin := prev[1]
p.oscParams[paramIdx] = [2]int{begin, idx}
p.oscNumParams++
}
p.osccb(
p.OscParams(),
b == 0x07,
)
case UnhookAction:
p.uhocb()
case CsiDispatchAction:
if p.params.IsFull() {
p.ignoring = true
} else if p.hasParam {
p.params.Push(p.param)
}
p.csicb(
p.Params(),
p.Intermediates(),
p.ignoring,
rune(b),
)
case EscDispatchAction:
p.esccb(
p.Intermediates(),
p.ignoring,
b,
)
case CollectAction:
if p.intermediateIdx == maxIntermediates {
p.ignoring = true
} else {
p.intermediates[p.intermediateIdx] = b
p.intermediateIdx++
}
case ParamAction:
if p.params.IsFull() {
p.ignoring = true
return
}
if b == ';' {
p.params.Push(p.param)
p.param = 0
// accept a 0 for the following param even if we don't see a
// number, since the semicolon makes it obvious that a value should
// be there.
p.hasParam = true
} else if b == ':' {
p.params.Extend(p.param)
p.param = 0
p.hasParam = false
} else {
p.param = smulu16(p.param, 10)
p.param = saddu16(p.param, uint16((b - '0')))
p.hasParam = true
}
case ClearAction:
// Reset everything on ESC/CSI/DCS entry
p.intermediateIdx = 0
p.ignoring = false
p.param = 0
p.hasParam = false
p.params.Clear()
case BeginUtf8Action:
p.processUtf8(b)
}
}
func saddu16(a, b uint16) uint16 {
if b > 0 && a > math.MaxUint16-b {
return math.MaxUint16
}
return a + b
}
func smulu16(a, b uint16) uint16 {
if a > 0 && b > 0 && a > math.MaxUint16/b {
return math.MaxUint16
}
return a * b
}