mirror of
https://github.com/containers/skopeo.git
synced 2025-09-06 01:00:43 +00:00
Bumps [github.com/containers/common](https://github.com/containers/common) from 0.33.1 to 0.34.0. - [Release notes](https://github.com/containers/common/releases) - [Commits](https://github.com/containers/common/compare/v0.33.1...v0.34.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
57 lines
1.4 KiB
Go
57 lines
1.4 KiB
Go
/*
|
|
Package report provides helper structs/methods/funcs for formatting output
|
|
|
|
To format output for an array of structs:
|
|
|
|
w := report.NewWriterDefault(os.Stdout)
|
|
defer w.Flush()
|
|
|
|
headers := report.Headers(struct {
|
|
ID string
|
|
}{}, nil)
|
|
t, _ := report.NewTemplate("command name").Parse("{{range .}}{{.ID}}{{end}}")
|
|
t.Execute(t, headers)
|
|
t.Execute(t, map[string]string{
|
|
"ID":"fa85da03b40141899f3af3de6d27852b",
|
|
})
|
|
// t.IsTable() == false
|
|
|
|
or
|
|
|
|
w := report.NewWriterDefault(os.Stdout)
|
|
defer w.Flush()
|
|
|
|
headers := report.Headers(struct {
|
|
CID string
|
|
}{}, map[string]string{
|
|
"CID":"ID"})
|
|
t, _ := report.NewTemplate("command name").Parse("table {{.CID}}")
|
|
t.Execute(t, headers)
|
|
t.Execute(t,map[string]string{
|
|
"CID":"fa85da03b40141899f3af3de6d27852b",
|
|
})
|
|
// t.IsTable() == true
|
|
|
|
Helpers:
|
|
|
|
if report.IsJSON(cmd.Flag("format").Value.String()) {
|
|
... process JSON and output
|
|
}
|
|
|
|
Template Functions:
|
|
|
|
The following template functions are added to the template when parsed:
|
|
- join strings.Join, {{join .Field separator}}
|
|
- lower strings.ToLower {{ .Field | lower }}
|
|
- split strings.Split {{ .Field | split }}
|
|
- title strings.Title {{ .Field | title }}
|
|
- upper strings.ToUpper {{ .Field | upper }}
|
|
|
|
report.Funcs() may be used to add additional template functions.
|
|
Adding an existing function will replace that function for the life of that template.
|
|
|
|
|
|
Note: Your code should not ignore errors
|
|
*/
|
|
package report
|