2018-10-14 07:12:28 +00:00
|
|
|
package operation
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2020-02-26 05:50:12 +00:00
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"google.golang.org/grpc"
|
|
|
|
|
2018-10-14 07:12:28 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
2020-03-04 08:39:47 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb"
|
2020-04-05 07:51:16 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
|
2018-10-14 07:12:28 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/master_pb"
|
2018-10-14 07:30:20 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/volume_server_pb"
|
2018-10-14 07:12:28 +00:00
|
|
|
)
|
|
|
|
|
2020-02-26 05:50:12 +00:00
|
|
|
func WithVolumeServerClient(volumeServer string, grpcDialOption grpc.DialOption, fn func(volume_server_pb.VolumeServerClient) error) error {
|
2019-03-16 00:20:24 +00:00
|
|
|
|
2018-10-14 07:12:28 +00:00
|
|
|
grpcAddress, err := toVolumeServerGrpcAddress(volumeServer)
|
|
|
|
if err != nil {
|
2020-04-05 07:51:16 +00:00
|
|
|
return fmt.Errorf("failed to parse volume server %v: %v", volumeServer, err)
|
2018-10-14 07:12:28 +00:00
|
|
|
}
|
|
|
|
|
2020-03-04 08:39:47 +00:00
|
|
|
return pb.WithCachedGrpcClient(func(grpcConnection *grpc.ClientConn) error {
|
2018-12-07 09:25:01 +00:00
|
|
|
client := volume_server_pb.NewVolumeServerClient(grpcConnection)
|
2020-02-26 05:50:12 +00:00
|
|
|
return fn(client)
|
2019-02-18 20:11:52 +00:00
|
|
|
}, grpcAddress, grpcDialOption)
|
2018-10-14 07:12:28 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func toVolumeServerGrpcAddress(volumeServer string) (grpcAddress string, err error) {
|
|
|
|
sepIndex := strings.LastIndex(volumeServer, ":")
|
|
|
|
port, err := strconv.Atoi(volumeServer[sepIndex+1:])
|
|
|
|
if err != nil {
|
|
|
|
glog.Errorf("failed to parse volume server address: %v", volumeServer)
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
return fmt.Sprintf("%s:%d", volumeServer[0:sepIndex], port+10000), nil
|
|
|
|
}
|
|
|
|
|
2020-02-26 05:50:12 +00:00
|
|
|
func WithMasterServerClient(masterServer string, grpcDialOption grpc.DialOption, fn func(masterClient master_pb.SeaweedClient) error) error {
|
2019-03-16 00:20:24 +00:00
|
|
|
|
2020-03-04 08:39:47 +00:00
|
|
|
masterGrpcAddress, parseErr := pb.ParseServerToGrpcAddress(masterServer)
|
2019-01-18 22:14:47 +00:00
|
|
|
if parseErr != nil {
|
2020-04-05 07:51:16 +00:00
|
|
|
return fmt.Errorf("failed to parse master %v: %v", masterServer, parseErr)
|
2019-01-18 22:14:47 +00:00
|
|
|
}
|
|
|
|
|
2020-03-04 08:39:47 +00:00
|
|
|
return pb.WithCachedGrpcClient(func(grpcConnection *grpc.ClientConn) error {
|
2018-12-07 09:25:01 +00:00
|
|
|
client := master_pb.NewSeaweedClient(grpcConnection)
|
2020-02-26 05:50:12 +00:00
|
|
|
return fn(client)
|
2019-02-18 20:11:52 +00:00
|
|
|
}, masterGrpcAddress, grpcDialOption)
|
2018-10-14 07:12:28 +00:00
|
|
|
|
|
|
|
}
|
2020-04-05 07:51:16 +00:00
|
|
|
|
|
|
|
func WithFilerServerClient(filerServer string, grpcDialOption grpc.DialOption, fn func(masterClient filer_pb.SeaweedFilerClient) error) error {
|
|
|
|
|
|
|
|
filerGrpcAddress, parseErr := pb.ParseServerToGrpcAddress(filerServer)
|
|
|
|
if parseErr != nil {
|
|
|
|
return fmt.Errorf("failed to parse filer %v: %v", filerGrpcAddress, parseErr)
|
|
|
|
}
|
|
|
|
|
|
|
|
return pb.WithCachedGrpcClient(func(grpcConnection *grpc.ClientConn) error {
|
|
|
|
client := filer_pb.NewSeaweedFilerClient(grpcConnection)
|
|
|
|
return fn(client)
|
|
|
|
}, filerGrpcAddress, grpcDialOption)
|
|
|
|
|
|
|
|
}
|