Documentation
¶
Overview ¶
package fuse/readonly implements a fuse filesystem to access files stored inside of ipfs.
Index ¶
- func Mount(ipfs *core.IpfsNode, mountpoint string) (mount.Mount, error)
- type FileSystem
- type Node
- func (s *Node) Attr(ctx context.Context, a *fuse.Attr) error
- func (s *Node) Lookup(ctx context.Context, name string) (fs.Node, error)
- func (s *Node) Read(ctx context.Context, req *fuse.ReadRequest, resp *fuse.ReadResponse) error
- func (s *Node) ReadDirAll(ctx context.Context) ([]fuse.Dirent, error)
- func (s *Node) Readlink(ctx context.Context, req *fuse.ReadlinkRequest) (string, error)
- type Root
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type FileSystem ¶
type FileSystem struct {
Ipfs *core.IpfsNode
}
FileSystem is the readonly IPFS Fuse Filesystem.
func NewFileSystem ¶
func NewFileSystem(ipfs *core.IpfsNode) *FileSystem
NewFileSystem constructs new fs using given core.IpfsNode instance.
type Node ¶
type Node struct {
Ipfs *core.IpfsNode
Nd *mdag.ProtoNode
// contains filtered or unexported fields
}
Node is the core object representing a filesystem tree node.
func (*Node) Attr ¶
func (s *Node) Attr(ctx context.Context, a *fuse.Attr) error
Attr returns the attributes of a given node.
func (*Node) Lookup ¶
func (s *Node) Lookup(ctx context.Context, name string) (fs.Node, error)
Lookup performs a lookup under this node.
func (*Node) Read ¶
func (s *Node) Read(ctx context.Context, req *fuse.ReadRequest, resp *fuse.ReadResponse) error
func (*Node) ReadDirAll ¶ added in v0.3.2
func (s *Node) ReadDirAll(ctx context.Context) ([]fuse.Dirent, error)
ReadDirAll reads the link structure as directory entries
type Root ¶
type Root struct {
Ipfs *core.IpfsNode
}
Root is the root object of the filesystem tree.
func (*Root) Attr ¶
func (*Root) Attr(ctx context.Context, a *fuse.Attr) error
Attr returns file attributes.
func (*Root) Lookup ¶
func (s *Root) Lookup(ctx context.Context, name string) (fs.Node, error)
Lookup performs a lookup under this node.
func (*Root) ReadDirAll ¶ added in v0.3.2
func (*Root) ReadDirAll(ctx context.Context) ([]fuse.Dirent, error)
ReadDirAll reads a particular directory. Disallowed for root.
Click to show internal directories.
Click to hide internal directories.