aboutsummaryrefslogtreecommitdiff
path: root/weed/filesys/wfs.go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2018-05-08 01:59:43 -0700
committerChris Lu <chris.lu@gmail.com>2018-05-08 01:59:43 -0700
commit43a69d20bf724cea371da88a02bfe0b2fa02a773 (patch)
treee0229e8ac9f35cbda0de5f5043d512522b2d23c9 /weed/filesys/wfs.go
parent4936d6c342e16edd9ee37d2b2ec2c890287670d4 (diff)
downloadseaweedfs-43a69d20bf724cea371da88a02bfe0b2fa02a773.tar.xz
seaweedfs-43a69d20bf724cea371da88a02bfe0b2fa02a773.zip
change filer API to gRPC
Diffstat (limited to 'weed/filesys/wfs.go')
-rw-r--r--weed/filesys/wfs.go20
1 files changed, 19 insertions, 1 deletions
diff --git a/weed/filesys/wfs.go b/weed/filesys/wfs.go
index f0716b650..583cd34f3 100644
--- a/weed/filesys/wfs.go
+++ b/weed/filesys/wfs.go
@@ -1,6 +1,11 @@
package filesys
-import "bazil.org/fuse/fs"
+import (
+ "bazil.org/fuse/fs"
+ "fmt"
+ "google.golang.org/grpc"
+ "github.com/chrislusf/seaweedfs/weed/filer"
+)
type WFS struct {
filer string
@@ -15,3 +20,16 @@ func NewSeaweedFileSystem(filer string) *WFS {
func (wfs *WFS) Root() (fs.Node, error) {
return &Dir{Path: "/", wfs: wfs}, nil
}
+
+func (wfs *WFS) withFilerClient(fn func(filer.SeaweedFilerClient) error) error {
+
+ 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()
+
+ client := filer.NewSeaweedFilerClient(grpcConnection)
+
+ return fn(client)
+}