mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 17:14:44 +01:00
64 lines
1.9 KiB
Go
64 lines
1.9 KiB
Go
// +build linux darwin freebsd
|
|
|
|
package mount
|
|
|
|
import (
|
|
"bazil.org/fuse"
|
|
fusefs "bazil.org/fuse/fs"
|
|
"github.com/ncw/rclone/cmd/mountlib"
|
|
"github.com/ncw/rclone/fs"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
// ReadFileHandle is an open for read file handle on a File
|
|
type ReadFileHandle struct {
|
|
*mountlib.ReadFileHandle
|
|
// mu sync.Mutex
|
|
// closed bool // set if handle has been closed
|
|
// r *fs.Account
|
|
// o fs.Object
|
|
// readCalled bool // set if read has been called
|
|
// offset int64
|
|
}
|
|
|
|
// Check interface satisfied
|
|
var _ fusefs.Handle = (*ReadFileHandle)(nil)
|
|
|
|
// Check interface satisfied
|
|
var _ fusefs.HandleReader = (*ReadFileHandle)(nil)
|
|
|
|
// Read from the file handle
|
|
func (fh *ReadFileHandle) Read(ctx context.Context, req *fuse.ReadRequest, resp *fuse.ReadResponse) (err error) {
|
|
dataRead := -1
|
|
defer fs.Trace(fh, "len=%d, offset=%d", req.Size, req.Offset)("read=%d, err=%v", &dataRead, &err)
|
|
data, err := fh.ReadFileHandle.Read(int64(req.Size), req.Offset)
|
|
if err != nil {
|
|
return translateError(err)
|
|
}
|
|
resp.Data = data
|
|
dataRead = len(data)
|
|
return nil
|
|
}
|
|
|
|
// Check interface satisfied
|
|
var _ fusefs.HandleFlusher = (*ReadFileHandle)(nil)
|
|
|
|
// Flush is called each time the file or directory is closed.
|
|
// Because there can be multiple file descriptors referring to a
|
|
// single opened file, Flush can be called multiple times.
|
|
func (fh *ReadFileHandle) Flush(ctx context.Context, req *fuse.FlushRequest) (err error) {
|
|
defer fs.Trace(fh, "")("err=%v", &err)
|
|
return translateError(fh.ReadFileHandle.Flush())
|
|
}
|
|
|
|
var _ fusefs.HandleReleaser = (*ReadFileHandle)(nil)
|
|
|
|
// Release is called when we are finished with the file handle
|
|
//
|
|
// It isn't called directly from userspace so the error is ignored by
|
|
// the kernel
|
|
func (fh *ReadFileHandle) Release(ctx context.Context, req *fuse.ReleaseRequest) (err error) {
|
|
defer fs.Trace(fh, "")("err=%v", &err)
|
|
return translateError(fh.ReadFileHandle.Release())
|
|
}
|