yq/pkg/yqlib/operator_unique.go

63 lines
1.7 KiB
Go
Raw Normal View History

2021-05-13 23:43:52 +00:00
package yqlib
import (
"container/list"
"fmt"
2021-05-14 05:01:44 +00:00
"github.com/elliotchance/orderedmap"
2021-05-13 23:43:52 +00:00
)
func unique(d *dataTreeNavigator, context Context, expressionNode *ExpressionNode) (Context, error) {
selfExpression := &ExpressionNode{Operation: &Operation{OperationType: selfReferenceOpType}}
uniqueByExpression := &ExpressionNode{Operation: &Operation{OperationType: uniqueByOpType}, RHS: selfExpression}
2021-05-13 23:43:52 +00:00
return uniqueBy(d, context, uniqueByExpression)
}
func uniqueBy(d *dataTreeNavigator, context Context, expressionNode *ExpressionNode) (Context, error) {
log.Debugf("-- uniqueBy Operator")
var results = list.New()
for el := context.MatchingNodes.Front(); el != nil; el = el.Next() {
candidate := el.Value.(*CandidateNode)
2023-04-08 11:27:47 +00:00
candidateNode := candidate.unwrapDocument()
2021-05-13 23:43:52 +00:00
2023-04-08 11:27:47 +00:00
if candidateNode.Kind != SequenceNode {
2021-05-13 23:43:52 +00:00
return Context{}, fmt.Errorf("Only arrays are supported for unique")
}
2021-05-14 05:01:44 +00:00
2021-05-13 23:43:52 +00:00
var newMatches = orderedmap.NewOrderedMap()
2023-04-08 11:27:47 +00:00
for _, child := range candidateNode.Content {
rhs, err := d.GetMatchingNodes(context.SingleReadonlyChildContext(child), expressionNode.RHS)
2021-05-13 23:43:52 +00:00
if err != nil {
return Context{}, err
}
keyValue := "null"
if rhs.MatchingNodes.Len() > 0 {
first := rhs.MatchingNodes.Front()
keyCandidate := first.Value.(*CandidateNode)
2023-04-08 11:27:47 +00:00
keyValue = keyCandidate.Value
}
2021-05-13 23:43:52 +00:00
_, exists := newMatches.Get(keyValue)
if !exists {
2023-04-08 11:27:47 +00:00
newMatches.Set(keyValue, child)
2021-05-13 23:43:52 +00:00
}
}
2023-04-09 01:14:51 +00:00
resultNode := candidate.CreateReplacementWithDocWrappers(SequenceNode, "!!seq", candidateNode.Style)
2021-05-13 23:43:52 +00:00
for el := newMatches.Front(); el != nil; el = el.Next() {
2023-04-08 11:27:47 +00:00
resultNode.Content = append(resultNode.Content, el.Value.(*CandidateNode))
2021-05-13 23:43:52 +00:00
}
2023-04-08 11:27:47 +00:00
results.PushBack(resultNode)
2021-05-13 23:43:52 +00:00
}
return context.ChildContext(results), nil
2021-05-14 05:01:44 +00:00
}