restic/pipe/pipe.go

176 lines
3.4 KiB
Go
Raw Normal View History

2015-02-15 12:57:09 +01:00
package pipe
import (
"fmt"
"os"
"path/filepath"
"sort"
2015-03-02 14:48:47 +01:00
"github.com/restic/restic/debug"
2015-02-15 12:57:09 +01:00
)
type Entry struct {
Path string
Info os.FileInfo
Error error
Result chan<- interface{}
}
type Dir struct {
Path string
Error error
2015-02-15 14:44:54 +01:00
Info os.FileInfo
2015-02-15 12:57:09 +01:00
Entries [](<-chan interface{})
Result chan<- interface{}
}
// readDirNames reads the directory named by dirname and returns
// a sorted list of directory entries.
// taken from filepath/path.go
func readDirNames(dirname string) ([]string, error) {
f, err := os.Open(dirname)
if err != nil {
return nil, err
}
names, err := f.Readdirnames(-1)
f.Close()
if err != nil {
return nil, err
}
sort.Strings(names)
return names, nil
}
func isDir(fi os.FileInfo) bool {
return fi.IsDir()
}
func isFile(fi os.FileInfo) bool {
return fi.Mode()&(os.ModeType|os.ModeCharDevice) == 0
}
2015-03-02 14:48:47 +01:00
func walk(path string, done chan struct{}, jobs chan<- interface{}, res chan<- interface{}) error {
2015-02-15 12:57:09 +01:00
info, err := os.Lstat(path)
if err != nil {
return err
}
if !info.IsDir() {
2015-03-02 14:48:47 +01:00
jobs <- Entry{Info: info, Path: path, Result: res}
return nil
2015-02-15 12:57:09 +01:00
}
names, err := readDirNames(path)
if err != nil {
return err
}
entries := make([]<-chan interface{}, 0, len(names))
for _, name := range names {
subpath := filepath.Join(path, name)
2015-02-15 14:44:54 +01:00
2015-02-15 12:57:09 +01:00
ch := make(chan interface{}, 1)
2015-02-15 14:44:54 +01:00
entries = append(entries, ch)
2015-02-15 12:57:09 +01:00
fi, err := os.Lstat(subpath)
if err != nil {
2015-02-15 14:44:54 +01:00
// entCh <- Entry{Info: fi, Error: err, Result: ch}
return err
2015-02-15 12:57:09 +01:00
}
2015-02-15 14:44:54 +01:00
if isDir(fi) {
2015-03-02 14:48:47 +01:00
err = walk(subpath, done, jobs, ch)
2015-02-15 14:44:54 +01:00
if err != nil {
return err
}
} else {
2015-03-02 14:48:47 +01:00
jobs <- Entry{Info: fi, Path: subpath, Result: ch}
2015-02-15 12:57:09 +01:00
}
}
2015-03-02 14:48:47 +01:00
jobs <- Dir{Path: path, Info: info, Entries: entries, Result: res}
2015-02-15 12:57:09 +01:00
return nil
}
2015-03-02 14:48:47 +01:00
// Walk sends a Job for each file and directory it finds below the paths. When
// the channel done is closed, processing stops.
func Walk(paths []string, done chan struct{}, jobs chan<- interface{}) (<-chan interface{}, error) {
2015-02-15 12:57:09 +01:00
resCh := make(chan interface{}, 1)
2015-03-02 14:48:47 +01:00
defer func() {
close(resCh)
close(jobs)
debug.Log("pipe.Walk", "output channel closed")
}()
entries := make([]<-chan interface{}, 0, len(paths))
for _, path := range paths {
debug.Log("pipe.Walk", "start walker for %v", path)
ch := make(chan interface{}, 1)
entries = append(entries, ch)
err := walk(path, done, jobs, ch)
if err != nil {
return nil, err
}
debug.Log("pipe.Walk", "walker for %v done", path)
}
resCh <- Dir{Entries: entries}
return resCh, nil
}
// Split feeds all elements read from inChan to dirChan and entChan.
func Split(inChan <-chan interface{}, dirChan chan<- Dir, entChan chan<- Entry) {
debug.Log("pipe.Split", "start")
defer debug.Log("pipe.Split", "done")
inCh := inChan
dirCh := dirChan
entCh := entChan
var (
dir Dir
ent Entry
)
// deactivate sending until we received at least one job
dirCh = nil
entCh = nil
for {
select {
case job, ok := <-inCh:
if !ok {
// channel is closed
return
}
if job == nil {
panic("nil job received")
}
// disable receiving until the current job has been sent
inCh = nil
switch j := job.(type) {
case Dir:
dir = j
dirCh = dirChan
case Entry:
ent = j
entCh = entChan
default:
panic(fmt.Sprintf("unknown job type %v", j))
}
case dirCh <- dir:
// disable sending, re-enable receiving
dirCh = nil
inCh = inChan
case entCh <- ent:
// disable sending, re-enable receiving
entCh = nil
inCh = inChan
}
}
2015-02-15 12:57:09 +01:00
}