yq/pkg/yqlib/printer.go

100 lines
2.7 KiB
Go
Raw Normal View History

2020-11-03 23:48:43 +00:00
package yqlib
import (
"bufio"
"container/list"
"io"
"gopkg.in/yaml.v3"
)
type Printer interface {
2020-11-13 02:19:54 +00:00
PrintResults(matchingNodes *list.List) error
2020-11-03 23:48:43 +00:00
}
type resultsPrinter struct {
outputToJSON bool
unwrapScalar bool
colorsEnabled bool
indent int
printDocSeparators bool
2020-11-13 02:19:54 +00:00
writer io.Writer
firstTimePrinting bool
2020-11-16 01:09:57 +00:00
previousDocIndex uint
2020-11-03 23:48:43 +00:00
}
2020-11-13 02:19:54 +00:00
func NewPrinter(writer io.Writer, outputToJSON bool, unwrapScalar bool, colorsEnabled bool, indent int, printDocSeparators bool) Printer {
return &resultsPrinter{
writer: writer,
outputToJSON: outputToJSON,
unwrapScalar: unwrapScalar,
colorsEnabled: colorsEnabled,
indent: indent,
printDocSeparators: printDocSeparators,
firstTimePrinting: true,
}
2020-11-03 23:48:43 +00:00
}
func (p *resultsPrinter) printNode(node *yaml.Node, writer io.Writer) error {
var encoder Encoder
if node.Kind == yaml.ScalarNode && p.unwrapScalar && !p.outputToJSON {
return p.writeString(writer, node.Value+"\n")
}
if p.outputToJSON {
encoder = NewJsonEncoder(writer, p.indent)
} else {
encoder = NewYamlEncoder(writer, p.indent, p.colorsEnabled)
}
return encoder.Encode(node)
}
func (p *resultsPrinter) writeString(writer io.Writer, txt string) error {
_, errorWriting := writer.Write([]byte(txt))
return errorWriting
}
2020-11-13 02:19:54 +00:00
func (p *resultsPrinter) PrintResults(matchingNodes *list.List) error {
2020-11-16 01:09:57 +00:00
log.Debug("PrintResults for %v matches", matchingNodes.Len())
2020-11-06 03:37:01 +00:00
var err error
if p.outputToJSON {
explodeOp := Operation{OperationType: Explode}
explodeNode := PathTreeNode{Operation: &explodeOp}
matchingNodes, err = treeNavigator.GetMatchingNodes(matchingNodes, &explodeNode)
if err != nil {
return err
}
}
2020-11-03 23:48:43 +00:00
2020-11-13 02:19:54 +00:00
bufferedWriter := bufio.NewWriter(p.writer)
2020-11-03 23:48:43 +00:00
defer safelyFlush(bufferedWriter)
if matchingNodes.Len() == 0 {
log.Debug("no matching results, nothing to print")
return nil
}
2020-11-16 01:09:57 +00:00
if p.firstTimePrinting {
p.previousDocIndex = matchingNodes.Front().Value.(*CandidateNode).Document
p.firstTimePrinting = false
}
2020-11-03 23:48:43 +00:00
for el := matchingNodes.Front(); el != nil; el = el.Next() {
mappedDoc := el.Value.(*CandidateNode)
2020-11-16 01:09:57 +00:00
log.Debug("-- print sep logic: p.firstTimePrinting: %v, previousDocIndex: %v, mappedDoc.Document: %v, printDocSeparators: %v", p.firstTimePrinting, p.previousDocIndex, mappedDoc.Document, p.printDocSeparators)
if (p.previousDocIndex != mappedDoc.Document) && p.printDocSeparators {
log.Debug("-- writing doc sep")
2020-11-13 03:07:11 +00:00
if err := p.writeString(bufferedWriter, "---\n"); err != nil {
return err
}
2020-11-03 23:48:43 +00:00
}
if err := p.printNode(mappedDoc.Node, bufferedWriter); err != nil {
return err
}
2020-11-16 01:09:57 +00:00
p.previousDocIndex = mappedDoc.Document
2020-11-03 23:48:43 +00:00
}
return nil
}