yq/data_navigator.go

314 lines
7.8 KiB
Go
Raw Normal View History

2015-10-01 23:05:13 +00:00
package main
import (
"fmt"
"reflect"
2015-10-01 23:05:13 +00:00
"strconv"
yaml "gopkg.in/mikefarah/yaml.v2"
2015-10-01 23:05:13 +00:00
)
2019-05-12 23:13:45 +00:00
func entriesInSlice(context yaml.MapSlice, key interface{}) []*yaml.MapItem {
var matches = make([]*yaml.MapItem, 0)
2017-02-26 22:01:52 +00:00
for idx := range context {
var entry = &context[idx]
2019-05-12 23:13:45 +00:00
if key == "*" || fmt.Sprintf("%v", entry.Key) == key {
matches = append(matches, entry)
2017-02-26 22:01:52 +00:00
}
}
2019-05-12 23:13:45 +00:00
return matches
2017-02-26 22:01:52 +00:00
}
func getMapSlice(context interface{}) yaml.MapSlice {
2017-04-11 23:16:54 +00:00
var mapSlice yaml.MapSlice
2019-01-20 22:33:14 +00:00
switch context := context.(type) {
2017-04-11 23:16:54 +00:00
case yaml.MapSlice:
2019-01-20 22:33:14 +00:00
mapSlice = context
2017-04-11 23:16:54 +00:00
default:
mapSlice = make(yaml.MapSlice, 0)
}
return mapSlice
}
func getArray(context interface{}) (array []interface{}, ok bool) {
2019-01-20 22:33:14 +00:00
switch context := context.(type) {
case []interface{}:
2019-01-20 22:33:14 +00:00
array = context
ok = true
default:
array = make([]interface{}, 0)
ok = false
}
return
}
2019-05-12 23:13:45 +00:00
func writeMap(context interface{}, paths []string, value interface{}) interface{} {
log.Debugf("writeMap with path %v for %v to set value %v\n", paths, context, value)
mapSlice := getMapSlice(context)
2017-04-11 23:16:54 +00:00
if len(paths) == 0 {
2019-05-12 23:13:45 +00:00
return context
2017-04-11 23:16:54 +00:00
}
2019-05-12 23:13:45 +00:00
children := entriesInSlice(mapSlice, paths[0])
if len(children) == 0 && paths[0] == "*" {
log.Debugf("\tNo matches, return map as is")
return context
}
if len(children) == 0 {
2017-04-11 23:16:54 +00:00
newChild := yaml.MapItem{Key: paths[0]}
mapSlice = append(mapSlice, newChild)
2019-05-12 23:13:45 +00:00
children = entriesInSlice(mapSlice, paths[0])
2017-04-11 23:16:54 +00:00
log.Debugf("\tAppended child at %v for mapSlice %v\n", paths[0], mapSlice)
}
remainingPaths := paths[1:]
2019-05-12 23:13:45 +00:00
for _, child := range children {
child.Value = updatedChildValue(child.Value, remainingPaths, value)
}
2017-04-11 23:16:54 +00:00
log.Debugf("\tReturning mapSlice %v\n", mapSlice)
return mapSlice
}
func updatedChildValue(child interface{}, remainingPaths []string, value interface{}) interface{} {
if len(remainingPaths) == 0 {
return value
}
log.Debugf("updatedChildValue for child %v with path %v to set value %v", child, remainingPaths, value)
log.Debugf("type of child is %v", reflect.TypeOf(child))
2017-04-11 23:16:54 +00:00
_, nextIndexErr := strconv.ParseInt(remainingPaths[0], 10, 64)
2019-04-30 22:49:50 +00:00
arrayCommand := nextIndexErr == nil || remainingPaths[0] == "+" || remainingPaths[0] == "*"
switch child := child.(type) {
case nil:
2019-04-30 22:49:50 +00:00
if arrayCommand {
return writeArray(child, remainingPaths, value)
}
case []interface{}:
2019-04-30 22:49:50 +00:00
if arrayCommand {
return writeArray(child, remainingPaths, value)
}
}
return writeMap(child, remainingPaths, value)
2017-04-11 23:16:54 +00:00
}
2017-04-11 23:16:54 +00:00
func writeArray(context interface{}, paths []string, value interface{}) []interface{} {
log.Debugf("writeArray with path %v for %v to set value %v\n", paths, context, value)
array, _ := getArray(context)
2017-04-11 23:16:54 +00:00
if len(paths) == 0 {
return array
}
log.Debugf("\tarray %v\n", array)
rawIndex := paths[0]
2019-04-30 22:49:50 +00:00
remainingPaths := paths[1:]
var index int64
// the append array indicator
if rawIndex == "+" {
index = int64(len(array))
2019-04-30 22:49:50 +00:00
} else if rawIndex == "*" {
for index, oldChild := range array {
array[index] = updatedChildValue(oldChild, remainingPaths, value)
}
return array
} else {
2018-08-06 06:24:06 +00:00
index, _ = strconv.ParseInt(rawIndex, 10, 64) // nolint
// writeArray is only called by updatedChildValue which handles parsing the
// index, as such this renders this dead code.
}
2018-08-06 06:24:06 +00:00
2017-04-17 22:53:27 +00:00
for index >= int64(len(array)) {
array = append(array, nil)
}
2017-04-11 23:16:54 +00:00
currentChild := array[index]
log.Debugf("\tcurrentChild %v\n", currentChild)
array[index] = updatedChildValue(currentChild, remainingPaths, value)
log.Debugf("\tReturning array %v\n", array)
return array
2015-10-01 23:05:13 +00:00
}
func readMap(context yaml.MapSlice, head string, tail []string) (interface{}, error) {
log.Debugf("readingMap %v with key %v\n", context, head)
2015-10-05 23:01:33 +00:00
if head == "*" {
return readMapSplat(context, tail)
}
2017-04-11 23:16:54 +00:00
2019-05-12 23:13:45 +00:00
entries := entriesInSlice(context, head)
if len(entries) == 1 {
return calculateValue(entries[0].Value, tail)
} else if len(entries) == 0 {
return nil, nil
}
var errInIdx error
values := make([]interface{}, len(entries))
for idx, entry := range entries {
values[idx], errInIdx = calculateValue(entry.Value, tail)
if errInIdx != nil {
log.Errorf("Error updating index %v in %v", idx, context)
return nil, errInIdx
}
2017-02-26 22:01:52 +00:00
}
2019-05-12 23:13:45 +00:00
return values, nil
2015-10-01 23:05:13 +00:00
}
func readMapSplat(context yaml.MapSlice, tail []string) (interface{}, error) {
2015-10-05 23:01:33 +00:00
var newArray = make([]interface{}, len(context))
var i = 0
2017-02-26 22:01:52 +00:00
for _, entry := range context {
2015-10-05 23:01:33 +00:00
if len(tail) > 0 {
val, err := recurse(entry.Value, tail[0], tail[1:])
if err != nil {
return nil, err
}
newArray[i] = val
2015-10-05 23:01:33 +00:00
} else {
2017-02-26 22:01:52 +00:00
newArray[i] = entry.Value
2015-10-05 23:01:33 +00:00
}
i++
}
return newArray, nil
2015-10-05 23:01:33 +00:00
}
func recurse(value interface{}, head string, tail []string) (interface{}, error) {
2019-01-20 22:33:14 +00:00
switch value := value.(type) {
2015-10-01 23:05:13 +00:00
case []interface{}:
2015-10-05 03:41:01 +00:00
if head == "*" {
2019-01-20 22:33:14 +00:00
return readArraySplat(value, tail)
2015-10-05 03:41:01 +00:00
}
2015-10-01 23:05:13 +00:00
index, err := strconv.ParseInt(head, 10, 64)
if err != nil {
2019-01-20 22:33:14 +00:00
return nil, fmt.Errorf("error accessing array: %v", err)
2015-10-01 23:05:13 +00:00
}
2019-01-20 22:33:14 +00:00
return readArray(value, index, tail)
2017-02-26 22:01:52 +00:00
case yaml.MapSlice:
2019-01-20 22:33:14 +00:00
return readMap(value, head, tail)
default:
return nil, nil
2015-10-01 23:05:13 +00:00
}
}
func readArray(array []interface{}, head int64, tail []string) (interface{}, error) {
2016-03-16 05:11:06 +00:00
if head >= int64(len(array)) {
return nil, nil
}
2015-10-01 23:05:13 +00:00
value := array[head]
2015-10-05 22:25:55 +00:00
return calculateValue(value, tail)
2015-10-01 23:05:13 +00:00
}
2015-10-05 03:41:01 +00:00
func readArraySplat(array []interface{}, tail []string) (interface{}, error) {
2015-10-05 03:41:01 +00:00
var newArray = make([]interface{}, len(array))
for index, value := range array {
val, err := calculateValue(value, tail)
if err != nil {
return nil, err
}
newArray[index] = val
2015-10-05 03:41:01 +00:00
}
return newArray, nil
2015-10-05 03:41:01 +00:00
}
func calculateValue(value interface{}, tail []string) (interface{}, error) {
2015-10-05 03:41:01 +00:00
if len(tail) > 0 {
return recurse(value, tail[0], tail[1:])
2015-10-05 03:41:01 +00:00
}
return value, nil
2015-10-05 03:41:01 +00:00
}
func deleteMap(context interface{}, paths []string) yaml.MapSlice {
log.Debugf("deleteMap for %v for %v\n", paths, context)
mapSlice := getMapSlice(context)
if len(paths) == 0 {
return mapSlice
}
var found bool
var index int
var child yaml.MapItem
for index, child = range mapSlice {
if child.Key == paths[0] {
found = true
break
}
}
if !found {
return mapSlice
}
remainingPaths := paths[1:]
var newSlice yaml.MapSlice
if len(remainingPaths) > 0 {
newChild := yaml.MapItem{Key: child.Key}
newChild.Value = deleteChildValue(child.Value, remainingPaths)
newSlice = make(yaml.MapSlice, len(mapSlice))
for i := range mapSlice {
item := mapSlice[i]
if i == index {
item = newChild
}
newSlice[i] = item
}
} else {
// Delete item from slice at index
newSlice = append(mapSlice[:index], mapSlice[index+1:]...)
log.Debugf("\tDeleted item index %d from mapSlice", index)
}
log.Debugf("\t\tlen: %d\tcap: %d\tslice: %v", len(mapSlice), cap(mapSlice), mapSlice)
log.Debugf("\tReturning mapSlice %v\n", mapSlice)
return newSlice
}
func deleteArray(context interface{}, paths []string, index int64) interface{} {
log.Debugf("deleteArray for %v for %v\n", paths, context)
array, ok := getArray(context)
if !ok {
// did not get an array
return context
}
if index >= int64(len(array)) {
return array
}
remainingPaths := paths[1:]
if len(remainingPaths) > 0 {
// Recurse into the array element at index
array[index] = deleteMap(array[index], remainingPaths)
} else {
// Delete the array element at index
array = append(array[:index], array[index+1:]...)
log.Debugf("\tDeleted item index %d from array, leaving %v", index, array)
}
log.Debugf("\tReturning array: %v\n", array)
return array
}
func deleteChildValue(child interface{}, remainingPaths []string) interface{} {
log.Debugf("deleteChildValue for %v for %v\n", remainingPaths, child)
idx, nextIndexErr := strconv.ParseInt(remainingPaths[0], 10, 64)
if nextIndexErr != nil {
// must be a map
log.Debugf("\tdetected a map, invoking deleteMap\n")
return deleteMap(child, remainingPaths)
}
log.Debugf("\tdetected an array, so traversing element with index %d\n", idx)
return deleteArray(child, remainingPaths, idx)
}