/* Copyright The Helm Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package action import ( "encoding/json" "fmt" "io" "github.com/gosuri/uitable" "github.com/pkg/errors" "sigs.k8s.io/yaml" ) // OutputFormat is a type for capturing supported output formats type OutputFormat string const ( Table OutputFormat = "table" JSON OutputFormat = "json" YAML OutputFormat = "yaml" ) // ErrInvalidFormatType is returned when an unsupported format type is used var ErrInvalidFormatType = fmt.Errorf("invalid format type") // String returns the string reprsentation of the OutputFormat func (o OutputFormat) String() string { return string(o) } // Write the output in the given format to the io.Writer. Unsupported formats // will return an error func (o OutputFormat) Write(out io.Writer, w Writer) error { switch o { case Table: return w.WriteTable(out) case JSON: return w.WriteJSON(out) case YAML: return w.WriteYAML(out) } return ErrInvalidFormatType } // ParseOutputFormat takes a raw string and returns the matching OutputFormat. // If the format does not exists, ErrInvalidFormatType is returned func ParseOutputFormat(s string) (out OutputFormat, err error) { switch s { case Table.String(): out, err = Table, nil case JSON.String(): out, err = JSON, nil case YAML.String(): out, err = YAML, nil default: out, err = "", ErrInvalidFormatType } return } // Writer is an interface that any type can implement to write supported formats type Writer interface { // WriteTable will write tabular output into the given io.Writer, returning // an error if any occur WriteTable(out io.Writer) error // WriteJSON will write JSON formatted output into the given io.Writer, // returning an error if any occur WriteJSON(out io.Writer) error // WriteYAML will write YAML formatted output into the given io.Writer, // returning an error if any occur WriteYAML(out io.Writer) error } // EncodeJSON is a helper function to decorate any error message with a bit more // context and avoid writing the same code over and over for printers. func EncodeJSON(out io.Writer, obj interface{}) error { enc := json.NewEncoder(out) err := enc.Encode(obj) if err != nil { return errors.Wrap(err, "unable to write JSON output") } return nil } // EncodeYAML is a helper function to decorate any error message with a bit more // context and avoid writing the same code over and over for printers func EncodeYAML(out io.Writer, obj interface{}) error { raw, err := yaml.Marshal(obj) if err != nil { return errors.Wrap(err, "unable to write YAML output") } _, err = out.Write(raw) if err != nil { return errors.Wrap(err, "unable to write YAML output") } return nil } // EncodeTable is a helper function to decorate any error message with a bit // more context and avoid writing the same code over and over for printers func EncodeTable(out io.Writer, table *uitable.Table) error { raw := table.Bytes() raw = append(raw, []byte("\n")...) _, err := out.Write(raw) if err != nil { return errors.Wrap(err, "unable to write table output") } return nil }