2014-12-05 20:45:49 +00:00
|
|
|
package restic
|
2014-09-23 20:39:12 +00:00
|
|
|
|
|
|
|
import (
|
2015-01-10 22:40:10 +00:00
|
|
|
"encoding/json"
|
2015-01-04 21:39:30 +00:00
|
|
|
"errors"
|
2014-11-30 21:49:14 +00:00
|
|
|
"fmt"
|
2014-11-17 22:28:51 +00:00
|
|
|
"io"
|
2014-09-23 20:39:12 +00:00
|
|
|
"os"
|
2015-02-21 13:23:49 +00:00
|
|
|
"path/filepath"
|
2015-03-02 13:48:47 +00:00
|
|
|
"sort"
|
2014-11-16 21:50:20 +00:00
|
|
|
"sync"
|
2014-09-23 20:39:12 +00:00
|
|
|
|
2014-11-23 11:14:56 +00:00
|
|
|
"github.com/juju/arrar"
|
2014-12-05 20:45:49 +00:00
|
|
|
"github.com/restic/restic/backend"
|
|
|
|
"github.com/restic/restic/chunker"
|
2015-01-14 21:08:48 +00:00
|
|
|
"github.com/restic/restic/debug"
|
2015-02-15 13:44:54 +00:00
|
|
|
"github.com/restic/restic/pipe"
|
2014-09-23 20:39:12 +00:00
|
|
|
)
|
|
|
|
|
2014-11-16 21:50:20 +00:00
|
|
|
const (
|
2015-02-17 22:15:08 +00:00
|
|
|
maxConcurrentBlobs = 32
|
|
|
|
maxConcurrency = 10
|
2015-02-18 22:10:59 +00:00
|
|
|
maxConcurrencyPreload = 20
|
2015-02-09 22:38:50 +00:00
|
|
|
|
|
|
|
// chunkerBufSize is used in pool.go
|
|
|
|
chunkerBufSize = 512 * chunker.KiB
|
2014-11-16 21:50:20 +00:00
|
|
|
)
|
|
|
|
|
2014-09-23 20:39:12 +00:00
|
|
|
type Archiver struct {
|
2015-01-10 22:40:10 +00:00
|
|
|
s Server
|
|
|
|
m *Map
|
2015-03-09 21:26:39 +00:00
|
|
|
c *Cache
|
2014-09-23 20:39:12 +00:00
|
|
|
|
2014-11-22 21:05:39 +00:00
|
|
|
blobToken chan struct{}
|
2014-11-16 21:50:20 +00:00
|
|
|
|
2014-09-23 20:39:12 +00:00
|
|
|
Error func(dir string, fi os.FileInfo, err error) error
|
|
|
|
Filter func(item string, fi os.FileInfo) bool
|
|
|
|
}
|
|
|
|
|
2015-02-21 13:23:49 +00:00
|
|
|
func NewArchiver(s Server) (*Archiver, error) {
|
2014-09-23 20:39:12 +00:00
|
|
|
var err error
|
2014-11-16 21:50:20 +00:00
|
|
|
arch := &Archiver{
|
2014-12-21 16:02:49 +00:00
|
|
|
s: s,
|
2014-11-22 21:05:39 +00:00
|
|
|
blobToken: make(chan struct{}, maxConcurrentBlobs),
|
2014-11-16 21:50:20 +00:00
|
|
|
}
|
|
|
|
|
2015-02-15 13:44:54 +00:00
|
|
|
// fill blob token
|
2014-11-22 21:05:39 +00:00
|
|
|
for i := 0; i < maxConcurrentBlobs; i++ {
|
|
|
|
arch.blobToken <- struct{}{}
|
|
|
|
}
|
|
|
|
|
2015-01-10 22:40:10 +00:00
|
|
|
// create new map to store all blobs in
|
|
|
|
arch.m = NewMap()
|
|
|
|
|
2015-03-09 21:26:39 +00:00
|
|
|
// init cache
|
2015-03-14 11:10:08 +00:00
|
|
|
arch.c, err = NewCache(s)
|
2015-03-09 21:26:39 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2014-09-23 20:39:12 +00: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 }
|
|
|
|
|
2015-01-10 22:40:10 +00:00
|
|
|
return arch, nil
|
|
|
|
}
|
|
|
|
|
2015-03-22 13:41:51 +00:00
|
|
|
// Cache returns the current cache for the Archiver.
|
|
|
|
func (arch *Archiver) Cache() *Cache {
|
|
|
|
return arch.c
|
|
|
|
}
|
|
|
|
|
2015-03-09 21:26:39 +00:00
|
|
|
// Preload loads all blobs for all cached snapshots.
|
|
|
|
func (arch *Archiver) Preload() error {
|
2015-03-28 10:50:23 +00:00
|
|
|
done := make(chan struct{})
|
|
|
|
defer close(done)
|
2015-02-21 23:09:57 +00:00
|
|
|
|
2015-03-28 10:50:23 +00:00
|
|
|
// list snapshots
|
2015-03-09 21:26:39 +00:00
|
|
|
// TODO: track seen tree ids, load trees that aren't in the set
|
2015-03-28 10:50:23 +00: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
|
|
|
|
}
|
|
|
|
|
2015-03-14 17:15:47 +00:00
|
|
|
m, err := arch.c.LoadMap(arch.s, id)
|
2015-03-09 21:26:39 +00:00
|
|
|
if err != nil {
|
|
|
|
debug.Log("Archiver.Preload", "blobs for snapshot %v not cached: %v", id.Str(), err)
|
2015-03-22 13:41:51 +00:00
|
|
|
continue
|
2015-02-17 22:38:40 +00:00
|
|
|
}
|
2015-02-17 21:39:44 +00:00
|
|
|
|
2015-03-09 21:26:39 +00:00
|
|
|
arch.m.Merge(m)
|
|
|
|
debug.Log("Archiver.Preload", "done loading cached blobs for snapshot %v", id.Str())
|
2015-03-28 10:50:23 +00:00
|
|
|
snapshots++
|
2015-03-09 21:26:39 +00:00
|
|
|
}
|
2015-02-17 22:38:40 +00:00
|
|
|
|
2015-03-28 10:50:23 +00:00
|
|
|
debug.Log("Archiver.Preload", "Loaded %v blobs from %v snapshots", arch.m.Len(), snapshots)
|
2015-03-09 21:26:39 +00:00
|
|
|
return nil
|
2015-02-17 21:39:44 +00:00
|
|
|
}
|
|
|
|
|
2015-02-08 21:54:45 +00:00
|
|
|
func (arch *Archiver) Save(t backend.Type, id backend.ID, length uint, rd io.Reader) (Blob, error) {
|
2015-01-14 21:08:48 +00:00
|
|
|
debug.Log("Archiver.Save", "Save(%v, %v)\n", t, id.Str())
|
2015-01-10 22:40:10 +00:00
|
|
|
|
|
|
|
// test if this blob is already known
|
|
|
|
blob, err := arch.m.FindID(id)
|
|
|
|
if err == nil {
|
2015-01-14 21:08:48 +00:00
|
|
|
debug.Log("Archiver.Save", "Save(%v, %v): reusing %v\n", t, id.Str(), blob.Storage.Str())
|
2015-01-10 22:40:10 +00:00
|
|
|
id.Free()
|
|
|
|
return blob, nil
|
2015-01-05 20:40:43 +00:00
|
|
|
}
|
2014-09-23 20:39:12 +00:00
|
|
|
|
2015-01-10 22:40:10 +00:00
|
|
|
// else encrypt and save data
|
2015-02-08 21:54:45 +00:00
|
|
|
blob, err = arch.s.SaveFrom(t, id, length, rd)
|
2015-01-10 22:40:10 +00:00
|
|
|
|
|
|
|
// 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 21:08:48 +00:00
|
|
|
debug.Log("Archiver.Save", "using other block, removing %v\n", blob.Storage.Str())
|
2015-01-10 22:40:10 +00:00
|
|
|
|
|
|
|
// remove the blob again
|
|
|
|
// TODO: implement a list of blobs in transport, so this doesn't happen so often
|
2015-03-28 10:50:23 +00:00
|
|
|
err = arch.s.Remove(t, blob.Storage.String())
|
2015-01-10 22:40:10 +00:00
|
|
|
if err != nil {
|
|
|
|
return Blob{}, err
|
|
|
|
}
|
2014-09-23 20:39:12 +00:00
|
|
|
}
|
|
|
|
|
2015-01-14 21:08:48 +00:00
|
|
|
debug.Log("Archiver.Save", "Save(%v, %v): new blob %v\n", t, id.Str(), blob)
|
2015-01-10 22:40:10 +00:00
|
|
|
|
|
|
|
return smapblob, nil
|
2014-09-23 20:39:12 +00:00
|
|
|
}
|
|
|
|
|
2015-01-10 22:40:10 +00:00
|
|
|
func (arch *Archiver) SaveTreeJSON(item interface{}) (Blob, error) {
|
|
|
|
// convert to json
|
|
|
|
data, err := json.Marshal(item)
|
2015-02-15 23:30:51 +00:00
|
|
|
// append newline
|
|
|
|
data = append(data, '\n')
|
2014-09-23 20:39:12 +00:00
|
|
|
if err != nil {
|
2014-11-21 20:21:44 +00:00
|
|
|
return Blob{}, err
|
2014-09-23 20:39:12 +00:00
|
|
|
}
|
|
|
|
|
2015-01-10 22:40:10 +00:00
|
|
|
// check if tree has been saved before
|
2015-02-15 23:30:51 +00:00
|
|
|
id := backend.Hash(data)
|
2015-01-10 22:40:10 +00:00
|
|
|
blob, err := arch.m.FindID(id)
|
2014-09-23 20:39:12 +00:00
|
|
|
|
2015-01-10 22:40:10 +00:00
|
|
|
// return the blob if we found it
|
|
|
|
if err == nil {
|
|
|
|
return blob, nil
|
|
|
|
}
|
2014-09-23 20:39:12 +00:00
|
|
|
|
2015-01-10 22:40:10 +00:00
|
|
|
// otherwise save the data
|
2015-02-15 23:30:51 +00:00
|
|
|
blob, err = arch.s.SaveJSON(backend.Tree, item)
|
2014-09-23 20:39:12 +00:00
|
|
|
if err != nil {
|
2014-11-21 20:21:44 +00:00
|
|
|
return Blob{}, err
|
2014-09-23 20:39:12 +00:00
|
|
|
}
|
|
|
|
|
2015-01-10 22:40:10 +00:00
|
|
|
// store blob in storage map
|
|
|
|
arch.m.Insert(blob)
|
2014-09-23 20:39:12 +00:00
|
|
|
|
|
|
|
return blob, nil
|
|
|
|
}
|
|
|
|
|
2014-11-17 22:28:51 +00:00
|
|
|
// SaveFile stores the content of the file on the backend as a Blob by calling
|
|
|
|
// Save for each chunk.
|
2015-02-21 13:23:49 +00:00
|
|
|
func (arch *Archiver) SaveFile(p *Progress, node *Node) (Blobs, error) {
|
2014-11-17 22:28:51 +00:00
|
|
|
file, err := os.Open(node.path)
|
|
|
|
defer file.Close()
|
2014-09-23 20:39:12 +00:00
|
|
|
if err != nil {
|
2015-01-10 22:40:10 +00:00
|
|
|
return nil, err
|
2015-01-04 21:39:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// check file again
|
|
|
|
fi, err := file.Stat()
|
|
|
|
if err != nil {
|
2015-01-10 22:40:10 +00:00
|
|
|
return nil, err
|
2015-01-04 21:39:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if fi.ModTime() != node.ModTime {
|
2015-01-10 22:40:10 +00:00
|
|
|
e2 := arch.Error(node.path, fi, errors.New("file was updated, using new version"))
|
2015-01-04 21:39:30 +00:00
|
|
|
|
|
|
|
if e2 == nil {
|
|
|
|
// create new node
|
|
|
|
n, err := NodeFromFileInfo(node.path, fi)
|
|
|
|
if err != nil {
|
2015-03-21 13:43:33 +00:00
|
|
|
debug.Log("Archiver.SaveFile", "NodeFromFileInfo returned error for %v: %v", node.path, err)
|
2015-01-10 22:40:10 +00:00
|
|
|
return nil, err
|
2015-01-04 21:39:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// copy node
|
|
|
|
*node = *n
|
|
|
|
}
|
2014-11-17 22:28:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var blobs Blobs
|
|
|
|
|
2015-02-08 21:54:45 +00:00
|
|
|
// store all chunks
|
2015-02-09 22:38:50 +00:00
|
|
|
chnker := GetChunker("archiver.SaveFile")
|
|
|
|
chnker.Reset(file)
|
2015-02-08 21:54:45 +00:00
|
|
|
chans := [](<-chan Blob){}
|
2015-02-09 22:38:50 +00:00
|
|
|
defer FreeChunker("archiver.SaveFile", chnker)
|
2014-11-23 15:48:00 +00:00
|
|
|
|
2015-02-08 21:54:45 +00:00
|
|
|
chunks := 0
|
2014-11-17 22:28:51 +00:00
|
|
|
|
2015-02-08 21:54:45 +00:00
|
|
|
for {
|
|
|
|
chunk, err := chnker.Next()
|
2014-11-30 21:16:34 +00:00
|
|
|
if err == io.EOF {
|
2015-02-08 21:54:45 +00:00
|
|
|
break
|
2014-11-17 22:28:51 +00:00
|
|
|
}
|
|
|
|
|
2015-02-08 21:54:45 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, arrar.Annotate(err, "SaveFile() chunker.Next()")
|
|
|
|
}
|
2014-11-17 22:28:51 +00:00
|
|
|
|
2015-02-08 21:54:45 +00:00
|
|
|
chunks++
|
2014-11-30 21:49:14 +00:00
|
|
|
|
2015-02-08 21:54:45 +00:00
|
|
|
// acquire token, start goroutine to save chunk
|
|
|
|
token := <-arch.blobToken
|
|
|
|
resCh := make(chan Blob, 1)
|
2014-11-22 21:05:39 +00:00
|
|
|
|
2015-02-08 21:54:45 +00: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)
|
|
|
|
}
|
2014-11-17 22:28:51 +00:00
|
|
|
|
2015-02-21 13:23:49 +00:00
|
|
|
p.Report(Stat{Bytes: blob.Size})
|
2015-02-08 21:54:45 +00:00
|
|
|
arch.blobToken <- token
|
|
|
|
ch <- blob
|
|
|
|
}(resCh)
|
2014-11-22 21:05:39 +00:00
|
|
|
|
2015-02-08 21:54:45 +00:00
|
|
|
chans = append(chans, resCh)
|
|
|
|
}
|
2014-11-17 22:28:51 +00:00
|
|
|
|
2015-02-08 21:54:45 +00:00
|
|
|
blobs = []Blob{}
|
|
|
|
for _, ch := range chans {
|
|
|
|
blobs = append(blobs, <-ch)
|
|
|
|
}
|
2014-11-30 21:49:14 +00:00
|
|
|
|
2015-02-08 21:54:45 +00:00
|
|
|
if len(blobs) != chunks {
|
|
|
|
return nil, fmt.Errorf("chunker returned %v chunks, but only %v blobs saved", chunks, len(blobs))
|
2014-09-23 20:39:12 +00:00
|
|
|
}
|
|
|
|
|
2014-12-07 12:30:16 +00:00
|
|
|
var bytes uint64
|
|
|
|
|
2014-09-23 20:39:12 +00:00
|
|
|
node.Content = make([]backend.ID, len(blobs))
|
2015-02-08 21:54:45 +00:00
|
|
|
debug.Log("Archiver.Save", "checking size for file %s", node.path)
|
2014-09-23 20:39:12 +00:00
|
|
|
for i, blob := range blobs {
|
|
|
|
node.Content[i] = blob.ID
|
2014-12-07 12:30:16 +00:00
|
|
|
bytes += blob.Size
|
2015-02-08 21:54:45 +00:00
|
|
|
|
|
|
|
debug.Log("Archiver.Save", " adding blob %s", blob)
|
2014-12-07 12:30:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if bytes != node.Size {
|
2015-01-10 22:40:10 +00:00
|
|
|
return nil, fmt.Errorf("errors saving node %q: saved %d bytes, wanted %d bytes", node.path, bytes, node.Size)
|
2014-09-23 20:39:12 +00:00
|
|
|
}
|
|
|
|
|
2015-01-14 21:08:48 +00:00
|
|
|
debug.Log("Archiver.SaveFile", "SaveFile(%q): %v\n", node.path, blobs)
|
2015-01-10 22:40:10 +00:00
|
|
|
|
|
|
|
return blobs, nil
|
2014-09-23 20:39:12 +00:00
|
|
|
}
|
|
|
|
|
2015-02-21 13:23:49 +00:00
|
|
|
func (arch *Archiver) saveTree(p *Progress, t *Tree) (Blob, error) {
|
2015-01-14 21:08:48 +00:00
|
|
|
debug.Log("Archiver.saveTree", "saveTree(%v)\n", t)
|
2014-11-16 21:50:20 +00:00
|
|
|
var wg sync.WaitGroup
|
|
|
|
|
2015-01-10 22:40:10 +00:00
|
|
|
// 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 13:23:49 +00:00
|
|
|
b, err := arch.saveTree(p, node.tree)
|
2014-11-16 20:29:11 +00:00
|
|
|
if err != nil {
|
2014-11-21 20:21:44 +00:00
|
|
|
return Blob{}, err
|
2014-11-16 20:29:11 +00:00
|
|
|
}
|
|
|
|
node.Subtree = b.ID
|
2015-01-10 22:40:10 +00:00
|
|
|
t.Map.Insert(b)
|
2015-02-21 13:23:49 +00:00
|
|
|
p.Report(Stat{Dirs: 1})
|
2015-01-10 22:40:10 +00:00
|
|
|
} 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 21:08:48 +00:00
|
|
|
debug.Log("Archiver.saveTree", "unable to find storage id for data blob %v", id.Str())
|
2015-01-10 22:40:10 +00:00
|
|
|
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 10:50:23 +00:00
|
|
|
if ok, err := arch.s.Test(backend.Data, blob.Storage.String()); !ok || err != nil {
|
2015-01-14 21:08:48 +00:00
|
|
|
debug.Log("Archiver.saveTree", "blob %v not in repository (error is %v)", blob, err)
|
2015-01-10 22:40:10 +00:00
|
|
|
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 21:08:48 +00:00
|
|
|
debug.Log("Archiver.saveTree", "removing content for %s", node.path)
|
2015-01-10 22:40:10 +00:00
|
|
|
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 13:23:49 +00:00
|
|
|
blobs, n.err = arch.SaveFile(p, n)
|
2015-01-10 22:40:10 +00:00
|
|
|
for _, b := range blobs {
|
|
|
|
t.Map.Insert(b)
|
|
|
|
}
|
|
|
|
|
2015-02-21 13:23:49 +00:00
|
|
|
p.Report(Stat{Files: 1})
|
2015-01-10 22:40:10 +00:00
|
|
|
}(node)
|
|
|
|
}
|
2014-09-23 20:39:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-16 21:50:20 +00:00
|
|
|
wg.Wait()
|
|
|
|
|
2015-01-10 22:40:10 +00:00
|
|
|
usedIDs := backend.NewIDSet()
|
|
|
|
|
2014-11-30 23:06:29 +00:00
|
|
|
// check for invalid file nodes
|
2015-01-10 22:40:10 +00:00
|
|
|
for _, node := range t.Nodes {
|
2015-01-04 21:58:58 +00:00
|
|
|
if node.Type == "file" && node.Content == nil && node.err == nil {
|
2014-11-30 23:06:29 +00:00
|
|
|
return Blob{}, fmt.Errorf("node %v has empty content", node.Name)
|
|
|
|
}
|
2015-01-04 21:58:58 +00:00
|
|
|
|
2015-01-10 22:40:10 +00:00
|
|
|
// 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)
|
|
|
|
}
|
|
|
|
|
2015-01-04 21:58:58 +00:00
|
|
|
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-11-30 23:06:29 +00:00
|
|
|
}
|
|
|
|
|
2015-01-10 22:40:10 +00:00
|
|
|
before := len(t.Map.IDs())
|
|
|
|
t.Map.Prune(usedIDs)
|
|
|
|
after := len(t.Map.IDs())
|
|
|
|
|
|
|
|
if before != after {
|
2015-01-14 21:08:48 +00:00
|
|
|
debug.Log("Archiver.saveTree", "pruned %d ids from map for tree %v\n", before-after, t)
|
2015-01-10 22:40:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
blob, err := arch.SaveTreeJSON(t)
|
2014-11-16 20:29:11 +00:00
|
|
|
if err != nil {
|
2014-11-21 20:21:44 +00:00
|
|
|
return Blob{}, err
|
2014-11-16 20:29:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return blob, nil
|
|
|
|
}
|
|
|
|
|
2015-03-02 13:48:47 +00:00
|
|
|
func (arch *Archiver) fileWorker(wg *sync.WaitGroup, p *Progress, done <-chan struct{}, entCh <-chan pipe.Entry) {
|
2015-03-07 10:53:32 +00:00
|
|
|
defer func() {
|
|
|
|
debug.Log("Archiver.fileWorker", "done")
|
|
|
|
wg.Done()
|
|
|
|
}()
|
2015-03-02 13:48:47 +00:00
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case e, ok := <-entCh:
|
|
|
|
if !ok {
|
|
|
|
// channel is closed
|
|
|
|
return
|
|
|
|
}
|
2015-01-11 13:09:44 +00:00
|
|
|
|
2015-03-07 10:53:32 +00:00
|
|
|
debug.Log("Archiver.fileWorker", "got job %v", e)
|
|
|
|
|
2015-03-15 11:20:30 +00:00
|
|
|
// check for errors
|
|
|
|
if e.Error() != nil {
|
|
|
|
debug.Log("Archiver.fileWorker", "job %v has errors: %v", e.Path(), e.Error())
|
2015-03-15 14:48:05 +00:00
|
|
|
// 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 11:20:30 +00:00
|
|
|
}
|
|
|
|
|
2015-03-07 10:53:32 +00:00
|
|
|
node, err := NodeFromFileInfo(e.Fullpath(), e.Info())
|
2015-03-02 13:48:47 +00:00
|
|
|
if err != nil {
|
2015-03-21 13:43:33 +00: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 13:48:47 +00:00
|
|
|
}
|
2014-11-23 08:22:18 +00:00
|
|
|
|
2015-03-07 10:53:32 +00: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 10:50:23 +00:00
|
|
|
if ok, err := arch.s.Test(backend.Data, blob.Storage.String()); !ok || err != nil {
|
2015-03-07 10:53:32 +00: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 13:48:47 +00:00
|
|
|
node.blobs, err = arch.SaveFile(p, node)
|
|
|
|
if err != nil {
|
2015-03-15 14:48:05 +00:00
|
|
|
// 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 13:48:47 +00:00
|
|
|
}
|
2015-03-07 10:53:32 +00:00
|
|
|
} else {
|
|
|
|
// report old data size
|
|
|
|
p.Report(Stat{Bytes: node.Size})
|
2015-03-02 13:48:47 +00:00
|
|
|
}
|
|
|
|
|
2015-03-07 10:53:32 +00:00
|
|
|
debug.Log("Archiver.fileWorker", " processed %v, %d/%d blobs", e.Path(), len(node.Content), len(node.blobs))
|
|
|
|
e.Result() <- node
|
2015-03-02 13:48:47 +00:00
|
|
|
p.Report(Stat{Files: 1})
|
|
|
|
case <-done:
|
|
|
|
// pipeline was cancelled
|
|
|
|
return
|
|
|
|
}
|
2014-12-21 16:20:49 +00:00
|
|
|
}
|
2015-03-02 13:48:47 +00:00
|
|
|
}
|
2014-12-21 16:20:49 +00:00
|
|
|
|
2015-03-02 13:48:47 +00:00
|
|
|
func (arch *Archiver) dirWorker(wg *sync.WaitGroup, p *Progress, done <-chan struct{}, dirCh <-chan pipe.Dir) {
|
2015-03-07 10:53:32 +00:00
|
|
|
defer func() {
|
|
|
|
debug.Log("Archiver.dirWorker", "done")
|
|
|
|
wg.Done()
|
|
|
|
}()
|
2015-03-02 13:48:47 +00:00
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case dir, ok := <-dirCh:
|
|
|
|
if !ok {
|
|
|
|
// channel is closed
|
|
|
|
return
|
|
|
|
}
|
2015-03-07 10:53:32 +00:00
|
|
|
debug.Log("Archiver.dirWorker", "save dir %v\n", dir.Path())
|
2014-11-16 20:29:11 +00:00
|
|
|
|
2015-03-02 13:48:47 +00:00
|
|
|
tree := NewTree()
|
2015-02-15 13:44:54 +00:00
|
|
|
|
2015-03-02 13:48:47 +00:00
|
|
|
// wait for all content
|
|
|
|
for _, ch := range dir.Entries {
|
2015-03-15 14:48:05 +00:00
|
|
|
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 13:48:47 +00:00
|
|
|
tree.Insert(node)
|
2015-02-15 13:44:54 +00:00
|
|
|
|
2015-03-02 13:48:47 +00:00
|
|
|
if node.Type == "dir" {
|
2015-03-07 10:53:32 +00:00
|
|
|
debug.Log("Archiver.dirWorker", "got tree node for %s: %v", node.path, node.blobs)
|
2015-02-15 13:44:54 +00:00
|
|
|
}
|
|
|
|
|
2015-03-14 17:15:47 +00:00
|
|
|
// also store blob in tree map
|
2015-03-02 13:48:47 +00:00
|
|
|
for _, blob := range node.blobs {
|
|
|
|
tree.Map.Insert(blob)
|
2015-02-15 13:44:54 +00:00
|
|
|
}
|
2015-03-02 13:48:47 +00:00
|
|
|
}
|
2015-02-15 13:44:54 +00:00
|
|
|
|
2015-03-08 19:57:21 +00: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 13:48:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
blob, err := arch.SaveTreeJSON(tree)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
2015-02-15 13:44:54 +00:00
|
|
|
}
|
2015-03-07 10:53:32 +00:00
|
|
|
debug.Log("Archiver.dirWorker", "save tree for %s: %v", dir.Path(), blob)
|
2015-03-02 13:48:47 +00:00
|
|
|
|
|
|
|
node.Subtree = blob.ID
|
|
|
|
node.blobs = Blobs{blob}
|
|
|
|
|
2015-03-07 10:53:32 +00:00
|
|
|
dir.Result() <- node
|
2015-03-02 13:48:47 +00:00
|
|
|
p.Report(Stat{Dirs: 1})
|
|
|
|
case <-done:
|
|
|
|
// pipeline was cancelled
|
|
|
|
return
|
2015-02-15 13:44:54 +00:00
|
|
|
}
|
|
|
|
}
|
2015-03-02 13:48:47 +00:00
|
|
|
}
|
2015-02-15 13:44:54 +00:00
|
|
|
|
2015-03-07 10:53:32 +00: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 21:56:23 +00: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 10:53:32 +00: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 13:48:47 +00:00
|
|
|
debug.Log("Archiver.Snapshot", "start for %v", paths)
|
2015-02-15 13:44:54 +00:00
|
|
|
|
2015-03-02 13:48:47 +00:00
|
|
|
debug.Break("Archiver.Snapshot")
|
|
|
|
sort.Strings(paths)
|
2015-02-15 13:44:54 +00:00
|
|
|
|
2015-03-07 10:53:32 +00:00
|
|
|
// signal the whole pipeline to stop
|
|
|
|
done := make(chan struct{})
|
|
|
|
var err error
|
|
|
|
|
2015-03-02 13:48:47 +00:00
|
|
|
p.Start()
|
|
|
|
defer p.Done()
|
2015-02-15 13:44:54 +00:00
|
|
|
|
2015-03-07 10:53:32 +00:00
|
|
|
// create new snapshot
|
2015-03-02 13:48:47 +00:00
|
|
|
sn, err := NewSnapshot(paths)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
2015-02-15 13:44:54 +00:00
|
|
|
}
|
|
|
|
|
2015-03-07 10:53:32 +00:00
|
|
|
jobs := ArchivePipe{}
|
2015-03-02 13:48:47 +00:00
|
|
|
|
2015-03-07 10:53:32 +00: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.Storage, done, ch)
|
|
|
|
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 13:48:47 +00:00
|
|
|
|
2015-03-07 10:53:32 +00:00
|
|
|
ch := make(chan pipe.Job)
|
|
|
|
go jobs.compare(done, ch)
|
2015-03-02 13:48:47 +00:00
|
|
|
|
2015-02-15 13:44:54 +00:00
|
|
|
var wg sync.WaitGroup
|
2015-03-02 13:48:47 +00:00
|
|
|
entCh := make(chan pipe.Entry)
|
|
|
|
dirCh := make(chan pipe.Dir)
|
|
|
|
|
|
|
|
// split
|
|
|
|
wg.Add(1)
|
|
|
|
go func() {
|
2015-03-07 10:53:32 +00:00
|
|
|
pipe.Split(ch, dirCh, entCh)
|
|
|
|
debug.Log("Archiver.Snapshot", "split done")
|
2015-03-02 13:48:47 +00:00
|
|
|
close(dirCh)
|
|
|
|
close(entCh)
|
|
|
|
wg.Done()
|
|
|
|
}()
|
|
|
|
|
|
|
|
// run workers
|
2015-02-15 13:44:54 +00:00
|
|
|
for i := 0; i < maxConcurrency; i++ {
|
|
|
|
wg.Add(2)
|
2015-03-02 13:48:47 +00:00
|
|
|
go arch.fileWorker(&wg, p, done, entCh)
|
|
|
|
go arch.dirWorker(&wg, p, done, dirCh)
|
2015-02-15 13:44:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// wait for all workers to terminate
|
2015-03-02 13:48:47 +00:00
|
|
|
debug.Log("Archiver.Snapshot", "wait for workers")
|
2015-02-15 13:44:54 +00:00
|
|
|
wg.Wait()
|
|
|
|
|
2015-03-02 13:48:47 +00:00
|
|
|
debug.Log("Archiver.Snapshot", "workers terminated")
|
2015-02-15 13:44:54 +00:00
|
|
|
|
2015-03-08 19:57:21 +00:00
|
|
|
// receive the top-level tree
|
|
|
|
root := (<-resCh).(*Node)
|
2015-03-14 17:15:47 +00:00
|
|
|
blob := root.blobs[0]
|
|
|
|
debug.Log("Archiver.Snapshot", "root node received: %v", blob)
|
|
|
|
sn.Tree = blob
|
2014-11-23 21:26:01 +00:00
|
|
|
|
2014-09-23 20:39:12 +00:00
|
|
|
// save snapshot
|
2015-03-14 17:15:47 +00:00
|
|
|
blob, err = arch.s.SaveJSON(backend.Snapshot, sn)
|
2014-09-23 20:39:12 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
2015-03-09 21:56:44 +00:00
|
|
|
// store ID in snapshot struct
|
|
|
|
sn.id = blob.Storage
|
|
|
|
|
2015-03-09 21:26:39 +00:00
|
|
|
debug.Log("Archiver.Snapshot", "saved snapshot %v", blob.Storage.Str())
|
|
|
|
|
|
|
|
// cache blobs
|
2015-03-14 17:15:47 +00:00
|
|
|
err = arch.c.StoreMap(sn.id, arch.m)
|
2015-03-09 21:26:39 +00: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
|
|
|
|
}
|
|
|
|
|
2014-11-16 20:29:11 +00:00
|
|
|
return sn, blob.Storage, nil
|
2014-09-23 20:39:12 +00:00
|
|
|
}
|
2015-02-21 13:23:49 +00:00
|
|
|
|
|
|
|
func isFile(fi os.FileInfo) bool {
|
2015-03-07 10:53:32 +00:00
|
|
|
if fi == nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2015-02-21 13:23:49 +00:00
|
|
|
return fi.Mode()&(os.ModeType|os.ModeCharDevice) == 0
|
|
|
|
}
|
|
|
|
|
2015-03-02 13:48:47 +00:00
|
|
|
func Scan(dirs []string, p *Progress) (Stat, error) {
|
2015-02-21 13:23:49 +00:00
|
|
|
p.Start()
|
|
|
|
defer p.Done()
|
|
|
|
|
|
|
|
var stat Stat
|
|
|
|
|
2015-03-02 13:48:47 +00:00
|
|
|
for _, dir := range dirs {
|
2015-03-15 11:20:30 +00:00
|
|
|
debug.Log("Scan", "Start for %v", dir)
|
2015-03-02 13:48:47 +00:00
|
|
|
err := filepath.Walk(dir, func(str string, fi os.FileInfo, err error) error {
|
2015-03-15 11:20:30 +00:00
|
|
|
debug.Log("Scan.Walk", "%v, fi: %v, err: %v", str, fi, err)
|
2015-03-21 13:43:33 +00: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 13:48:47 +00:00
|
|
|
s := Stat{}
|
|
|
|
if isFile(fi) {
|
|
|
|
s.Files++
|
|
|
|
s.Bytes += uint64(fi.Size())
|
|
|
|
} else if fi.IsDir() {
|
|
|
|
s.Dirs++
|
|
|
|
}
|
2015-02-21 13:23:49 +00:00
|
|
|
|
2015-03-02 13:48:47 +00:00
|
|
|
p.Report(s)
|
|
|
|
stat.Add(s)
|
2015-02-21 13:23:49 +00:00
|
|
|
|
2015-03-02 13:48:47 +00:00
|
|
|
// TODO: handle error?
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
2015-03-15 11:20:30 +00:00
|
|
|
debug.Log("Scan", "Done for %v, err: %v", dir, err)
|
2015-03-02 13:48:47 +00:00
|
|
|
if err != nil {
|
|
|
|
return Stat{}, err
|
|
|
|
}
|
|
|
|
}
|
2015-02-21 13:23:49 +00:00
|
|
|
|
2015-03-02 13:48:47 +00:00
|
|
|
return stat, nil
|
2015-02-21 13:23:49 +00:00
|
|
|
}
|