2020-07-03 22:16:59 -07:00
|
|
|
package filesys
|
|
|
|
|
|
|
|
import (
|
2020-11-01 01:11:08 -07:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
2020-07-03 22:16:59 -07:00
|
|
|
"google.golang.org/grpc"
|
|
|
|
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
|
|
|
|
)
|
|
|
|
|
|
|
|
var _ = filer_pb.FilerClient(&WFS{})
|
|
|
|
|
|
|
|
func (wfs *WFS) WithFilerClient(fn func(filer_pb.SeaweedFilerClient) error) error {
|
|
|
|
|
2020-11-26 10:41:10 -08:00
|
|
|
err := util.Retry("filer grpc "+wfs.option.FilerGrpcAddress, func() error {
|
2020-11-01 01:11:08 -07:00
|
|
|
return pb.WithCachedGrpcClient(func(grpcConnection *grpc.ClientConn) error {
|
|
|
|
client := filer_pb.NewSeaweedFilerClient(grpcConnection)
|
|
|
|
return fn(client)
|
|
|
|
}, wfs.option.FilerGrpcAddress, wfs.option.GrpcDialOption)
|
|
|
|
})
|
2020-07-03 22:16:59 -07:00
|
|
|
|
|
|
|
if err == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
|
|
|
|
}
|
2021-01-28 14:36:29 -08:00
|
|
|
|
|
|
|
func (wfs *WFS) AdjustedUrl(location *filer_pb.Location) string {
|
2021-01-28 15:23:16 -08:00
|
|
|
if wfs.option.VolumeServerAccess == "publicUrl" {
|
2021-01-28 14:36:29 -08:00
|
|
|
return location.PublicUrl
|
|
|
|
}
|
|
|
|
return location.Url
|
|
|
|
}
|