seaweedfs/weed/command/mount_std.go

68 lines
1.5 KiB
Go
Raw Normal View History

// +build linux darwin
package command
import (
"fmt"
"runtime"
"bazil.org/fuse"
"bazil.org/fuse/fs"
2018-05-27 18:52:26 +00:00
"github.com/chrislusf/seaweedfs/weed/filesys"
"github.com/chrislusf/seaweedfs/weed/glog"
"github.com/chrislusf/seaweedfs/weed/util"
)
func runMount(cmd *Command, args []string) bool {
fmt.Printf("This is SeaweedFS version %s %s %s\n", util.VERSION, runtime.GOOS, runtime.GOARCH)
if *mountOptions.dir == "" {
fmt.Printf("Please specify the mount directory via \"-dir\"")
return false
}
2018-05-29 08:21:21 +00:00
if *mountOptions.chunkSizeLimitMB <= 0 {
fmt.Printf("Please specify a reasonable buffer size.")
return false
}
2018-05-06 05:47:16 +00:00
fuse.Unmount(*mountOptions.dir)
2018-05-07 07:37:47 +00:00
c, err := fuse.Mount(
*mountOptions.dir,
fuse.VolumeName("SeaweedFS"),
fuse.FSName("SeaweedFS"),
fuse.NoAppleDouble(),
fuse.NoAppleXattr(),
fuse.ExclCreate(),
fuse.DaemonTimeout("3600"),
fuse.AllowOther(),
fuse.AllowSUID(),
fuse.DefaultPermissions(),
// fuse.MaxReadahead(1024*128), // TODO: not tested yet, possibly improving read performance
fuse.AsyncRead(),
fuse.WritebackCache(),
)
if err != nil {
glog.Fatal(err)
return false
}
2017-06-22 08:33:58 +00:00
util.OnInterrupt(func() {
2014-05-13 22:04:04 +00:00
fuse.Unmount(*mountOptions.dir)
c.Close()
})
err = fs.Serve(c, filesys.NewSeaweedFileSystem(
*mountOptions.filer, *mountOptions.collection, *mountOptions.replication, *mountOptions.chunkSizeLimitMB))
if err != nil {
fuse.Unmount(*mountOptions.dir)
}
// check if the mount process has an error to report
<-c.Ready
if err := c.MountError; err != nil {
glog.Fatal(err)
}
return true
}