2021-08-23 09:14:53 -04:00
|
|
|
//go:build linux || freebsd || darwin
|
2018-03-22 17:11:03 -04:00
|
|
|
// +build linux freebsd darwin
|
2015-02-27 13:50:55 -05:00
|
|
|
|
2018-02-05 16:05:59 -05:00
|
|
|
package directory // import "github.com/docker/docker/pkg/directory"
|
2015-02-27 13:50:55 -05:00
|
|
|
|
|
|
|
import (
|
2018-03-29 11:34:58 -04:00
|
|
|
"context"
|
2015-02-27 13:50:55 -05:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"syscall"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Size walks a directory tree and returns its total size in bytes.
|
2018-03-29 11:34:58 -04:00
|
|
|
func Size(ctx context.Context, dir string) (size int64, err error) {
|
2015-02-27 13:50:55 -05:00
|
|
|
data := make(map[uint64]struct{})
|
2016-05-26 22:47:32 -04:00
|
|
|
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
|
|
|
|
}
|
2018-03-29 11:34:58 -04:00
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
|
|
|
return ctx.Err()
|
|
|
|
default:
|
|
|
|
}
|
2016-05-26 22:47:32 -04:00
|
|
|
|
2015-02-27 13:50:55 -05:00
|
|
|
// Ignore directory sizes
|
|
|
|
if fileInfo == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
s := fileInfo.Size()
|
|
|
|
if fileInfo.IsDir() || s == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check inode to handle hard links correctly
|
|
|
|
inode := fileInfo.Sys().(*syscall.Stat_t).Ino
|
|
|
|
// inode is not a uint64 on all platforms. Cast it to avoid issues.
|
2017-08-24 13:11:44 -04:00
|
|
|
if _, exists := data[inode]; exists {
|
2015-02-27 13:50:55 -05:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
// inode is not a uint64 on all platforms. Cast it to avoid issues.
|
2017-08-24 13:11:44 -04:00
|
|
|
data[inode] = struct{}{}
|
2015-02-27 13:50:55 -05:00
|
|
|
|
|
|
|
size += s
|
|
|
|
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|