mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-13 22:38:04 +00:00
115 lines
2.8 KiB
Go
115 lines
2.8 KiB
Go
package main
|
|
|
|
import (
|
|
// "fmt"
|
|
"github.com/mikefarah/yaml/Godeps/_workspace/src/gopkg.in/yaml.v2"
|
|
"strconv"
|
|
)
|
|
|
|
func entryInSlice(context yaml.MapSlice, key interface{}) *yaml.MapItem {
|
|
for idx := range context {
|
|
var entry = &context[idx]
|
|
if entry.Key == key {
|
|
return entry
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func write(context yaml.MapSlice, head string, tail []string, value interface{}) {
|
|
if len(tail) == 0 {
|
|
var entry = entryInSlice(context, head)
|
|
entry.Value = value
|
|
} else {
|
|
// e.g. if updating a.b.c, we need to get the 'b', this could be a map or an array
|
|
var parent = readMap(context, head, tail[0:len(tail)-1])
|
|
switch parent.(type) {
|
|
case yaml.MapSlice:
|
|
toUpdate := parent.(yaml.MapSlice)
|
|
// b is a map, update the key 'c' to the supplied value
|
|
key := (tail[len(tail)-1])
|
|
toUpdateEntry := entryInSlice(toUpdate, key)
|
|
toUpdateEntry.Value = value
|
|
case []interface{}:
|
|
toUpdate := parent.([]interface{})
|
|
// b is an array, update it at index 'c' to the supplied value
|
|
rawIndex := (tail[len(tail)-1])
|
|
index, err := strconv.ParseInt(rawIndex, 10, 64)
|
|
if err != nil {
|
|
die("Error accessing array: %v", err)
|
|
}
|
|
toUpdate[index] = value
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
func readMap(context yaml.MapSlice, head string, tail []string) interface{} {
|
|
if head == "*" {
|
|
return readMapSplat(context, tail)
|
|
}
|
|
entry := entryInSlice(context, head)
|
|
var value interface{}
|
|
if entry != nil {
|
|
value = entry.Value
|
|
}
|
|
return calculateValue(value, tail)
|
|
}
|
|
|
|
func readMapSplat(context yaml.MapSlice, tail []string) interface{} {
|
|
var newArray = make([]interface{}, len(context))
|
|
var i = 0
|
|
for _, entry := range context {
|
|
if len(tail) > 0 {
|
|
newArray[i] = recurse(entry.Value, tail[0], tail[1:len(tail)])
|
|
} else {
|
|
newArray[i] = entry.Value
|
|
}
|
|
i++
|
|
}
|
|
return newArray
|
|
}
|
|
|
|
func recurse(value interface{}, head string, tail []string) interface{} {
|
|
switch value.(type) {
|
|
case []interface{}:
|
|
if head == "*" {
|
|
return readArraySplat(value.([]interface{}), tail)
|
|
}
|
|
index, err := strconv.ParseInt(head, 10, 64)
|
|
if err != nil {
|
|
die("Error accessing array: %v", err)
|
|
}
|
|
return readArray(value.([]interface{}), index, tail)
|
|
case yaml.MapSlice:
|
|
return readMap(value.(yaml.MapSlice), head, tail)
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
|
|
func readArray(array []interface{}, head int64, tail []string) interface{} {
|
|
if head >= int64(len(array)) {
|
|
return nil
|
|
}
|
|
|
|
value := array[head]
|
|
|
|
return calculateValue(value, tail)
|
|
}
|
|
|
|
func readArraySplat(array []interface{}, tail []string) interface{} {
|
|
var newArray = make([]interface{}, len(array))
|
|
for index, value := range array {
|
|
newArray[index] = calculateValue(value, tail)
|
|
}
|
|
return newArray
|
|
}
|
|
|
|
func calculateValue(value interface{}, tail []string) interface{} {
|
|
if len(tail) > 0 {
|
|
return recurse(value, tail[0], tail[1:len(tail)])
|
|
}
|
|
return value
|
|
}
|