seaweedfs/weed/filesys/wfs.go

45 lines
1.2 KiB
Go
Raw Normal View History

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"
"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-06-06 06:37:41 +00:00
filerGrpcAddress string
listDirectoryEntriesCache *ccache.Cache
collection string
replication string
chunkSizeLimit int64
2018-05-06 05:47:16 +00:00
}
2018-06-06 06:37:41 +00:00
func NewSeaweedFileSystem(filerGrpcAddress string, collection string, replication string, chunkSizeLimitMB int) *WFS {
2018-05-06 05:47:16 +00:00
return &WFS{
2018-06-06 06:37:41 +00:00
filerGrpcAddress: filerGrpcAddress,
listDirectoryEntriesCache: ccache.New(ccache.Configure().MaxSize(6000).ItemsToPrune(100)),
collection: collection,
replication: replication,
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
2018-06-06 06:37:41 +00:00
grpcConnection, err := grpc.Dial(wfs.filerGrpcAddress, grpc.WithInsecure())
2018-05-08 08:59:43 +00:00
if err != nil {
2018-06-06 06:37:41 +00:00
return fmt.Errorf("fail to dial %s: %v", wfs.filerGrpcAddress, err)
2018-05-08 08:59:43 +00:00
}
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)
}