mirror of https://github.com/perkeep/perkeep.git
77 lines
1.4 KiB
Go
77 lines
1.4 KiB
Go
![]() |
// Hellofs implements a simple "hello world" file system.
|
||
|
package main
|
||
|
|
||
|
import (
|
||
|
"flag"
|
||
|
"fmt"
|
||
|
"log"
|
||
|
"os"
|
||
|
|
||
|
"camlistore.org/third_party/bazil.org/fuse"
|
||
|
"camlistore.org/third_party/bazil.org/fuse/fs"
|
||
|
)
|
||
|
|
||
|
var Usage = func() {
|
||
|
fmt.Fprintf(os.Stderr, "Usage of %s:\n", os.Args[0])
|
||
|
fmt.Fprintf(os.Stderr, " %s MOUNTPOINT\n", os.Args[0])
|
||
|
flag.PrintDefaults()
|
||
|
}
|
||
|
|
||
|
func main() {
|
||
|
flag.Usage = Usage
|
||
|
flag.Parse()
|
||
|
|
||
|
if flag.NArg() != 1 {
|
||
|
Usage()
|
||
|
os.Exit(2)
|
||
|
}
|
||
|
mountpoint := flag.Arg(0)
|
||
|
|
||
|
c, err := fuse.Mount(mountpoint)
|
||
|
if err != nil {
|
||
|
log.Fatal(err)
|
||
|
}
|
||
|
|
||
|
fs.Serve(c, FS{})
|
||
|
}
|
||
|
|
||
|
// FS implements the hello world file system.
|
||
|
type FS struct{}
|
||
|
|
||
|
func (FS) Root() (fs.Node, fuse.Error) {
|
||
|
return Dir{}, nil
|
||
|
}
|
||
|
|
||
|
// Dir implements both Node and Handle for the root directory.
|
||
|
type Dir struct{}
|
||
|
|
||
|
func (Dir) Attr() fuse.Attr {
|
||
|
return fuse.Attr{Inode: 1, Mode: os.ModeDir | 0555}
|
||
|
}
|
||
|
|
||
|
func (Dir) Lookup(name string, intr fs.Intr) (fs.Node, fuse.Error) {
|
||
|
if name == "hello" {
|
||
|
return File{}, nil
|
||
|
}
|
||
|
return nil, fuse.ENOENT
|
||
|
}
|
||
|
|
||
|
var dirDirs = []fuse.Dirent{
|
||
|
{Inode: 2, Name: "hello", Type: fuse.DT_File},
|
||
|
}
|
||
|
|
||
|
func (Dir) ReadDir(intr fs.Intr) ([]fuse.Dirent, fuse.Error) {
|
||
|
return dirDirs, nil
|
||
|
}
|
||
|
|
||
|
// File implements both Node and Handle for the hello file.
|
||
|
type File struct{}
|
||
|
|
||
|
func (File) Attr() fuse.Attr {
|
||
|
return fuse.Attr{Mode: 0444}
|
||
|
}
|
||
|
|
||
|
func (File) ReadAll(intr fs.Intr) ([]byte, fuse.Error) {
|
||
|
return []byte("hello, world\n"), nil
|
||
|
}
|