forked from TomWright/dasel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
func_map_of.go
72 lines (56 loc) · 1.3 KB
/
func_map_of.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
package dasel
import (
"fmt"
"reflect"
)
var MapOfFunc = BasicFunction{
name: "mapOf",
runFn: func(c *Context, s *Step, args []string) (Values, error) {
if err := requireXOrMoreArgs("mapOf", args, 2); err != nil {
return nil, err
}
if err := requireModulusXArgs("mapOf", args, 2); err != nil {
return nil, err
}
input := s.inputs()
type pair struct {
key string
selector string
}
pairs := make([]pair, 0)
currentPair := pair{}
for i, v := range args {
switch i % 2 {
case 0:
currentPair.key = v
case 1:
currentPair.selector = v
pairs = append(pairs, currentPair)
currentPair = pair{}
}
}
getValue := func(value Value, p pair) (Value, error) {
gotValues, err := c.subSelect(value, p.selector)
if err != nil {
return Value{}, err
}
if len(gotValues) != 1 {
return Value{}, fmt.Errorf("mapOf expects selector to return exactly 1 value")
}
return gotValues[0], nil
}
res := make(Values, 0)
for _, val := range input {
result := reflect.MakeMap(mapStringInterfaceType)
for _, p := range pairs {
gotValue, err := getValue(val, p)
if err != nil {
return nil, err
}
result.SetMapIndex(reflect.ValueOf(p.key), gotValue.Value)
}
res = append(res, ValueOf(result))
}
return res, nil
},
}