blob: 668253d9fdf3d2125abcfd1b6d796d8026bfe17a (
plain)
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
|
package main
import (
"os"
"bufio"
"main/walk"
"main/json_tokens"
)
type Program []Command
type ProgramState struct {
path, value, xreg, yreg, zreg []walk.Atom
in walk.StredReader
out walk.StredWriter
program []Command
pc int
}
func main() {
quiet := false
var input string
hasInput := false
for i := 1; i < len(os.Args); i += 1 {
switch os.Args[i] {
case "-n":
quiet = true
continue
}
if i < len(os.Args) - 1 {
panic("Unexpected arguments after program")
}
input = os.Args[i]
hasInput = true
}
if !hasInput {
panic("Missing program")
}
tokens := Lex(input)
program := Parse(tokens)
stdin := bufio.NewReader(os.Stdin)
stdout := bufio.NewWriter(os.Stdout)
state := ProgramState {
in: json_tokens.NewJSONIn(stdin),
out: json_tokens.NewJSONOut(stdout),
program: program,
}
for {
walkItem, err := state.in.Read()
if err != nil {
break
}
state.value = walkItem.Value
state.path = walkItem.Path
state.pc = 0
for state.pc < len(state.program) {
state.program[state.pc].exec(&state)
}
if !quiet {
err := state.out.Write(walk.WalkItem {
Path: state.path,
Value: state.value,
})
if err != nil {
panic("Error while outputting")
}
}
}
state.in.AssertDone()
state.out.AssertDone()
}
|