-
Notifications
You must be signed in to change notification settings - Fork 78
/
op_inject.go
117 lines (96 loc) · 2.8 KB
/
op_inject.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
package spruce
import (
"fmt"
"github.com/starkandwayne/goutils/ansi"
"github.com/starkandwayne/goutils/tree"
. "github.com/geofffranks/spruce/log"
)
// InjectOperator ...
type InjectOperator struct{}
// Setup ...
func (InjectOperator) Setup() error {
return nil
}
// Phase ...
func (InjectOperator) Phase() OperatorPhase {
return MergePhase
}
// Dependencies ...
func (InjectOperator) Dependencies(ev *Evaluator, args []*Expr, locs []*tree.Cursor, auto []*tree.Cursor) []*tree.Cursor {
l := []*tree.Cursor{}
for _, arg := range args {
if arg.Type != Reference {
continue
}
for _, other := range locs {
canon, err := arg.Reference.Canonical(ev.Tree)
if err != nil {
return []*tree.Cursor{}
}
if other.Under(canon) {
l = append(l, other)
}
}
}
for _, dep := range auto {
l = append(l, dep)
}
return l
}
// Run ...
func (InjectOperator) Run(ev *Evaluator, args []*Expr) (*Response, error) {
DEBUG("running (( inject ... )) operation at $.%s", ev.Here)
defer DEBUG("done with (( inject ... )) operation at $%s\n", ev.Here)
var vals []map[interface{}]interface{}
for i, arg := range args {
v, err := arg.Resolve(ev.Tree)
if err != nil {
DEBUG(" arg[%d]: failed to resolve expression to a concrete value", i)
DEBUG(" [%d]: error was: %s", i, err)
return nil, err
}
switch v.Type {
case Literal:
DEBUG(" arg[%d]: found string literal '%s'", i, v.Literal)
DEBUG(" (inject operator only handles references to other parts of the YAML tree)")
return nil, fmt.Errorf("inject operator only accepts key reference arguments")
case Reference:
DEBUG(" arg[%d]: trying to resolve reference $.%s", i, v.Reference)
s, err := v.Reference.Resolve(ev.Tree)
if err != nil {
DEBUG(" [%d]: resolution failed\n error: %s", i, err)
return nil, err
}
m, ok := s.(map[interface{}]interface{})
if !ok {
DEBUG(" [%d]: resolved to something that is not a map. that is unacceptable.", i)
return nil, ansi.Errorf("@c{%s} @R{is not a map}", v.Reference)
}
DEBUG(" [%d]: resolved to a map; appending to the list of maps to merge/inject", i)
vals = append(vals, m)
default:
DEBUG(" arg[%d]: I don't know what to do with '%v'", i, arg)
return nil, fmt.Errorf("inject operator only accepts key reference arguments")
}
DEBUG("")
}
switch len(vals) {
case 0:
DEBUG(" no arguments supplied to (( inject ... )) operation. oops.")
return nil, ansi.Errorf("no arguments specified to @c{(( inject ... ))}")
default:
DEBUG(" merging found maps into a single map to be injected")
merged, err := Merge(vals...)
if err != nil {
DEBUG(" failed: %s\n", err)
return nil, err
}
return &Response{
Type: Inject,
Value: merged,
}, nil
}
}
func init() {
RegisterOp("inject", InjectOperator{})
}