2014-05-13 18:25:48 +00:00
|
|
|
// +build linux darwin
|
|
|
|
|
2016-06-03 01:09:14 +00:00
|
|
|
package command
|
2014-05-13 18:25:48 +00:00
|
|
|
|
|
|
|
import (
|
2014-10-26 18:34:55 +00:00
|
|
|
"fmt"
|
|
|
|
"runtime"
|
|
|
|
|
2014-05-13 18:25:48 +00:00
|
|
|
"bazil.org/fuse"
|
|
|
|
"bazil.org/fuse/fs"
|
2018-05-27 18:52:26 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/filesys"
|
2016-06-03 01:09:14 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
2018-07-22 08:14:36 +00:00
|
|
|
"strings"
|
2014-05-13 18:25:48 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func runMount(cmd *Command, args []string) bool {
|
2015-04-16 21:11:25 +00:00
|
|
|
fmt.Printf("This is SeaweedFS version %s %s %s\n", util.VERSION, runtime.GOOS, runtime.GOARCH)
|
2014-05-13 18:25:48 +00:00
|
|
|
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
|
|
|
|
}
|
2014-05-13 18:25:48 +00:00
|
|
|
|
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(),
|
|
|
|
)
|
2014-05-13 18:25:48 +00:00
|
|
|
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()
|
|
|
|
})
|
2014-05-13 18:25:48 +00:00
|
|
|
|
2018-07-18 09:37:09 +00:00
|
|
|
filerGrpcAddress, err := parseFilerGrpcAddress(*mountOptions.filer, *mountOptions.filerGrpcPort)
|
|
|
|
if err != nil {
|
|
|
|
glog.Fatal(err)
|
2018-06-06 06:37:41 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2018-07-22 08:14:36 +00:00
|
|
|
mountRoot := *mountOptions.filerMountRootPath
|
|
|
|
if mountRoot != "/" && strings.HasSuffix(mountRoot, "/") {
|
2018-07-22 08:15:11 +00:00
|
|
|
mountRoot = mountRoot[0 : len(mountRoot)-1]
|
2018-07-22 08:14:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
err = fs.Serve(c, filesys.NewSeaweedFileSystem(&filesys.Option{
|
|
|
|
FilerGrpcAddress: filerGrpcAddress,
|
|
|
|
FilerMountRootPath: mountRoot,
|
|
|
|
Collection: *mountOptions.collection,
|
|
|
|
Replication: *mountOptions.replication,
|
|
|
|
TtlSec: int32(*mountOptions.ttlSec),
|
|
|
|
ChunkSizeLimit: int64(*mountOptions.chunkSizeLimitMB) * 1024 * 1024,
|
|
|
|
DataCenter: *mountOptions.dataCenter,
|
|
|
|
DirListingLimit: *mountOptions.dirListingLimit,
|
|
|
|
}))
|
2014-05-13 18:25:48 +00:00
|
|
|
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
|
|
|
|
}
|