mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 13:48:06 +00:00
33 lines
914 B
Go
33 lines
914 B
Go
|
package treeops
|
||
|
|
||
|
import (
|
||
|
"github.com/elliotchance/orderedmap"
|
||
|
"gopkg.in/yaml.v3"
|
||
|
)
|
||
|
|
||
|
func CollectOperator(d *dataTreeNavigator, matchMap *orderedmap.OrderedMap, pathNode *PathTreeNode) (*orderedmap.OrderedMap, error) {
|
||
|
log.Debugf("-- collectOperation")
|
||
|
|
||
|
var results = orderedmap.NewOrderedMap()
|
||
|
|
||
|
node := &yaml.Node{Kind: yaml.SequenceNode, Tag: "!!seq"}
|
||
|
|
||
|
var document uint = 0
|
||
|
var path []interface{}
|
||
|
|
||
|
for el := matchMap.Front(); el != nil; el = el.Next() {
|
||
|
candidate := el.Value.(*CandidateNode)
|
||
|
log.Debugf("Collecting %v", NodeToString(candidate))
|
||
|
if path == nil && candidate.Path != nil && len(candidate.Path) > 1 {
|
||
|
path = candidate.Path[:len(candidate.Path)-1]
|
||
|
document = candidate.Document
|
||
|
}
|
||
|
node.Content = append(node.Content, candidate.Node)
|
||
|
}
|
||
|
|
||
|
collectC := &CandidateNode{Node: node, Document: document, Path: path}
|
||
|
results.Set(collectC.GetKey(), collectC)
|
||
|
|
||
|
return results, nil
|
||
|
}
|