seaweedfs/weed/filesys/wfs.go

43 lines
1 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 {
filer string
listDirectoryEntriesCache *ccache.Cache
collection string
replication string
2018-05-06 05:47:16 +00:00
}
func NewSeaweedFileSystem(filer string, collection string, replication string) *WFS {
2018-05-06 05:47:16 +00:00
return &WFS{
filer: filer,
listDirectoryEntriesCache: ccache.New(ccache.Configure().MaxSize(6000).ItemsToPrune(100)),
collection: collection,
replication: replication,
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)
}