restic/src/cmds/restic/cmd_snapshots.go

153 lines
2.8 KiB
Go
Raw Normal View History

2014-08-04 22:55:54 +02:00
package main
import (
"fmt"
2014-11-25 22:38:14 +01:00
"io"
"os"
2016-09-01 22:17:37 +02:00
"restic/errors"
"sort"
"strings"
2014-08-04 22:55:54 +02:00
"restic"
2014-08-04 22:55:54 +02:00
)
2014-11-25 22:38:14 +01:00
type Table struct {
Header string
Rows [][]interface{}
RowFormat string
}
func NewTable() Table {
return Table{
Rows: [][]interface{}{},
}
}
2014-12-22 11:21:14 +01:00
func (t Table) Write(w io.Writer) error {
2014-11-25 22:38:14 +01:00
_, 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
}
const TimeFormat = "2006-01-02 15:04:05"
type CmdSnapshots struct {
2016-05-10 22:12:33 +02:00
Host string `short:"h" long:"host" description:"Host Filter"`
Paths []string `short:"p" long:"path" description:"Path Filter (absolute path) (can be specified multiple times)"`
global *GlobalOptions
}
2014-12-07 16:30:52 +01:00
2014-11-30 22:39:58 +01:00
func init() {
2014-12-07 16:30:52 +01:00
_, err := parser.AddCommand("snapshots",
"show snapshots",
"The snapshots command lists all snapshots stored in a repository",
&CmdSnapshots{global: &globalOpts})
2014-12-07 16:30:52 +01:00
if err != nil {
panic(err)
}
}
func (cmd CmdSnapshots) Usage() string {
return ""
2014-11-30 22:39:58 +01:00
}
2014-12-07 16:30:52 +01:00
func (cmd CmdSnapshots) Execute(args []string) error {
2014-08-04 22:55:54 +02:00
if len(args) != 0 {
2016-09-01 22:17:37 +02:00
return errors.Fatalf("wrong number of arguments, usage: %s", cmd.Usage())
2014-12-07 16:30:52 +01:00
}
repo, err := cmd.global.OpenRepository()
2014-12-07 16:30:52 +01:00
if err != nil {
return err
2014-08-04 22:55:54 +02:00
}
lock, err := lockRepo(repo)
defer unlockRepo(lock)
2015-06-27 14:40:18 +02:00
if err != nil {
return err
}
2014-11-25 22:38:14 +01:00
tab := NewTable()
tab.Header = fmt.Sprintf("%-8s %-19s %-10s %-10s %s", "ID", "Date", "Host", "Tags", "Directory")
tab.RowFormat = "%-8s %-19s %-10s %-10s %s"
2015-03-28 11:50:23 +01:00
done := make(chan struct{})
defer close(done)
2014-12-05 21:45:49 +01:00
list := []*restic.Snapshot{}
2016-09-01 16:04:29 +02:00
for id := range repo.List(restic.SnapshotFile, done) {
sn, err := restic.LoadSnapshot(repo, id)
if err != nil {
fmt.Fprintf(os.Stderr, "error loading snapshot %s: %v\n", id, err)
2015-03-28 11:50:23 +01:00
continue
}
2016-05-10 21:51:56 +02:00
if restic.SamePaths(sn.Paths, cmd.Paths) && (cmd.Host == "" || cmd.Host == sn.Hostname) {
pos := sort.Search(len(list), func(i int) bool {
return list[i].Time.After(sn.Time)
})
if pos < len(list) {
list = append(list, nil)
copy(list[pos+1:], list[pos:])
list[pos] = sn
} else {
list = append(list, sn)
}
}
2015-03-28 11:50:23 +01:00
}
2014-08-04 22:55:54 +02:00
for _, sn := range list {
2015-03-02 14:48:47 +01:00
if len(sn.Paths) == 0 {
continue
}
firstTag := ""
if len(sn.Tags) > 0 {
firstTag = sn.Tags[0]
}
tab.Rows = append(tab.Rows, []interface{}{sn.ID().Str(), sn.Time.Format(TimeFormat), sn.Hostname, firstTag, sn.Paths[0]})
rows := len(sn.Paths)
if len(sn.Tags) > rows {
rows = len(sn.Tags)
}
for i := 1; i < rows; i++ {
path := ""
if len(sn.Paths) > i {
path = sn.Paths[i]
2015-03-02 14:48:47 +01:00
}
tag := ""
if len(sn.Tags) > i {
tag = sn.Tags[i]
}
tab.Rows = append(tab.Rows, []interface{}{"", "", "", tag, path})
2015-03-02 14:48:47 +01:00
}
}
2014-12-22 11:21:14 +01:00
tab.Write(os.Stdout)
2014-11-25 22:38:14 +01:00
2014-08-04 22:55:54 +02:00
return nil
}