restic/cmd/khepri/cmd_backup.go

164 lines
3.7 KiB
Go
Raw Normal View History

2014-04-27 22:00:15 +00:00
package main
import (
"errors"
"fmt"
2014-09-23 20:39:12 +00:00
"os"
"strings"
2014-11-16 21:50:20 +00:00
"time"
2014-04-27 22:00:15 +00:00
2014-07-28 18:20:32 +00:00
"github.com/fd0/khepri"
2014-09-23 20:39:12 +00:00
"github.com/fd0/khepri/backend"
"golang.org/x/crypto/ssh/terminal"
2014-04-27 22:00:15 +00:00
)
func format_bytes(c uint64) string {
b := float64(c)
switch {
case c > 1<<40:
2014-11-23 13:53:46 +00:00
return fmt.Sprintf("%.3f TiB", b/(1<<40))
case c > 1<<30:
2014-11-23 13:53:46 +00:00
return fmt.Sprintf("%.3f GiB", b/(1<<30))
case c > 1<<20:
2014-11-23 13:53:46 +00:00
return fmt.Sprintf("%.3f MiB", b/(1<<20))
case c > 1<<10:
2014-11-23 13:53:46 +00:00
return fmt.Sprintf("%.3f KiB", b/(1<<10))
default:
2014-11-23 11:05:43 +00:00
return fmt.Sprintf("%dB", c)
}
}
2014-11-23 11:05:43 +00:00
func format_duration(sec uint64) string {
hours := sec / 3600
sec -= hours * 3600
min := sec / 60
sec -= min * 60
if hours > 0 {
return fmt.Sprintf("%d:%02d:%02d", hours, min, sec)
}
return fmt.Sprintf("%d:%02d", min, sec)
}
func print_tree2(indent int, t *khepri.Tree) {
for _, node := range *t {
if node.Tree != nil {
fmt.Printf("%s%s/\n", strings.Repeat(" ", indent), node.Name)
print_tree2(indent+1, node.Tree)
} else {
fmt.Printf("%s%s\n", strings.Repeat(" ", indent), node.Name)
}
}
}
2014-09-23 20:39:12 +00:00
func commandBackup(be backend.Server, key *khepri.Key, args []string) error {
2014-04-27 22:00:15 +00:00
if len(args) != 1 {
2014-09-23 20:39:12 +00:00
return errors.New("usage: backup [dir|file]")
2014-04-27 22:00:15 +00:00
}
target := args[0]
2014-09-23 20:39:12 +00:00
arch, err := khepri.NewArchiver(be, key)
2014-08-11 20:47:24 +00:00
if err != nil {
2014-09-23 20:39:12 +00:00
fmt.Fprintf(os.Stderr, "err: %v\n", err)
2014-08-11 20:47:24 +00:00
}
2014-09-23 20:39:12 +00:00
arch.Error = func(dir string, fi os.FileInfo, err error) error {
2014-11-23 11:14:56 +00:00
// TODO: make ignoring errors configurable
fmt.Fprintf(os.Stderr, "\nerror for %s: %v\n%v\n", dir, err, fi)
return nil
2014-04-27 22:00:15 +00:00
}
fmt.Printf("scanning %s\n", target)
if terminal.IsTerminal(int(os.Stdout.Fd())) {
2014-11-23 11:05:43 +00:00
ch := make(chan khepri.Stats, 20)
arch.ScannerStats = ch
go func(ch <-chan khepri.Stats) {
for stats := range ch {
fmt.Printf("\r%6d directories, %6d files, %14s", stats.Directories, stats.Files, format_bytes(stats.Bytes))
}
}(ch)
}
fmt.Printf("done\n")
// TODO: add filter
// arch.Filter = func(dir string, fi os.FileInfo) bool {
// return true
// }
t, err := arch.LoadTree(target)
2014-08-04 20:46:14 +00:00
if err != nil {
fmt.Fprintf(os.Stderr, "error: %v\n", err)
2014-09-23 20:39:12 +00:00
return err
2014-08-04 20:46:14 +00:00
}
fmt.Printf("\r%6d directories, %6d files, %14s\n", arch.Stats.Directories, arch.Stats.Files, format_bytes(arch.Stats.Bytes))
stats := khepri.Stats{}
2014-11-23 11:05:43 +00:00
start := time.Now()
if terminal.IsTerminal(int(os.Stdout.Fd())) {
2014-11-23 11:05:43 +00:00
ch := make(chan khepri.Stats, 20)
arch.SaveStats = ch
2014-11-23 11:05:43 +00:00
ticker := time.NewTicker(time.Second)
var eta, bps uint64
go func(ch <-chan khepri.Stats) {
status := func(sec uint64) {
2014-11-23 13:34:18 +00:00
fmt.Printf("\x1b[2K\r[%s] %3.2f%% %s/s %s / %s ETA %s",
format_duration(sec),
float64(stats.Bytes)/float64(arch.Stats.Bytes)*100,
2014-11-23 11:05:43 +00:00
format_bytes(bps),
format_bytes(stats.Bytes), format_bytes(arch.Stats.Bytes),
format_duration(eta))
}
defer ticker.Stop()
for {
select {
case s, ok := <-ch:
if !ok {
return
}
stats.Files += s.Files
stats.Directories += s.Directories
stats.Other += s.Other
stats.Bytes += s.Bytes
status(uint64(time.Since(start) / time.Second))
2014-11-23 11:05:43 +00:00
case <-ticker.C:
sec := uint64(time.Since(start) / time.Second)
bps = stats.Bytes / sec
2014-11-23 11:05:43 +00:00
if bps > 0 {
eta = (arch.Stats.Bytes - stats.Bytes) / bps
}
status(sec)
2014-11-23 11:05:43 +00:00
}
}
}(ch)
}
sn, id, err := arch.Snapshot(target, t)
if err != nil {
fmt.Fprintf(os.Stderr, "error: %v\n", err)
}
if terminal.IsTerminal(int(os.Stdout.Fd())) {
// close channels so that the goroutines terminate
close(arch.SaveStats)
close(arch.ScannerStats)
}
fmt.Printf("\nsnapshot %s saved: %v\n", id, sn)
2014-11-16 21:50:20 +00:00
duration := time.Now().Sub(start)
fmt.Printf("duration: %s, %.2fMiB/s\n", duration, float64(arch.Stats.Bytes)/float64(duration/time.Second)/(1<<20))
2014-04-27 22:00:15 +00:00
return nil
}