-
Notifications
You must be signed in to change notification settings - Fork 78
/
op_concat.go
97 lines (76 loc) · 2.49 KB
/
op_concat.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
package spruce
import (
"fmt"
"strings"
"github.com/starkandwayne/goutils/ansi"
"github.com/starkandwayne/goutils/tree"
. "github.com/geofffranks/spruce/log"
)
// ConcatOperator ...
type ConcatOperator struct{}
// Setup ...
func (ConcatOperator) Setup() error {
return nil
}
// Phase ...
func (ConcatOperator) Phase() OperatorPhase {
return EvalPhase
}
// Dependencies ...
func (ConcatOperator) Dependencies(_ *Evaluator, _ []*Expr, _ []*tree.Cursor, auto []*tree.Cursor) []*tree.Cursor {
return auto
}
// Run ...
func (ConcatOperator) Run(ev *Evaluator, args []*Expr) (*Response, error) {
DEBUG("running (( concat ... )) operation at $.%s", ev.Here)
defer DEBUG("done with (( concat ... )) operation at $%s\n", ev.Here)
var l []string
if len(args) < 2 {
return nil, fmt.Errorf("concat operator requires at least two arguments")
}
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]: using string literal '%v'", i, v.Literal)
DEBUG(" [%d]: appending '%v' to resultant string", i, v.Literal)
l = append(l, fmt.Sprintf("%v", v.Literal))
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, fmt.Errorf("Unable to resolve `%s`: %s", v.Reference, err)
}
switch s.(type) {
case map[interface{}]interface{}:
DEBUG(" arg[%d]: %v is not a string scalar", i, s)
return nil, ansi.Errorf("@R{tried to concat} @c{%s}@R{, which is not a string scalar}", v.Reference)
case []interface{}:
DEBUG(" arg[%d]: %v is not a string scalar", i, s)
return nil, ansi.Errorf("@R{tried to concat} @c{%s}@R{, which is not a string scalar}", v.Reference)
default:
DEBUG(" [%d]: appending '%s' to resultant string", i, s)
l = append(l, fmt.Sprintf("%v", s))
}
default:
DEBUG(" arg[%d]: I don't know what to do with '%v'", i, arg)
return nil, fmt.Errorf("concat operator only accepts string literals and key reference arguments")
}
DEBUG("")
}
final := strings.Join(l, "")
DEBUG(" resolved (( concat ... )) operation to the string:\n \"%s\"", final)
return &Response{
Type: Replace,
Value: final,
}, nil
}
func init() {
RegisterOp("concat", ConcatOperator{})
}