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"
|
2018-05-08 08:59:43 +00:00
|
|
|
)
|
2018-05-06 05:47:16 +00:00
|
|
|
|
|
|
|
type WFS struct {
|
|
|
|
filer string
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewSeaweedFileSystem(filer string) *WFS {
|
|
|
|
return &WFS{
|
|
|
|
filer: filer,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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)
|
|
|
|
}
|