sq/cli/output/jsonw/sourcewriter.go
Neil O'Toole 81f631e135
Refactoring (#206)
* Renamed source.Type to source.DriverType for clarity

* More renaming wrt source.DriverType

* Renamed output.Formatting to output.Printing
2023-04-21 21:36:32 -06:00

121 lines
2.8 KiB
Go

package jsonw
import (
"io"
"golang.org/x/exp/slices"
"github.com/neilotoole/sq/cli/output"
"github.com/neilotoole/sq/libsq/source"
)
var _ output.SourceWriter = (*sourceWriter)(nil)
type sourceWriter struct {
out io.Writer
pr *output.Printing
}
// NewSourceWriter returns a source writer that outputs source
// details in text table format.
func NewSourceWriter(out io.Writer, pr *output.Printing) output.SourceWriter {
return &sourceWriter{out: out, pr: pr}
}
// Collection implements output.SourceWriter.
func (w *sourceWriter) Collection(coll *source.Collection) error {
if coll == nil {
return nil
}
// This is a bit hacky. Basically we want to JSON-print coll.Data().
// But, we want to do it just for the active group.
// So, our hack is that we clone the coll, and remove any
// sources that are not in the active group.
//
// This whole function, including what it outputs, should be revisited.
coll = coll.Clone()
group := coll.ActiveGroup()
// We store the active src handle
activeHandle := coll.ActiveHandle()
handles, err := coll.HandlesInGroup(group)
if err != nil {
return err
}
srcs := coll.Sources()
for _, src := range srcs {
if !slices.Contains(handles, src.Handle) {
if err = coll.Remove(src.Handle); err != nil {
// Should never happen
return err
}
}
}
srcs = coll.Sources()
for i := range srcs {
srcs[i].Location = srcs[i].RedactedLocation()
}
// HACK: we set the activeHandle back, even though that
// active source may have been removed (because it is not in
// the active group). This whole thing is a mess.
_, _ = coll.SetActive(activeHandle, true)
return writeJSON(w.out, w.pr, coll.Data())
}
// Source implements output.SourceWriter.
func (w *sourceWriter) Source(_ *source.Collection, src *source.Source) error {
if src == nil {
return nil
}
src = src.Clone()
src.Location = src.RedactedLocation()
return writeJSON(w.out, w.pr, src)
}
// Removed implements output.SourceWriter.
func (w *sourceWriter) Removed(srcs ...*source.Source) error {
if !w.pr.Verbose || len(srcs) == 0 {
return nil
}
srcs2 := make([]*source.Source, len(srcs))
for i := range srcs {
srcs2[i] = srcs[i].Clone()
srcs2[i].Location = srcs2[i].RedactedLocation()
}
return writeJSON(w.out, w.pr, srcs2)
}
// Group implements output.SourceWriter.
func (w *sourceWriter) Group(group *source.Group) error {
if group == nil {
return nil
}
group.RedactLocations()
return writeJSON(w.out, w.pr, group)
}
// SetActiveGroup implements output.SourceWriter.
func (w *sourceWriter) SetActiveGroup(group *source.Group) error {
if group == nil {
return nil
}
group.RedactLocations()
return writeJSON(w.out, w.pr, group)
}
// Groups implements output.SourceWriter.
func (w *sourceWriter) Groups(tree *source.Group) error {
tree.RedactLocations()
return writeJSON(w.out, w.pr, tree)
}