mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
9d46c4c138
Makes sure that if the user cancels a request that the daemon stops trying to traverse a directory. Signed-off-by: Brian Goff <cpuguy83@gmail.com>
42 lines
804 B
Go
42 lines
804 B
Go
package directory // import "github.com/docker/docker/pkg/directory"
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
"path/filepath"
|
|
)
|
|
|
|
// Size walks a directory tree and returns its total size in bytes.
|
|
func Size(ctx context.Context, dir string) (size int64, err error) {
|
|
err = filepath.Walk(dir, func(d string, fileInfo os.FileInfo, err error) error {
|
|
if err != nil {
|
|
// if dir does not exist, Size() returns the error.
|
|
// if dir/x disappeared while walking, Size() ignores dir/x.
|
|
if os.IsNotExist(err) && d != dir {
|
|
return nil
|
|
}
|
|
return err
|
|
}
|
|
|
|
select {
|
|
case <-ctx.Done():
|
|
return ctx.Err()
|
|
default:
|
|
}
|
|
|
|
// Ignore directory sizes
|
|
if fileInfo == nil {
|
|
return nil
|
|
}
|
|
|
|
s := fileInfo.Size()
|
|
if fileInfo.IsDir() || s == 0 {
|
|
return nil
|
|
}
|
|
|
|
size += s
|
|
|
|
return nil
|
|
})
|
|
return
|
|
}
|