seaweedfs/weed/filesys/wfs.go

39 lines
883 B
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"
"google.golang.org/grpc"
2018-05-10 06:18:02 +00:00
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
"github.com/karlseguin/ccache"
2018-05-08 08:59:43 +00:00
)
2018-05-06 05:47:16 +00:00
type WFS struct {
filer string
listDirectoryEntriesCache *ccache.Cache
2018-05-06 05:47:16 +00:00
}
func NewSeaweedFileSystem(filer string) *WFS {
return &WFS{
filer: filer,
listDirectoryEntriesCache: ccache.New(ccache.Configure().MaxSize(6000).ItemsToPrune(100)),
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)
}