2017-08-26 13:25:04 +10:00
|
|
|
package torrentfs
|
|
|
|
|
|
|
|
import (
|
2017-08-28 01:42:02 +10:00
|
|
|
"os"
|
|
|
|
|
2017-08-26 13:25:04 +10:00
|
|
|
"bazil.org/fuse"
|
|
|
|
fusefs "bazil.org/fuse/fs"
|
|
|
|
"golang.org/x/net/context"
|
|
|
|
)
|
|
|
|
|
|
|
|
type fileNode struct {
|
|
|
|
node
|
|
|
|
size uint64
|
|
|
|
TorrentOffset int64
|
|
|
|
}
|
|
|
|
|
2017-08-27 14:19:58 +10:00
|
|
|
var (
|
|
|
|
_ fusefs.NodeOpener = fileNode{}
|
|
|
|
)
|
2017-08-26 13:25:04 +10:00
|
|
|
|
|
|
|
func (fn fileNode) Attr(ctx context.Context, attr *fuse.Attr) error {
|
|
|
|
attr.Size = fn.size
|
|
|
|
attr.Mode = defaultMode
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-08-27 14:19:58 +10:00
|
|
|
func (fn fileNode) Open(ctx context.Context, req *fuse.OpenRequest, resp *fuse.OpenResponse) (fusefs.Handle, error) {
|
2017-08-28 01:42:02 +10:00
|
|
|
r := fn.t.NewReader()
|
|
|
|
r.Seek(fn.TorrentOffset, os.SEEK_SET)
|
|
|
|
return fileHandle{fn, r}, nil
|
2017-08-26 13:25:04 +10:00
|
|
|
}
|