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-06-06 06:37:41 +00:00
|
|
|
"strings"
|
|
|
|
"strconv"
|
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-06-06 06:37:41 +00:00
|
|
|
hostnameAndPort := strings.Split(*mountOptions.filer, ":")
|
|
|
|
if len(hostnameAndPort) != 2 {
|
|
|
|
fmt.Printf("The filer should have hostname:port format: %v\n", hostnameAndPort)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
filerPort, parseErr := strconv.ParseUint(hostnameAndPort[1], 10, 64)
|
|
|
|
if parseErr != nil {
|
|
|
|
fmt.Printf("The filer filer port parse error: %v\n", parseErr)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
filerGrpcPort := filerPort + 10000
|
|
|
|
if *mountOptions.filerGrpcPort != 0 {
|
|
|
|
filerGrpcPort = uint64(*copy.filerGrpcPort)
|
|
|
|
}
|
|
|
|
|
|
|
|
filerAddress := fmt.Sprintf("%s:%d", hostnameAndPort[0], filerGrpcPort)
|
|
|
|
|
2018-05-28 20:24:48 +00:00
|
|
|
err = fs.Serve(c, filesys.NewSeaweedFileSystem(
|
2018-06-12 06:13:33 +00:00
|
|
|
filerAddress, *mountOptions.collection, *mountOptions.replication, int32(*mountOptions.ttlSec),
|
2018-07-14 20:39:57 +00:00
|
|
|
*mountOptions.chunkSizeLimitMB, *mountOptions.dataCenter))
|
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
|
|
|
|
}
|