1
0
mirror of https://github.com/restic/restic.git synced 2024-07-01 08:30:53 +02:00
restic/archiver.go

868 lines
20 KiB
Go
Raw Normal View History

2014-12-05 21:45:49 +01:00
package restic
2014-09-23 22:39:12 +02:00
import (
"encoding/json"
"errors"
"fmt"
"io"
2014-09-23 22:39:12 +02:00
"os"
2015-02-21 14:23:49 +01:00
"path/filepath"
2015-03-02 14:48:47 +01:00
"sort"
2014-11-16 22:50:20 +01:00
"sync"
2014-09-23 22:39:12 +02:00
2014-11-23 12:14:56 +01:00
"github.com/juju/arrar"
2014-12-05 21:45:49 +01:00
"github.com/restic/restic/backend"
"github.com/restic/restic/chunker"
2015-01-14 22:08:48 +01:00
"github.com/restic/restic/debug"
2015-02-15 14:44:54 +01:00
"github.com/restic/restic/pipe"
2014-09-23 22:39:12 +02:00
)
2014-11-16 22:50:20 +01:00
const (
2015-02-17 23:15:08 +01:00
maxConcurrentBlobs = 32
maxConcurrency = 10
2015-02-18 23:10:59 +01:00
maxConcurrencyPreload = 20
2015-02-09 23:38:50 +01:00
// chunkerBufSize is used in pool.go
chunkerBufSize = 512 * chunker.KiB
2014-11-16 22:50:20 +01:00
)
2014-09-23 22:39:12 +02:00
type Archiver struct {
s Server
m *Map
2015-03-09 22:26:39 +01:00
c *Cache
2014-09-23 22:39:12 +02:00
2014-11-22 22:05:39 +01:00
blobToken chan struct{}
2014-11-16 22:50:20 +01:00
2014-09-23 22:39:12 +02:00
Error func(dir string, fi os.FileInfo, err error) error
Filter func(item string, fi os.FileInfo) bool
}
2015-02-21 14:23:49 +01:00
func NewArchiver(s Server) (*Archiver, error) {
2014-09-23 22:39:12 +02:00
var err error
2014-11-16 22:50:20 +01:00
arch := &Archiver{
2014-12-21 17:02:49 +01:00
s: s,
2014-11-22 22:05:39 +01:00
blobToken: make(chan struct{}, maxConcurrentBlobs),
2014-11-16 22:50:20 +01:00
}
2015-02-15 14:44:54 +01:00
// fill blob token
2014-11-22 22:05:39 +01:00
for i := 0; i < maxConcurrentBlobs; i++ {
arch.blobToken <- struct{}{}
}
// create new map to store all blobs in
arch.m = NewMap()
2015-03-09 22:26:39 +01:00
// init cache
2015-03-14 12:10:08 +01:00
arch.c, err = NewCache(s)
2015-03-09 22:26:39 +01:00
if err != nil {
return nil, err
}
2014-09-23 22:39:12 +02:00
// abort on all errors
arch.Error = func(string, os.FileInfo, error) error { return err }
// allow all files
arch.Filter = func(string, os.FileInfo) bool { return true }
return arch, nil
}
// Cache returns the current cache for the Archiver.
func (arch *Archiver) Cache() *Cache {
return arch.c
}
2015-03-09 22:26:39 +01:00
// Preload loads all blobs for all cached snapshots.
func (arch *Archiver) Preload() error {
2015-03-28 11:50:23 +01:00
done := make(chan struct{})
defer close(done)
2015-02-22 00:09:57 +01:00
2015-03-28 11:50:23 +01:00
// list snapshots
2015-03-09 22:26:39 +01:00
// TODO: track seen tree ids, load trees that aren't in the set
2015-03-28 11:50:23 +01:00
snapshots := 0
for name := range arch.s.List(backend.Snapshot, done) {
id, err := backend.ParseID(name)
if err != nil {
debug.Log("Archiver.Preload", "unable to parse name %v as id: %v", name, err)
continue
}
m, err := arch.c.LoadMap(arch.s, id)
2015-03-09 22:26:39 +01:00
if err != nil {
debug.Log("Archiver.Preload", "blobs for snapshot %v not cached: %v", id.Str(), err)
continue
2015-02-17 23:38:40 +01:00
}
2015-02-17 22:39:44 +01:00
2015-03-09 22:26:39 +01:00
arch.m.Merge(m)
debug.Log("Archiver.Preload", "done loading cached blobs for snapshot %v", id.Str())
2015-03-28 11:50:23 +01:00
snapshots++
2015-03-09 22:26:39 +01:00
}
2015-02-17 23:38:40 +01:00
2015-03-28 11:50:23 +01:00
debug.Log("Archiver.Preload", "Loaded %v blobs from %v snapshots", arch.m.Len(), snapshots)
2015-03-09 22:26:39 +01:00
return nil
2015-02-17 22:39:44 +01:00
}
func (arch *Archiver) Save(t backend.Type, id backend.ID, length uint, rd io.Reader) (Blob, error) {
2015-01-14 22:08:48 +01:00
debug.Log("Archiver.Save", "Save(%v, %v)\n", t, id.Str())
// test if this blob is already known
blob, err := arch.m.FindID(id)
if err == nil {
2015-01-14 22:08:48 +01:00
debug.Log("Archiver.Save", "Save(%v, %v): reusing %v\n", t, id.Str(), blob.Storage.Str())
return blob, nil
}
2014-09-23 22:39:12 +02:00
// else encrypt and save data
blob, err = arch.s.SaveFrom(t, id, length, rd)
// store blob in storage map
smapblob := arch.m.Insert(blob)
// if the map has a different storage id for this plaintext blob, use that
// one and remove the other. This happens if the same plaintext blob was
// stored concurrently and finished earlier than this blob.
if blob.Storage.Compare(smapblob.Storage) != 0 {
2015-01-14 22:08:48 +01:00
debug.Log("Archiver.Save", "using other block, removing %v\n", blob.Storage.Str())
// remove the blob again
// TODO: implement a list of blobs in transport, so this doesn't happen so often
2015-03-28 11:50:23 +01:00
err = arch.s.Remove(t, blob.Storage.String())
if err != nil {
return Blob{}, err
}
2014-09-23 22:39:12 +02:00
}
2015-01-14 22:08:48 +01:00
debug.Log("Archiver.Save", "Save(%v, %v): new blob %v\n", t, id.Str(), blob)
return smapblob, nil
2014-09-23 22:39:12 +02:00
}
func (arch *Archiver) SaveTreeJSON(item interface{}) (Blob, error) {
// convert to json
data, err := json.Marshal(item)
// append newline
data = append(data, '\n')
2014-09-23 22:39:12 +02:00
if err != nil {
2014-11-21 21:21:44 +01:00
return Blob{}, err
2014-09-23 22:39:12 +02:00
}
// check if tree has been saved before
id := backend.Hash(data)
blob, err := arch.m.FindID(id)
2014-09-23 22:39:12 +02:00
// return the blob if we found it
if err == nil {
return blob, nil
}
2014-09-23 22:39:12 +02:00
// otherwise save the data
blob, err = arch.s.SaveJSON(backend.Tree, item)
2014-09-23 22:39:12 +02:00
if err != nil {
2014-11-21 21:21:44 +01:00
return Blob{}, err
2014-09-23 22:39:12 +02:00
}
// store blob in storage map
arch.m.Insert(blob)
2014-09-23 22:39:12 +02:00
return blob, nil
}
// SaveFile stores the content of the file on the backend as a Blob by calling
// Save for each chunk.
2015-02-21 14:23:49 +01:00
func (arch *Archiver) SaveFile(p *Progress, node *Node) (Blobs, error) {
2015-04-25 02:36:54 +02:00
file, err := node.OpenForReading()
defer file.Close()
2014-09-23 22:39:12 +02:00
if err != nil {
return nil, err
}
// check file again
fi, err := file.Stat()
if err != nil {
return nil, err
}
if fi.ModTime() != node.ModTime {
e2 := arch.Error(node.path, fi, errors.New("file was updated, using new version"))
if e2 == nil {
// create new node
n, err := NodeFromFileInfo(node.path, fi)
if err != nil {
2015-03-21 14:43:33 +01:00
debug.Log("Archiver.SaveFile", "NodeFromFileInfo returned error for %v: %v", node.path, err)
return nil, err
}
// copy node
*node = *n
}
}
var blobs Blobs
// store all chunks
2015-02-09 23:38:50 +01:00
chnker := GetChunker("archiver.SaveFile")
chnker.Reset(file, arch.s.ChunkerPolynomial())
chans := [](<-chan Blob){}
2015-02-09 23:38:50 +01:00
defer FreeChunker("archiver.SaveFile", chnker)
chunks := 0
for {
chunk, err := chnker.Next()
if err == io.EOF {
break
}
if err != nil {
return nil, arrar.Annotate(err, "SaveFile() chunker.Next()")
}
chunks++
// acquire token, start goroutine to save chunk
token := <-arch.blobToken
resCh := make(chan Blob, 1)
2014-11-22 22:05:39 +01:00
go func(ch chan<- Blob) {
blob, err := arch.Save(backend.Data, chunk.Digest, chunk.Length, chunk.Reader(file))
// TODO handle error
if err != nil {
panic(err)
}
2015-02-21 14:23:49 +01:00
p.Report(Stat{Bytes: blob.Size})
arch.blobToken <- token
ch <- blob
}(resCh)
2014-11-22 22:05:39 +01:00
chans = append(chans, resCh)
}
blobs = []Blob{}
for _, ch := range chans {
blobs = append(blobs, <-ch)
}
if len(blobs) != chunks {
return nil, fmt.Errorf("chunker returned %v chunks, but only %v blobs saved", chunks, len(blobs))
2014-09-23 22:39:12 +02:00
}
var bytes uint64
2014-09-23 22:39:12 +02:00
node.Content = make([]backend.ID, len(blobs))
debug.Log("Archiver.Save", "checking size for file %s", node.path)
2014-09-23 22:39:12 +02:00
for i, blob := range blobs {
node.Content[i] = blob.ID
bytes += blob.Size
debug.Log("Archiver.Save", " adding blob %s", blob)
}
if bytes != node.Size {
return nil, fmt.Errorf("errors saving node %q: saved %d bytes, wanted %d bytes", node.path, bytes, node.Size)
2014-09-23 22:39:12 +02:00
}
2015-01-14 22:08:48 +01:00
debug.Log("Archiver.SaveFile", "SaveFile(%q): %v\n", node.path, blobs)
return blobs, nil
2014-09-23 22:39:12 +02:00
}
2015-02-21 14:23:49 +01:00
func (arch *Archiver) saveTree(p *Progress, t *Tree) (Blob, error) {
2015-01-14 22:08:48 +01:00
debug.Log("Archiver.saveTree", "saveTree(%v)\n", t)
2014-11-16 22:50:20 +01:00
var wg sync.WaitGroup
// add all blobs to global map
arch.m.Merge(t.Map)
// TODO: do all this in parallel
for _, node := range t.Nodes {
if node.tree != nil {
2015-02-21 14:23:49 +01:00
b, err := arch.saveTree(p, node.tree)
if err != nil {
2014-11-21 21:21:44 +01:00
return Blob{}, err
}
node.Subtree = b.ID
t.Map.Insert(b)
2015-02-21 14:23:49 +01:00
p.Report(Stat{Dirs: 1})
} else if node.Type == "file" {
if len(node.Content) > 0 {
removeContent := false
// check content
for _, id := range node.Content {
blob, err := t.Map.FindID(id)
if err != nil {
2015-01-14 22:08:48 +01:00
debug.Log("Archiver.saveTree", "unable to find storage id for data blob %v", id.Str())
arch.Error(node.path, nil, fmt.Errorf("unable to find storage id for data blob %v", id.Str()))
removeContent = true
t.Map.DeleteID(id)
arch.m.DeleteID(id)
continue
}
2015-03-28 11:50:23 +01:00
if ok, err := arch.s.Test(backend.Data, blob.Storage.String()); !ok || err != nil {
2015-01-14 22:08:48 +01:00
debug.Log("Archiver.saveTree", "blob %v not in repository (error is %v)", blob, err)
arch.Error(node.path, nil, fmt.Errorf("blob %v not in repository (error is %v)", blob.Storage.Str(), err))
removeContent = true
t.Map.DeleteID(id)
arch.m.DeleteID(id)
}
}
if removeContent {
2015-01-14 22:08:48 +01:00
debug.Log("Archiver.saveTree", "removing content for %s", node.path)
node.Content = node.Content[:0]
}
}
if len(node.Content) == 0 {
// start goroutine
wg.Add(1)
go func(n *Node) {
defer wg.Done()
var blobs Blobs
2015-02-21 14:23:49 +01:00
blobs, n.err = arch.SaveFile(p, n)
for _, b := range blobs {
t.Map.Insert(b)
}
2015-02-21 14:23:49 +01:00
p.Report(Stat{Files: 1})
}(node)
}
2014-09-23 22:39:12 +02:00
}
}
2014-11-16 22:50:20 +01:00
wg.Wait()
usedIDs := backend.NewIDSet()
2014-12-01 00:06:29 +01:00
// check for invalid file nodes
for _, node := range t.Nodes {
if node.Type == "file" && node.Content == nil && node.err == nil {
2014-12-01 00:06:29 +01:00
return Blob{}, fmt.Errorf("node %v has empty content", node.Name)
}
// remember used hashes
if node.Type == "file" && node.Content != nil {
for _, id := range node.Content {
usedIDs.Insert(id)
}
}
if node.Type == "dir" && node.Subtree != nil {
usedIDs.Insert(node.Subtree)
}
if node.err != nil {
err := arch.Error(node.path, nil, node.err)
if err != nil {
return Blob{}, err
}
// save error message in node
node.Error = node.err.Error()
}
2014-12-01 00:06:29 +01:00
}
before := len(t.Map.IDs())
t.Map.Prune(usedIDs)
after := len(t.Map.IDs())
if before != after {
2015-01-14 22:08:48 +01:00
debug.Log("Archiver.saveTree", "pruned %d ids from map for tree %v\n", before-after, t)
}
blob, err := arch.SaveTreeJSON(t)
if err != nil {
2014-11-21 21:21:44 +01:00
return Blob{}, err
}
return blob, nil
}
2015-03-02 14:48:47 +01:00
func (arch *Archiver) fileWorker(wg *sync.WaitGroup, p *Progress, done <-chan struct{}, entCh <-chan pipe.Entry) {
2015-03-07 11:53:32 +01:00
defer func() {
debug.Log("Archiver.fileWorker", "done")
wg.Done()
}()
2015-03-02 14:48:47 +01:00
for {
select {
case e, ok := <-entCh:
if !ok {
// channel is closed
return
}
2015-03-07 11:53:32 +01:00
debug.Log("Archiver.fileWorker", "got job %v", e)
2015-03-15 12:20:30 +01:00
// check for errors
if e.Error() != nil {
debug.Log("Archiver.fileWorker", "job %v has errors: %v", e.Path(), e.Error())
// TODO: integrate error reporting
fmt.Fprintf(os.Stderr, "error for %v: %v\n", e.Path(), e.Error())
// ignore this file
e.Result() <- nil
p.Report(Stat{Files: 1})
continue
2015-03-15 12:20:30 +01:00
}
2015-03-07 11:53:32 +01:00
node, err := NodeFromFileInfo(e.Fullpath(), e.Info())
2015-03-02 14:48:47 +01:00
if err != nil {
2015-03-21 14:43:33 +01:00
// TODO: integrate error reporting
debug.Log("Archiver.fileWorker", "NodeFromFileInfo returned error for %v: %v", node.path, err)
e.Result() <- nil
p.Report(Stat{Files: 1})
continue
2015-03-02 14:48:47 +01:00
}
2015-03-07 11:53:32 +01:00
// try to use old node, if present
if e.Node != nil {
debug.Log("Archiver.fileWorker", " %v use old data", e.Path())
oldNode := e.Node.(*Node)
// check if all content is still available in the repository
contentMissing := false
for _, blob := range oldNode.blobs {
2015-03-28 11:50:23 +01:00
if ok, err := arch.s.Test(backend.Data, blob.Storage.String()); !ok || err != nil {
2015-03-07 11:53:32 +01:00
debug.Log("Archiver.fileWorker", " %v not using old data, %v (%v) is missing", e.Path(), blob.ID.Str(), blob.Storage.Str())
contentMissing = true
break
}
}
if !contentMissing {
node.Content = oldNode.Content
node.blobs = oldNode.blobs
debug.Log("Archiver.fileWorker", " %v content is complete", e.Path())
}
} else {
debug.Log("Archiver.fileWorker", " %v no old data", e.Path())
}
// otherwise read file normally
if node.Type == "file" && len(node.Content) == 0 {
debug.Log("Archiver.fileWorker", " read and save %v, content: %v", e.Path(), node.Content)
2015-03-02 14:48:47 +01:00
node.blobs, err = arch.SaveFile(p, node)
if err != nil {
// TODO: integrate error reporting
fmt.Fprintf(os.Stderr, "error for %v: %v\n", node.path, err)
// ignore this file
e.Result() <- nil
p.Report(Stat{Files: 1})
continue
2015-03-02 14:48:47 +01:00
}
2015-03-07 11:53:32 +01:00
} else {
// report old data size
p.Report(Stat{Bytes: node.Size})
2015-03-02 14:48:47 +01:00
}
2015-03-07 11:53:32 +01:00
debug.Log("Archiver.fileWorker", " processed %v, %d/%d blobs", e.Path(), len(node.Content), len(node.blobs))
e.Result() <- node
2015-03-02 14:48:47 +01:00
p.Report(Stat{Files: 1})
case <-done:
// pipeline was cancelled
return
}
}
2015-03-02 14:48:47 +01:00
}
2015-03-02 14:48:47 +01:00
func (arch *Archiver) dirWorker(wg *sync.WaitGroup, p *Progress, done <-chan struct{}, dirCh <-chan pipe.Dir) {
2015-03-07 11:53:32 +01:00
defer func() {
debug.Log("Archiver.dirWorker", "done")
wg.Done()
}()
2015-03-02 14:48:47 +01:00
for {
select {
case dir, ok := <-dirCh:
if !ok {
// channel is closed
return
}
2015-03-07 11:53:32 +01:00
debug.Log("Archiver.dirWorker", "save dir %v\n", dir.Path())
2015-03-02 14:48:47 +01:00
tree := NewTree()
2015-02-15 14:44:54 +01:00
2015-03-02 14:48:47 +01:00
// wait for all content
for _, ch := range dir.Entries {
res := <-ch
// if we get a nil pointer here, an error has happened while
// processing this entry. Ignore it for now.
if res == nil {
continue
}
// else insert node
node := res.(*Node)
2015-03-02 14:48:47 +01:00
tree.Insert(node)
2015-02-15 14:44:54 +01:00
2015-03-02 14:48:47 +01:00
if node.Type == "dir" {
2015-03-07 11:53:32 +01:00
debug.Log("Archiver.dirWorker", "got tree node for %s: %v", node.path, node.blobs)
2015-02-15 14:44:54 +01:00
}
// also store blob in tree map
2015-03-02 14:48:47 +01:00
for _, blob := range node.blobs {
tree.Map.Insert(blob)
2015-02-15 14:44:54 +01:00
}
2015-03-02 14:48:47 +01:00
}
2015-02-15 14:44:54 +01:00
var (
node *Node
err error
)
if dir.Path() == "" {
// if this is the top-level dir, only create a stub node
node = &Node{}
} else {
// else create note from path and fi
node, err = NodeFromFileInfo(dir.Path(), dir.Info())
if err != nil {
node.Error = err.Error()
dir.Result() <- node
continue
}
2015-03-02 14:48:47 +01:00
}
blob, err := arch.SaveTreeJSON(tree)
if err != nil {
panic(err)
2015-02-15 14:44:54 +01:00
}
2015-03-07 11:53:32 +01:00
debug.Log("Archiver.dirWorker", "save tree for %s: %v", dir.Path(), blob)
2015-03-02 14:48:47 +01:00
node.Subtree = blob.ID
node.blobs = Blobs{blob}
2015-03-07 11:53:32 +01:00
dir.Result() <- node
2015-03-02 14:48:47 +01:00
p.Report(Stat{Dirs: 1})
case <-done:
// pipeline was cancelled
return
2015-02-15 14:44:54 +01:00
}
}
2015-03-02 14:48:47 +01:00
}
2015-02-15 14:44:54 +01:00
2015-03-07 11:53:32 +01:00
type ArchivePipe struct {
Old <-chan WalkTreeJob
New <-chan pipe.Job
}
func copyJobs(done <-chan struct{}, in <-chan pipe.Job, out chan<- pipe.Job) {
i := in
o := out
o = nil
var (
j pipe.Job
ok bool
)
for {
select {
case <-done:
return
case j, ok = <-i:
if !ok {
// in ch closed, we're done
debug.Log("copyJobs", "in channel closed, we're done")
return
}
i = nil
o = out
case o <- j:
o = nil
i = in
}
}
}
type archiveJob struct {
hasOld bool
old WalkTreeJob
new pipe.Job
}
func (a *ArchivePipe) compare(done <-chan struct{}, out chan<- pipe.Job) {
defer func() {
close(out)
debug.Log("ArchivePipe.compare", "done")
}()
debug.Log("ArchivePipe.compare", "start")
var (
loadOld, loadNew bool = true, true
ok bool
oldJob WalkTreeJob
newJob pipe.Job
)
for {
if loadOld {
oldJob, ok = <-a.Old
// if the old channel is closed, just pass through the new jobs
if !ok {
debug.Log("ArchivePipe.compare", "old channel is closed, copy from new channel")
// handle remaining newJob
if !loadNew {
out <- archiveJob{new: newJob}.Copy()
}
copyJobs(done, a.New, out)
return
}
loadOld = false
}
if loadNew {
newJob, ok = <-a.New
// if the new channel is closed, there are no more files in the current snapshot, return
if !ok {
debug.Log("ArchivePipe.compare", "new channel is closed, we're done")
return
}
loadNew = false
}
debug.Log("ArchivePipe.compare", "old job: %v", oldJob.Path)
debug.Log("ArchivePipe.compare", "new job: %v", newJob.Path())
// at this point we have received an old job as well as a new job, compare paths
file1 := oldJob.Path
file2 := newJob.Path()
dir1 := filepath.Dir(file1)
dir2 := filepath.Dir(file2)
if file1 == file2 {
debug.Log("ArchivePipe.compare", " same filename %q", file1)
// send job
out <- archiveJob{hasOld: true, old: oldJob, new: newJob}.Copy()
loadOld = true
loadNew = true
continue
} else if dir1 < dir2 {
debug.Log("ArchivePipe.compare", " %q < %q, file %q added", dir1, dir2, file2)
// file is new, send new job and load new
loadNew = true
out <- archiveJob{new: newJob}.Copy()
continue
2015-03-09 22:56:23 +01:00
} else if dir1 == dir2 {
if file1 < file2 {
debug.Log("ArchivePipe.compare", " %q < %q, file %q removed", file1, file2, file1)
// file has been removed, load new old
loadOld = true
continue
} else {
debug.Log("ArchivePipe.compare", " %q > %q, file %q added", file1, file2, file2)
// file is new, send new job and load new
loadNew = true
out <- archiveJob{new: newJob}.Copy()
continue
}
2015-03-07 11:53:32 +01:00
}
debug.Log("ArchivePipe.compare", " %q > %q, file %q removed", file1, file2, file1)
// file has been removed, throw away old job and load new
loadOld = true
}
}
func (j archiveJob) Copy() pipe.Job {
if !j.hasOld {
return j.new
}
// handle files
if isFile(j.new.Info()) {
debug.Log("archiveJob.Copy", " job %v is file", j.new.Path())
// if type has changed, return new job directly
if j.old.Node == nil {
return j.new
}
// if file is newer, return the new job
if j.old.Node.isNewer(j.new.Fullpath(), j.new.Info()) {
debug.Log("archiveJob.Copy", " job %v is newer", j.new.Path())
return j.new
}
debug.Log("archiveJob.Copy", " job %v add old data", j.new.Path())
// otherwise annotate job with old data
e := j.new.(pipe.Entry)
e.Node = j.old.Node
return e
}
// dirs and other types are just returned
return j.new
}
func (arch *Archiver) Snapshot(p *Progress, paths []string, pid backend.ID) (*Snapshot, backend.ID, error) {
2015-03-02 14:48:47 +01:00
debug.Log("Archiver.Snapshot", "start for %v", paths)
2015-02-15 14:44:54 +01:00
2015-03-02 14:48:47 +01:00
debug.Break("Archiver.Snapshot")
sort.Strings(paths)
2015-02-15 14:44:54 +01:00
2015-03-07 11:53:32 +01:00
// signal the whole pipeline to stop
done := make(chan struct{})
var err error
2015-03-02 14:48:47 +01:00
p.Start()
defer p.Done()
2015-02-15 14:44:54 +01:00
2015-03-07 11:53:32 +01:00
// create new snapshot
2015-03-02 14:48:47 +01:00
sn, err := NewSnapshot(paths)
if err != nil {
return nil, nil, err
2015-02-15 14:44:54 +01:00
}
2015-03-07 11:53:32 +01:00
jobs := ArchivePipe{}
2015-03-02 14:48:47 +01:00
2015-03-07 11:53:32 +01:00
// use parent snapshot (if some was given)
if pid != nil {
sn.Parent = pid
// load parent snapshot
parent, err := LoadSnapshot(arch.s, pid)
if err != nil {
return nil, nil, err
}
// start walker on old tree
ch := make(chan WalkTreeJob)
go WalkTree(arch.s, parent.Tree, done, ch)
2015-03-07 11:53:32 +01:00
jobs.Old = ch
} else {
// use closed channel
ch := make(chan WalkTreeJob)
close(ch)
jobs.Old = ch
}
// start walker
pipeCh := make(chan pipe.Job)
resCh := make(chan pipe.Result, 1)
go func() {
err := pipe.Walk(paths, done, pipeCh, resCh)
if err != nil {
debug.Log("Archiver.Snapshot", "pipe.Walk returned error %v", err)
return
}
debug.Log("Archiver.Snapshot", "pipe.Walk done")
}()
jobs.New = pipeCh
2015-03-02 14:48:47 +01:00
2015-03-07 11:53:32 +01:00
ch := make(chan pipe.Job)
go jobs.compare(done, ch)
2015-03-02 14:48:47 +01:00
2015-02-15 14:44:54 +01:00
var wg sync.WaitGroup
2015-03-02 14:48:47 +01:00
entCh := make(chan pipe.Entry)
dirCh := make(chan pipe.Dir)
// split
wg.Add(1)
go func() {
2015-03-07 11:53:32 +01:00
pipe.Split(ch, dirCh, entCh)
debug.Log("Archiver.Snapshot", "split done")
2015-03-02 14:48:47 +01:00
close(dirCh)
close(entCh)
wg.Done()
}()
// run workers
2015-02-15 14:44:54 +01:00
for i := 0; i < maxConcurrency; i++ {
wg.Add(2)
2015-03-02 14:48:47 +01:00
go arch.fileWorker(&wg, p, done, entCh)
go arch.dirWorker(&wg, p, done, dirCh)
2015-02-15 14:44:54 +01:00
}
// wait for all workers to terminate
2015-03-02 14:48:47 +01:00
debug.Log("Archiver.Snapshot", "wait for workers")
2015-02-15 14:44:54 +01:00
wg.Wait()
2015-03-02 14:48:47 +01:00
debug.Log("Archiver.Snapshot", "workers terminated")
2015-02-15 14:44:54 +01:00
// receive the top-level tree
root := (<-resCh).(*Node)
blob := root.blobs[0]
debug.Log("Archiver.Snapshot", "root node received: %v", blob)
sn.Tree = blob
2014-11-23 22:26:01 +01:00
2014-09-23 22:39:12 +02:00
// save snapshot
blob, err = arch.s.SaveJSON(backend.Snapshot, sn)
2014-09-23 22:39:12 +02:00
if err != nil {
return nil, nil, err
}
2015-03-09 22:56:44 +01:00
// store ID in snapshot struct
sn.id = blob.Storage
2015-03-09 22:26:39 +01:00
debug.Log("Archiver.Snapshot", "saved snapshot %v", blob.Storage.Str())
// cache blobs
err = arch.c.StoreMap(sn.id, arch.m)
2015-03-09 22:26:39 +01:00
if err != nil {
debug.Log("Archiver.Snapshot", "unable to cache blobs for snapshot %v: %v", blob.Storage.Str(), err)
fmt.Fprintf(os.Stderr, "unable to cache blobs for snapshot %v: %v\n", blob.Storage.Str(), err)
return sn, blob.Storage, nil
}
return sn, blob.Storage, nil
2014-09-23 22:39:12 +02:00
}
2015-02-21 14:23:49 +01:00
func isFile(fi os.FileInfo) bool {
2015-03-07 11:53:32 +01:00
if fi == nil {
return false
}
2015-02-21 14:23:49 +01:00
return fi.Mode()&(os.ModeType|os.ModeCharDevice) == 0
}
2015-03-02 14:48:47 +01:00
func Scan(dirs []string, p *Progress) (Stat, error) {
2015-02-21 14:23:49 +01:00
p.Start()
defer p.Done()
var stat Stat
2015-03-02 14:48:47 +01:00
for _, dir := range dirs {
2015-03-15 12:20:30 +01:00
debug.Log("Scan", "Start for %v", dir)
2015-03-02 14:48:47 +01:00
err := filepath.Walk(dir, func(str string, fi os.FileInfo, err error) error {
2015-03-15 12:20:30 +01:00
debug.Log("Scan.Walk", "%v, fi: %v, err: %v", str, fi, err)
2015-03-21 14:43:33 +01:00
// TODO: integrate error reporting
if err != nil {
fmt.Fprintf(os.Stderr, "error for %v: %v\n", str, err)
return nil
}
if fi == nil {
fmt.Fprintf(os.Stderr, "error for %v: FileInfo is nil\n", str)
return nil
}
2015-03-02 14:48:47 +01:00
s := Stat{}
if isFile(fi) {
s.Files++
s.Bytes += uint64(fi.Size())
} else if fi.IsDir() {
s.Dirs++
}
2015-02-21 14:23:49 +01:00
2015-03-02 14:48:47 +01:00
p.Report(s)
stat.Add(s)
2015-02-21 14:23:49 +01:00
2015-03-02 14:48:47 +01:00
// TODO: handle error?
return nil
})
2015-03-15 12:20:30 +01:00
debug.Log("Scan", "Done for %v, err: %v", dir, err)
2015-03-02 14:48:47 +01:00
if err != nil {
return Stat{}, err
}
}
2015-02-21 14:23:49 +01:00
2015-03-02 14:48:47 +01:00
return stat, nil
2015-02-21 14:23:49 +01:00
}