-
Notifications
You must be signed in to change notification settings - Fork 29
/
main.go
240 lines (203 loc) · 5.55 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
/* Copyright 2018 Comcast Cable Communications Management, LLC
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Package main is a simple program that runs a single machine.
package main
import (
"bufio"
"context"
"encoding/json"
"flag"
"fmt"
"io"
"os"
"regexp"
"strings"
"time"
"github.com/Comcast/sheens/core"
ints "github.com/Comcast/sheens/interpreters"
"github.com/Comcast/sheens/match"
"github.com/Comcast/sheens/tools"
"github.com/jsccast/yaml"
)
func main() {
var (
specFilename = flag.String("s", "", "specs filename (YAML)")
startingNode = flag.String("n", "start", "starting node")
startingBindings = flag.String("b", "{}", "starting bindings (in JSON)")
recycle = flag.Bool("r", true, "ingest emitted messages")
diag = flag.Bool("d", false, "print diagnostics")
echo = flag.Bool("e", false, "echo input messages")
)
flag.Parse()
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
interpreters := ints.Standard()
// Parse the given initial bindings (as JSON).
var bs match.Bindings
if err := json.Unmarshal([]byte(*startingBindings), &bs); err != nil {
panic(err)
}
// Read and compile the spec from the given filename.
specSrc, err := tools.ReadFileWithInlines(*specFilename)
if err != nil {
panic(err)
}
var spec core.Spec
if err = yaml.Unmarshal(specSrc, &spec); err != nil {
panic(err)
}
if err = spec.Compile(ctx, interpreters, true); err != nil {
panic(err)
}
// Set up our execution environment.
var (
// The machine's state that we'll update as we go.
st = &core.State{
NodeName: *startingNode,
Bs: bs,
}
// Some static properties that are exposed to actions
// (and guards) via '_.params'
props = map[string]interface{}{
"mid": "default",
"cid": "default",
}
// Our standard Walk control.
ctl = core.DefaultControl
)
// Utility functions for processing (and ingesting emitted)
// messages. These functions call themselves mututally
// recursively, so we define them this clumsy way.
var (
// process sends a message to the machine.
process func(message interface{}) error
// reprocess takes an emitted message, prints it, and
// optionally sends the message back to the machine as
// an in-bound message (via process()).
reprocess func(message interface{}) error
)
{
process = func(message interface{}) error {
walked, err := spec.Walk(ctx, st, []interface{}{message}, ctl, props)
if err != nil {
return err
}
if *diag {
fmt.Printf("# walked\n")
fmt.Printf("# message %s\n", JS(message))
if walked.Error != nil {
fmt.Printf("# error %v\n", walked.Error)
}
for i, stride := range walked.Strides {
fmt.Printf("# %02d from %s\n", i, JS(stride.From))
fmt.Printf("# to %s\n", JS(stride.To))
if stride.Consumed != nil {
fmt.Printf("# consumed %s\n", JS(stride.Consumed))
}
if 0 < len(stride.Events.Emitted) {
fmt.Printf("# emitted\n")
}
for _, emitted := range stride.Events.Emitted {
fmt.Printf("# %s\n", JS(emitted))
}
}
}
if walked.Error != nil {
return err
}
if next := walked.To(); next != nil {
st = next
}
if *diag {
// If we had persistence, we'd
// probably write out the new state
// here.
fmt.Printf("# next %s\n", JS(st))
}
// For each "emitted" message, reprocess it.
if err = walked.DoEmitted(reprocess); err != nil {
return err
}
return nil
}
reprocess = func(message interface{}) error {
js, err := json.Marshal(message)
if err != nil {
return err
}
fmt.Printf("%s\n", js)
if err = handle(ctx, message, process); err != nil {
return err
}
if *recycle {
return process(message)
}
return nil
}
}
// We can accept input like "sleep 1s" to pause for 1 second.
// We'll check for that kind of input with this regexp.
sleeper := regexp.MustCompile("sleep +(.*)")
in := bufio.NewReader(os.Stdin)
for {
line, err := in.ReadBytes('\n')
if err == io.EOF {
break
}
if err != nil {
panic(err)
}
{
// We can accept some non-message input.
s := strings.TrimSpace(string(line))
if strings.HasPrefix(s, "#") {
// Comment input.
continue
}
if s == "timers" {
// Show pending timers.
timers.Range(func(k, v interface{}) bool {
t := v.(*timer)
fmt.Printf("# %s %s %s\n", t.id, t.at.Format(time.RFC3339), JS(t.message))
return true
})
continue
}
if ss := sleeper.FindStringSubmatch(s); ss != nil {
// A request to sleep.
d, err := time.ParseDuration(ss[1])
if err != nil {
warn(err)
continue
}
time.Sleep(d)
continue
}
}
// Parse the input line as message in JSON.
var message interface{}
if err = json.Unmarshal(line, &message); err != nil {
warn(err)
continue
}
if *echo {
fmt.Printf("in: %s\n", JS(message))
}
// Allow input to make and cancel timers.
if err = handle(ctx, message, process); err != nil {
warn(err)
}
if err = process(message); err != nil {
warn(err)
}
}
}