2021-10-22 01:00:47 +00:00
|
|
|
package yqlib
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bufio"
|
|
|
|
"bytes"
|
|
|
|
"container/list"
|
2021-10-22 03:53:39 +00:00
|
|
|
"regexp"
|
2021-10-22 01:37:47 +00:00
|
|
|
"strings"
|
2021-10-22 01:00:47 +00:00
|
|
|
|
|
|
|
"gopkg.in/yaml.v3"
|
|
|
|
)
|
|
|
|
|
2022-01-15 00:57:59 +00:00
|
|
|
func configureEncoder(format PrinterOutputFormat, indent int) Encoder {
|
|
|
|
switch format {
|
2022-02-07 00:55:55 +00:00
|
|
|
case JSONOutputFormat:
|
2022-05-22 11:19:59 +00:00
|
|
|
return NewJONEncoder(indent, false)
|
2022-01-15 00:57:59 +00:00
|
|
|
case PropsOutputFormat:
|
|
|
|
return NewPropertiesEncoder()
|
2022-02-07 00:55:55 +00:00
|
|
|
case CSVOutputFormat:
|
2022-01-15 00:57:59 +00:00
|
|
|
return NewCsvEncoder(',')
|
2022-02-07 00:55:55 +00:00
|
|
|
case TSVOutputFormat:
|
2022-01-15 00:57:59 +00:00
|
|
|
return NewCsvEncoder('\t')
|
|
|
|
case YamlOutputFormat:
|
|
|
|
return NewYamlEncoder(indent, false, true, true)
|
2022-02-07 00:55:55 +00:00
|
|
|
case XMLOutputFormat:
|
|
|
|
return NewXMLEncoder(indent, XMLPreferences.AttributePrefix, XMLPreferences.ContentName)
|
2022-02-22 22:26:35 +00:00
|
|
|
case Base64OutputFormat:
|
|
|
|
return NewBase64Encoder()
|
2022-01-15 00:57:59 +00:00
|
|
|
}
|
|
|
|
panic("invalid encoder")
|
|
|
|
}
|
|
|
|
|
|
|
|
func encodeToString(candidate *CandidateNode, prefs encoderPreferences) (string, error) {
|
2021-10-22 01:00:47 +00:00
|
|
|
var output bytes.Buffer
|
2021-10-24 00:35:40 +00:00
|
|
|
log.Debug("printing with indent: %v", prefs.indent)
|
2021-10-29 03:14:39 +00:00
|
|
|
|
2022-01-15 00:57:59 +00:00
|
|
|
encoder := configureEncoder(prefs.format, prefs.indent)
|
|
|
|
|
|
|
|
printer := NewPrinter(encoder, NewSinglePrinterWriter(bufio.NewWriter(&output)))
|
2021-10-22 03:53:39 +00:00
|
|
|
err := printer.PrintResults(candidate.AsList())
|
2021-10-22 01:00:47 +00:00
|
|
|
return output.String(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
type encoderPreferences struct {
|
|
|
|
format PrinterOutputFormat
|
2021-10-24 00:35:40 +00:00
|
|
|
indent int
|
2021-10-22 01:00:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* encodes object as yaml string */
|
|
|
|
|
|
|
|
func encodeOperator(d *dataTreeNavigator, context Context, expressionNode *ExpressionNode) (Context, error) {
|
|
|
|
preferences := expressionNode.Operation.Preferences.(encoderPreferences)
|
|
|
|
var results = list.New()
|
2021-10-22 03:53:39 +00:00
|
|
|
|
|
|
|
hasOnlyOneNewLine := regexp.MustCompile("[^\n].*\n$")
|
2021-10-22 04:21:01 +00:00
|
|
|
endWithNewLine := regexp.MustCompile(".*\n$")
|
2021-10-22 03:53:39 +00:00
|
|
|
chomper := regexp.MustCompile("\n+$")
|
|
|
|
|
2021-10-22 01:00:47 +00:00
|
|
|
for el := context.MatchingNodes.Front(); el != nil; el = el.Next() {
|
|
|
|
candidate := el.Value.(*CandidateNode)
|
2022-01-15 00:57:59 +00:00
|
|
|
stringValue, err := encodeToString(candidate, preferences)
|
2021-10-22 03:53:39 +00:00
|
|
|
|
2021-10-22 01:00:47 +00:00
|
|
|
if err != nil {
|
|
|
|
return Context{}, err
|
|
|
|
}
|
|
|
|
|
2021-10-22 03:53:39 +00:00
|
|
|
// remove trailing newlines if needed.
|
|
|
|
// check if we originally decoded this path, and the original thing had a single line.
|
|
|
|
originalList := context.GetVariable("decoded: " + candidate.GetKey())
|
|
|
|
if originalList != nil && originalList.Len() > 0 && hasOnlyOneNewLine.MatchString(stringValue) {
|
|
|
|
|
|
|
|
original := originalList.Front().Value.(*CandidateNode)
|
2021-10-22 04:21:01 +00:00
|
|
|
originalNode := unwrapDoc(original.Node)
|
|
|
|
// original block did not have a new line at the end, get rid of this one too
|
|
|
|
if !endWithNewLine.MatchString(originalNode.Value) {
|
2021-10-22 03:53:39 +00:00
|
|
|
stringValue = chomper.ReplaceAllString(stringValue, "")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-24 00:35:40 +00:00
|
|
|
// dont print a new line when printing json on a single line.
|
2022-02-07 00:55:55 +00:00
|
|
|
if (preferences.format == JSONOutputFormat && preferences.indent == 0) ||
|
|
|
|
preferences.format == CSVOutputFormat ||
|
|
|
|
preferences.format == TSVOutputFormat {
|
2021-10-24 00:35:40 +00:00
|
|
|
stringValue = chomper.ReplaceAllString(stringValue, "")
|
|
|
|
}
|
|
|
|
|
2021-10-22 01:00:47 +00:00
|
|
|
stringContentNode := &yaml.Node{Kind: yaml.ScalarNode, Tag: "!!str", Value: stringValue}
|
2021-11-23 22:57:35 +00:00
|
|
|
results.PushBack(candidate.CreateReplacement(stringContentNode))
|
2021-10-22 01:00:47 +00:00
|
|
|
}
|
|
|
|
return context.ChildContext(results), nil
|
|
|
|
}
|
2021-10-22 01:37:47 +00:00
|
|
|
|
2021-12-21 04:02:07 +00:00
|
|
|
type decoderPreferences struct {
|
|
|
|
format InputFormat
|
|
|
|
}
|
|
|
|
|
2021-10-22 01:37:47 +00:00
|
|
|
/* takes a string and decodes it back into an object */
|
|
|
|
func decodeOperator(d *dataTreeNavigator, context Context, expressionNode *ExpressionNode) (Context, error) {
|
|
|
|
|
2021-12-21 04:02:07 +00:00
|
|
|
preferences := expressionNode.Operation.Preferences.(decoderPreferences)
|
|
|
|
|
|
|
|
var decoder Decoder
|
|
|
|
switch preferences.format {
|
|
|
|
case YamlInputFormat:
|
|
|
|
decoder = NewYamlDecoder()
|
2022-02-07 00:55:55 +00:00
|
|
|
case XMLInputFormat:
|
2022-03-28 03:05:10 +00:00
|
|
|
decoder = NewXMLDecoder(XMLPreferences.AttributePrefix, XMLPreferences.ContentName, XMLPreferences.StrictMode)
|
2022-02-22 22:26:35 +00:00
|
|
|
case Base64InputFormat:
|
|
|
|
decoder = NewBase64Decoder()
|
2022-03-28 08:48:30 +00:00
|
|
|
case PropertiesInputFormat:
|
|
|
|
decoder = NewPropertiesDecoder()
|
2021-12-21 04:02:07 +00:00
|
|
|
}
|
|
|
|
|
2021-10-22 01:37:47 +00:00
|
|
|
var results = list.New()
|
|
|
|
for el := context.MatchingNodes.Front(); el != nil; el = el.Next() {
|
|
|
|
candidate := el.Value.(*CandidateNode)
|
2021-10-22 03:53:39 +00:00
|
|
|
|
|
|
|
context.SetVariable("decoded: "+candidate.GetKey(), candidate.AsList())
|
|
|
|
|
2021-10-22 01:37:47 +00:00
|
|
|
var dataBucket yaml.Node
|
|
|
|
log.Debugf("got: [%v]", candidate.Node.Value)
|
2021-12-21 04:02:07 +00:00
|
|
|
|
|
|
|
decoder.Init(strings.NewReader(unwrapDoc(candidate.Node).Value))
|
|
|
|
|
2021-10-22 01:37:47 +00:00
|
|
|
errorReading := decoder.Decode(&dataBucket)
|
|
|
|
if errorReading != nil {
|
|
|
|
return Context{}, errorReading
|
|
|
|
}
|
|
|
|
//first node is a doc
|
|
|
|
node := unwrapDoc(&dataBucket)
|
|
|
|
|
2021-11-23 22:57:35 +00:00
|
|
|
results.PushBack(candidate.CreateReplacement(node))
|
2021-10-22 01:37:47 +00:00
|
|
|
}
|
|
|
|
return context.ChildContext(results), nil
|
|
|
|
}
|