35ca80abe6
kpod ps lists the containers currently stored Displays the list of containers Signed-off-by: umohnani8 <umohnani@redhat.com>
132 lines
2.7 KiB
Go
132 lines
2.7 KiB
Go
package formats
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"os"
|
|
"strings"
|
|
"text/tabwriter"
|
|
"text/template"
|
|
|
|
"github.com/ghodss/yaml"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
const (
|
|
// JSONString const to save on duplicate variable names
|
|
JSONString = "json"
|
|
// IDString const to save on duplicates for Go templates
|
|
IDString = "{{.ID}}"
|
|
)
|
|
|
|
// Writer interface for outputs
|
|
type Writer interface {
|
|
Out() error
|
|
}
|
|
|
|
// JSONStructArray for JSON output
|
|
type JSONStructArray struct {
|
|
Output []interface{}
|
|
}
|
|
|
|
// StdoutTemplateArray for Go template output
|
|
type StdoutTemplateArray struct {
|
|
Output []interface{}
|
|
Template string
|
|
Fields map[string]string
|
|
}
|
|
|
|
// JSONStruct for JSON output
|
|
type JSONStruct struct {
|
|
Output interface{}
|
|
}
|
|
|
|
// StdoutTemplate for Go template output
|
|
type StdoutTemplate struct {
|
|
Output interface{}
|
|
Template string
|
|
Fields map[string]string
|
|
}
|
|
|
|
// YAMLStruct for YAML output
|
|
type YAMLStruct struct {
|
|
Output interface{}
|
|
}
|
|
|
|
// Out method for JSON Arrays
|
|
func (j JSONStructArray) Out() error {
|
|
data, err := json.MarshalIndent(j.Output, "", " ")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
fmt.Printf("%s\n", data)
|
|
return nil
|
|
}
|
|
|
|
// Out method for Go templates
|
|
func (t StdoutTemplateArray) Out() error {
|
|
w := tabwriter.NewWriter(os.Stdout, 0, 0, 3, ' ', 0)
|
|
if strings.HasPrefix(t.Template, "table") {
|
|
// replace any spaces with tabs in template so that tabwriter can align it
|
|
t.Template = strings.Replace(strings.TrimSpace(t.Template[5:]), " ", "\t", -1)
|
|
headerTmpl, err := template.New("header").Funcs(headerFunctions).Parse(t.Template)
|
|
if err != nil {
|
|
return errors.Wrapf(err, "Template parsing error")
|
|
}
|
|
err = headerTmpl.Execute(w, t.Fields)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
fmt.Fprintln(w, "")
|
|
}
|
|
t.Template = strings.Replace(t.Template, " ", "\t", -1)
|
|
tmpl, err := template.New("image").Funcs(basicFunctions).Parse(t.Template)
|
|
if err != nil {
|
|
return errors.Wrapf(err, "Template parsing error")
|
|
}
|
|
for _, img := range t.Output {
|
|
basicTmpl := tmpl.Funcs(basicFunctions)
|
|
err = basicTmpl.Execute(w, img)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
fmt.Fprintln(w, "")
|
|
}
|
|
return w.Flush()
|
|
}
|
|
|
|
// Out method for JSON struct
|
|
func (j JSONStruct) Out() error {
|
|
data, err := json.MarshalIndent(j.Output, "", " ")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
fmt.Printf("%s\n", data)
|
|
return nil
|
|
}
|
|
|
|
//Out method for Go templates
|
|
func (t StdoutTemplate) Out() error {
|
|
tmpl, err := template.New("image").Parse(t.Template)
|
|
if err != nil {
|
|
return errors.Wrapf(err, "template parsing error")
|
|
}
|
|
err = tmpl.Execute(os.Stdout, t.Output)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
fmt.Println()
|
|
return nil
|
|
}
|
|
|
|
// Out method for YAML
|
|
func (y YAMLStruct) Out() error {
|
|
var buf []byte
|
|
var err error
|
|
buf, err = yaml.Marshal(y.Output)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
fmt.Println(string(buf))
|
|
return nil
|
|
}
|