yq/pkg/yqlib/candidate_node.go

109 lines
2.7 KiB
Go
Raw Normal View History

2020-11-03 23:48:43 +00:00
package yqlib
2020-10-13 01:51:37 +00:00
import (
"container/list"
2020-10-13 01:51:37 +00:00
"fmt"
2020-10-21 02:54:51 +00:00
"github.com/jinzhu/copier"
2020-11-20 04:50:15 +00:00
yaml "gopkg.in/yaml.v3"
2020-10-13 01:51:37 +00:00
)
type CandidateNode struct {
2021-04-25 02:05:56 +00:00
Node *yaml.Node // the actual node
Parent *CandidateNode // parent node
Path []interface{} /// the path we took to get to this node
Document uint // the document index of this node
2020-11-20 04:50:15 +00:00
Filename string
FileIndex int
2021-01-17 23:15:31 +00:00
// when performing op against all nodes given, this will treat all the nodes as one
// (e.g. top level cross document merge). This property does not propegate to child nodes.
EvaluateTogether bool
2021-02-08 02:58:46 +00:00
IsMapKey bool
2020-10-13 01:51:37 +00:00
}
func (n *CandidateNode) GetKey() string {
2021-02-08 02:58:46 +00:00
keyPrefix := ""
if n.IsMapKey {
keyPrefix = "key-"
}
return fmt.Sprintf("%v%v - %v", keyPrefix, n.Document, n.Path)
2020-10-13 01:51:37 +00:00
}
func (n *CandidateNode) AsList() *list.List {
elMap := list.New()
elMap.PushBack(n)
return elMap
}
func (n *CandidateNode) CreateChild(path interface{}, node *yaml.Node) *CandidateNode {
return &CandidateNode{
Node: node,
Path: n.createChildPath(path),
2021-04-25 02:05:56 +00:00
Parent: n,
Document: n.Document,
Filename: n.Filename,
FileIndex: n.FileIndex,
}
}
func (n *CandidateNode) createChildPath(path interface{}) []interface{} {
if path == nil {
newPath := make([]interface{}, len(n.Path))
copy(newPath, n.Path)
return newPath
}
2020-12-25 01:46:08 +00:00
//don't use append as they may actually modify the path of the orignal node!
newPath := make([]interface{}, len(n.Path)+1)
copy(newPath, n.Path)
newPath[len(n.Path)] = path
return newPath
}
2020-11-13 03:07:11 +00:00
func (n *CandidateNode) Copy() (*CandidateNode, error) {
2020-10-21 02:54:51 +00:00
clone := &CandidateNode{}
2020-11-13 03:07:11 +00:00
err := copier.Copy(clone, n)
if err != nil {
return nil, err
}
return clone, nil
2020-10-21 02:54:51 +00:00
}
2020-10-16 01:29:26 +00:00
// updates this candidate from the given candidate node
func (n *CandidateNode) UpdateFrom(other *CandidateNode) {
2021-01-01 23:27:32 +00:00
2020-10-19 05:36:46 +00:00
n.UpdateAttributesFrom(other)
2020-10-16 01:29:26 +00:00
n.Node.Content = other.Node.Content
n.Node.Value = other.Node.Value
2020-10-19 05:14:29 +00:00
}
func (n *CandidateNode) UpdateAttributesFrom(other *CandidateNode) {
2021-02-08 02:58:46 +00:00
log.Debug("UpdateAttributesFrom: n: %v other: %v", n.GetKey(), other.GetKey())
2020-10-19 05:36:46 +00:00
if n.Node.Kind != other.Node.Kind {
// clear out the contents when switching to a different type
// e.g. map to array
n.Node.Content = make([]*yaml.Node, 0)
n.Node.Value = ""
}
2020-10-16 01:29:26 +00:00
n.Node.Kind = other.Node.Kind
n.Node.Tag = other.Node.Tag
2021-02-05 03:40:16 +00:00
n.Node.Alias = other.Node.Alias
n.Node.Anchor = other.Node.Anchor
2020-10-28 00:34:01 +00:00
// merge will pickup the style of the new thing
// when autocreating nodes
if n.Node.Style == 0 {
n.Node.Style = other.Node.Style
}
2021-03-19 01:54:03 +00:00
if other.Node.FootComment != "" {
n.Node.FootComment = other.Node.FootComment
}
if other.Node.HeadComment != "" {
n.Node.HeadComment = other.Node.HeadComment
}
if other.Node.LineComment != "" {
n.Node.LineComment = other.Node.LineComment
}
2020-10-16 01:29:26 +00:00
}