-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
488 lines (425 loc) · 9.08 KB
/
main.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
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
package main
import (
"errors"
"fmt"
"math"
"os"
"strconv"
)
func IsAsciiDigit(c byte) bool {
return c >= byte('0') && c <= byte('9')
}
func IsAsciiAlphabetic(c byte) bool {
return (c >= byte('a') && c <= byte('z')) || (c >= byte('A') && c <= byte('Z'))
}
func RemoveIndex[T any](s []T, index int) []T {
return append(s[:index], s[:index+1]...)
}
type Stack[T any] struct {
inner []T
}
func NewStack[T any]() Stack[T] {
return Stack[T]{
inner: []T{},
}
}
func (s *Stack[T]) Size() int {
return len(s.inner)
}
func (s *Stack[T]) Push(items ...T) {
s.inner = append(s.inner, items...)
}
func (s *Stack[T]) Pop() T {
index := len(s.inner) - 1
item := s.inner[index]
s.inner = s.inner[:index]
return item
}
//go:generate stringer -type=TokenType
type TokenType int
const (
TokEof TokenType = iota
TokOp
TokParOpen
TokParClose
TokNumber
TokIdent
)
//go:generate stringer -type=OpType
type OpType int
const (
OpMul OpType = 0x01
OpFDiv OpType = 0x02
OpFMod OpType = 0x03
OpIDiv OpType = 0x04
OpAdd OpType = 0x10
OpSub OpType = 0x11
OpMaxP OpType = 0x20
)
type Token struct {
kind TokenType
pos int
extra any
}
func (t Token) String() string {
s := fmt.Sprintf("{ %s @ %d", t.kind, t.pos)
switch t.kind {
case TokOp:
s = fmt.Sprintf("%s, %s", s, t.extra.(OpType))
case TokNumber:
s = fmt.Sprintf("%s (%d)", s, t.extra)
case TokIdent:
s = fmt.Sprintf("%s `%s`", s, t.extra)
}
return fmt.Sprintf("%s }", s)
}
//go:generate stringer -type=Unary
type Unary int
const (
UnNegate Unary = 1
)
//go:generate stringer -type=BuildFlag
type BuildFlag int
const (
FlagNoOps BuildFlag = 1
)
//go:generate stringer -type=NodeType
type NodeType int
const (
NodeNumber NodeType = iota + 1
NodeIdent
NodeUnOp
NodeBinOp
)
type Node struct {
kind NodeType
pos int
content []any
}
func (n Node) String() string {
return fmt.Sprintf("<%s | content: %v>", n.kind, n.content)
}
//go:generate stringer -type ActionType
type ActionType int
const (
NUM ActionType = iota + 1
IDENT
UNARY
BINARY
)
type Action struct {
kind ActionType
pos int
arg any
}
func (a Action) String() string {
return fmt.Sprintf("$%s %v;", a.kind, a.arg)
}
type Txr struct {
tokens []Token
error string
buildPos int
buildLen int
buildNode Node
compileList []Action
}
func NewTxr() Txr {
return Txr{
tokens: []Token{},
error: "",
buildPos: 0,
buildLen: 0,
}
}
func (txr *Txr) Throw(msg string, pos any) bool {
txr.error = fmt.Sprintf("%s at position %v", msg, pos)
fmt.Println(txr.error)
return true
}
func (txr *Txr) ThrowAt(msg string, tk Token) bool {
if tk.kind == TokEof {
return txr.Throw(msg, "<EOF>")
}
return txr.Throw(msg, tk.pos)
}
func (txr *Txr) Parse(str string) bool {
pos := 0
length := len(str)
out := &txr.tokens
for pos < length {
start := pos
char := str[pos]
pos += 1
switch char {
case byte(' '), byte('\t'), byte('\r'), byte('\n'):
break
case byte('('):
*out = append(*out, Token{TokParOpen, start, nil})
case byte(')'):
*out = append(*out, Token{TokParClose, start, nil})
case byte('+'):
*out = append(*out, Token{TokOp, start, OpAdd})
case byte('-'):
*out = append(*out, Token{TokOp, start, OpSub})
case byte('*'):
*out = append(*out, Token{TokOp, start, OpMul})
case byte('/'):
*out = append(*out, Token{TokOp, start, OpFDiv})
case byte('%'):
*out = append(*out, Token{TokOp, start, OpFMod})
default:
if IsAsciiDigit(char) {
for pos < length {
char = str[pos]
if IsAsciiDigit(char) {
pos += 1
} else {
break
}
}
numstr := str[start:pos]
val, err := strconv.ParseFloat(numstr, 64)
if err != nil {
panic(err)
}
*out = append(*out, Token{TokNumber, start, val})
} else if char == byte('_') || IsAsciiAlphabetic(char) {
for pos < length {
char = str[pos]
if char == byte('_') || IsAsciiAlphabetic(char) || IsAsciiDigit(char) {
pos += 1
} else {
break
}
}
switch name := str[start:pos]; name {
case "mod":
*out = append(*out, Token{TokOp, start, OpFMod})
case "div":
*out = append(*out, Token{TokOp, start, OpIDiv})
default:
*out = append(*out, Token{TokIdent, start, name})
}
} else {
*out = []Token{}
msg := fmt.Sprintf("Unexpected character `%c`", char)
return txr.Throw(msg, start)
}
}
}
*out = append(*out, Token{TokEof, length, nil})
return false
}
func (txr *Txr) BuildOps(first Token) bool {
nodes := []Node{txr.buildNode}
ops := []Token{first}
var tk Token
for {
if txr.BuildExpr(int(FlagNoOps)) {
return true
}
nodes = append(nodes, txr.buildNode)
tk = txr.tokens[txr.buildPos]
if tk.kind == TokOp {
txr.buildPos += 1
ops = append(ops, tk)
} else {
break
}
}
n := len(ops)
pmax := int(OpMaxP) >> 4
pri := 0
for pri < pmax {
for i := 0; i < n; i += 1 {
tk = ops[i]
op := tk.extra.(OpType)
if (int(op) >> 4) != pri {
continue
}
nodes[i] = Node{NodeBinOp, tk.pos, []any{op, nodes[i], nodes[i+1]}}
nodes = RemoveIndex(nodes, i+1)
ops = RemoveIndex(ops, i)
n -= 1
i -= 1
}
pri += 1
}
txr.buildNode = nodes[0]
return false
}
func (txr *Txr) BuildExpr(flags int) bool {
tk := txr.tokens[txr.buildPos]
txr.buildPos += 1
switch tk.kind {
case TokNumber:
txr.buildNode = Node{NodeNumber, tk.pos, []any{tk.extra.(float64)}}
case TokIdent:
txr.buildNode = Node{NodeIdent, tk.pos, []any{tk.extra.(string)}}
case TokParOpen:
if txr.BuildExpr(0) {
return true
}
tk = txr.tokens[txr.buildPos]
txr.buildPos += 1
if tk.kind != TokParClose {
return txr.ThrowAt("Expected a `)`", tk)
}
case TokOp:
switch tk.extra.(OpType) {
case OpAdd:
if txr.BuildExpr(int(FlagNoOps)) {
return true
}
case OpSub:
if txr.BuildExpr(int(FlagNoOps)) {
return true
}
txr.buildNode = Node{NodeUnOp, tk.pos, []any{UnNegate, txr.buildNode}}
default:
return txr.ThrowAt("Unexpected token", tk)
}
default:
return txr.ThrowAt("Unexpected token", tk)
}
if (flags & int(FlagNoOps)) == 0 {
tk = txr.tokens[txr.buildPos]
if tk.kind == TokOp {
txr.buildPos += 1
if txr.BuildOps(tk) {
return true
}
}
}
return false
}
func (txr *Txr) Build() bool {
txr.buildPos = 0
txr.buildLen = len(txr.tokens)
if txr.BuildExpr(0) {
return true
}
if txr.buildPos < txr.buildLen-1 {
return txr.ThrowAt("Trailing data", txr.tokens[txr.buildPos])
}
return false
}
func (txr *Txr) CompileExpr(node Node) bool {
out := &txr.compileList
switch node.kind {
case NodeNumber:
*out = append(*out, Action{NUM, node.pos, node.content[0].(float64)})
case NodeIdent:
*out = append(*out, Action{IDENT, node.pos, node.content[0].(string)})
case NodeUnOp:
if txr.CompileExpr(node.content[1].(Node)) {
return true
}
*out = append(*out, Action{UNARY, node.pos, node.content})
case NodeBinOp:
if txr.CompileExpr(node.content[1].(Node)) {
return true
}
if txr.CompileExpr(node.content[2].(Node)) {
return true
}
*out = append(*out, Action{BINARY, node.pos, node.content[0].(OpType)})
default:
msg := fmt.Sprintf("Cannot compile node type %s", node.kind)
return txr.ThrowAt(msg, Token{TokenType(node.kind), node.pos, nil})
}
return false
}
func (txr *Txr) Compile(source string) ([]Action, error) {
fmt.Println(source)
if txr.Parse(source) {
return []Action{}, errors.New(txr.error)
}
fmt.Println(txr.tokens)
if txr.Build() {
return []Action{}, errors.New(txr.error)
}
fmt.Println(txr.buildNode)
out := &txr.compileList
*out = []Action{}
if txr.CompileExpr(txr.buildNode) {
return []Action{}, errors.New(txr.error)
}
n := len(*out)
arr := make([]Action, n)
for i := 0; i < n; i += 1 {
arr[i] = (*out)[i]
}
*out = []Action{}
fmt.Println(arr)
return arr, nil
}
func (txr *Txr) ExecExit(msg string, action Action) bool {
return txr.ThrowAt(msg, Token{TokenType(action.kind), action.pos, nil})
}
func (txr *Txr) Exec(actions []Action) any {
length := len(actions)
pos := 0
stack := NewStack[any]()
for pos < length {
action := actions[pos]
pos += 1
switch action.kind {
case NUM:
stack.Push(action.arg.(float64))
case UNARY:
stack.Push(-action.arg.(float64))
case BINARY:
b := stack.Pop().(float64)
a := stack.Pop().(float64)
switch action.arg.(OpType) {
case OpAdd:
a += b
case OpSub:
a -= b
case OpMul:
a *= b
case OpFDiv:
a /= b
case OpFMod:
if b != 0 {
a = math.Mod(a, b)
} else {
a = 0
}
case OpIDiv:
if b != 0 {
a = math.Trunc(a / b)
} else {
a = 0
}
default:
msg := fmt.Sprintf("Can't apply operator %s", action.kind)
return txr.ExecExit(msg, action)
}
stack.Push(a)
case IDENT:
panic("unimplemented")
default:
msg := fmt.Sprintf("Can't run action %s", action.kind)
return txr.ExecExit(msg, action)
}
}
r := stack.Pop()
txr.error = ""
return r
}
func main() {
if len(os.Args) != 2 {
fmt.Fprintln(os.Stderr, "Usage: txr '<expr>'")
os.Exit(1)
}
source := os.Args[1]
txr := NewTxr()
actions, err := txr.Compile(source)
if err != nil {
panic(err)
}
result := txr.Exec(actions)
fmt.Println(result)
}