mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 13:48:06 +00:00
90 lines
2.8 KiB
Go
90 lines
2.8 KiB
Go
package yqlib
|
|
|
|
import (
|
|
"container/list"
|
|
|
|
yaml "gopkg.in/yaml.v3"
|
|
)
|
|
|
|
// A yaml expression evaluator that runs the expression once against all files/nodes in memory.
|
|
type Evaluator interface {
|
|
EvaluateFiles(expression string, filenames []string, printer Printer, leadingContentPreProcessing bool) error
|
|
|
|
// EvaluateNodes takes an expression and one or more yaml nodes, returning a list of matching candidate nodes
|
|
EvaluateNodes(expression string, nodes ...*yaml.Node) (*list.List, error)
|
|
|
|
// EvaluateCandidateNodes takes an expression and list of candidate nodes, returning a list of matching candidate nodes
|
|
EvaluateCandidateNodes(expression string, inputCandidateNodes *list.List) (*list.List, error)
|
|
}
|
|
|
|
type allAtOnceEvaluator struct {
|
|
treeNavigator DataTreeNavigator
|
|
treeCreator ExpressionParser
|
|
}
|
|
|
|
func NewAllAtOnceEvaluator() Evaluator {
|
|
return &allAtOnceEvaluator{treeNavigator: NewDataTreeNavigator(), treeCreator: NewExpressionParser()}
|
|
}
|
|
|
|
func (e *allAtOnceEvaluator) EvaluateNodes(expression string, nodes ...*yaml.Node) (*list.List, error) {
|
|
inputCandidates := list.New()
|
|
for _, node := range nodes {
|
|
inputCandidates.PushBack(&CandidateNode{Node: node})
|
|
}
|
|
return e.EvaluateCandidateNodes(expression, inputCandidates)
|
|
}
|
|
|
|
func (e *allAtOnceEvaluator) EvaluateCandidateNodes(expression string, inputCandidates *list.List) (*list.List, error) {
|
|
node, err := e.treeCreator.ParseExpression(expression)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
context, err := e.treeNavigator.GetMatchingNodes(Context{MatchingNodes: inputCandidates}, node)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return context.MatchingNodes, nil
|
|
}
|
|
|
|
func (e *allAtOnceEvaluator) EvaluateFiles(expression string, filenames []string, printer Printer, leadingContentPreProcessing bool) error {
|
|
fileIndex := 0
|
|
firstFileLeadingContent := ""
|
|
|
|
var allDocuments *list.List = list.New()
|
|
for _, filename := range filenames {
|
|
reader, leadingContent, err := readStream(filename, leadingContentPreProcessing)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if fileIndex == 0 {
|
|
firstFileLeadingContent = leadingContent
|
|
}
|
|
|
|
fileDocuments, err := readDocuments(reader, filename, fileIndex)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
allDocuments.PushBackList(fileDocuments)
|
|
fileIndex = fileIndex + 1
|
|
}
|
|
|
|
if allDocuments.Len() == 0 {
|
|
candidateNode := &CandidateNode{
|
|
Document: 0,
|
|
Filename: "",
|
|
Node: &yaml.Node{Kind: yaml.DocumentNode, HeadComment: firstFileLeadingContent, Content: []*yaml.Node{{Tag: "!!null", Kind: yaml.ScalarNode}}},
|
|
FileIndex: 0,
|
|
}
|
|
allDocuments.PushBack(candidateNode)
|
|
} else {
|
|
allDocuments.Front().Value.(*CandidateNode).Node.HeadComment = firstFileLeadingContent
|
|
}
|
|
|
|
matches, err := e.EvaluateCandidateNodes(expression, allDocuments)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return printer.PrintResults(matches)
|
|
}
|