forked from EvilLord666/step
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmachine.go
247 lines (198 loc) · 5.15 KB
/
machine.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
// State Machine implementation
package machine
import (
"context"
"encoding/json"
"errors"
"fmt"
"github.com/aws/aws-lambda-go/lambdacontext"
"github.com/coinbase/step/handler"
"github.com/coinbase/step/utils/is"
"github.com/coinbase/step/utils/to"
)
func DefaultHandler(_ context.Context, input interface{}) (interface{}, error) {
return map[string]string{}, nil
}
// EmptyStateMachine is a small Valid StateMachine
var EmptyStateMachine = `{
"StartAt": "WIN",
"States": { "WIN": {"Type": "Succeed"}}
}`
// IMPLEMENTATION
// States is the collection of states
type States map[string]State
// StateMachine the core struct for the machine
type StateMachine struct {
Comment *string `json:",omitempty"`
StartAt *string
States States
}
// Global Methods
func Validate(sm_json *string) error {
state_machine, err := FromJSON([]byte(*sm_json))
if err != nil {
return err
}
if err := state_machine.Validate(); err != nil {
return err
}
return nil
}
func (sm *StateMachine) FindTask(name string) (*TaskState, error) {
task, ok := sm.Tasks()[name]
if !ok {
return nil, fmt.Errorf("Handler Error: Cannot Find Task %v", name)
}
return task, nil
}
func (sm *StateMachine) Tasks() map[string]*TaskState {
tasks := map[string]*TaskState{}
for name, s := range sm.States {
switch s.(type) {
case *TaskState:
tasks[name] = s.(*TaskState)
}
}
return tasks
}
func (sm *StateMachine) SetResource(lambda_arn *string) {
for _, task := range sm.Tasks() {
if task.Resource == nil {
task.Resource = lambda_arn
}
}
}
func (sm *StateMachine) SetDefaultHandler() {
for _, task := range sm.Tasks() {
task.SetTaskHandler(DefaultHandler)
}
}
func (sm *StateMachine) SetTaskFnHandlers(tfs *handler.TaskHandlers) error {
taskHandlers, err := handler.CreateHandler(tfs)
if err != nil {
return err
}
for name, _ := range *tfs {
if name == "" {
continue // Skip default Handler
}
if err := sm.SetTaskHandler(name, taskHandlers); err != nil {
return err
}
}
return nil
}
func (sm *StateMachine) SetTaskHandler(task_name string, resource_fn interface{}) error {
task, err := sm.FindTask(task_name)
if err != nil {
return err
}
task.SetTaskHandler(resource_fn)
return nil
}
func (sm *StateMachine) Validate() error {
if is.EmptyStr(sm.StartAt) {
return errors.New("State Machine requires StartAt")
}
if sm.States == nil {
return errors.New("State Machine must have States")
}
if len(sm.States) == 0 {
return errors.New("State Machine must have States")
}
state_errors := []string{}
for _, state := range sm.States {
err := state.Validate()
if err != nil {
state_errors = append(state_errors, err.Error())
}
}
if len(state_errors) != 0 {
return fmt.Errorf("State Errors %q", state_errors)
}
for _, state := range sm.States {
next := state.GetNext()
if next != nil {
s := sm.States[*next]
// todo: UMV: think about Loop state (if next == state name)
if s == nil {
return fmt.Errorf("state \"%s\" next state \"%s\" is unreachable", *state.Name(), *next)
}
}
}
return nil
}
func (sm *StateMachine) DefaultLambdaContext(lambda_name string) context.Context {
return lambdacontext.NewContext(context.Background(), &lambdacontext.LambdaContext{
InvokedFunctionArn: fmt.Sprintf("arn:aws:lambda:us-east-1:000000000000:function:%v", lambda_name),
})
}
func processInput(input interface{}) (interface{}, error) {
// Make
switch input.(type) {
case string:
var json_input map[string]interface{}
if err := json.Unmarshal([]byte(input.(string)), &json_input); err != nil {
return nil, err
}
return json_input, nil
case *string:
var json_input map[string]interface{}
if err := json.Unmarshal([]byte(*(input.(*string))), &json_input); err != nil {
return nil, err
}
return json_input, nil
}
// Converts the input interface into map[string]interface{}
return to.FromJSON(input)
}
func (sm *StateMachine) Execute(input interface{}) (*Execution, error) {
if err := sm.Validate(); err != nil {
return nil, err
}
input, err := processInput(input)
if err != nil {
return nil, err
}
// Start Execution (records the history, inputs, outputs...)
exec := &Execution{}
exec.Start()
// Execute Start State
output, err := sm.stateLoop(exec, sm.StartAt, input)
// Set Final Output
exec.SetOutput(output, err)
if err != nil {
exec.Failed()
} else {
exec.Succeeded()
}
return exec, err
}
func (sm *StateMachine) stateLoop(exec *Execution, next *string, input interface{}) (output interface{}, err error) {
// Flat loop instead of recursion to better implement timeouts
for {
s, ok := sm.States[*next]
if !ok {
return nil, fmt.Errorf("Unknown State: %v", *next)
}
if len(exec.ExecutionHistory) > 250 {
return nil, fmt.Errorf("State Overflow")
}
exec.EnteredEvent(s, input)
output, next, err = s.Execute(sm.DefaultLambdaContext(*s.Name()), input)
if *s.GetType() != "Fail" {
// Failure States Dont exit.
exec.SetLastOutput(output, err)
exec.ExitedEvent(s, output)
}
// If Error return error
if err != nil {
return output, err
}
// If next is nil then END
if next == nil {
return output, nil
}
input = output
}
}