2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-04 01:50:48 +00:00
restic/cmd/khepri/cmd_backup.go

100 lines
1.7 KiB
Go
Raw Normal View History

2014-04-27 22:00:15 +00:00
package main
import (
"bytes"
"crypto/sha256"
"errors"
"fmt"
"io"
"log"
"os"
"path/filepath"
2014-07-28 18:20:32 +00:00
"github.com/fd0/khepri"
2014-04-27 22:00:15 +00:00
)
2014-07-28 18:20:32 +00:00
func hash(filename string) (khepri.ID, error) {
2014-04-27 22:00:15 +00:00
h := sha256.New()
f, err := os.Open(filename)
if err != nil {
return nil, err
}
io.Copy(h, f)
return h.Sum([]byte{}), nil
}
2014-07-28 18:20:32 +00:00
func archive_dir(repo *khepri.DirRepository, path string) (khepri.ID, error) {
2014-04-27 22:00:15 +00:00
log.Printf("archiving dir %q", path)
dir, err := os.Open(path)
if err != nil {
log.Printf("open(%q): %v\n", path, err)
return nil, err
}
entries, err := dir.Readdir(-1)
if err != nil {
log.Printf("readdir(%q): %v\n", path, err)
return nil, err
}
// use nil ID for empty directories
if len(entries) == 0 {
return nil, nil
}
2014-07-28 18:20:32 +00:00
t := khepri.NewTree()
2014-04-27 22:00:15 +00:00
for _, e := range entries {
2014-07-28 18:20:32 +00:00
node := khepri.NodeFromFileInfo(e)
2014-04-27 22:00:15 +00:00
2014-07-28 18:20:32 +00:00
var id khepri.ID
2014-04-27 22:00:15 +00:00
var err error
if e.IsDir() {
id, err = archive_dir(repo, filepath.Join(path, e.Name()))
} else {
id, err = repo.PutFile(filepath.Join(path, e.Name()))
}
node.Content = id
t.Nodes = append(t.Nodes, node)
if err != nil {
log.Printf(" error storing %q: %v\n", e.Name(), err)
continue
}
}
log.Printf(" dir %q: %v entries", path, len(t.Nodes))
var buf bytes.Buffer
t.Save(&buf)
2014-08-03 13:16:56 +00:00
id, err := repo.PutRaw(khepri.TYPE_BLOB, buf.Bytes())
2014-04-27 22:00:15 +00:00
if err != nil {
log.Printf("error saving tree to repo: %v", err)
}
log.Printf("tree for %q saved at %s", path, id)
return id, nil
}
2014-07-28 18:20:32 +00:00
func commandBackup(repo *khepri.DirRepository, args []string) error {
2014-04-27 22:00:15 +00:00
if len(args) != 1 {
return errors.New("usage: backup dir")
}
target := args[0]
id, err := archive_dir(repo, target)
if err != nil {
return err
}
fmt.Printf("%q archived as %v\n", target, id)
return nil
}