2018-05-06 05:47:16 +00:00
|
|
|
package filesys
|
|
|
|
|
2018-05-08 08:59:43 +00:00
|
|
|
import (
|
|
|
|
"bazil.org/fuse/fs"
|
|
|
|
"fmt"
|
2018-05-10 06:18:02 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
|
2018-05-14 09:02:17 +00:00
|
|
|
"github.com/karlseguin/ccache"
|
2018-05-27 18:52:26 +00:00
|
|
|
"google.golang.org/grpc"
|
2018-05-08 08:59:43 +00:00
|
|
|
)
|
2018-05-06 05:47:16 +00:00
|
|
|
|
|
|
|
type WFS struct {
|
2018-05-14 09:02:17 +00:00
|
|
|
filer string
|
|
|
|
listDirectoryEntriesCache *ccache.Cache
|
2018-05-28 20:24:48 +00:00
|
|
|
collection string
|
|
|
|
replication string
|
2018-05-28 20:42:25 +00:00
|
|
|
chunkSizeLimit int64
|
2018-05-06 05:47:16 +00:00
|
|
|
}
|
|
|
|
|
2018-05-28 20:42:25 +00:00
|
|
|
func NewSeaweedFileSystem(filer string, collection string, replication string, chunkSizeLimitMB int) *WFS {
|
2018-05-06 05:47:16 +00:00
|
|
|
return &WFS{
|
2018-05-28 20:24:48 +00:00
|
|
|
filer: filer,
|
2018-05-14 09:02:17 +00:00
|
|
|
listDirectoryEntriesCache: ccache.New(ccache.Configure().MaxSize(6000).ItemsToPrune(100)),
|
2018-05-28 20:24:48 +00:00
|
|
|
collection: collection,
|
|
|
|
replication: replication,
|
2018-05-28 20:42:25 +00:00
|
|
|
chunkSizeLimit: int64(chunkSizeLimitMB) * 1024 * 1024,
|
2018-05-06 05:47:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (wfs *WFS) Root() (fs.Node, error) {
|
|
|
|
return &Dir{Path: "/", wfs: wfs}, nil
|
|
|
|
}
|
2018-05-08 08:59:43 +00:00
|
|
|
|
2018-05-10 06:18:02 +00:00
|
|
|
func (wfs *WFS) withFilerClient(fn func(filer_pb.SeaweedFilerClient) error) error {
|
2018-05-08 08:59:43 +00:00
|
|
|
|
|
|
|
grpcConnection, err := grpc.Dial(wfs.filer, grpc.WithInsecure())
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("fail to dial %s: %v", wfs.filer, err)
|
|
|
|
}
|
|
|
|
defer grpcConnection.Close()
|
|
|
|
|
2018-05-10 06:18:02 +00:00
|
|
|
client := filer_pb.NewSeaweedFilerClient(grpcConnection)
|
2018-05-08 08:59:43 +00:00
|
|
|
|
|
|
|
return fn(client)
|
|
|
|
}
|