mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 17:14:44 +01:00
f3f48d7d49
This unifies the 3 methods of reading config * command line * environment variable * config file And allows them all to be configured in all places. This is done by making the []fs.Option in the backend registration be the master source of what the backend options are. The backend changes are: * Use the new configmap.Mapper parameter * Use configstruct to parse it into an Options struct * Add all config to []fs.Option including defaults and help * Remove all uses of pflag * Remove all uses of config.FileGet
27 lines
562 B
Go
27 lines
562 B
Go
// Device reading functions
|
|
|
|
// +build darwin dragonfly freebsd linux netbsd openbsd solaris
|
|
|
|
package local
|
|
|
|
import (
|
|
"os"
|
|
"syscall"
|
|
|
|
"github.com/ncw/rclone/fs"
|
|
)
|
|
|
|
// readDevice turns a valid os.FileInfo into a device number,
|
|
// returning devUnset if it fails.
|
|
func readDevice(fi os.FileInfo, oneFileSystem bool) uint64 {
|
|
if !oneFileSystem {
|
|
return devUnset
|
|
}
|
|
statT, ok := fi.Sys().(*syscall.Stat_t)
|
|
if !ok {
|
|
fs.Debugf(fi.Name(), "Type assertion fi.Sys().(*syscall.Stat_t) failed from: %#v", fi.Sys())
|
|
return devUnset
|
|
}
|
|
return uint64(statT.Dev)
|
|
}
|