2022-01-15 00:57:59 +00:00
|
|
|
package yqlib
|
|
|
|
|
|
|
|
import (
|
2022-05-22 11:19:59 +00:00
|
|
|
"bytes"
|
2022-01-15 00:57:59 +00:00
|
|
|
"io"
|
|
|
|
|
2022-07-27 02:26:22 +00:00
|
|
|
"github.com/goccy/go-json"
|
2022-01-15 00:57:59 +00:00
|
|
|
yaml "gopkg.in/yaml.v3"
|
|
|
|
)
|
|
|
|
|
|
|
|
type jsonEncoder struct {
|
|
|
|
indentString string
|
2022-05-22 11:19:59 +00:00
|
|
|
colorise bool
|
2022-11-10 08:21:18 +00:00
|
|
|
UnwrapScalar bool
|
2022-01-15 00:57:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func mapKeysToStrings(node *yaml.Node) {
|
|
|
|
|
|
|
|
if node.Kind == yaml.MappingNode {
|
|
|
|
for index, child := range node.Content {
|
|
|
|
if index%2 == 0 { // its a map key
|
|
|
|
child.Tag = "!!str"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, child := range node.Content {
|
|
|
|
mapKeysToStrings(child)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-10 08:21:18 +00:00
|
|
|
func NewJSONEncoder(indent int, colorise bool, unwrapScalar bool) Encoder {
|
2022-01-15 00:57:59 +00:00
|
|
|
var indentString = ""
|
|
|
|
|
|
|
|
for index := 0; index < indent; index++ {
|
|
|
|
indentString = indentString + " "
|
|
|
|
}
|
|
|
|
|
2022-11-10 08:21:18 +00:00
|
|
|
return &jsonEncoder{indentString, colorise, unwrapScalar}
|
2022-01-15 00:57:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (je *jsonEncoder) CanHandleAliases() bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (je *jsonEncoder) PrintDocumentSeparator(writer io.Writer) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (je *jsonEncoder) PrintLeadingContent(writer io.Writer, content string) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (je *jsonEncoder) Encode(writer io.Writer, node *yaml.Node) error {
|
2022-05-22 11:19:59 +00:00
|
|
|
|
2022-11-10 08:21:18 +00:00
|
|
|
if node.Kind == yaml.ScalarNode && je.UnwrapScalar {
|
|
|
|
return writeString(writer, node.Value+"\n")
|
|
|
|
}
|
|
|
|
|
2022-05-22 11:19:59 +00:00
|
|
|
destination := writer
|
|
|
|
tempBuffer := bytes.NewBuffer(nil)
|
|
|
|
if je.colorise {
|
|
|
|
destination = tempBuffer
|
|
|
|
}
|
|
|
|
|
|
|
|
var encoder = json.NewEncoder(destination)
|
2022-01-15 00:57:59 +00:00
|
|
|
encoder.SetEscapeHTML(false) // do not escape html chars e.g. &, <, >
|
|
|
|
encoder.SetIndent("", je.indentString)
|
|
|
|
|
|
|
|
var dataBucket orderedMap
|
|
|
|
// firstly, convert all map keys to strings
|
|
|
|
mapKeysToStrings(node)
|
|
|
|
errorDecoding := node.Decode(&dataBucket)
|
|
|
|
if errorDecoding != nil {
|
|
|
|
return errorDecoding
|
|
|
|
}
|
2022-05-22 11:19:59 +00:00
|
|
|
err := encoder.Encode(dataBucket)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if je.colorise {
|
|
|
|
return colorizeAndPrint(tempBuffer.Bytes(), writer)
|
|
|
|
}
|
|
|
|
return nil
|
2022-01-15 00:57:59 +00:00
|
|
|
}
|