mirror of
https://github.com/neilotoole/sq.git
synced 2024-12-18 21:52:28 +03:00
7c56377b40
* Field alignment
113 lines
3.0 KiB
Go
113 lines
3.0 KiB
Go
package yamlw
|
|
|
|
import (
|
|
"io"
|
|
|
|
yamlp "github.com/goccy/go-yaml/printer"
|
|
"github.com/samber/lo"
|
|
|
|
"github.com/neilotoole/sq/cli/output"
|
|
"github.com/neilotoole/sq/libsq/driver"
|
|
"github.com/neilotoole/sq/libsq/source/location"
|
|
"github.com/neilotoole/sq/libsq/source/metadata"
|
|
)
|
|
|
|
var _ output.MetadataWriter = (*mdWriter)(nil)
|
|
|
|
// mdWriter implements output.MetadataWriter for YAML.
|
|
type mdWriter struct {
|
|
out io.Writer
|
|
pr *output.Printing
|
|
yp yamlp.Printer
|
|
}
|
|
|
|
// NewMetadataWriter returns a new output.MetadataWriter instance
|
|
// that outputs metadata in JSON.
|
|
func NewMetadataWriter(out io.Writer, pr *output.Printing) output.MetadataWriter {
|
|
return &mdWriter{out: out, pr: pr, yp: newPrinter(pr)}
|
|
}
|
|
|
|
// DriverMetadata implements output.MetadataWriter.
|
|
func (w *mdWriter) DriverMetadata(md []driver.Metadata) error {
|
|
return writeYAML(w.out, w.yp, md)
|
|
}
|
|
|
|
// TableMetadata implements output.MetadataWriter.
|
|
func (w *mdWriter) TableMetadata(md *metadata.Table) error {
|
|
return writeYAML(w.out, w.yp, md)
|
|
}
|
|
|
|
// SourceMetadata implements output.MetadataWriter.
|
|
func (w *mdWriter) SourceMetadata(md *metadata.Source, showSchema bool) error {
|
|
md2 := *md // Shallow copy is fine
|
|
md2.Location = location.Redact(md2.Location)
|
|
|
|
if showSchema {
|
|
return writeYAML(w.out, w.yp, &md2)
|
|
}
|
|
|
|
// Don't render "tables", "table_count", and "view_count"
|
|
type mdNoSchema struct {
|
|
metadata.Source `yaml:",omitempty,inline"`
|
|
Tables *[]*metadata.Table `yaml:"tables,omitempty"`
|
|
TableCount *int64 `yaml:"table_count,omitempty"`
|
|
ViewCount *int64 `yaml:"view_count,omitempty"`
|
|
}
|
|
|
|
return writeYAML(w.out, w.yp, &mdNoSchema{Source: md2})
|
|
}
|
|
|
|
// DBProperties implements output.MetadataWriter.
|
|
func (w *mdWriter) DBProperties(props map[string]any) error {
|
|
if len(props) == 0 {
|
|
return nil
|
|
}
|
|
|
|
return writeYAML(w.out, w.yp, props)
|
|
}
|
|
|
|
// Catalogs implements output.MetadataWriter.
|
|
func (w *mdWriter) Catalogs(currentCatalog string, catalogs []string) error {
|
|
if len(catalogs) == 0 {
|
|
return nil
|
|
}
|
|
|
|
type cat struct { //nolint:govet // field alignment
|
|
Name string `yaml:"catalog"`
|
|
Active *bool `yaml:"active,omitempty"`
|
|
}
|
|
|
|
cats := make([]cat, len(catalogs))
|
|
for i, c := range catalogs {
|
|
cats[i] = cat{Name: c}
|
|
if c == currentCatalog {
|
|
cats[i].Active = lo.ToPtr(true)
|
|
}
|
|
}
|
|
return writeYAML(w.out, w.yp, cats)
|
|
}
|
|
|
|
// Schemata implements output.MetadataWriter.
|
|
func (w *mdWriter) Schemata(currentSchema string, schemas []*metadata.Schema) error {
|
|
if len(schemas) == 0 {
|
|
return nil
|
|
}
|
|
|
|
// We wrap each schema in a struct that has an "active" field,
|
|
// because we need to show the current schema in the output.
|
|
type wrapper struct { //nolint:govet // field alignment
|
|
metadata.Schema `yaml:",omitempty,inline"`
|
|
Active *bool `yaml:"active,omitempty"`
|
|
}
|
|
|
|
a := make([]*wrapper, len(schemas))
|
|
for i, s := range schemas {
|
|
a[i] = &wrapper{Schema: *s}
|
|
if s.Name == currentSchema {
|
|
a[i].Active = lo.ToPtr(true)
|
|
}
|
|
}
|
|
|
|
return writeYAML(w.out, w.yp, a)
|
|
}
|