使用go-fuse:nodefs创建了一个FUSE文件系统。一切正常,但文件没有打开。
基本上文件节点如下:
type SomeFileNode struct {
nodefs.Node
content string
}
func (this *SomeFileNode) Open(flags uint32, context *fuse.Context) (nodefs.File, fuse.Status) {
return nodefs.NewDataFile([]byte(this.content)), fuse.OK
}
我期望cat
该文件,但没有任何内容打印到stdout。
我错过了什么?
完整的代码:
func main() {
mountPoint := "/some/mountpoint"
fs := &SomeFs{Root: &SomeRootNode{nodefs.NewDefaultNode()}}
server, _, err := nodefs.MountRoot(mountPoint, fs.Root, nil)
if err != nil {
log.Fatalln("Mount fail")
os.Exit(1)
}
server.Serve()
}
type SomeFs struct {
Root *SomeRootNode
}
type SomeRootNode struct {
nodefs.Node
}
type SomeFileNode struct {
nodefs.Node
content string
}
func (this *SomeRootNode) OnMount(c *nodefs.FileSystemConnector) {
this.Inode().NewChild("leaf", false, &SomeFileNode{Node: nodefs.NewDefaultNode(), content: "hello"})
}
func (this *SomeFileNode) Open(flags uint32, context *fuse.Context) (nodefs.File, fuse.Status) {
return nodefs.NewDataFile([]byte(this.content)), fuse.OK
}