2020-07-04 05:16:59 +00:00
|
|
|
package filesys
|
|
|
|
|
|
|
|
import (
|
2021-05-21 08:28:00 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
2020-11-01 08:11:08 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
2020-07-04 05:16:59 +00:00
|
|
|
"google.golang.org/grpc"
|
|
|
|
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
|
|
|
|
)
|
|
|
|
|
|
|
|
var _ = filer_pb.FilerClient(&WFS{})
|
|
|
|
|
2021-05-21 08:28:00 +00:00
|
|
|
func (wfs *WFS) WithFilerClient(fn func(filer_pb.SeaweedFilerClient) error) (err error) {
|
2020-07-04 05:16:59 +00:00
|
|
|
|
2021-05-21 08:28:00 +00:00
|
|
|
return util.Retry("filer grpc", func() error {
|
2020-07-04 05:16:59 +00:00
|
|
|
|
2021-05-21 08:28:00 +00:00
|
|
|
i := wfs.option.filerIndex
|
|
|
|
n := len(wfs.option.FilerGrpcAddresses)
|
|
|
|
for x := 0; x < n; x++ {
|
|
|
|
|
|
|
|
filerGrpcAddress := wfs.option.FilerGrpcAddresses[i]
|
|
|
|
err = pb.WithCachedGrpcClient(func(grpcConnection *grpc.ClientConn) error {
|
|
|
|
client := filer_pb.NewSeaweedFilerClient(grpcConnection)
|
|
|
|
return fn(client)
|
|
|
|
}, filerGrpcAddress, wfs.option.GrpcDialOption)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
glog.V(0).Infof("WithFilerClient %d %v: %v", x, filerGrpcAddress, err)
|
|
|
|
} else {
|
|
|
|
wfs.option.filerIndex = i
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
i++
|
|
|
|
if i >= n {
|
|
|
|
i = 0
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
})
|
2020-07-04 05:16:59 +00:00
|
|
|
|
|
|
|
}
|
2021-01-28 22:36:29 +00:00
|
|
|
|
|
|
|
func (wfs *WFS) AdjustedUrl(location *filer_pb.Location) string {
|
2021-01-28 23:23:16 +00:00
|
|
|
if wfs.option.VolumeServerAccess == "publicUrl" {
|
2021-01-28 22:36:29 +00:00
|
|
|
return location.PublicUrl
|
|
|
|
}
|
|
|
|
return location.Url
|
|
|
|
}
|