forked from EvilLord666/step
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpass_state.go
66 lines (50 loc) · 1.34 KB
/
pass_state.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
package machine
import (
"context"
"fmt"
"github.com/coinbase/step/jsonpath"
"github.com/coinbase/step/utils/to"
)
type PassState struct {
stateStr // Include Defaults
Type *string
Comment *string `json:",omitempty"`
InputPath *jsonpath.Path `json:",omitempty"`
OutputPath *jsonpath.Path `json:",omitempty"`
ResultPath *jsonpath.Path `json:",omitempty"`
Result interface{} `json:",omitempty"`
Next *string `json:",omitempty"`
End *bool `json:",omitempty"`
}
func (s *PassState) Execute(ctx context.Context, input interface{}) (output interface{}, next *string, err error) {
return processError(s,
inputOutput(
s.InputPath,
s.OutputPath,
result(s.ResultPath, s.process),
),
)(ctx, input)
}
func (s *PassState) process(ctx context.Context, input interface{}) (output interface{}, next *string, err error) {
return s.Result, nextState(s.Next, s.End), nil
}
func (s *PassState) Validate() error {
s.SetType(to.Strp("Pass"))
if err := ValidateNameAndType(s); err != nil {
return fmt.Errorf("%v %v", errorPrefix(s), err)
}
// Next xor End
if err := endValid(s.Next, s.End); err != nil {
return fmt.Errorf("%v %v", errorPrefix(s), err)
}
return nil
}
func (s *PassState) SetType(t *string) {
s.Type = t
}
func (s *PassState) GetType() *string {
return s.Type
}
func (s *PassState) GetNext() *string {
return s.Next
}