mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 13:48:06 +00:00
fa6fac1a76
* Remove extra backtick * Reword explanation of update * Reword explanation of relative update * Change "remaple" to "remain" * Change "clovver" to "clobber" * Reword explanation of update for comment operators * Reword explanation of relative update for comment operators * Change "array" to "expression" * Change "the golangs" to "Golang's" * Change "golangs" to "Golang's" * Change "can durations" to "can add durations" * Change "array scalars" to "arrays" * Change "beit" to "be it" * Fix typo in `eval` tip * Fix typo in header for `has` operation * Add space before pipe in `line` operator example * Fix typos in explanation of deep array merges * Change "is now used" to "is now used." * Change "object," to "object." * Changes "indexes" to "indices" * Remove extraneous copied text from `..` article * Reword explanation of `...` operator * Change "your are" to "you are" * Add link to `string` operator docs in `select` article * Change "is a" to "parameter specifies" in `string` operators article * Change "new line" to "newline" * Change "golang regex" to "Golang's regex" * Change "golang" to "Golang" * Add period * Remove comma in `subtract` article * Remove duplicate number subtraction example * Remove comma in `traverse` operator article * Clarify use of brackets when `read`ing with special characters
162 lines
4.6 KiB
Go
162 lines
4.6 KiB
Go
package yqlib
|
|
|
|
import (
|
|
"bufio"
|
|
"bytes"
|
|
"container/list"
|
|
"errors"
|
|
"regexp"
|
|
"strings"
|
|
|
|
"gopkg.in/yaml.v3"
|
|
)
|
|
|
|
func configureEncoder(format PrinterOutputFormat, indent int) Encoder {
|
|
switch format {
|
|
case JSONOutputFormat:
|
|
return NewJSONEncoder(indent, false, false)
|
|
case PropsOutputFormat:
|
|
return NewPropertiesEncoder(true)
|
|
case CSVOutputFormat:
|
|
return NewCsvEncoder(',')
|
|
case TSVOutputFormat:
|
|
return NewCsvEncoder('\t')
|
|
case YamlOutputFormat:
|
|
return NewYamlEncoder(indent, false, ConfiguredYamlPreferences)
|
|
case XMLOutputFormat:
|
|
return NewXMLEncoder(indent, ConfiguredXMLPreferences)
|
|
case Base64OutputFormat:
|
|
return NewBase64Encoder()
|
|
case UriOutputFormat:
|
|
return NewUriEncoder()
|
|
case ShOutputFormat:
|
|
return NewShEncoder()
|
|
}
|
|
panic("invalid encoder")
|
|
}
|
|
|
|
func encodeToString(candidate *CandidateNode, prefs encoderPreferences) (string, error) {
|
|
var output bytes.Buffer
|
|
log.Debug("printing with indent: %v", prefs.indent)
|
|
|
|
encoder := configureEncoder(prefs.format, prefs.indent)
|
|
if encoder == nil {
|
|
return "", errors.New("no support for output format")
|
|
}
|
|
|
|
printer := NewPrinter(encoder, NewSinglePrinterWriter(bufio.NewWriter(&output)))
|
|
err := printer.PrintResults(candidate.AsList())
|
|
return output.String(), err
|
|
}
|
|
|
|
type encoderPreferences struct {
|
|
format PrinterOutputFormat
|
|
indent int
|
|
}
|
|
|
|
/* encodes object as yaml string */
|
|
|
|
func encodeOperator(d *dataTreeNavigator, context Context, expressionNode *ExpressionNode) (Context, error) {
|
|
preferences := expressionNode.Operation.Preferences.(encoderPreferences)
|
|
var results = list.New()
|
|
|
|
hasOnlyOneNewLine := regexp.MustCompile("[^\n].*\n$")
|
|
endWithNewLine := regexp.MustCompile(".*\n$")
|
|
chomper := regexp.MustCompile("\n+$")
|
|
|
|
for el := context.MatchingNodes.Front(); el != nil; el = el.Next() {
|
|
candidate := el.Value.(*CandidateNode)
|
|
stringValue, err := encodeToString(candidate, preferences)
|
|
|
|
if err != nil {
|
|
return Context{}, err
|
|
}
|
|
|
|
// 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)
|
|
originalNode := unwrapDoc(original.Node)
|
|
// original block did not have a newline at the end, get rid of this one too
|
|
if !endWithNewLine.MatchString(originalNode.Value) {
|
|
stringValue = chomper.ReplaceAllString(stringValue, "")
|
|
}
|
|
}
|
|
|
|
// dont print a newline when printing json on a single line.
|
|
if (preferences.format == JSONOutputFormat && preferences.indent == 0) ||
|
|
preferences.format == CSVOutputFormat ||
|
|
preferences.format == TSVOutputFormat {
|
|
stringValue = chomper.ReplaceAllString(stringValue, "")
|
|
}
|
|
|
|
stringContentNode := &yaml.Node{Kind: yaml.ScalarNode, Tag: "!!str", Value: stringValue}
|
|
results.PushBack(candidate.CreateReplacement(stringContentNode))
|
|
}
|
|
return context.ChildContext(results), nil
|
|
}
|
|
|
|
type decoderPreferences struct {
|
|
format InputFormat
|
|
}
|
|
|
|
func createDecoder(format InputFormat) Decoder {
|
|
var decoder Decoder
|
|
switch format {
|
|
case JsonInputFormat:
|
|
decoder = NewJSONDecoder()
|
|
case YamlInputFormat:
|
|
decoder = NewYamlDecoder(ConfiguredYamlPreferences)
|
|
case XMLInputFormat:
|
|
decoder = NewXMLDecoder(ConfiguredXMLPreferences)
|
|
case Base64InputFormat:
|
|
decoder = NewBase64Decoder()
|
|
case PropertiesInputFormat:
|
|
decoder = NewPropertiesDecoder()
|
|
case CSVObjectInputFormat:
|
|
decoder = NewCSVObjectDecoder(',')
|
|
case TSVObjectInputFormat:
|
|
decoder = NewCSVObjectDecoder('\t')
|
|
case UriInputFormat:
|
|
decoder = NewUriDecoder()
|
|
}
|
|
return decoder
|
|
}
|
|
|
|
/* takes a string and decodes it back into an object */
|
|
func decodeOperator(d *dataTreeNavigator, context Context, expressionNode *ExpressionNode) (Context, error) {
|
|
|
|
preferences := expressionNode.Operation.Preferences.(decoderPreferences)
|
|
|
|
decoder := createDecoder(preferences.format)
|
|
if decoder == nil {
|
|
return Context{}, errors.New("no support for input format")
|
|
}
|
|
|
|
var results = list.New()
|
|
for el := context.MatchingNodes.Front(); el != nil; el = el.Next() {
|
|
candidate := el.Value.(*CandidateNode)
|
|
|
|
context.SetVariable("decoded: "+candidate.GetKey(), candidate.AsList())
|
|
|
|
log.Debugf("got: [%v]", candidate.Node.Value)
|
|
|
|
err := decoder.Init(strings.NewReader(unwrapDoc(candidate.Node).Value))
|
|
if err != nil {
|
|
return Context{}, err
|
|
}
|
|
|
|
decodedNode, errorReading := decoder.Decode()
|
|
if errorReading != nil {
|
|
return Context{}, errorReading
|
|
}
|
|
//first node is a doc
|
|
node := unwrapDoc(decodedNode.Node)
|
|
|
|
results.PushBack(candidate.CreateReplacement(node))
|
|
}
|
|
return context.ChildContext(results), nil
|
|
}
|