2018-01-13 00:30:54 +08:00
|
|
|
// Package walk walks directories
|
|
|
|
package walk
|
2017-02-25 06:51:01 +08:00
|
|
|
|
|
|
|
import (
|
2017-06-06 23:40:00 +08:00
|
|
|
"bytes"
|
2019-06-17 16:34:30 +08:00
|
|
|
"context"
|
2017-06-06 23:40:00 +08:00
|
|
|
"fmt"
|
|
|
|
"path"
|
|
|
|
"sort"
|
|
|
|
"strings"
|
2017-02-25 06:51:01 +08:00
|
|
|
"sync"
|
2017-06-30 20:37:29 +08:00
|
|
|
"time"
|
2017-02-25 06:51:01 +08:00
|
|
|
|
2018-01-13 00:30:54 +08:00
|
|
|
"github.com/ncw/rclone/fs"
|
|
|
|
"github.com/ncw/rclone/fs/filter"
|
|
|
|
"github.com/ncw/rclone/fs/list"
|
2017-02-25 06:51:01 +08:00
|
|
|
"github.com/pkg/errors"
|
|
|
|
)
|
|
|
|
|
|
|
|
// ErrorSkipDir is used as a return value from Walk to indicate that the
|
|
|
|
// directory named in the call is to be skipped. It is not returned as
|
|
|
|
// an error by any function.
|
|
|
|
var ErrorSkipDir = errors.New("skip this directory")
|
|
|
|
|
2017-06-06 23:40:00 +08:00
|
|
|
// ErrorCantListR is returned by WalkR if the underlying Fs isn't
|
|
|
|
// capable of doing a recursive listing.
|
|
|
|
var ErrorCantListR = errors.New("recursive directory listing not available")
|
|
|
|
|
2018-01-13 00:30:54 +08:00
|
|
|
// Func is the type of the function called for directory
|
2017-02-25 06:51:01 +08:00
|
|
|
// visited by Walk. The path argument contains remote path to the directory.
|
|
|
|
//
|
|
|
|
// If there was a problem walking to directory named by path, the
|
|
|
|
// incoming error will describe the problem and the function can
|
|
|
|
// decide how to handle that error (and Walk will not descend into
|
|
|
|
// that directory). If an error is returned, processing stops. The
|
|
|
|
// sole exception is when the function returns the special value
|
|
|
|
// ErrorSkipDir. If the function returns ErrorSkipDir, Walk skips the
|
|
|
|
// directory's contents entirely.
|
2018-01-13 00:30:54 +08:00
|
|
|
type Func func(path string, entries fs.DirEntries, err error) error
|
2017-02-25 06:51:01 +08:00
|
|
|
|
|
|
|
// Walk lists the directory.
|
|
|
|
//
|
|
|
|
// If includeAll is not set it will use the filters defined.
|
|
|
|
//
|
|
|
|
// If maxLevel is < 0 then it will recurse indefinitely, else it will
|
|
|
|
// only do maxLevel levels.
|
|
|
|
//
|
|
|
|
// It calls fn for each tranche of DirEntries read.
|
|
|
|
//
|
|
|
|
// Note that fn will not be called concurrently whereas the directory
|
|
|
|
// listing will proceed concurrently.
|
|
|
|
//
|
|
|
|
// Parent directories are always listed before their children
|
|
|
|
//
|
2019-01-21 18:02:23 +08:00
|
|
|
// This is implemented by WalkR if Config.UseUseListR is true
|
2017-06-06 23:40:00 +08:00
|
|
|
// and f supports it and level > 1, or WalkN otherwise.
|
|
|
|
//
|
2019-02-14 01:14:51 +08:00
|
|
|
// If --files-from and --no-traverse is set then a DirTree will be
|
|
|
|
// constructed with just those files in and then walked with WalkR
|
2018-10-20 00:41:14 +08:00
|
|
|
//
|
2017-02-25 06:51:01 +08:00
|
|
|
// NB (f, path) to be replaced by fs.Dir at some point
|
2019-06-17 16:34:30 +08:00
|
|
|
func Walk(ctx context.Context, f fs.Fs, path string, includeAll bool, maxLevel int, fn Func) error {
|
2019-02-14 01:14:51 +08:00
|
|
|
if fs.Config.NoTraverse && filter.Active.HaveFilesFrom() {
|
2019-06-17 16:34:30 +08:00
|
|
|
return walkR(ctx, f, path, includeAll, maxLevel, fn, filter.Active.MakeListR(ctx, f.NewObject))
|
2018-10-20 00:41:14 +08:00
|
|
|
}
|
2019-01-21 18:02:23 +08:00
|
|
|
// FIXME should this just be maxLevel < 0 - why the maxLevel > 1
|
2018-01-13 00:30:54 +08:00
|
|
|
if (maxLevel < 0 || maxLevel > 1) && fs.Config.UseListR && f.Features().ListR != nil {
|
2019-06-17 16:34:30 +08:00
|
|
|
return walkListR(ctx, f, path, includeAll, maxLevel, fn)
|
2017-06-06 23:40:00 +08:00
|
|
|
}
|
2019-06-17 16:34:30 +08:00
|
|
|
return walkListDirSorted(ctx, f, path, includeAll, maxLevel, fn)
|
2017-06-06 23:40:00 +08:00
|
|
|
}
|
|
|
|
|
2019-01-21 18:02:23 +08:00
|
|
|
// ListType is uses to choose which combination of files or directories is requires
|
|
|
|
type ListType byte
|
|
|
|
|
|
|
|
// Types of listing for ListR
|
|
|
|
const (
|
|
|
|
ListObjects ListType = 1 << iota // list objects only
|
|
|
|
ListDirs // list dirs only
|
|
|
|
ListAll = ListObjects | ListDirs // list files and dirs
|
|
|
|
)
|
|
|
|
|
|
|
|
// Objects returns true if the list type specifies objects
|
|
|
|
func (l ListType) Objects() bool {
|
|
|
|
return (l & ListObjects) != 0
|
|
|
|
}
|
|
|
|
|
|
|
|
// Dirs returns true if the list type specifies dirs
|
|
|
|
func (l ListType) Dirs() bool {
|
|
|
|
return (l & ListDirs) != 0
|
|
|
|
}
|
|
|
|
|
|
|
|
// Filter in (inplace) to only contain the type of list entry required
|
|
|
|
func (l ListType) Filter(in *fs.DirEntries) {
|
|
|
|
if l == ListAll {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
out := (*in)[:0]
|
|
|
|
for _, entry := range *in {
|
|
|
|
switch entry.(type) {
|
|
|
|
case fs.Object:
|
|
|
|
if l.Objects() {
|
|
|
|
out = append(out, entry)
|
|
|
|
}
|
|
|
|
case fs.Directory:
|
|
|
|
if l.Dirs() {
|
|
|
|
out = append(out, entry)
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
fs.Errorf(nil, "Unknown object type %T", entry)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*in = out
|
|
|
|
}
|
|
|
|
|
|
|
|
// ListR lists the directory recursively.
|
|
|
|
//
|
|
|
|
// If includeAll is not set it will use the filters defined.
|
|
|
|
//
|
|
|
|
// If maxLevel is < 0 then it will recurse indefinitely, else it will
|
|
|
|
// only do maxLevel levels.
|
|
|
|
//
|
|
|
|
// If synthesizeDirs is set then for bucket based remotes it will
|
|
|
|
// synthesize directories from the file structure. This uses extra
|
|
|
|
// memory so don't set this if you don't need directories, likewise do
|
|
|
|
// set this if you are interested in directories.
|
|
|
|
//
|
|
|
|
// It calls fn for each tranche of DirEntries read. Note that these
|
|
|
|
// don't necessarily represent a directory
|
|
|
|
//
|
|
|
|
// Note that fn will not be called concurrently whereas the directory
|
|
|
|
// listing will proceed concurrently.
|
|
|
|
//
|
|
|
|
// Directories are not listed in any particular order so you can't
|
|
|
|
// rely on parents coming before children or alphabetical ordering
|
|
|
|
//
|
|
|
|
// This is implemented by using ListR on the backend if possible and
|
|
|
|
// efficient, otherwise by Walk.
|
|
|
|
//
|
|
|
|
// NB (f, path) to be replaced by fs.Dir at some point
|
2019-06-17 16:34:30 +08:00
|
|
|
func ListR(ctx context.Context, f fs.Fs, path string, includeAll bool, maxLevel int, listType ListType, fn fs.ListRCallback) error {
|
2019-01-21 18:02:23 +08:00
|
|
|
// FIXME disable this with --no-fast-list ??? `--disable ListR` will do it...
|
|
|
|
doListR := f.Features().ListR
|
|
|
|
|
|
|
|
// Can't use ListR if...
|
|
|
|
if doListR == nil || // ...no ListR
|
|
|
|
filter.Active.HaveFilesFrom() || // ...using --files-from
|
|
|
|
maxLevel >= 0 || // ...using bounded recursion
|
|
|
|
len(filter.Active.Opt.ExcludeFile) > 0 || // ...using --exclude-file
|
|
|
|
filter.Active.BoundedRecursion() { // ...filters imply bounded recursion
|
2019-06-17 16:34:30 +08:00
|
|
|
return listRwalk(ctx, f, path, includeAll, maxLevel, listType, fn)
|
2019-01-21 18:02:23 +08:00
|
|
|
}
|
2019-06-17 16:34:30 +08:00
|
|
|
return listR(ctx, f, path, includeAll, listType, fn, doListR, listType.Dirs() && f.Features().BucketBased)
|
2019-01-21 18:02:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// listRwalk walks the file tree for ListR using Walk
|
2019-06-17 16:34:30 +08:00
|
|
|
func listRwalk(ctx context.Context, f fs.Fs, path string, includeAll bool, maxLevel int, listType ListType, fn fs.ListRCallback) error {
|
2019-01-21 18:02:23 +08:00
|
|
|
var listErr error
|
2019-06-17 16:34:30 +08:00
|
|
|
walkErr := Walk(ctx, f, path, includeAll, maxLevel, func(path string, entries fs.DirEntries, err error) error {
|
2019-01-21 18:02:23 +08:00
|
|
|
// Carry on listing but return the error at the end
|
|
|
|
if err != nil {
|
|
|
|
listErr = err
|
|
|
|
fs.CountError(err)
|
|
|
|
fs.Errorf(path, "error listing: %v", err)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
listType.Filter(&entries)
|
|
|
|
return fn(entries)
|
|
|
|
})
|
|
|
|
if listErr != nil {
|
|
|
|
return listErr
|
|
|
|
}
|
|
|
|
return walkErr
|
|
|
|
}
|
|
|
|
|
|
|
|
// dirMap keeps track of directories made for bucket based remotes.
|
|
|
|
// true => directory has been sent
|
|
|
|
// false => directory has been seen but not sent
|
|
|
|
type dirMap struct {
|
|
|
|
mu sync.Mutex
|
|
|
|
m map[string]bool
|
|
|
|
root string
|
|
|
|
}
|
|
|
|
|
|
|
|
// make a new dirMap
|
|
|
|
func newDirMap(root string) *dirMap {
|
|
|
|
return &dirMap{
|
|
|
|
m: make(map[string]bool),
|
|
|
|
root: root,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// add adds a directory and parents with sent
|
|
|
|
func (dm *dirMap) add(dir string, sent bool) {
|
|
|
|
for {
|
|
|
|
if dir == dm.root || dir == "" {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
currentSent, found := dm.m[dir]
|
|
|
|
if found {
|
|
|
|
// If it has been sent already then nothing more to do
|
|
|
|
if currentSent {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// If not sent already don't override
|
|
|
|
if !sent {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// currenSent == false && sent == true so needs overriding
|
|
|
|
}
|
|
|
|
dm.m[dir] = sent
|
|
|
|
// Add parents in as unsent
|
|
|
|
dir = parentDir(dir)
|
|
|
|
sent = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// add all the directories in entries and their parents to the dirMap
|
|
|
|
func (dm *dirMap) addEntries(entries fs.DirEntries) error {
|
|
|
|
dm.mu.Lock()
|
|
|
|
defer dm.mu.Unlock()
|
|
|
|
for _, entry := range entries {
|
|
|
|
switch x := entry.(type) {
|
|
|
|
case fs.Object:
|
|
|
|
dm.add(parentDir(x.Remote()), false)
|
|
|
|
case fs.Directory:
|
|
|
|
dm.add(x.Remote(), true)
|
|
|
|
default:
|
|
|
|
return errors.Errorf("unknown object type %T", entry)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// send any missing parents to fn
|
|
|
|
func (dm *dirMap) sendEntries(fn fs.ListRCallback) (err error) {
|
|
|
|
// Count the strings first so we allocate the minimum memory
|
|
|
|
n := 0
|
|
|
|
for _, sent := range dm.m {
|
|
|
|
if !sent {
|
|
|
|
n++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if n == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
dirs := make([]string, 0, n)
|
|
|
|
// Fill the dirs up then sort it
|
|
|
|
for dir, sent := range dm.m {
|
|
|
|
if !sent {
|
|
|
|
dirs = append(dirs, dir)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sort.Strings(dirs)
|
|
|
|
// Now convert to bulkier Dir in batches and send
|
|
|
|
now := time.Now()
|
|
|
|
list := NewListRHelper(fn)
|
|
|
|
for _, dir := range dirs {
|
|
|
|
err = list.Add(fs.NewDir(dir, now))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return list.Flush()
|
|
|
|
}
|
|
|
|
|
|
|
|
// listR walks the file tree using ListR
|
2019-06-17 16:34:30 +08:00
|
|
|
func listR(ctx context.Context, f fs.Fs, path string, includeAll bool, listType ListType, fn fs.ListRCallback, doListR fs.ListRFn, synthesizeDirs bool) error {
|
|
|
|
includeDirectory := filter.Active.IncludeDirectory(ctx, f)
|
2019-01-21 18:02:23 +08:00
|
|
|
if !includeAll {
|
|
|
|
includeAll = filter.Active.InActive()
|
|
|
|
}
|
|
|
|
var dm *dirMap
|
|
|
|
if synthesizeDirs {
|
|
|
|
dm = newDirMap(path)
|
|
|
|
}
|
|
|
|
var mu sync.Mutex
|
2019-06-17 16:34:30 +08:00
|
|
|
err := doListR(ctx, path, func(entries fs.DirEntries) (err error) {
|
2019-01-21 18:02:23 +08:00
|
|
|
if synthesizeDirs {
|
|
|
|
err = dm.addEntries(entries)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
listType.Filter(&entries)
|
|
|
|
if !includeAll {
|
|
|
|
filteredEntries := entries[:0]
|
|
|
|
for _, entry := range entries {
|
|
|
|
var include bool
|
|
|
|
switch x := entry.(type) {
|
|
|
|
case fs.Object:
|
2019-06-17 16:34:30 +08:00
|
|
|
include = filter.Active.IncludeObject(ctx, x)
|
2019-01-21 18:02:23 +08:00
|
|
|
case fs.Directory:
|
|
|
|
include, err = includeDirectory(x.Remote())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
return errors.Errorf("unknown object type %T", entry)
|
|
|
|
}
|
|
|
|
if include {
|
|
|
|
filteredEntries = append(filteredEntries, entry)
|
|
|
|
} else {
|
|
|
|
fs.Debugf(entry, "Excluded from sync (and deletion)")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
entries = filteredEntries
|
|
|
|
}
|
|
|
|
mu.Lock()
|
|
|
|
defer mu.Unlock()
|
|
|
|
return fn(entries)
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if synthesizeDirs {
|
|
|
|
err = dm.sendEntries(fn)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-01-13 00:30:54 +08:00
|
|
|
// walkListDirSorted lists the directory.
|
2017-06-06 23:40:00 +08:00
|
|
|
//
|
|
|
|
// It implements Walk using non recursive directory listing.
|
2019-06-17 16:34:30 +08:00
|
|
|
func walkListDirSorted(ctx context.Context, f fs.Fs, path string, includeAll bool, maxLevel int, fn Func) error {
|
|
|
|
return walk(ctx, f, path, includeAll, maxLevel, fn, list.DirSorted)
|
2017-02-25 06:51:01 +08:00
|
|
|
}
|
|
|
|
|
2018-01-13 00:30:54 +08:00
|
|
|
// walkListR lists the directory.
|
2017-06-06 23:40:00 +08:00
|
|
|
//
|
|
|
|
// It implements Walk using recursive directory listing if
|
|
|
|
// available, or returns ErrorCantListR if not.
|
2019-06-17 16:34:30 +08:00
|
|
|
func walkListR(ctx context.Context, f fs.Fs, path string, includeAll bool, maxLevel int, fn Func) error {
|
2017-06-12 05:43:31 +08:00
|
|
|
listR := f.Features().ListR
|
|
|
|
if listR == nil {
|
|
|
|
return ErrorCantListR
|
|
|
|
}
|
2019-06-17 16:34:30 +08:00
|
|
|
return walkR(ctx, f, path, includeAll, maxLevel, fn, listR)
|
2017-06-06 23:40:00 +08:00
|
|
|
}
|
|
|
|
|
2019-06-17 16:34:30 +08:00
|
|
|
type listDirFunc func(ctx context.Context, fs fs.Fs, includeAll bool, dir string) (entries fs.DirEntries, err error)
|
2017-02-25 06:51:01 +08:00
|
|
|
|
2019-06-17 16:34:30 +08:00
|
|
|
func walk(ctx context.Context, f fs.Fs, path string, includeAll bool, maxLevel int, fn Func, listDir listDirFunc) error {
|
2017-02-25 06:51:01 +08:00
|
|
|
var (
|
|
|
|
wg sync.WaitGroup // sync closing of go routines
|
|
|
|
traversing sync.WaitGroup // running directory traversals
|
|
|
|
doClose sync.Once // close the channel once
|
|
|
|
mu sync.Mutex // stop fn being called concurrently
|
|
|
|
)
|
|
|
|
// listJob describe a directory listing that needs to be done
|
|
|
|
type listJob struct {
|
|
|
|
remote string
|
|
|
|
depth int
|
|
|
|
}
|
|
|
|
|
2018-01-13 00:30:54 +08:00
|
|
|
in := make(chan listJob, fs.Config.Checkers)
|
2017-02-25 06:51:01 +08:00
|
|
|
errs := make(chan error, 1)
|
|
|
|
quit := make(chan struct{})
|
|
|
|
closeQuit := func() {
|
|
|
|
doClose.Do(func() {
|
|
|
|
close(quit)
|
|
|
|
go func() {
|
2018-03-03 01:01:58 +08:00
|
|
|
for range in {
|
2017-02-25 06:51:01 +08:00
|
|
|
traversing.Done()
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
})
|
|
|
|
}
|
2018-01-13 00:30:54 +08:00
|
|
|
for i := 0; i < fs.Config.Checkers; i++ {
|
2017-02-25 06:51:01 +08:00
|
|
|
wg.Add(1)
|
|
|
|
go func() {
|
|
|
|
defer wg.Done()
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case job, ok := <-in:
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
2019-06-17 16:34:30 +08:00
|
|
|
entries, err := listDir(ctx, f, includeAll, job.remote)
|
2017-06-15 23:40:56 +08:00
|
|
|
var jobs []listJob
|
|
|
|
if err == nil && job.depth != 0 {
|
2018-01-13 00:30:54 +08:00
|
|
|
entries.ForDir(func(dir fs.Directory) {
|
2017-06-15 23:40:56 +08:00
|
|
|
// Recurse for the directory
|
|
|
|
jobs = append(jobs, listJob{
|
|
|
|
remote: dir.Remote(),
|
|
|
|
depth: job.depth - 1,
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
2017-02-25 06:51:01 +08:00
|
|
|
mu.Lock()
|
|
|
|
err = fn(job.remote, entries, err)
|
|
|
|
mu.Unlock()
|
2017-06-15 23:40:56 +08:00
|
|
|
// NB once we have passed entries to fn we mustn't touch it again
|
2017-02-25 06:51:01 +08:00
|
|
|
if err != nil && err != ErrorSkipDir {
|
|
|
|
traversing.Done()
|
2018-01-13 00:30:54 +08:00
|
|
|
fs.CountError(err)
|
|
|
|
fs.Errorf(job.remote, "error listing: %v", err)
|
2017-02-25 06:51:01 +08:00
|
|
|
closeQuit()
|
|
|
|
// Send error to error channel if space
|
|
|
|
select {
|
|
|
|
case errs <- err:
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
2017-06-15 23:40:56 +08:00
|
|
|
if err == nil && len(jobs) > 0 {
|
2017-02-25 06:51:01 +08:00
|
|
|
traversing.Add(len(jobs))
|
|
|
|
go func() {
|
|
|
|
// Now we have traversed this directory, send these
|
|
|
|
// jobs off for traversal in the background
|
|
|
|
for _, newJob := range jobs {
|
|
|
|
in <- newJob
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
traversing.Done()
|
|
|
|
case <-quit:
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
// Start the process
|
|
|
|
traversing.Add(1)
|
|
|
|
in <- listJob{
|
|
|
|
remote: path,
|
|
|
|
depth: maxLevel - 1,
|
|
|
|
}
|
|
|
|
traversing.Wait()
|
|
|
|
close(in)
|
|
|
|
wg.Wait()
|
|
|
|
close(errs)
|
|
|
|
// return the first error returned or nil
|
|
|
|
return <-errs
|
|
|
|
}
|
|
|
|
|
2017-06-06 23:40:00 +08:00
|
|
|
// DirTree is a map of directories to entries
|
2018-01-13 00:30:54 +08:00
|
|
|
type DirTree map[string]fs.DirEntries
|
2017-06-06 23:40:00 +08:00
|
|
|
|
|
|
|
// parentDir finds the parent directory of path
|
|
|
|
func parentDir(entryPath string) string {
|
|
|
|
dirPath := path.Dir(entryPath)
|
|
|
|
if dirPath == "." {
|
|
|
|
dirPath = ""
|
|
|
|
}
|
|
|
|
return dirPath
|
|
|
|
}
|
|
|
|
|
|
|
|
// add an entry to the tree
|
2018-01-13 00:30:54 +08:00
|
|
|
func (dt DirTree) add(entry fs.DirEntry) {
|
2017-06-06 23:40:00 +08:00
|
|
|
dirPath := parentDir(entry.Remote())
|
|
|
|
dt[dirPath] = append(dt[dirPath], entry)
|
|
|
|
}
|
|
|
|
|
|
|
|
// add a directory entry to the tree
|
2018-01-13 00:30:54 +08:00
|
|
|
func (dt DirTree) addDir(entry fs.DirEntry) {
|
2017-06-06 23:40:00 +08:00
|
|
|
dt.add(entry)
|
|
|
|
// create the directory itself if it doesn't exist already
|
|
|
|
dirPath := entry.Remote()
|
|
|
|
if _, ok := dt[dirPath]; !ok {
|
|
|
|
dt[dirPath] = nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-25 05:53:02 +08:00
|
|
|
// Find returns the DirEntry for filePath or nil if not found
|
2018-01-13 00:30:54 +08:00
|
|
|
func (dt DirTree) Find(filePath string) (parentPath string, entry fs.DirEntry) {
|
2017-07-25 05:53:02 +08:00
|
|
|
parentPath = parentDir(filePath)
|
|
|
|
for _, entry := range dt[parentPath] {
|
|
|
|
if entry.Remote() == filePath {
|
|
|
|
return parentPath, entry
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return parentPath, nil
|
|
|
|
}
|
|
|
|
|
2017-06-06 23:40:00 +08:00
|
|
|
// check that dirPath has a *Dir in its parent
|
|
|
|
func (dt DirTree) checkParent(root, dirPath string) {
|
|
|
|
if dirPath == root {
|
|
|
|
return
|
|
|
|
}
|
2017-07-25 05:53:02 +08:00
|
|
|
parentPath, entry := dt.Find(dirPath)
|
|
|
|
if entry != nil {
|
|
|
|
return
|
2017-06-06 23:40:00 +08:00
|
|
|
}
|
2018-01-13 00:30:54 +08:00
|
|
|
dt[parentPath] = append(dt[parentPath], fs.NewDir(dirPath, time.Now()))
|
2017-06-06 23:40:00 +08:00
|
|
|
dt.checkParent(root, parentPath)
|
|
|
|
}
|
|
|
|
|
|
|
|
// check every directory in the tree has *Dir in its parent
|
|
|
|
func (dt DirTree) checkParents(root string) {
|
|
|
|
for dirPath := range dt {
|
|
|
|
dt.checkParent(root, dirPath)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sort sorts all the Entries
|
|
|
|
func (dt DirTree) Sort() {
|
|
|
|
for _, entries := range dt {
|
2017-07-06 21:07:26 +08:00
|
|
|
sort.Stable(entries)
|
2017-06-06 23:40:00 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Dirs returns the directories in sorted order
|
|
|
|
func (dt DirTree) Dirs() (dirNames []string) {
|
|
|
|
for dirPath := range dt {
|
|
|
|
dirNames = append(dirNames, dirPath)
|
|
|
|
}
|
|
|
|
sort.Strings(dirNames)
|
|
|
|
return dirNames
|
|
|
|
}
|
|
|
|
|
2017-11-09 17:26:28 +08:00
|
|
|
// Prune remove directories from a directory tree. dirNames contains
|
|
|
|
// all directories to remove as keys, with true as values. dirNames
|
|
|
|
// will be modified in the function.
|
|
|
|
func (dt DirTree) Prune(dirNames map[string]bool) error {
|
|
|
|
// We use map[string]bool to avoid recursion (and potential
|
|
|
|
// stack exhaustion).
|
|
|
|
|
|
|
|
// First we need delete directories from their parents.
|
|
|
|
for dName, remove := range dirNames {
|
|
|
|
if !remove {
|
|
|
|
// Currently all values should be
|
|
|
|
// true, therefore this should not
|
|
|
|
// happen. But this makes function
|
|
|
|
// more predictable.
|
2018-01-13 00:30:54 +08:00
|
|
|
fs.Infof(dName, "Directory in the map for prune, but the value is false")
|
2017-11-09 17:26:28 +08:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
if dName == "" {
|
|
|
|
// if dName is root, do nothing (no parent exist)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
parent := parentDir(dName)
|
|
|
|
// It may happen that dt does not have a dName key,
|
|
|
|
// since directory was excluded based on a filter. In
|
|
|
|
// such case the loop will be skipped.
|
|
|
|
for i, entry := range dt[parent] {
|
|
|
|
switch x := entry.(type) {
|
2018-01-13 00:30:54 +08:00
|
|
|
case fs.Directory:
|
2017-11-09 17:26:28 +08:00
|
|
|
if x.Remote() == dName {
|
|
|
|
// the slice is not sorted yet
|
|
|
|
// to delete item
|
|
|
|
// a) replace it with the last one
|
|
|
|
dt[parent][i] = dt[parent][len(dt[parent])-1]
|
|
|
|
// b) remove last
|
|
|
|
dt[parent] = dt[parent][:len(dt[parent])-1]
|
|
|
|
// we modify a slice within a loop, but we stop
|
|
|
|
// iterating immediately
|
|
|
|
break
|
|
|
|
}
|
2018-01-13 00:30:54 +08:00
|
|
|
case fs.Object:
|
2017-11-09 17:26:28 +08:00
|
|
|
// do nothing
|
|
|
|
default:
|
|
|
|
return errors.Errorf("unknown object type %T", entry)
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for len(dirNames) > 0 {
|
|
|
|
// According to golang specs, if new keys were added
|
|
|
|
// during range iteration, they may be skipped.
|
|
|
|
for dName, remove := range dirNames {
|
|
|
|
if !remove {
|
2018-01-13 00:30:54 +08:00
|
|
|
fs.Infof(dName, "Directory in the map for prune, but the value is false")
|
2017-11-09 17:26:28 +08:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
// First, add all subdirectories to dirNames.
|
|
|
|
|
|
|
|
// It may happen that dt[dName] does not exist.
|
|
|
|
// If so, the loop will be skipped.
|
|
|
|
for _, entry := range dt[dName] {
|
|
|
|
switch x := entry.(type) {
|
2018-01-13 00:30:54 +08:00
|
|
|
case fs.Directory:
|
2017-11-09 17:26:28 +08:00
|
|
|
excludeDir := x.Remote()
|
|
|
|
dirNames[excludeDir] = true
|
2018-01-13 00:30:54 +08:00
|
|
|
case fs.Object:
|
2017-11-09 17:26:28 +08:00
|
|
|
// do nothing
|
|
|
|
default:
|
|
|
|
return errors.Errorf("unknown object type %T", entry)
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Then remove current directory from DirTree
|
|
|
|
delete(dt, dName)
|
|
|
|
// and from dirNames
|
|
|
|
delete(dirNames, dName)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-06-06 23:40:00 +08:00
|
|
|
// String emits a simple representation of the DirTree
|
|
|
|
func (dt DirTree) String() string {
|
|
|
|
out := new(bytes.Buffer)
|
|
|
|
for _, dir := range dt.Dirs() {
|
2018-05-22 16:41:13 +08:00
|
|
|
_, _ = fmt.Fprintf(out, "%s/\n", dir)
|
2017-06-06 23:40:00 +08:00
|
|
|
for _, entry := range dt[dir] {
|
|
|
|
flag := ""
|
2018-01-13 00:30:54 +08:00
|
|
|
if _, ok := entry.(fs.Directory); ok {
|
2017-06-06 23:40:00 +08:00
|
|
|
flag = "/"
|
|
|
|
}
|
2018-05-22 16:41:13 +08:00
|
|
|
_, _ = fmt.Fprintf(out, " %s%s\n", path.Base(entry.Remote()), flag)
|
2017-06-06 23:40:00 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return out.String()
|
|
|
|
}
|
|
|
|
|
2019-06-17 16:34:30 +08:00
|
|
|
func walkRDirTree(ctx context.Context, f fs.Fs, startPath string, includeAll bool, maxLevel int, listR fs.ListRFn) (DirTree, error) {
|
2017-06-06 23:40:00 +08:00
|
|
|
dirs := make(DirTree)
|
2017-11-09 17:28:36 +08:00
|
|
|
// Entries can come in arbitrary order. We use toPrune to keep
|
|
|
|
// all directories to exclude later.
|
|
|
|
toPrune := make(map[string]bool)
|
2019-06-17 16:34:30 +08:00
|
|
|
includeDirectory := filter.Active.IncludeDirectory(ctx, f)
|
2017-06-12 05:43:31 +08:00
|
|
|
var mu sync.Mutex
|
2019-06-17 16:34:30 +08:00
|
|
|
err := listR(ctx, startPath, func(entries fs.DirEntries) error {
|
2017-06-12 05:43:31 +08:00
|
|
|
mu.Lock()
|
|
|
|
defer mu.Unlock()
|
2017-06-06 23:40:00 +08:00
|
|
|
for _, entry := range entries {
|
|
|
|
slashes := strings.Count(entry.Remote(), "/")
|
|
|
|
switch x := entry.(type) {
|
2018-01-13 00:30:54 +08:00
|
|
|
case fs.Object:
|
2017-06-06 23:40:00 +08:00
|
|
|
// Make sure we don't delete excluded files if not required
|
2019-06-17 16:34:30 +08:00
|
|
|
if includeAll || filter.Active.IncludeObject(ctx, x) {
|
2017-06-06 23:40:00 +08:00
|
|
|
if maxLevel < 0 || slashes <= maxLevel-1 {
|
|
|
|
dirs.add(x)
|
|
|
|
} else {
|
|
|
|
// Make sure we include any parent directories of excluded objects
|
|
|
|
dirPath := x.Remote()
|
|
|
|
for ; slashes > maxLevel-1; slashes-- {
|
|
|
|
dirPath = parentDir(dirPath)
|
|
|
|
}
|
2017-11-09 17:27:31 +08:00
|
|
|
dirs.checkParent(startPath, dirPath)
|
2017-06-06 23:40:00 +08:00
|
|
|
}
|
|
|
|
} else {
|
2018-01-13 00:30:54 +08:00
|
|
|
fs.Debugf(x, "Excluded from sync (and deletion)")
|
2017-06-06 23:40:00 +08:00
|
|
|
}
|
2017-11-09 17:28:36 +08:00
|
|
|
// Check if we need to prune a directory later.
|
2018-01-13 00:30:54 +08:00
|
|
|
if !includeAll && len(filter.Active.Opt.ExcludeFile) > 0 {
|
2017-11-09 17:28:36 +08:00
|
|
|
basename := path.Base(x.Remote())
|
2018-01-13 00:30:54 +08:00
|
|
|
if basename == filter.Active.Opt.ExcludeFile {
|
2017-11-09 17:28:36 +08:00
|
|
|
excludeDir := parentDir(x.Remote())
|
|
|
|
toPrune[excludeDir] = true
|
2018-01-13 00:30:54 +08:00
|
|
|
fs.Debugf(basename, "Excluded from sync (and deletion) based on exclude file")
|
2017-11-09 17:28:36 +08:00
|
|
|
}
|
|
|
|
}
|
2018-01-13 00:30:54 +08:00
|
|
|
case fs.Directory:
|
2017-11-09 17:28:36 +08:00
|
|
|
inc, err := includeDirectory(x.Remote())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if includeAll || inc {
|
2017-06-06 23:40:00 +08:00
|
|
|
if maxLevel < 0 || slashes <= maxLevel-1 {
|
|
|
|
if slashes == maxLevel-1 {
|
|
|
|
// Just add the object if at maxLevel
|
|
|
|
dirs.add(x)
|
|
|
|
} else {
|
|
|
|
dirs.addDir(x)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2018-01-13 00:30:54 +08:00
|
|
|
fs.Debugf(x, "Excluded from sync (and deletion)")
|
2017-06-06 23:40:00 +08:00
|
|
|
}
|
2017-11-10 21:57:38 +08:00
|
|
|
default:
|
|
|
|
return errors.Errorf("unknown object type %T", entry)
|
2017-06-06 23:40:00 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2017-11-09 17:27:31 +08:00
|
|
|
dirs.checkParents(startPath)
|
2017-06-06 23:40:00 +08:00
|
|
|
if len(dirs) == 0 {
|
2017-11-09 17:27:31 +08:00
|
|
|
dirs[startPath] = nil
|
2017-06-06 23:40:00 +08:00
|
|
|
}
|
2017-11-09 17:28:36 +08:00
|
|
|
err = dirs.Prune(toPrune)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2017-06-06 23:40:00 +08:00
|
|
|
dirs.Sort()
|
|
|
|
return dirs, nil
|
|
|
|
}
|
|
|
|
|
2017-07-25 05:52:18 +08:00
|
|
|
// Create a DirTree using List
|
2019-06-17 16:34:30 +08:00
|
|
|
func walkNDirTree(ctx context.Context, f fs.Fs, path string, includeAll bool, maxLevel int, listDir listDirFunc) (DirTree, error) {
|
2017-07-25 05:52:18 +08:00
|
|
|
dirs := make(DirTree)
|
2018-01-13 00:30:54 +08:00
|
|
|
fn := func(dirPath string, entries fs.DirEntries, err error) error {
|
2017-07-25 05:52:18 +08:00
|
|
|
if err == nil {
|
|
|
|
dirs[dirPath] = entries
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
2019-06-17 16:34:30 +08:00
|
|
|
err := walk(ctx, f, path, includeAll, maxLevel, fn, listDir)
|
2017-07-25 05:52:18 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return dirs, nil
|
|
|
|
}
|
|
|
|
|
2017-06-12 05:43:31 +08:00
|
|
|
// NewDirTree returns a DirTree filled with the directory listing
|
2017-07-25 05:52:18 +08:00
|
|
|
// using the parameters supplied.
|
|
|
|
//
|
|
|
|
// If includeAll is not set it will use the filters defined.
|
|
|
|
//
|
|
|
|
// If maxLevel is < 0 then it will recurse indefinitely, else it will
|
|
|
|
// only do maxLevel levels.
|
|
|
|
//
|
2019-02-04 00:06:04 +08:00
|
|
|
// This is implemented by WalkR if f supports ListR and level > 1, or
|
|
|
|
// WalkN otherwise.
|
2017-07-25 05:52:18 +08:00
|
|
|
//
|
2019-02-14 01:14:51 +08:00
|
|
|
// If --files-from and --no-traverse is set then a DirTree will be
|
|
|
|
// constructed with just those files in.
|
2018-10-20 00:41:14 +08:00
|
|
|
//
|
2017-07-25 05:52:18 +08:00
|
|
|
// NB (f, path) to be replaced by fs.Dir at some point
|
2019-06-17 16:34:30 +08:00
|
|
|
func NewDirTree(ctx context.Context, f fs.Fs, path string, includeAll bool, maxLevel int) (DirTree, error) {
|
2019-02-14 01:14:51 +08:00
|
|
|
if fs.Config.NoTraverse && filter.Active.HaveFilesFrom() {
|
2019-06-17 16:34:30 +08:00
|
|
|
return walkRDirTree(ctx, f, path, includeAll, maxLevel, filter.Active.MakeListR(ctx, f.NewObject))
|
2018-10-20 00:41:14 +08:00
|
|
|
}
|
2019-02-04 00:06:04 +08:00
|
|
|
if ListR := f.Features().ListR; (maxLevel < 0 || maxLevel > 1) && ListR != nil {
|
2019-06-17 16:34:30 +08:00
|
|
|
return walkRDirTree(ctx, f, path, includeAll, maxLevel, ListR)
|
2017-06-12 05:43:31 +08:00
|
|
|
}
|
2019-06-17 16:34:30 +08:00
|
|
|
return walkNDirTree(ctx, f, path, includeAll, maxLevel, list.DirSorted)
|
2017-06-06 23:40:00 +08:00
|
|
|
}
|
|
|
|
|
2019-06-17 16:34:30 +08:00
|
|
|
func walkR(ctx context.Context, f fs.Fs, path string, includeAll bool, maxLevel int, fn Func, listR fs.ListRFn) error {
|
|
|
|
dirs, err := walkRDirTree(ctx, f, path, includeAll, maxLevel, listR)
|
2017-06-06 23:40:00 +08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
skipping := false
|
|
|
|
skipPrefix := ""
|
2018-01-13 00:30:54 +08:00
|
|
|
emptyDir := fs.DirEntries{}
|
2017-06-06 23:40:00 +08:00
|
|
|
for _, dirPath := range dirs.Dirs() {
|
|
|
|
if skipping {
|
|
|
|
// Skip over directories as required
|
|
|
|
if strings.HasPrefix(dirPath, skipPrefix) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
skipping = false
|
|
|
|
}
|
|
|
|
entries := dirs[dirPath]
|
|
|
|
if entries == nil {
|
|
|
|
entries = emptyDir
|
|
|
|
}
|
|
|
|
err = fn(dirPath, entries, nil)
|
|
|
|
if err == ErrorSkipDir {
|
|
|
|
skipping = true
|
|
|
|
skipPrefix = dirPath
|
|
|
|
if skipPrefix != "" {
|
|
|
|
skipPrefix += "/"
|
|
|
|
}
|
|
|
|
} else if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-01-21 18:02:23 +08:00
|
|
|
// GetAll runs ListR getting all the results
|
2019-06-17 16:34:30 +08:00
|
|
|
func GetAll(ctx context.Context, f fs.Fs, path string, includeAll bool, maxLevel int) (objs []fs.Object, dirs []fs.Directory, err error) {
|
|
|
|
err = ListR(ctx, f, path, includeAll, maxLevel, ListAll, func(entries fs.DirEntries) error {
|
2017-02-25 06:51:01 +08:00
|
|
|
for _, entry := range entries {
|
|
|
|
switch x := entry.(type) {
|
2018-01-13 00:30:54 +08:00
|
|
|
case fs.Object:
|
2017-02-25 06:51:01 +08:00
|
|
|
objs = append(objs, x)
|
2018-01-13 00:30:54 +08:00
|
|
|
case fs.Directory:
|
2017-02-25 06:51:01 +08:00
|
|
|
dirs = append(dirs, x)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
2017-06-12 05:43:31 +08:00
|
|
|
|
|
|
|
// ListRHelper is used in the implementation of ListR to accumulate DirEntries
|
|
|
|
type ListRHelper struct {
|
2018-01-13 00:30:54 +08:00
|
|
|
callback fs.ListRCallback
|
|
|
|
entries fs.DirEntries
|
2017-06-12 05:43:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewListRHelper should be called from ListR with the callback passed in
|
2018-01-13 00:30:54 +08:00
|
|
|
func NewListRHelper(callback fs.ListRCallback) *ListRHelper {
|
2017-06-12 05:43:31 +08:00
|
|
|
return &ListRHelper{
|
|
|
|
callback: callback,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// send sends the stored entries to the callback if there are >= max
|
|
|
|
// entries.
|
|
|
|
func (lh *ListRHelper) send(max int) (err error) {
|
|
|
|
if len(lh.entries) >= max {
|
|
|
|
err = lh.callback(lh.entries)
|
|
|
|
lh.entries = lh.entries[:0]
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add an entry to the stored entries and send them if there are more
|
|
|
|
// than a certain amount
|
2018-01-13 00:30:54 +08:00
|
|
|
func (lh *ListRHelper) Add(entry fs.DirEntry) error {
|
2017-06-12 05:43:31 +08:00
|
|
|
if entry == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
lh.entries = append(lh.entries, entry)
|
|
|
|
return lh.send(100)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Flush the stored entries (if any) sending them to the callback
|
|
|
|
func (lh *ListRHelper) Flush() error {
|
|
|
|
return lh.send(1)
|
|
|
|
}
|