2020-11-24 02:07:19 +00:00
|
|
|
package yqlib
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"container/list"
|
2021-01-11 04:43:50 +00:00
|
|
|
"strconv"
|
2020-11-24 02:07:19 +00:00
|
|
|
|
|
|
|
yaml "gopkg.in/yaml.v3"
|
|
|
|
)
|
|
|
|
|
2021-01-11 04:43:50 +00:00
|
|
|
func createAddOp(lhs *PathTreeNode, rhs *PathTreeNode) *PathTreeNode {
|
2021-01-11 06:13:48 +00:00
|
|
|
return &PathTreeNode{Operation: &Operation{OperationType: addOpType},
|
2021-01-11 04:43:50 +00:00
|
|
|
Lhs: lhs,
|
2020-11-28 00:24:16 +00:00
|
|
|
Rhs: rhs}
|
|
|
|
}
|
|
|
|
|
2021-01-11 06:13:48 +00:00
|
|
|
func addAssignOperator(d *dataTreeNavigator, matchingNodes *list.List, pathNode *PathTreeNode) (*list.List, error) {
|
|
|
|
assignmentOp := &Operation{OperationType: assignOpType}
|
2021-01-11 04:43:50 +00:00
|
|
|
assignmentOp.UpdateAssign = false
|
2020-11-28 00:24:16 +00:00
|
|
|
|
2021-01-11 04:43:50 +00:00
|
|
|
assignmentOpNode := &PathTreeNode{Operation: assignmentOp, Lhs: pathNode.Lhs, Rhs: createAddOp(pathNode.Lhs, pathNode.Rhs)}
|
2020-11-28 00:24:16 +00:00
|
|
|
return d.GetMatchingNodes(matchingNodes, assignmentOpNode)
|
2020-11-27 23:41:09 +00:00
|
|
|
}
|
|
|
|
|
2020-12-21 00:54:03 +00:00
|
|
|
func toNodes(candidate *CandidateNode) []*yaml.Node {
|
2020-11-24 02:07:19 +00:00
|
|
|
if candidate.Node.Tag == "!!null" {
|
|
|
|
return []*yaml.Node{}
|
|
|
|
}
|
|
|
|
|
|
|
|
switch candidate.Node.Kind {
|
|
|
|
case yaml.SequenceNode:
|
|
|
|
return candidate.Node.Content
|
|
|
|
default:
|
|
|
|
return []*yaml.Node{candidate.Node}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2021-01-11 06:13:48 +00:00
|
|
|
func addOperator(d *dataTreeNavigator, matchingNodes *list.List, pathNode *PathTreeNode) (*list.List, error) {
|
2020-11-24 02:07:19 +00:00
|
|
|
log.Debugf("Add operator")
|
|
|
|
|
2020-12-21 00:54:03 +00:00
|
|
|
return crossFunction(d, matchingNodes, pathNode, add)
|
|
|
|
}
|
2020-11-24 02:07:19 +00:00
|
|
|
|
2020-12-21 00:54:03 +00:00
|
|
|
func add(d *dataTreeNavigator, lhs *CandidateNode, rhs *CandidateNode) (*CandidateNode, error) {
|
|
|
|
lhs.Node = UnwrapDoc(lhs.Node)
|
|
|
|
rhs.Node = UnwrapDoc(rhs.Node)
|
2020-11-24 02:07:19 +00:00
|
|
|
|
2020-12-21 00:54:03 +00:00
|
|
|
target := &CandidateNode{
|
|
|
|
Path: lhs.Path,
|
|
|
|
Document: lhs.Document,
|
|
|
|
Filename: lhs.Filename,
|
|
|
|
Node: &yaml.Node{},
|
|
|
|
}
|
|
|
|
lhsNode := lhs.Node
|
2020-11-24 02:07:19 +00:00
|
|
|
|
2020-12-21 00:54:03 +00:00
|
|
|
switch lhsNode.Kind {
|
|
|
|
case yaml.MappingNode:
|
|
|
|
return nil, fmt.Errorf("Maps not yet supported for addition")
|
|
|
|
case yaml.SequenceNode:
|
|
|
|
target.Node.Kind = yaml.SequenceNode
|
|
|
|
target.Node.Style = lhsNode.Style
|
|
|
|
target.Node.Tag = "!!seq"
|
|
|
|
target.Node.Content = append(lhsNode.Content, toNodes(rhs)...)
|
|
|
|
case yaml.ScalarNode:
|
2021-01-11 04:43:50 +00:00
|
|
|
if rhs.Node.Kind != yaml.ScalarNode {
|
|
|
|
return nil, fmt.Errorf("%v (%v) cannot be added to a %v", rhs.Node.Tag, rhs.Path, lhsNode.Tag)
|
|
|
|
}
|
|
|
|
target.Node.Kind = yaml.ScalarNode
|
|
|
|
target.Node.Style = lhsNode.Style
|
|
|
|
return addScalars(target, lhsNode, rhs.Node)
|
|
|
|
}
|
|
|
|
|
|
|
|
return target, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func addScalars(target *CandidateNode, lhs *yaml.Node, rhs *yaml.Node) (*CandidateNode, error) {
|
|
|
|
|
|
|
|
if lhs.Tag == "!!str" {
|
|
|
|
target.Node.Tag = "!!str"
|
|
|
|
target.Node.Value = lhs.Value + rhs.Value
|
|
|
|
} else if lhs.Tag == "!!int" && rhs.Tag == "!!int" {
|
|
|
|
lhsNum, err := strconv.Atoi(lhs.Value)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
rhsNum, err := strconv.Atoi(rhs.Value)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
sum := lhsNum + rhsNum
|
|
|
|
target.Node.Tag = "!!int"
|
|
|
|
target.Node.Value = fmt.Sprintf("%v", sum)
|
|
|
|
} else if (lhs.Tag == "!!int" || lhs.Tag == "!!float") && (rhs.Tag == "!!int" || rhs.Tag == "!!float") {
|
|
|
|
lhsNum, err := strconv.ParseFloat(lhs.Value, 64)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
rhsNum, err := strconv.ParseFloat(rhs.Value, 64)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
sum := lhsNum + rhsNum
|
|
|
|
target.Node.Tag = "!!float"
|
|
|
|
target.Node.Value = fmt.Sprintf("%v", sum)
|
|
|
|
} else {
|
|
|
|
return nil, fmt.Errorf("%v cannot be added to %v", lhs.Tag, rhs.Tag)
|
2020-11-24 02:07:19 +00:00
|
|
|
}
|
2020-12-21 00:54:03 +00:00
|
|
|
|
|
|
|
return target, nil
|
2020-11-24 02:07:19 +00:00
|
|
|
}
|