rclone/fs/fs.go

310 lines
8.3 KiB
Go
Raw Normal View History

2015-09-23 03:47:16 +10:00
// Package fs is a generic file system interface for rclone object storage systems
2013-06-28 05:13:07 +10:00
package fs
import (
"fmt"
"io"
"log"
"path/filepath"
2013-06-28 05:13:07 +10:00
"regexp"
"time"
)
// Constants
const (
2015-09-23 03:47:16 +10:00
// UserAgent for Fs which can set it
UserAgent = "rclone/" + Version
2015-09-23 03:47:16 +10:00
// ModTimeNotSupported is a very large precision value to show
// mod time isn't supported on this Fs
ModTimeNotSupported = 100 * 365 * 24 * time.Hour
)
2013-06-28 05:13:07 +10:00
// Globals
var (
// Filesystem registry
2015-09-23 03:47:16 +10:00
fsRegistry []*Info
// ErrorNotFoundInConfigFile is returned by NewFs if not found in config file
ErrorNotFoundInConfigFile = fmt.Errorf("Didn't find section in config file")
ErrorCantPurge = fmt.Errorf("Can't purge directory")
2015-09-23 03:47:16 +10:00
ErrorCantCopy = fmt.Errorf("Can't copy object - incompatible remotes")
ErrorCantMove = fmt.Errorf("Can't copy object - incompatible remotes")
ErrorCantDirMove = fmt.Errorf("Can't copy directory - incompatible remotes")
ErrorDirExists = fmt.Errorf("Can't copy directory - destination already exists")
2013-06-28 05:13:07 +10:00
)
2015-09-23 03:47:16 +10:00
// Info information about a filesystem
type Info struct {
// Name of this fs
Name string
// Create a new file system. If root refers to an existing
// object, then it should return a Fs which only returns that
// object.
NewFs func(name string, root string) (Fs, error)
// Function to call to help with config
Config func(string)
// Options for the Fs configuration
Options []Option
2013-06-28 05:13:07 +10:00
}
2015-09-23 03:47:16 +10:00
// Option is describes an option for the config wizard
type Option struct {
Name string
Help string
Optional bool
Examples []OptionExample
}
2015-09-23 03:47:16 +10:00
// OptionExample describes an example for an Option
type OptionExample struct {
Value string
Help string
}
2013-06-28 05:13:07 +10:00
// Register a filesystem
//
// Fs modules should use this in an init() function
2015-09-23 03:47:16 +10:00
func Register(info *Info) {
fsRegistry = append(fsRegistry, info)
2013-06-28 05:13:07 +10:00
}
2015-09-23 03:47:16 +10:00
// Fs is the interface a cloud storage system must provide
type Fs interface {
2015-09-23 03:47:16 +10:00
// Name of the remote (as passed into NewFs)
Name() string
2015-09-23 03:47:16 +10:00
// Root of the remote (as passed into NewFs)
2015-09-02 05:45:27 +10:00
Root() string
2013-01-19 05:54:19 +11:00
// String returns a description of the FS
String() string
2013-01-19 05:54:19 +11:00
// List the Fs into a channel
2013-06-28 17:57:32 +10:00
List() ObjectsChan
2013-01-19 05:54:19 +11:00
2015-09-23 03:47:16 +10:00
// ListDir lists the Fs directories/buckets/containers into a channel
2013-06-28 17:57:32 +10:00
ListDir() DirChan
2013-01-24 09:43:20 +11:00
2015-09-23 03:47:16 +10:00
// NewFsObject finds the Object at remote. Returns nil if can't be found
2013-06-28 17:57:32 +10:00
NewFsObject(remote string) Object
2013-01-19 05:54:19 +11:00
// Put in to the remote path with the modTime given of the given size
//
// May create the object even if it returns an error - if so
// will return the object and the error, otherwise will return
// nil and the error
2013-06-28 17:57:32 +10:00
Put(in io.Reader, remote string, modTime time.Time, size int64) (Object, error)
2013-01-19 05:54:19 +11:00
2015-09-23 03:47:16 +10:00
// Mkdir makes the directory (container, bucket)
//
// Shouldn't return an error if it already exists
Mkdir() error
2013-01-19 05:54:19 +11:00
2015-09-23 03:47:16 +10:00
// Rmdir removes the directory (container, bucket) if empty
//
// Return an error if it doesn't exist or isn't empty
Rmdir() error
// Precision of the ModTimes in this Fs
Precision() time.Duration
}
2015-09-23 03:47:16 +10:00
// Object is a filesystem like object provided by an Fs
2013-06-28 17:57:32 +10:00
type Object interface {
// String returns a description of the Object
String() string
// Fs returns the Fs that this object is part of
Fs() Fs
2013-01-19 05:54:19 +11:00
// Remote returns the remote path
Remote() string
2013-01-19 05:54:19 +11:00
// Md5sum returns the md5 checksum of the file
// If no Md5sum is available it returns ""
Md5sum() (string, error)
2013-01-19 05:54:19 +11:00
// ModTime returns the modification date of the file
// It should return a best guess if one isn't available
ModTime() time.Time
2013-01-19 05:54:19 +11:00
// SetModTime sets the metadata on the object to set the modification date
SetModTime(time.Time)
2013-01-19 05:54:19 +11:00
// Size returns the size of the file
Size() int64
2013-01-19 05:54:19 +11:00
// Open opens the file for read. Call Close() on the returned io.ReadCloser
Open() (io.ReadCloser, error)
2013-01-19 05:54:19 +11:00
// Update in to the object with the modTime given of the given size
Update(in io.Reader, modTime time.Time, size int64) error
2013-01-19 05:54:19 +11:00
// Storable says whether this object can be stored
Storable() bool
2013-01-19 05:54:19 +11:00
// Removes this object
Remove() error
}
2015-09-23 03:47:16 +10:00
// Purger is an optional interfaces for Fs
type Purger interface {
// Purge all files in the root and the root directory
//
// Implement this if you have a way of deleting all the files
// quicker than just running Remove() on the result of List()
//
// Return an error if it doesn't exist
Purge() error
}
2015-09-23 03:47:16 +10:00
// Copier is an optional interface for Fs
type Copier interface {
// Copy src to this remote using server side copy operations.
//
// This is stored with the remote path given
//
// It returns the destination Object and a possible error
//
// Will only be called if src.Fs().Name() == f.Name()
//
// If it isn't possible then return fs.ErrorCantCopy
Copy(src Object, remote string) (Object, error)
}
2015-09-23 03:47:16 +10:00
// Mover is an optional interface for Fs
type Mover interface {
// Move src to this remote using server side move operations.
//
// This is stored with the remote path given
//
// It returns the destination Object and a possible error
//
// Will only be called if src.Fs().Name() == f.Name()
//
// If it isn't possible then return fs.ErrorCantMove
Move(src Object, remote string) (Object, error)
}
2015-09-23 03:47:16 +10:00
// DirMover is an optional interface for Fs
type DirMover interface {
2015-09-23 03:47:16 +10:00
// DirMove moves src to this remote using server side move
// operations.
//
// Will only be called if src.Fs().Name() == f.Name()
//
// If it isn't possible then return fs.ErrorCantDirMove
//
// If destination exists then return fs.ErrorDirExists
DirMove(src Fs) error
}
2015-09-23 03:47:16 +10:00
// ObjectsChan is a channel of Objects
2013-06-28 17:57:32 +10:00
type ObjectsChan chan Object
2015-09-23 03:47:16 +10:00
// Objects is a slice of Object~s
2013-06-28 17:57:32 +10:00
type Objects []Object
2015-09-23 03:47:16 +10:00
// ObjectPair is a pair of Objects used to describe a potential copy
// operation.
type ObjectPair struct {
src, dst Object
}
2015-09-23 03:47:16 +10:00
// ObjectPairChan is a channel of ObjectPair
type ObjectPairChan chan ObjectPair
2015-09-23 03:47:16 +10:00
// Dir describes a directory for directory/container/bucket lists
2013-06-28 17:57:32 +10:00
type Dir struct {
2013-01-24 09:43:20 +11:00
Name string // name of the directory
When time.Time // modification or creation time - IsZero for unknown
Bytes int64 // size of directory and contents -1 for unknown
Count int64 // number of objects -1 for unknown
}
2015-09-23 03:47:16 +10:00
// DirChan is a channel of Dir objects
2013-06-28 17:57:32 +10:00
type DirChan chan *Dir
2013-01-24 09:43:20 +11:00
2015-09-23 03:47:16 +10:00
// Find looks for an Info object for the name passed in
//
// Services are looked up in the config file
2015-09-23 03:47:16 +10:00
func Find(name string) (*Info, error) {
for _, item := range fsRegistry {
if item.Name == name {
return item, nil
}
}
return nil, fmt.Errorf("Didn't find filing system for %q", name)
}
// Pattern to match an rclone url
var matcher = regexp.MustCompile(`^([\w_ -]+):(.*)$`)
// NewFs makes a new Fs object from the path
//
// The path is of the form remote:path
//
// Remotes are looked up in the config file. If the remote isn't
// found then NotFoundInConfigFile will be returned.
//
// On Windows avoid single character remote names as they can be mixed
// up with drive letters.
func NewFs(path string) (Fs, error) {
parts := matcher.FindStringSubmatch(path)
fsName, configName, fsPath := "local", "local", path
if parts != nil && !isDriveLetter(parts[1]) {
configName, fsPath = parts[1], parts[2]
var err error
fsName, err = ConfigFile.GetValue(configName, "type")
if err != nil {
2015-09-23 03:47:16 +10:00
return nil, ErrorNotFoundInConfigFile
2013-06-28 05:13:07 +10:00
}
}
fs, err := Find(fsName)
if err != nil {
return nil, err
}
// change native directory separators to / if there are any
fsPath = filepath.ToSlash(fsPath)
return fs.NewFs(configName, fsPath)
}
2015-09-23 03:47:16 +10:00
// OutputLog logs for an object
func OutputLog(o interface{}, text string, args ...interface{}) {
description := ""
2015-03-09 19:11:38 +11:00
if o != nil {
description = fmt.Sprintf("%v: ", o)
}
out := fmt.Sprintf(text, args...)
log.Print(description + out)
}
2015-09-23 03:47:16 +10:00
// Debug writes debuging output for this Object or Fs
func Debug(o interface{}, text string, args ...interface{}) {
2013-06-28 05:13:07 +10:00
if Config.Verbose {
OutputLog(o, text, args...)
}
}
2015-09-23 03:47:16 +10:00
// Log writes log output for this Object or Fs
func Log(o interface{}, text string, args ...interface{}) {
2013-06-28 05:13:07 +10:00
if !Config.Quiet {
OutputLog(o, text, args...)
}
}
2015-09-23 03:47:16 +10:00
// ErrorLog writes error log output for this Object or Fs. It
// unconditionally logs a message regardless of Config.Quiet or
// Config.Verbose.
func ErrorLog(o interface{}, text string, args ...interface{}) {
OutputLog(o, text, args...)
}
// checkClose is a utility function used to check the return from
// Close in a defer statement.
func checkClose(c io.Closer, err *error) {
cerr := c.Close()
if *err == nil {
*err = cerr
}
}