mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 13:48:06 +00:00
78 lines
2.0 KiB
Go
78 lines
2.0 KiB
Go
package yqlib
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
)
|
|
|
|
var myPathTokeniser = NewPathTokeniser()
|
|
var myPathPostfixer = NewPathPostFixer()
|
|
|
|
type PathTreeNode struct {
|
|
Operation *Operation
|
|
Lhs *PathTreeNode
|
|
Rhs *PathTreeNode
|
|
}
|
|
|
|
type PathTreeCreator interface {
|
|
ParsePath(path string) (*PathTreeNode, error)
|
|
CreatePathTree(postFixPath []*Operation) (*PathTreeNode, error)
|
|
}
|
|
|
|
type pathTreeCreator struct {
|
|
}
|
|
|
|
func NewPathTreeCreator() PathTreeCreator {
|
|
return &pathTreeCreator{}
|
|
}
|
|
|
|
func (p *pathTreeCreator) ParsePath(path string) (*PathTreeNode, error) {
|
|
tokens, err := myPathTokeniser.Tokenise(path)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
var Operations []*Operation
|
|
Operations, err = myPathPostfixer.ConvertToPostfix(tokens)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return p.CreatePathTree(Operations)
|
|
}
|
|
|
|
func (p *pathTreeCreator) CreatePathTree(postFixPath []*Operation) (*PathTreeNode, error) {
|
|
var stack = make([]*PathTreeNode, 0)
|
|
|
|
if len(postFixPath) == 0 {
|
|
return nil, nil
|
|
}
|
|
|
|
for _, Operation := range postFixPath {
|
|
var newNode = PathTreeNode{Operation: Operation}
|
|
log.Debugf("pathTree %v ", Operation.toString())
|
|
if Operation.OperationType.NumArgs > 0 {
|
|
numArgs := Operation.OperationType.NumArgs
|
|
if numArgs == 1 {
|
|
if len(stack) < 1 {
|
|
return nil, fmt.Errorf("'%v' expects 1 arg but received none", strings.TrimSpace(Operation.StringValue))
|
|
}
|
|
remaining, rhs := stack[:len(stack)-1], stack[len(stack)-1]
|
|
newNode.Rhs = rhs
|
|
stack = remaining
|
|
} else if numArgs == 2 {
|
|
if len(stack) < 2 {
|
|
return nil, fmt.Errorf("'%v' expects 2 args but there is %v", strings.TrimSpace(Operation.StringValue), len(stack))
|
|
}
|
|
remaining, lhs, rhs := stack[:len(stack)-2], stack[len(stack)-2], stack[len(stack)-1]
|
|
newNode.Lhs = lhs
|
|
newNode.Rhs = rhs
|
|
stack = remaining
|
|
}
|
|
}
|
|
stack = append(stack, &newNode)
|
|
}
|
|
if len(stack) != 1 {
|
|
return nil, fmt.Errorf("expected end of expression but found '%v', please check expression syntax", strings.TrimSpace(stack[1].Operation.StringValue))
|
|
}
|
|
return stack[0], nil
|
|
}
|