mirror of
https://github.com/mikefarah/yq.git
synced 2026-06-27 23:49:58 +00:00
* Initial plan * Replace gopkg.in/op/go-logging.v1 with log/slog Co-authored-by: mikefarah <1151925+mikefarah@users.noreply.github.com> Agent-Logs-Url: https://github.com/mikefarah/yq/sessions/aa9c12f4-21b9-4633-9868-6b56585b247f --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: mikefarah <1151925+mikefarah@users.noreply.github.com>
44 lines
1.5 KiB
Go
44 lines
1.5 KiB
Go
package yqlib
|
|
|
|
import "container/list"
|
|
|
|
func unionOperator(d *dataTreeNavigator, context Context, expressionNode *ExpressionNode) (Context, error) {
|
|
log.Debug("unionOperator--")
|
|
log.Debugf("unionOperator: context: %v", NodesToString(context.MatchingNodes))
|
|
lhs, err := d.GetMatchingNodes(context, expressionNode.LHS)
|
|
if err != nil {
|
|
return Context{}, err
|
|
}
|
|
log.Debugf("unionOperator: lhs: %v", NodesToString(lhs.MatchingNodes))
|
|
log.Debugf("unionOperator: rhs input: %v", NodesToString(context.MatchingNodes))
|
|
log.Debugf("unionOperator: rhs: %v", expressionNode.RHS.Operation.toString())
|
|
rhs, err := d.GetMatchingNodes(context, expressionNode.RHS)
|
|
|
|
if err != nil {
|
|
return Context{}, err
|
|
}
|
|
log.Debugf("unionOperator: lhs: %v", lhs.ToString())
|
|
log.Debugf("unionOperator: rhs: %v", rhs.ToString())
|
|
|
|
results := lhs.ChildContext(list.New())
|
|
for el := lhs.MatchingNodes.Front(); el != nil; el = el.Next() {
|
|
node := el.Value.(*CandidateNode)
|
|
results.MatchingNodes.PushBack(node)
|
|
}
|
|
|
|
// this can happen when both expressions modify the context
|
|
// instead of creating their own.
|
|
/// (.foo = "bar"), (.thing = "cat")
|
|
if rhs.MatchingNodes != lhs.MatchingNodes {
|
|
|
|
for el := rhs.MatchingNodes.Front(); el != nil; el = el.Next() {
|
|
node := el.Value.(*CandidateNode)
|
|
log.Debugf("union operator rhs: processing %v", NodeToString(node))
|
|
|
|
results.MatchingNodes.PushBack(node)
|
|
}
|
|
}
|
|
log.Debugf("union operator: all together: %v", results.ToString())
|
|
return results, nil
|
|
}
|