mirror of
https://github.com/rclone/rclone.git
synced 2024-11-22 14:22:04 +08:00
83 lines
3.1 KiB
Go
83 lines
3.1 KiB
Go
package vfscommon
|
|
|
|
import (
|
|
"os"
|
|
"runtime"
|
|
"time"
|
|
|
|
"github.com/rclone/rclone/fs"
|
|
)
|
|
|
|
// Options is options for creating the vfs
|
|
type Options struct {
|
|
NoSeek bool // don't allow seeking if set
|
|
NoChecksum bool // don't check checksums if set
|
|
ReadOnly bool // if set VFS is read only
|
|
NoModTime bool // don't read mod times for files
|
|
DirCacheTime fs.Duration // how long to consider directory listing cache valid
|
|
Refresh bool // refreshes the directory listing recursively on start
|
|
PollInterval fs.Duration
|
|
Umask int
|
|
UID uint32
|
|
GID uint32
|
|
DirPerms os.FileMode
|
|
FilePerms os.FileMode
|
|
ChunkSize fs.SizeSuffix // if > 0 read files in chunks
|
|
ChunkSizeLimit fs.SizeSuffix // if > ChunkSize double the chunk size after each chunk until reached
|
|
CacheMode CacheMode
|
|
CacheMaxAge fs.Duration
|
|
CacheMaxSize fs.SizeSuffix
|
|
CacheMinFreeSpace fs.SizeSuffix
|
|
CachePollInterval fs.Duration
|
|
CaseInsensitive bool
|
|
BlockNormDupes bool
|
|
WriteWait fs.Duration // time to wait for in-sequence write
|
|
ReadWait fs.Duration // time to wait for in-sequence read
|
|
WriteBack fs.Duration // time to wait before writing back dirty files
|
|
ReadAhead fs.SizeSuffix // bytes to read ahead in cache mode "full"
|
|
UsedIsSize bool // if true, use the `rclone size` algorithm for Used size
|
|
FastFingerprint bool // if set use fast fingerprints
|
|
DiskSpaceTotalSize fs.SizeSuffix
|
|
}
|
|
|
|
// DefaultOpt is the default values uses for Opt
|
|
var DefaultOpt = Options{
|
|
NoModTime: false,
|
|
NoChecksum: false,
|
|
NoSeek: false,
|
|
DirCacheTime: fs.Duration(5 * 60 * time.Second),
|
|
Refresh: false,
|
|
PollInterval: fs.Duration(time.Minute),
|
|
ReadOnly: false,
|
|
Umask: 0,
|
|
UID: ^uint32(0), // these values instruct WinFSP-FUSE to use the current user
|
|
GID: ^uint32(0), // overridden for non windows in mount_unix.go
|
|
DirPerms: os.FileMode(0777),
|
|
FilePerms: os.FileMode(0666),
|
|
CacheMode: CacheModeOff,
|
|
CacheMaxAge: fs.Duration(3600 * time.Second),
|
|
CachePollInterval: fs.Duration(60 * time.Second),
|
|
ChunkSize: 128 * fs.Mebi,
|
|
ChunkSizeLimit: -1,
|
|
CacheMaxSize: -1,
|
|
CacheMinFreeSpace: -1,
|
|
CaseInsensitive: runtime.GOOS == "windows" || runtime.GOOS == "darwin", // default to true on Windows and Mac, false otherwise
|
|
WriteWait: fs.Duration(1000 * time.Millisecond),
|
|
ReadWait: fs.Duration(20 * time.Millisecond),
|
|
WriteBack: fs.Duration(5 * time.Second),
|
|
ReadAhead: 0 * fs.Mebi,
|
|
UsedIsSize: false,
|
|
DiskSpaceTotalSize: -1,
|
|
}
|
|
|
|
// Init the options, making sure everything is within range
|
|
func (opt *Options) Init() {
|
|
// Mask the permissions with the umask
|
|
opt.DirPerms &= ^os.FileMode(opt.Umask)
|
|
opt.FilePerms &= ^os.FileMode(opt.Umask)
|
|
|
|
// Make sure directories are returned as directories
|
|
opt.DirPerms |= os.ModeDir
|
|
|
|
}
|