1
0
mirror of https://github.com/restic/restic.git synced 2024-06-26 07:49:01 +02:00
restic/walk.go

50 lines
1.2 KiB
Go
Raw Normal View History

2015-03-02 14:48:47 +01:00
package restic
import (
"path/filepath"
"github.com/restic/restic/backend"
2015-03-02 14:48:47 +01:00
"github.com/restic/restic/debug"
2015-04-26 14:46:15 +02:00
"github.com/restic/restic/server"
2015-03-02 14:48:47 +01:00
)
type WalkTreeJob struct {
Path string
Error error
Node *Node
Tree *Tree
}
func walkTree(s *server.Server, path string, treeID backend.ID, done chan struct{}, jobCh chan<- WalkTreeJob) {
debug.Log("walkTree", "start on %q (%v)", path, treeID.Str())
t, err := LoadTree(s, treeID)
2015-03-02 14:48:47 +01:00
if err != nil {
jobCh <- WalkTreeJob{Path: path, Error: err}
return
}
for _, node := range t.Nodes {
p := filepath.Join(path, node.Name)
if node.Type == "dir" {
walkTree(s, p, node.Subtree, done, jobCh)
2015-03-02 14:48:47 +01:00
} else {
jobCh <- WalkTreeJob{Path: p, Node: node}
2015-03-02 14:48:47 +01:00
}
}
jobCh <- WalkTreeJob{Path: path, Tree: t}
debug.Log("walkTree", "done for %q (%v)", path, treeID.Str())
2015-03-02 14:48:47 +01:00
}
// WalkTree walks the tree specified by id recursively and sends a job for each
2015-03-02 14:48:47 +01:00
// file and directory it finds. When the channel done is closed, processing
// stops.
func WalkTree(server *server.Server, id backend.ID, done chan struct{}, jobCh chan<- WalkTreeJob) {
debug.Log("WalkTree", "start on %v", id.Str())
walkTree(server, "", id, done, jobCh)
2015-03-02 14:48:47 +01:00
close(jobCh)
2015-03-08 21:21:31 +01:00
debug.Log("WalkTree", "done")
2015-03-02 14:48:47 +01:00
}