yq/pkg/yqlib/operator_alternative.go

41 lines
914 B
Go
Raw Normal View History

2020-12-21 00:32:34 +00:00
package yqlib
func alternativeOperator(d *dataTreeNavigator, context Context, expressionNode *ExpressionNode) (Context, error) {
2020-12-21 00:32:34 +00:00
log.Debugf("-- alternative")
prefs := crossFunctionPreferences{
CalcWhenEmpty: true,
Calculation: alternativeFunc,
LhsResultValue: func(lhs *CandidateNode) (*CandidateNode, error) {
if lhs == nil {
return nil, nil
}
2023-04-09 01:14:51 +00:00
truthy, err := isTruthyNode(lhs)
if err != nil {
return nil, err
}
if truthy {
return lhs, nil
}
return nil, nil
},
}
return crossFunctionWithPrefs(d, context, expressionNode, prefs)
2020-12-21 00:32:34 +00:00
}
func alternativeFunc(d *dataTreeNavigator, context Context, lhs *CandidateNode, rhs *CandidateNode) (*CandidateNode, error) {
if lhs == nil {
return rhs, nil
}
2021-06-09 23:35:07 +00:00
if rhs == nil {
return lhs, nil
}
2020-12-21 00:32:34 +00:00
2023-04-09 01:14:51 +00:00
isTrue, err := isTruthyNode(lhs)
2020-12-21 00:32:34 +00:00
if err != nil {
return nil, err
} else if isTrue {
return lhs, nil
}
return rhs, nil
}