2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-03 01:20:49 +00:00
restic/cmd/restic/cmd_snapshots.go

158 lines
2.8 KiB
Go
Raw Normal View History

2014-08-04 20:55:54 +00:00
package main
import (
"fmt"
2014-11-25 21:38:14 +00:00
"io"
"os"
"sort"
"strings"
"time"
2014-08-04 20:55:54 +00:00
2014-12-05 20:45:49 +00:00
"github.com/restic/restic"
"github.com/restic/restic/backend"
2014-08-04 20:55:54 +00:00
)
const (
minute = 60
hour = 60 * minute
day = 24 * hour
week = 7 * day
)
2014-11-25 21:38:14 +00:00
type Table struct {
Header string
Rows [][]interface{}
RowFormat string
}
func NewTable() Table {
return Table{
Rows: [][]interface{}{},
}
}
2014-12-22 10:21:14 +00:00
func (t Table) Write(w io.Writer) error {
2014-11-25 21:38:14 +00: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"
func reltime(t time.Time) string {
sec := uint64(time.Since(t).Seconds())
switch {
case sec > week:
return t.Format(TimeFormat)
case sec > day:
return fmt.Sprintf("%d days ago", sec/day)
case sec > hour:
return fmt.Sprintf("%d hours ago", sec/hour)
case sec > minute:
return fmt.Sprintf("%d minutes ago", sec/minute)
default:
return fmt.Sprintf("%d seconds ago", sec)
}
}
2014-08-04 20:55:54 +00:00
type CmdSnapshots struct {
global *GlobalOptions
}
2014-12-07 15:30:52 +00:00
2014-11-30 21:39:58 +00:00
func init() {
2014-12-07 15:30:52 +00:00
_, err := parser.AddCommand("snapshots",
"show snapshots",
"The snapshots command lists all snapshots stored in a repository",
&CmdSnapshots{global: &globalOpts})
2014-12-07 15:30:52 +00:00
if err != nil {
panic(err)
}
}
func (cmd CmdSnapshots) Usage() string {
return ""
2014-11-30 21:39:58 +00:00
}
2014-12-07 15:30:52 +00:00
func (cmd CmdSnapshots) Execute(args []string) error {
2014-08-04 20:55:54 +00:00
if len(args) != 0 {
2014-12-07 15:30:52 +00:00
return fmt.Errorf("wrong number of arguments, usage: %s", cmd.Usage())
}
repo, err := cmd.global.OpenRepository()
2014-12-07 15:30:52 +00:00
if err != nil {
return err
2014-08-04 20:55:54 +00:00
}
lock, err := lockRepo(repo)
defer unlockRepo(lock)
2015-06-27 12:40:18 +00:00
if err != nil {
return err
}
2014-11-25 21:38:14 +00:00
tab := NewTable()
tab.Header = fmt.Sprintf("%-8s %-19s %-10s %s", "ID", "Date", "Source", "Directory")
2014-11-25 21:38:14 +00:00
tab.RowFormat = "%-8s %-19s %-10s %s"
2015-03-28 10:50:23 +00:00
done := make(chan struct{})
defer close(done)
2014-12-05 20:45:49 +00:00
list := []*restic.Snapshot{}
for id := range repo.List(backend.Snapshot, 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 10:50:23 +00:00
continue
}
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 10:50:23 +00:00
}
2014-08-04 20:55:54 +00:00
plen, err := repo.PrefixLength(backend.Snapshot)
2014-11-25 21:38:14 +00:00
if err != nil {
return err
}
for _, sn := range list {
2015-03-02 13:48:47 +00:00
if len(sn.Paths) == 0 {
continue
}
2015-03-28 15:15:48 +00:00
tab.Rows = append(tab.Rows, []interface{}{sn.ID()[:plen/2], sn.Time.Format(TimeFormat), sn.Hostname, sn.Paths[0]})
2015-03-02 13:48:47 +00:00
if len(sn.Paths) > 1 {
for _, path := range sn.Paths {
tab.Rows = append(tab.Rows, []interface{}{"", "", "", path})
}
}
}
2014-12-22 10:21:14 +00:00
tab.Write(os.Stdout)
2014-11-25 21:38:14 +00:00
2014-08-04 20:55:54 +00:00
return nil
}