2017-10-28 21:01:34 +02:00
|
|
|
package vfs
|
2017-05-02 23:35:07 +02:00
|
|
|
|
|
|
|
import (
|
2017-10-25 11:00:26 +02:00
|
|
|
"os"
|
2017-05-09 12:29:02 +02:00
|
|
|
"path"
|
2017-05-02 23:35:07 +02:00
|
|
|
"sync"
|
|
|
|
"sync/atomic"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/ncw/rclone/fs"
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
)
|
|
|
|
|
|
|
|
// File represents a file
|
|
|
|
type File struct {
|
|
|
|
inode uint64 // inode number
|
|
|
|
size int64 // size of file - read and written with atomic int64 - must be 64 bit aligned
|
|
|
|
d *Dir // parent directory - read only
|
|
|
|
mu sync.RWMutex // protects the following
|
|
|
|
o fs.Object // NB o may be nil if file is being written
|
2017-05-09 12:29:02 +02:00
|
|
|
leaf string // leaf name of the object
|
2017-05-02 23:35:07 +02:00
|
|
|
writers int // number of writers for this file
|
|
|
|
pendingModTime time.Time // will be applied once o becomes available, i.e. after file was written
|
|
|
|
}
|
|
|
|
|
|
|
|
// newFile creates a new File
|
2017-05-09 12:29:02 +02:00
|
|
|
func newFile(d *Dir, o fs.Object, leaf string) *File {
|
2017-05-02 23:35:07 +02:00
|
|
|
return &File{
|
|
|
|
d: d,
|
|
|
|
o: o,
|
2017-05-09 12:29:02 +02:00
|
|
|
leaf: leaf,
|
2017-05-02 23:35:07 +02:00
|
|
|
inode: NewInode(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-09 12:29:02 +02:00
|
|
|
// String converts it to printable
|
|
|
|
func (f *File) String() string {
|
|
|
|
if f == nil {
|
|
|
|
return "<nil *File>"
|
|
|
|
}
|
|
|
|
return path.Join(f.d.path, f.leaf)
|
|
|
|
}
|
|
|
|
|
2017-05-02 23:35:07 +02:00
|
|
|
// IsFile returns true for File - satisfies Node interface
|
|
|
|
func (f *File) IsFile() bool {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2017-10-25 11:00:26 +02:00
|
|
|
// IsDir returns false for File - satisfies Node interface
|
|
|
|
func (f *File) IsDir() bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// Mode bits of the file or directory - satisfies Node interface
|
|
|
|
func (f *File) Mode() (mode os.FileMode) {
|
|
|
|
return 0666
|
|
|
|
}
|
|
|
|
|
|
|
|
// Name (base) of the directory - satisfies Node interface
|
|
|
|
func (f *File) Name() (name string) {
|
|
|
|
return path.Base(f.o.Remote())
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sys returns underlying data source (can be nil) - satisfies Node interface
|
|
|
|
func (f *File) Sys() interface{} {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-05-02 23:35:07 +02:00
|
|
|
// Inode returns the inode number - satisfies Node interface
|
|
|
|
func (f *File) Inode() uint64 {
|
|
|
|
return f.inode
|
|
|
|
}
|
|
|
|
|
|
|
|
// Node returns the Node assocuated with this - satisfies Noder interface
|
|
|
|
func (f *File) Node() Node {
|
|
|
|
return f
|
|
|
|
}
|
|
|
|
|
|
|
|
// rename should be called to update f.o and f.d after a rename
|
|
|
|
func (f *File) rename(d *Dir, o fs.Object) {
|
|
|
|
f.mu.Lock()
|
|
|
|
f.o = o
|
|
|
|
f.d = d
|
|
|
|
f.mu.Unlock()
|
|
|
|
}
|
|
|
|
|
|
|
|
// addWriters increments or decrements the writers
|
|
|
|
func (f *File) addWriters(n int) {
|
|
|
|
f.mu.Lock()
|
|
|
|
f.writers += n
|
|
|
|
f.mu.Unlock()
|
|
|
|
}
|
|
|
|
|
2017-10-25 11:00:26 +02:00
|
|
|
// ModTime returns the modified time of the file
|
|
|
|
//
|
|
|
|
// if NoModTime is set then it returns the mod time of the directory
|
|
|
|
func (f *File) ModTime() (modTime time.Time) {
|
|
|
|
f.mu.Lock()
|
|
|
|
defer f.mu.Unlock()
|
|
|
|
|
2017-10-29 12:00:56 +01:00
|
|
|
if !f.d.vfs.Opt.NoModTime {
|
2017-10-25 11:00:26 +02:00
|
|
|
// if o is nil it isn't valid yet or there are writers, so return the size so far
|
|
|
|
if f.o == nil || f.writers != 0 {
|
|
|
|
if !f.pendingModTime.IsZero() {
|
|
|
|
return f.pendingModTime
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return f.o.ModTime()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return f.d.modTime
|
|
|
|
}
|
|
|
|
|
|
|
|
// Size of the file
|
|
|
|
func (f *File) Size() int64 {
|
2017-05-02 23:35:07 +02:00
|
|
|
f.mu.Lock()
|
|
|
|
defer f.mu.Unlock()
|
2017-10-25 11:00:26 +02:00
|
|
|
|
2017-05-02 23:35:07 +02:00
|
|
|
// if o is nil it isn't valid yet or there are writers, so return the size so far
|
|
|
|
if f.o == nil || f.writers != 0 {
|
2017-10-25 11:00:26 +02:00
|
|
|
return atomic.LoadInt64(&f.size)
|
2017-05-02 23:35:07 +02:00
|
|
|
}
|
2017-10-25 11:00:26 +02:00
|
|
|
return f.o.Size()
|
2017-05-02 23:35:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// SetModTime sets the modtime for the file
|
|
|
|
func (f *File) SetModTime(modTime time.Time) error {
|
2017-10-29 12:00:56 +01:00
|
|
|
if f.d.vfs.Opt.ReadOnly {
|
2017-05-11 14:15:51 +02:00
|
|
|
return EROFS
|
|
|
|
}
|
2017-05-02 23:35:07 +02:00
|
|
|
f.mu.Lock()
|
|
|
|
defer f.mu.Unlock()
|
|
|
|
|
|
|
|
f.pendingModTime = modTime
|
|
|
|
|
|
|
|
if f.o != nil {
|
|
|
|
return f.applyPendingModTime()
|
|
|
|
}
|
|
|
|
|
|
|
|
// queue up for later, hoping f.o becomes available
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// call with the mutex held
|
|
|
|
func (f *File) applyPendingModTime() error {
|
|
|
|
defer func() { f.pendingModTime = time.Time{} }()
|
|
|
|
|
|
|
|
if f.pendingModTime.IsZero() {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if f.o == nil {
|
|
|
|
return errors.New("Cannot apply ModTime, file object is not available")
|
|
|
|
}
|
|
|
|
|
|
|
|
err := f.o.SetModTime(f.pendingModTime)
|
|
|
|
switch err {
|
|
|
|
case nil:
|
|
|
|
fs.Debugf(f.o, "File.applyPendingModTime OK")
|
2017-06-13 14:58:39 +02:00
|
|
|
case fs.ErrorCantSetModTime, fs.ErrorCantSetModTimeWithoutDelete:
|
2017-05-02 23:35:07 +02:00
|
|
|
// do nothing, in order to not break "touch somefile" if it exists already
|
|
|
|
default:
|
|
|
|
fs.Errorf(f.o, "File.applyPendingModTime error: %v", err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update the size while writing
|
|
|
|
func (f *File) setSize(n int64) {
|
|
|
|
atomic.StoreInt64(&f.size, n)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update the object when written
|
|
|
|
func (f *File) setObject(o fs.Object) {
|
|
|
|
f.mu.Lock()
|
|
|
|
defer f.mu.Unlock()
|
|
|
|
f.o = o
|
|
|
|
_ = f.applyPendingModTime()
|
2017-10-26 18:21:03 +02:00
|
|
|
f.d.addObject(f)
|
2017-05-02 23:35:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Wait for f.o to become non nil for a short time returning it or an
|
|
|
|
// error
|
|
|
|
//
|
|
|
|
// Call without the mutex held
|
|
|
|
func (f *File) waitForValidObject() (o fs.Object, err error) {
|
|
|
|
for i := 0; i < 50; i++ {
|
|
|
|
f.mu.Lock()
|
|
|
|
o = f.o
|
|
|
|
writers := f.writers
|
|
|
|
f.mu.Unlock()
|
|
|
|
if o != nil {
|
|
|
|
return o, nil
|
|
|
|
}
|
|
|
|
if writers == 0 {
|
|
|
|
return nil, errors.New("can't open file - writer failed")
|
|
|
|
}
|
|
|
|
time.Sleep(100 * time.Millisecond)
|
|
|
|
}
|
|
|
|
return nil, ENOENT
|
|
|
|
}
|
|
|
|
|
|
|
|
// OpenRead open the file for read
|
|
|
|
func (f *File) OpenRead() (fh *ReadFileHandle, err error) {
|
|
|
|
// if o is nil it isn't valid yet
|
|
|
|
o, err := f.waitForValidObject()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2017-05-09 12:39:33 +02:00
|
|
|
// fs.Debugf(o, "File.OpenRead")
|
2017-05-02 23:35:07 +02:00
|
|
|
|
2017-05-08 18:52:09 +02:00
|
|
|
fh, err = newReadFileHandle(f, o)
|
2017-05-02 23:35:07 +02:00
|
|
|
err = errors.Wrap(err, "open for read")
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
fs.Errorf(o, "File.OpenRead failed: %v", err)
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return fh, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// OpenWrite open the file for write
|
|
|
|
func (f *File) OpenWrite() (fh *WriteFileHandle, err error) {
|
2017-10-29 12:00:56 +01:00
|
|
|
if f.d.vfs.Opt.ReadOnly {
|
2017-05-11 14:15:51 +02:00
|
|
|
return nil, EROFS
|
|
|
|
}
|
2017-05-02 23:35:07 +02:00
|
|
|
// if o is nil it isn't valid yet
|
|
|
|
o, err := f.waitForValidObject()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2017-05-09 12:39:33 +02:00
|
|
|
// fs.Debugf(o, "File.OpenWrite")
|
2017-05-02 23:35:07 +02:00
|
|
|
|
|
|
|
src := newCreateInfo(f.d.f, o.Remote())
|
|
|
|
fh, err = newWriteFileHandle(f.d, f, src)
|
|
|
|
err = errors.Wrap(err, "open for write")
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
fs.Errorf(o, "File.OpenWrite failed: %v", err)
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return fh, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fsync the file
|
|
|
|
//
|
|
|
|
// Note that we don't do anything except return OK
|
|
|
|
func (f *File) Fsync() error {
|
|
|
|
return nil
|
|
|
|
}
|
2017-10-26 17:55:40 +02:00
|
|
|
|
|
|
|
// Remove the file
|
|
|
|
func (f *File) Remove() error {
|
2017-10-29 12:00:56 +01:00
|
|
|
if f.d.vfs.Opt.ReadOnly {
|
2017-10-26 17:55:40 +02:00
|
|
|
return EROFS
|
|
|
|
}
|
|
|
|
err := f.o.Remove()
|
|
|
|
if err != nil {
|
|
|
|
fs.Errorf(f.o, "File.Remove file error: %v", err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
// Remove the item from the directory listing
|
|
|
|
f.d.delObject(f.Name())
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// RemoveAll the file - same as remove for files
|
|
|
|
func (f *File) RemoveAll() error {
|
|
|
|
return f.Remove()
|
|
|
|
}
|
2017-10-26 18:02:48 +02:00
|
|
|
|
|
|
|
// DirEntry returns the underlying fs.DirEntry
|
|
|
|
func (f *File) DirEntry() (entry fs.DirEntry) {
|
|
|
|
return f.o
|
|
|
|
}
|
2017-10-29 12:00:56 +01:00
|
|
|
|
|
|
|
// Dir returns the directory this file is in
|
|
|
|
func (f *File) Dir() *Dir {
|
|
|
|
return f.d
|
|
|
|
}
|
|
|
|
|
|
|
|
// VFS returns the instance of the VFS
|
|
|
|
func (f *File) VFS() *VFS {
|
|
|
|
return f.d.vfs
|
|
|
|
}
|