-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathactions.go
69 lines (57 loc) · 1.53 KB
/
actions.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
// actions.go
package taskwrappr
type Action struct {
Block *Block
arguments []*Action
executeFunc func(s *Script, args ...*Variable) ([]*Variable, error)
validateFunc func(s *Script, a *Action) error
}
func NewAction(executeFunc func(s *Script, args ...*Variable) ([]*Variable, error), validateFunc func(s *Script, a *Action) error) *Action {
return &Action{
executeFunc: executeFunc,
validateFunc: validateFunc,
}
}
func CloneAction(a *Action) *Action {
return &Action{
Block: a.Block,
arguments: a.arguments,
executeFunc: a.executeFunc,
validateFunc: a.validateFunc,
}
}
func (a *Action) ProcessArgs(s *Script) ([]*Variable, error) {
args := a.GetArguments()
processedArgs := make([]*Variable, len(args))
for i, arg := range args {
processedArg, err := arg.Execute(s)
if err != nil {
return nil, err
}
if len(processedArg) == 1 {
processedArgs[i] = processedArg[0]
} else {
processedArgs[i] = NewVariable(processedArg, ArrayType)
}
}
return processedArgs, nil
}
func (a *Action) SetArguments(args []*Action) {
a.arguments = args
}
func (a *Action) GetArguments() ([]*Action) {
return a.arguments
}
func (a *Action) Execute(s *Script) ([]*Variable, error) {
processedArgs, err := a.ProcessArgs(s)
if err != nil {
return nil, err
}
return a.executeFunc(s, processedArgs...)
}
func (a *Action) Validate(s *Script) (error) {
if a.validateFunc == nil {
return nil
}
return a.validateFunc(s, a)
}