2017-08-26 03:25:04 +00:00
|
|
|
package torrentfs
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bazil.org/fuse"
|
|
|
|
fusefs "bazil.org/fuse/fs"
|
2018-01-06 05:37:13 +00:00
|
|
|
"github.com/anacrolix/torrent"
|
2017-08-26 03:25:04 +00:00
|
|
|
"golang.org/x/net/context"
|
|
|
|
)
|
|
|
|
|
|
|
|
type fileNode struct {
|
|
|
|
node
|
2018-01-06 05:37:13 +00:00
|
|
|
f *torrent.File
|
2017-08-26 03:25:04 +00:00
|
|
|
}
|
|
|
|
|
2017-08-27 04:19:58 +00:00
|
|
|
var (
|
|
|
|
_ fusefs.NodeOpener = fileNode{}
|
|
|
|
)
|
2017-08-26 03:25:04 +00:00
|
|
|
|
|
|
|
func (fn fileNode) Attr(ctx context.Context, attr *fuse.Attr) error {
|
2018-01-06 05:37:13 +00:00
|
|
|
attr.Size = uint64(fn.f.Length())
|
2017-08-26 03:25:04 +00:00
|
|
|
attr.Mode = defaultMode
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-08-27 04:19:58 +00:00
|
|
|
func (fn fileNode) Open(ctx context.Context, req *fuse.OpenRequest, resp *fuse.OpenResponse) (fusefs.Handle, error) {
|
2018-01-06 05:37:13 +00:00
|
|
|
r := fn.f.NewReader()
|
2017-08-27 15:42:02 +00:00
|
|
|
return fileHandle{fn, r}, nil
|
2017-08-26 03:25:04 +00:00
|
|
|
}
|