seaweedfs/weed/operation/grpc_client.go

56 lines
1.7 KiB
Go
Raw Normal View History

package operation
import (
2019-03-16 00:20:24 +00:00
"context"
"fmt"
"github.com/chrislusf/seaweedfs/weed/glog"
"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"
"github.com/chrislusf/seaweedfs/weed/util"
2018-11-15 07:50:46 +00:00
"google.golang.org/grpc"
2019-02-19 04:05:55 +00:00
"strconv"
"strings"
)
2019-02-18 20:11:52 +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
ctx := context.Background()
grpcAddress, err := toVolumeServerGrpcAddress(volumeServer)
if err != nil {
return err
}
2019-03-16 00:20:24 +00:00
return util.WithCachedGrpcClient(ctx, func(grpcConnection *grpc.ClientConn) error {
2018-12-07 09:25:01 +00:00
client := volume_server_pb.NewVolumeServerClient(grpcConnection)
2018-11-15 07:50:46 +00:00
return fn(client)
2019-02-18 20:11:52 +00:00
}, grpcAddress, grpcDialOption)
}
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
}
2019-02-18 20:11:52 +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
ctx := context.Background()
masterGrpcAddress, parseErr := util.ParseServerToGrpcAddress(masterServer)
if parseErr != nil {
return fmt.Errorf("failed to parse master grpc %v", masterServer)
}
2019-03-16 00:20:24 +00:00
return util.WithCachedGrpcClient(ctx, func(grpcConnection *grpc.ClientConn) error {
2018-12-07 09:25:01 +00:00
client := master_pb.NewSeaweedClient(grpcConnection)
2018-11-15 07:50:46 +00:00
return fn(client)
2019-02-18 20:11:52 +00:00
}, masterGrpcAddress, grpcDialOption)
}