mirror of
https://github.com/octoleo/restic.git
synced 2024-11-25 14:17:42 +00:00
64 lines
1.0 KiB
Go
64 lines
1.0 KiB
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"strings"
|
|
)
|
|
|
|
// Table contains data for a table to be printed.
|
|
type Table struct {
|
|
Header string
|
|
Rows [][]interface{}
|
|
Footer string
|
|
|
|
RowFormat string
|
|
}
|
|
|
|
// NewTable initializes a new Table.
|
|
func NewTable() Table {
|
|
return Table{
|
|
Rows: [][]interface{}{},
|
|
}
|
|
}
|
|
|
|
func (t Table) printSeparationLine(w io.Writer) error {
|
|
_, err := fmt.Fprintln(w, strings.Repeat("-", 70))
|
|
return err
|
|
}
|
|
|
|
// Write prints the table to w.
|
|
func (t Table) Write(w io.Writer) error {
|
|
_, err := fmt.Fprintln(w, t.Header)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
err = t.printSeparationLine(w)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
for _, row := range t.Rows {
|
|
_, err = fmt.Fprintf(w, t.RowFormat+"\n", row...)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
err = t.printSeparationLine(w)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
_, err = fmt.Fprintln(w, t.Footer)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// TimeFormat is the format used for all timestamps printed by restic.
|
|
const TimeFormat = "2006-01-02 15:04:05"
|