2018-05-06 13:47:16 +08:00
|
|
|
package filesys
|
|
|
|
|
2018-05-08 16:59:43 +08:00
|
|
|
import (
|
2018-11-23 15:05:22 +08:00
|
|
|
"context"
|
2018-11-08 23:37:34 +08:00
|
|
|
"fmt"
|
2018-11-23 15:05:22 +08:00
|
|
|
"math"
|
2018-11-08 23:37:34 +08:00
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
|
2018-07-22 08:39:10 +08:00
|
|
|
"bazil.org/fuse"
|
2018-05-08 16:59:43 +08:00
|
|
|
"bazil.org/fuse/fs"
|
2018-06-06 17:09:57 +08:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
2018-07-22 08:39:10 +08:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
|
2018-07-04 10:07:55 +08:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
2018-07-22 08:39:10 +08:00
|
|
|
"github.com/karlseguin/ccache"
|
2018-11-15 15:31:39 +08:00
|
|
|
"google.golang.org/grpc"
|
2018-05-08 16:59:43 +08:00
|
|
|
)
|
2018-05-06 13:47:16 +08:00
|
|
|
|
2018-07-22 16:14:36 +08:00
|
|
|
type Option struct {
|
|
|
|
FilerGrpcAddress string
|
|
|
|
FilerMountRootPath string
|
|
|
|
Collection string
|
|
|
|
Replication string
|
|
|
|
TtlSec int32
|
|
|
|
ChunkSizeLimit int64
|
|
|
|
DataCenter string
|
|
|
|
DirListingLimit int
|
2018-11-08 23:37:34 +08:00
|
|
|
EntryCacheTtl time.Duration
|
2018-07-22 16:14:36 +08:00
|
|
|
}
|
|
|
|
|
2018-11-23 15:05:22 +08:00
|
|
|
var _ = fs.FS(&WFS{})
|
|
|
|
var _ = fs.FSStatfser(&WFS{})
|
|
|
|
|
2018-05-06 13:47:16 +08:00
|
|
|
type WFS struct {
|
2018-07-22 16:14:36 +08:00
|
|
|
option *Option
|
2018-05-14 17:02:17 +08:00
|
|
|
listDirectoryEntriesCache *ccache.Cache
|
2018-06-06 17:09:57 +08:00
|
|
|
|
|
|
|
// contains all open handles
|
|
|
|
handles []*FileHandle
|
|
|
|
pathToHandleIndex map[string]int
|
|
|
|
pathToHandleLock sync.Mutex
|
2018-11-15 15:31:39 +08:00
|
|
|
|
|
|
|
// cache grpc connections
|
|
|
|
grpcClients map[string]*grpc.ClientConn
|
|
|
|
grpcClientsLock sync.Mutex
|
2018-05-06 13:47:16 +08:00
|
|
|
}
|
|
|
|
|
2018-07-22 16:14:36 +08:00
|
|
|
func NewSeaweedFileSystem(option *Option) *WFS {
|
2018-05-06 13:47:16 +08:00
|
|
|
return &WFS{
|
2018-11-05 03:59:08 +08:00
|
|
|
option: option,
|
2018-11-08 03:35:13 +08:00
|
|
|
listDirectoryEntriesCache: ccache.New(ccache.Configure().MaxSize(int64(option.DirListingLimit) + 200).ItemsToPrune(100)),
|
2018-06-06 17:09:57 +08:00
|
|
|
pathToHandleIndex: make(map[string]int),
|
2018-11-15 15:31:39 +08:00
|
|
|
grpcClients: make(map[string]*grpc.ClientConn),
|
2018-05-06 13:47:16 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (wfs *WFS) Root() (fs.Node, error) {
|
2018-07-22 16:14:36 +08:00
|
|
|
return &Dir{Path: wfs.option.FilerMountRootPath, wfs: wfs}, nil
|
2018-05-06 13:47:16 +08:00
|
|
|
}
|
2018-05-08 16:59:43 +08:00
|
|
|
|
2018-05-10 14:18:02 +08:00
|
|
|
func (wfs *WFS) withFilerClient(fn func(filer_pb.SeaweedFilerClient) error) error {
|
2018-05-08 16:59:43 +08:00
|
|
|
|
2018-11-15 15:31:39 +08:00
|
|
|
wfs.grpcClientsLock.Lock()
|
|
|
|
|
|
|
|
existingConnection, found := wfs.grpcClients[wfs.option.FilerGrpcAddress]
|
|
|
|
if found {
|
|
|
|
wfs.grpcClientsLock.Unlock()
|
|
|
|
client := filer_pb.NewSeaweedFilerClient(existingConnection)
|
|
|
|
return fn(client)
|
|
|
|
}
|
|
|
|
|
2018-07-22 16:14:36 +08:00
|
|
|
grpcConnection, err := util.GrpcDial(wfs.option.FilerGrpcAddress)
|
2018-05-08 16:59:43 +08:00
|
|
|
if err != nil {
|
2018-11-15 15:50:46 +08:00
|
|
|
wfs.grpcClientsLock.Unlock()
|
2018-07-22 16:14:36 +08:00
|
|
|
return fmt.Errorf("fail to dial %s: %v", wfs.option.FilerGrpcAddress, err)
|
2018-05-08 16:59:43 +08:00
|
|
|
}
|
2018-11-15 15:31:39 +08:00
|
|
|
|
|
|
|
wfs.grpcClients[wfs.option.FilerGrpcAddress] = grpcConnection
|
|
|
|
wfs.grpcClientsLock.Unlock()
|
2018-05-08 16:59:43 +08:00
|
|
|
|
2018-05-10 14:18:02 +08:00
|
|
|
client := filer_pb.NewSeaweedFilerClient(grpcConnection)
|
2018-05-08 16:59:43 +08:00
|
|
|
|
|
|
|
return fn(client)
|
|
|
|
}
|
2018-06-06 17:09:57 +08:00
|
|
|
|
2018-07-22 16:14:36 +08:00
|
|
|
func (wfs *WFS) AcquireHandle(file *File, uid, gid uint32) (fileHandle *FileHandle) {
|
2018-06-06 17:09:57 +08:00
|
|
|
wfs.pathToHandleLock.Lock()
|
|
|
|
defer wfs.pathToHandleLock.Unlock()
|
|
|
|
|
|
|
|
fullpath := file.fullpath()
|
|
|
|
|
|
|
|
index, found := wfs.pathToHandleIndex[fullpath]
|
|
|
|
if found && wfs.handles[index] != nil {
|
2018-07-22 16:14:36 +08:00
|
|
|
glog.V(4).Infoln(fullpath, "found fileHandle id", index)
|
2018-06-06 17:09:57 +08:00
|
|
|
return wfs.handles[index]
|
|
|
|
}
|
|
|
|
|
|
|
|
if found && wfs.handles[index] != nil {
|
2018-07-22 16:14:36 +08:00
|
|
|
glog.V(4).Infoln(fullpath, "reuse previous fileHandle id", index)
|
2018-11-15 14:48:54 +08:00
|
|
|
wfs.handles[index].InitializeToFile(file, uid, gid)
|
2018-07-22 16:14:36 +08:00
|
|
|
fileHandle.handle = uint64(index)
|
2018-06-06 17:09:57 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-11-15 14:48:54 +08:00
|
|
|
fileHandle = newFileHandle(file, uid, gid)
|
2018-06-06 17:09:57 +08:00
|
|
|
for i, h := range wfs.handles {
|
|
|
|
if h == nil {
|
2018-07-22 16:14:36 +08:00
|
|
|
wfs.handles[i] = fileHandle
|
|
|
|
fileHandle.handle = uint64(i)
|
2018-06-06 17:09:57 +08:00
|
|
|
wfs.pathToHandleIndex[fullpath] = i
|
2018-07-22 16:14:36 +08:00
|
|
|
glog.V(4).Infoln(fullpath, "reuse fileHandle id", fileHandle.handle)
|
2018-06-06 17:09:57 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-22 16:14:36 +08:00
|
|
|
wfs.handles = append(wfs.handles, fileHandle)
|
|
|
|
fileHandle.handle = uint64(len(wfs.handles) - 1)
|
|
|
|
glog.V(4).Infoln(fullpath, "new fileHandle id", fileHandle.handle)
|
|
|
|
wfs.pathToHandleIndex[fullpath] = int(fileHandle.handle)
|
2018-06-06 17:09:57 +08:00
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-11-14 15:53:17 +08:00
|
|
|
func (wfs *WFS) ReleaseHandle(fullpath string, handleId fuse.HandleID) {
|
2018-06-06 17:09:57 +08:00
|
|
|
wfs.pathToHandleLock.Lock()
|
|
|
|
defer wfs.pathToHandleLock.Unlock()
|
|
|
|
|
2018-11-22 07:12:47 +08:00
|
|
|
glog.V(4).Infof("%s releasing handle id %d current handles length %d", fullpath, handleId, len(wfs.handles))
|
2018-11-14 15:53:17 +08:00
|
|
|
delete(wfs.pathToHandleIndex, fullpath)
|
2018-06-06 17:09:57 +08:00
|
|
|
if int(handleId) < len(wfs.handles) {
|
|
|
|
wfs.handles[int(handleId)] = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
2018-11-23 15:05:22 +08:00
|
|
|
|
|
|
|
// Statfs is called to obtain file system metadata. Implements fuse.FSStatfser
|
|
|
|
func (wfs *WFS) Statfs(ctx context.Context, req *fuse.StatfsRequest, resp *fuse.StatfsResponse) error {
|
|
|
|
|
|
|
|
glog.V(4).Infof("reading fs stats: %+v", req)
|
|
|
|
|
|
|
|
totalDiskSize := uint64(0)
|
|
|
|
usedDiskSize := uint64(0)
|
|
|
|
actualFileCount := uint64(0)
|
|
|
|
|
|
|
|
// Compute the total number of available blocks
|
|
|
|
resp.Blocks = totalDiskSize / blockSize
|
|
|
|
|
|
|
|
// Compute the number of used blocks
|
|
|
|
numblocks := uint64(usedDiskSize / blockSize)
|
|
|
|
|
|
|
|
// Report the number of free and available blocks for the block size
|
|
|
|
resp.Bfree = resp.Blocks - numblocks
|
|
|
|
resp.Bavail = resp.Blocks - numblocks
|
|
|
|
resp.Bsize = uint32(blockSize)
|
|
|
|
|
|
|
|
// Report the total number of possible files in the file system (and those free)
|
|
|
|
resp.Files = math.MaxInt64
|
|
|
|
resp.Ffree = math.MaxInt64 - actualFileCount
|
|
|
|
|
|
|
|
// Report the maximum length of a name and the minimum fragment size
|
|
|
|
resp.Namelen = 1024
|
|
|
|
resp.Frsize = uint32(blockSize)
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|