2020-11-24 00:38:39 +00:00
|
|
|
package yqlib
|
|
|
|
|
|
|
|
import (
|
|
|
|
"container/list"
|
|
|
|
"strconv"
|
|
|
|
|
|
|
|
yaml "gopkg.in/yaml.v3"
|
|
|
|
)
|
|
|
|
|
2021-02-02 07:17:59 +00:00
|
|
|
func hasOperator(d *dataTreeNavigator, context Context, expressionNode *ExpressionNode) (Context, error) {
|
2020-11-24 00:38:39 +00:00
|
|
|
|
|
|
|
log.Debugf("-- hasOperation")
|
|
|
|
var results = list.New()
|
|
|
|
|
2021-05-16 04:17:13 +00:00
|
|
|
rhs, err := d.GetMatchingNodes(context.ReadOnlyClone(), expressionNode.Rhs)
|
2020-11-24 00:38:39 +00:00
|
|
|
|
|
|
|
if err != nil {
|
2021-02-02 07:17:59 +00:00
|
|
|
return Context{}, err
|
2020-11-24 00:38:39 +00:00
|
|
|
}
|
|
|
|
|
2021-05-16 04:00:30 +00:00
|
|
|
wantedKey := "null"
|
|
|
|
wanted := &yaml.Node{Tag: "!!null"}
|
|
|
|
if rhs.MatchingNodes.Len() != 0 {
|
|
|
|
wanted = rhs.MatchingNodes.Front().Value.(*CandidateNode).Node
|
|
|
|
wantedKey = wanted.Value
|
|
|
|
}
|
|
|
|
|
2021-02-02 07:17:59 +00:00
|
|
|
for el := context.MatchingNodes.Front(); el != nil; el = el.Next() {
|
2020-11-24 00:38:39 +00:00
|
|
|
candidate := el.Value.(*CandidateNode)
|
|
|
|
|
|
|
|
// grab the first value
|
2021-01-12 23:00:51 +00:00
|
|
|
candidateNode := unwrapDoc(candidate.Node)
|
2021-01-11 22:30:24 +00:00
|
|
|
var contents = candidateNode.Content
|
|
|
|
switch candidateNode.Kind {
|
2020-11-24 00:38:39 +00:00
|
|
|
case yaml.MappingNode:
|
|
|
|
candidateHasKey := false
|
|
|
|
for index := 0; index < len(contents) && !candidateHasKey; index = index + 2 {
|
|
|
|
key := contents[index]
|
|
|
|
if key.Value == wantedKey {
|
|
|
|
candidateHasKey = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
results.PushBack(createBooleanCandidate(candidate, candidateHasKey))
|
|
|
|
case yaml.SequenceNode:
|
|
|
|
candidateHasKey := false
|
|
|
|
if wanted.Tag == "!!int" {
|
|
|
|
var number, errParsingInt = strconv.ParseInt(wantedKey, 10, 64) // nolint
|
|
|
|
if errParsingInt != nil {
|
2021-02-02 07:17:59 +00:00
|
|
|
return Context{}, errParsingInt
|
2020-11-24 00:38:39 +00:00
|
|
|
}
|
|
|
|
candidateHasKey = int64(len(contents)) > number
|
|
|
|
}
|
|
|
|
results.PushBack(createBooleanCandidate(candidate, candidateHasKey))
|
|
|
|
default:
|
|
|
|
results.PushBack(createBooleanCandidate(candidate, false))
|
|
|
|
}
|
|
|
|
}
|
2021-02-02 07:17:59 +00:00
|
|
|
return context.ChildContext(results), nil
|
2020-11-24 00:38:39 +00:00
|
|
|
}
|