2016-11-03 12:51:36 +01:00
|
|
|
// Device reading functions
|
|
|
|
|
|
|
|
// +build darwin dragonfly freebsd linux netbsd openbsd solaris
|
|
|
|
|
|
|
|
package local
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"syscall"
|
|
|
|
|
|
|
|
"github.com/ncw/rclone/fs"
|
2018-01-12 17:30:54 +01:00
|
|
|
"github.com/ncw/rclone/fs/config/flags"
|
2016-11-03 12:51:36 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2018-01-12 17:30:54 +01:00
|
|
|
oneFileSystem = flags.BoolP("one-file-system", "x", false, "Don't cross filesystem boundaries.")
|
2016-11-03 12:51:36 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// readDevice turns a valid os.FileInfo into a device number,
|
|
|
|
// returning devUnset if it fails.
|
|
|
|
func readDevice(fi os.FileInfo) uint64 {
|
|
|
|
if !*oneFileSystem {
|
|
|
|
return devUnset
|
|
|
|
}
|
|
|
|
statT, ok := fi.Sys().(*syscall.Stat_t)
|
|
|
|
if !ok {
|
2017-02-09 12:01:20 +01:00
|
|
|
fs.Debugf(fi.Name(), "Type assertion fi.Sys().(*syscall.Stat_t) failed from: %#v", fi.Sys())
|
2016-11-03 12:51:36 +01:00
|
|
|
return devUnset
|
|
|
|
}
|
|
|
|
return uint64(statT.Dev)
|
|
|
|
}
|