2023-03-25 23:59:15 +00:00
|
|
|
//go:build !yq_notoml
|
|
|
|
|
|
|
|
package yqlib
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"strconv"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
toml "github.com/pelletier/go-toml/v2/unstable"
|
|
|
|
)
|
|
|
|
|
|
|
|
type tomlDecoder struct {
|
|
|
|
parser toml.Parser
|
|
|
|
finished bool
|
|
|
|
d DataTreeNavigator
|
|
|
|
rootMap *CandidateNode
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewTomlDecoder() Decoder {
|
|
|
|
return &tomlDecoder{
|
|
|
|
finished: false,
|
|
|
|
d: NewDataTreeNavigator(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (dec *tomlDecoder) Init(reader io.Reader) error {
|
|
|
|
dec.parser = toml.Parser{}
|
|
|
|
buf := new(bytes.Buffer)
|
|
|
|
_, err := buf.ReadFrom(reader)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
dec.parser.Reset(buf.Bytes())
|
|
|
|
dec.rootMap = &CandidateNode{
|
2023-10-18 01:11:53 +00:00
|
|
|
Kind: MappingNode,
|
|
|
|
Tag: "!!map",
|
|
|
|
}
|
2023-03-25 23:59:15 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (dec *tomlDecoder) getFullPath(tomlNode *toml.Node) []interface{} {
|
|
|
|
path := make([]interface{}, 0)
|
|
|
|
for {
|
|
|
|
path = append(path, string(tomlNode.Data))
|
|
|
|
tomlNode = tomlNode.Next()
|
|
|
|
if tomlNode == nil {
|
|
|
|
return path
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (dec *tomlDecoder) processKeyValueIntoMap(rootMap *CandidateNode, tomlNode *toml.Node) error {
|
|
|
|
value := tomlNode.Value()
|
|
|
|
path := dec.getFullPath(value.Next())
|
2024-02-15 22:41:33 +00:00
|
|
|
log.Debug("processKeyValueIntoMap: %v", path)
|
2023-03-25 23:59:15 +00:00
|
|
|
|
|
|
|
valueNode, err := dec.decodeNode(value)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-10-18 01:11:53 +00:00
|
|
|
|
2023-03-25 23:59:15 +00:00
|
|
|
context := Context{}
|
|
|
|
context = context.SingleChildContext(rootMap)
|
|
|
|
|
|
|
|
return dec.d.DeeplyAssign(context, path, valueNode)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (dec *tomlDecoder) decodeKeyValuesIntoMap(rootMap *CandidateNode, tomlNode *toml.Node) (bool, error) {
|
2024-02-15 22:41:33 +00:00
|
|
|
log.Debug("decodeKeyValuesIntoMap -- processing first (current) entry")
|
2023-03-25 23:59:15 +00:00
|
|
|
if err := dec.processKeyValueIntoMap(rootMap, tomlNode); err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
|
|
|
|
for dec.parser.NextExpression() {
|
|
|
|
nextItem := dec.parser.Expression()
|
2024-02-15 22:41:33 +00:00
|
|
|
log.Debug("decodeKeyValuesIntoMap -- next exp, its a %v", nextItem.Kind)
|
2023-03-25 23:59:15 +00:00
|
|
|
|
|
|
|
if nextItem.Kind == toml.KeyValue {
|
|
|
|
if err := dec.processKeyValueIntoMap(rootMap, nextItem); err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// run out of key values
|
2024-02-15 22:41:33 +00:00
|
|
|
log.Debug("done in decodeKeyValuesIntoMap, gota a %v", nextItem.Kind)
|
2023-03-25 23:59:15 +00:00
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
}
|
2024-02-15 22:41:33 +00:00
|
|
|
log.Debug("no more things to read in")
|
2023-03-25 23:59:15 +00:00
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
2023-10-18 01:11:53 +00:00
|
|
|
func (dec *tomlDecoder) createInlineTableMap(tomlNode *toml.Node) (*CandidateNode, error) {
|
|
|
|
content := make([]*CandidateNode, 0)
|
2024-02-15 22:41:33 +00:00
|
|
|
log.Debug("createInlineTableMap")
|
2023-03-25 23:59:15 +00:00
|
|
|
|
|
|
|
iterator := tomlNode.Children()
|
|
|
|
for iterator.Next() {
|
|
|
|
child := iterator.Node()
|
|
|
|
if child.Kind != toml.KeyValue {
|
|
|
|
return nil, fmt.Errorf("only keyvalue pairs are supported in inlinetables, got %v instead", child.Kind)
|
|
|
|
}
|
|
|
|
|
|
|
|
keyValues := &CandidateNode{
|
2023-10-18 01:11:53 +00:00
|
|
|
Kind: MappingNode,
|
|
|
|
Tag: "!!map",
|
2023-03-25 23:59:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if err := dec.processKeyValueIntoMap(keyValues, child); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2023-10-18 01:11:53 +00:00
|
|
|
content = append(content, keyValues.Content...)
|
2023-03-25 23:59:15 +00:00
|
|
|
}
|
|
|
|
|
2023-10-18 01:11:53 +00:00
|
|
|
return &CandidateNode{
|
|
|
|
Kind: MappingNode,
|
2023-03-25 23:59:15 +00:00
|
|
|
Tag: "!!map",
|
|
|
|
Content: content,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2023-10-18 01:11:53 +00:00
|
|
|
func (dec *tomlDecoder) createArray(tomlNode *toml.Node) (*CandidateNode, error) {
|
|
|
|
content := make([]*CandidateNode, 0)
|
2023-03-25 23:59:15 +00:00
|
|
|
iterator := tomlNode.Children()
|
|
|
|
for iterator.Next() {
|
|
|
|
child := iterator.Node()
|
|
|
|
yamlNode, err := dec.decodeNode(child)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
content = append(content, yamlNode)
|
|
|
|
}
|
|
|
|
|
2023-10-18 01:11:53 +00:00
|
|
|
return &CandidateNode{
|
|
|
|
Kind: SequenceNode,
|
2023-03-25 23:59:15 +00:00
|
|
|
Tag: "!!seq",
|
|
|
|
Content: content,
|
|
|
|
}, nil
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-10-18 01:11:53 +00:00
|
|
|
func (dec *tomlDecoder) createStringScalar(tomlNode *toml.Node) (*CandidateNode, error) {
|
2023-03-25 23:59:15 +00:00
|
|
|
content := string(tomlNode.Data)
|
|
|
|
return createScalarNode(content, content), nil
|
|
|
|
}
|
|
|
|
|
2023-10-18 01:11:53 +00:00
|
|
|
func (dec *tomlDecoder) createBoolScalar(tomlNode *toml.Node) (*CandidateNode, error) {
|
2023-03-25 23:59:15 +00:00
|
|
|
content := string(tomlNode.Data)
|
|
|
|
return createScalarNode(content == "true", content), nil
|
|
|
|
}
|
|
|
|
|
2023-10-18 01:11:53 +00:00
|
|
|
func (dec *tomlDecoder) createIntegerScalar(tomlNode *toml.Node) (*CandidateNode, error) {
|
2023-03-25 23:59:15 +00:00
|
|
|
content := string(tomlNode.Data)
|
|
|
|
_, num, err := parseInt64(content)
|
|
|
|
return createScalarNode(num, content), err
|
|
|
|
}
|
|
|
|
|
2023-10-18 01:11:53 +00:00
|
|
|
func (dec *tomlDecoder) createDateTimeScalar(tomlNode *toml.Node) (*CandidateNode, error) {
|
2023-03-25 23:59:15 +00:00
|
|
|
content := string(tomlNode.Data)
|
|
|
|
val, err := parseDateTime(time.RFC3339, content)
|
|
|
|
return createScalarNode(val, content), err
|
|
|
|
}
|
|
|
|
|
2023-10-18 01:11:53 +00:00
|
|
|
func (dec *tomlDecoder) createFloatScalar(tomlNode *toml.Node) (*CandidateNode, error) {
|
2023-03-25 23:59:15 +00:00
|
|
|
content := string(tomlNode.Data)
|
|
|
|
num, err := strconv.ParseFloat(content, 64)
|
|
|
|
return createScalarNode(num, content), err
|
|
|
|
}
|
|
|
|
|
2023-10-18 01:11:53 +00:00
|
|
|
func (dec *tomlDecoder) decodeNode(tomlNode *toml.Node) (*CandidateNode, error) {
|
2023-03-25 23:59:15 +00:00
|
|
|
switch tomlNode.Kind {
|
|
|
|
case toml.Key, toml.String:
|
|
|
|
return dec.createStringScalar(tomlNode)
|
|
|
|
case toml.Bool:
|
|
|
|
return dec.createBoolScalar(tomlNode)
|
|
|
|
case toml.Integer:
|
|
|
|
return dec.createIntegerScalar(tomlNode)
|
|
|
|
case toml.DateTime:
|
|
|
|
return dec.createDateTimeScalar(tomlNode)
|
|
|
|
case toml.Float:
|
|
|
|
return dec.createFloatScalar(tomlNode)
|
|
|
|
case toml.Array:
|
|
|
|
return dec.createArray(tomlNode)
|
|
|
|
case toml.InlineTable:
|
|
|
|
return dec.createInlineTableMap(tomlNode)
|
|
|
|
default:
|
|
|
|
return nil, fmt.Errorf("unsupported type %v", tomlNode.Kind)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (dec *tomlDecoder) Decode() (*CandidateNode, error) {
|
|
|
|
if dec.finished {
|
|
|
|
return nil, io.EOF
|
|
|
|
}
|
|
|
|
//
|
|
|
|
// toml library likes to panic
|
|
|
|
var deferredError error
|
|
|
|
defer func() { //catch or finally
|
|
|
|
if r := recover(); r != nil {
|
|
|
|
var ok bool
|
|
|
|
deferredError, ok = r.(error)
|
|
|
|
if !ok {
|
|
|
|
deferredError = fmt.Errorf("pkg: %v", r)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
log.Debug("ok here we go")
|
|
|
|
var runAgainstCurrentExp = false
|
|
|
|
var err error
|
|
|
|
for runAgainstCurrentExp || dec.parser.NextExpression() {
|
|
|
|
|
|
|
|
if runAgainstCurrentExp {
|
|
|
|
log.Debug("running against current exp")
|
|
|
|
}
|
|
|
|
|
|
|
|
currentNode := dec.parser.Expression()
|
|
|
|
|
|
|
|
log.Debug("currentNode: %v ", currentNode.Kind)
|
|
|
|
runAgainstCurrentExp, err = dec.processTopLevelNode(currentNode)
|
|
|
|
if err != nil {
|
|
|
|
return dec.rootMap, err
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
err = dec.parser.Error()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// must have finished
|
|
|
|
dec.finished = true
|
|
|
|
|
2023-10-18 01:11:53 +00:00
|
|
|
if len(dec.rootMap.Content) == 0 {
|
2023-03-25 23:59:15 +00:00
|
|
|
return nil, io.EOF
|
|
|
|
}
|
|
|
|
|
2023-10-18 01:11:53 +00:00
|
|
|
return dec.rootMap, deferredError
|
2023-03-25 23:59:15 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (dec *tomlDecoder) processTopLevelNode(currentNode *toml.Node) (bool, error) {
|
|
|
|
var runAgainstCurrentExp bool
|
|
|
|
var err error
|
2024-02-15 22:41:33 +00:00
|
|
|
log.Debug("processTopLevelNode: Going to process %v state is current %v", currentNode.Kind, NodeToString(dec.rootMap))
|
2023-03-25 23:59:15 +00:00
|
|
|
if currentNode.Kind == toml.Table {
|
2023-10-18 01:11:53 +00:00
|
|
|
runAgainstCurrentExp, err = dec.processTable(currentNode)
|
2023-03-25 23:59:15 +00:00
|
|
|
} else if currentNode.Kind == toml.ArrayTable {
|
2023-10-18 01:11:53 +00:00
|
|
|
runAgainstCurrentExp, err = dec.processArrayTable(currentNode)
|
2023-03-25 23:59:15 +00:00
|
|
|
} else {
|
|
|
|
runAgainstCurrentExp, err = dec.decodeKeyValuesIntoMap(dec.rootMap, currentNode)
|
|
|
|
}
|
|
|
|
|
2024-02-15 22:41:33 +00:00
|
|
|
log.Debug("processTopLevelNode: DONE Processing state is now %v", NodeToString(dec.rootMap))
|
2023-03-25 23:59:15 +00:00
|
|
|
return runAgainstCurrentExp, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (dec *tomlDecoder) processTable(currentNode *toml.Node) (bool, error) {
|
2024-02-15 22:41:33 +00:00
|
|
|
log.Debug("Enter processTable")
|
2023-03-25 23:59:15 +00:00
|
|
|
fullPath := dec.getFullPath(currentNode.Child())
|
2024-02-15 22:41:33 +00:00
|
|
|
log.Debug("fullpath: %v", fullPath)
|
2023-03-25 23:59:15 +00:00
|
|
|
|
2024-02-08 02:31:56 +00:00
|
|
|
tableNodeValue := &CandidateNode{
|
|
|
|
Kind: MappingNode,
|
|
|
|
Tag: "!!map",
|
|
|
|
Content: make([]*CandidateNode, 0),
|
2024-02-07 08:59:50 +00:00
|
|
|
}
|
|
|
|
|
2024-02-08 02:31:56 +00:00
|
|
|
var tableValue *toml.Node
|
|
|
|
runAgainstCurrentExp := false
|
|
|
|
var err error
|
2023-03-25 23:59:15 +00:00
|
|
|
hasValue := dec.parser.NextExpression()
|
2024-02-08 02:31:56 +00:00
|
|
|
// check to see if there is any table data
|
|
|
|
if hasValue {
|
|
|
|
tableValue = dec.parser.Expression()
|
|
|
|
// next expression is not table data, so we are done
|
|
|
|
if tableValue.Kind != toml.KeyValue {
|
|
|
|
log.Debug("got an empty table, returning")
|
|
|
|
return true, nil
|
|
|
|
}
|
2023-03-25 23:59:15 +00:00
|
|
|
|
2024-02-08 02:31:56 +00:00
|
|
|
runAgainstCurrentExp, err = dec.decodeKeyValuesIntoMap(tableNodeValue, tableValue)
|
|
|
|
if err != nil && !errors.Is(io.EOF, err) {
|
|
|
|
return false, err
|
|
|
|
}
|
2023-03-25 23:59:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
c := Context{}
|
|
|
|
c = c.SingleChildContext(dec.rootMap)
|
2023-10-18 01:11:53 +00:00
|
|
|
err = dec.d.DeeplyAssign(c, fullPath, tableNodeValue)
|
2023-03-25 23:59:15 +00:00
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
return runAgainstCurrentExp, nil
|
|
|
|
}
|
|
|
|
|
2023-10-18 01:11:53 +00:00
|
|
|
func (dec *tomlDecoder) arrayAppend(context Context, path []interface{}, rhsNode *CandidateNode) error {
|
2024-02-15 22:41:33 +00:00
|
|
|
log.Debug("arrayAppend to path: %v,%v", path, NodeToString(rhsNode))
|
2023-03-25 23:59:15 +00:00
|
|
|
rhsCandidateNode := &CandidateNode{
|
2023-10-18 01:11:53 +00:00
|
|
|
Kind: SequenceNode,
|
|
|
|
Tag: "!!seq",
|
|
|
|
Content: []*CandidateNode{rhsNode},
|
2023-03-25 23:59:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
assignmentOp := &Operation{OperationType: addAssignOpType}
|
|
|
|
|
|
|
|
rhsOp := &Operation{OperationType: valueOpType, CandidateNode: rhsCandidateNode}
|
|
|
|
|
|
|
|
assignmentOpNode := &ExpressionNode{
|
|
|
|
Operation: assignmentOp,
|
|
|
|
LHS: createTraversalTree(path, traversePreferences{}, false),
|
|
|
|
RHS: &ExpressionNode{Operation: rhsOp},
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err := dec.d.GetMatchingNodes(context, assignmentOpNode)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (dec *tomlDecoder) processArrayTable(currentNode *toml.Node) (bool, error) {
|
2024-02-15 22:41:33 +00:00
|
|
|
log.Debug("Entering processArrayTable")
|
2023-03-25 23:59:15 +00:00
|
|
|
fullPath := dec.getFullPath(currentNode.Child())
|
2024-02-15 22:41:33 +00:00
|
|
|
log.Debug("Fullpath: %v", fullPath)
|
2023-03-25 23:59:15 +00:00
|
|
|
|
|
|
|
// need to use the array append exp to add another entry to
|
|
|
|
// this array: fullpath += [ thing ]
|
|
|
|
|
|
|
|
hasValue := dec.parser.NextExpression()
|
|
|
|
if !hasValue {
|
|
|
|
return false, fmt.Errorf("error retrieving table %v value: %w", fullPath, dec.parser.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
tableNodeValue := &CandidateNode{
|
2023-10-18 01:11:53 +00:00
|
|
|
Kind: MappingNode,
|
|
|
|
Tag: "!!map",
|
2023-03-25 23:59:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
tableValue := dec.parser.Expression()
|
|
|
|
runAgainstCurrentExp, err := dec.decodeKeyValuesIntoMap(tableNodeValue, tableValue)
|
|
|
|
log.Debugf("table node err: %w", err)
|
|
|
|
if err != nil && !errors.Is(io.EOF, err) {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
c := Context{}
|
|
|
|
|
|
|
|
c = c.SingleChildContext(dec.rootMap)
|
|
|
|
|
|
|
|
// += function
|
2023-10-18 01:11:53 +00:00
|
|
|
err = dec.arrayAppend(c, fullPath, tableNodeValue)
|
2023-03-25 23:59:15 +00:00
|
|
|
|
|
|
|
return runAgainstCurrentExp, err
|
|
|
|
}
|