restic/cmd/restic/table.go

47 lines
768 B
Go
Raw Normal View History

2016-09-17 12:36:05 +02:00
package main
import (
"fmt"
"io"
"strings"
)
2016-09-27 20:22:01 +02:00
// Table contains data for a table to be printed.
2016-09-17 12:36:05 +02:00
type Table struct {
Header string
Rows [][]interface{}
RowFormat string
}
2016-09-27 20:22:01 +02:00
// NewTable initializes a new Table.
2016-09-17 12:36:05 +02:00
func NewTable() Table {
return Table{
Rows: [][]interface{}{},
}
}
2016-09-27 20:22:01 +02:00
// Write prints the table to w.
2016-09-17 12:36:05 +02:00
func (t Table) Write(w io.Writer) error {
_, err := fmt.Fprintln(w, t.Header)
if err != nil {
return err
}
_, err = fmt.Fprintln(w, strings.Repeat("-", 70))
if err != nil {
return err
}
for _, row := range t.Rows {
_, err = fmt.Fprintf(w, t.RowFormat+"\n", row...)
if err != nil {
return err
}
}
return nil
}
2016-09-27 20:22:01 +02:00
// TimeFormat is the format used for all timestamps printed by restic.
2016-09-17 12:36:05 +02:00
const TimeFormat = "2006-01-02 15:04:05"