2018-10-14 00:12:28 -07:00
|
|
|
package operation
|
|
|
|
|
|
|
|
|
|
import (
|
2019-03-15 17:20:24 -07:00
|
|
|
"context"
|
2018-10-14 00:12:28 -07:00
|
|
|
"fmt"
|
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/master_pb"
|
2018-10-14 00:30:20 -07:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/volume_server_pb"
|
2018-10-14 00:12:28 -07:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
2018-11-14 23:50:46 -08:00
|
|
|
"google.golang.org/grpc"
|
2019-02-18 20:05:55 -08:00
|
|
|
"strconv"
|
|
|
|
|
"strings"
|
2018-10-14 00:12:28 -07:00
|
|
|
)
|
|
|
|
|
|
2020-01-26 14:42:11 -08:00
|
|
|
func WithVolumeServerClient(volumeServer string, grpcDialOption grpc.DialOption, fn func(context.Context, volume_server_pb.VolumeServerClient) error) error {
|
2018-10-14 00:12:28 -07:00
|
|
|
|
2019-03-15 17:20:24 -07:00
|
|
|
ctx := context.Background()
|
|
|
|
|
|
2018-10-14 00:12:28 -07:00
|
|
|
grpcAddress, err := toVolumeServerGrpcAddress(volumeServer)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-26 14:42:11 -08:00
|
|
|
return util.WithCachedGrpcClient(ctx, func(ctx2 context.Context, grpcConnection *grpc.ClientConn) error {
|
2018-12-07 01:25:01 -08:00
|
|
|
client := volume_server_pb.NewVolumeServerClient(grpcConnection)
|
2020-01-26 14:42:11 -08:00
|
|
|
return fn(ctx2, client)
|
2019-02-18 12:11:52 -08:00
|
|
|
}, grpcAddress, grpcDialOption)
|
2018-10-14 00:12:28 -07: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-01-26 14:42:11 -08:00
|
|
|
func WithMasterServerClient(masterServer string, grpcDialOption grpc.DialOption, fn func(ctx2 context.Context, masterClient master_pb.SeaweedClient) error) error {
|
2018-10-14 00:12:28 -07:00
|
|
|
|
2019-03-15 17:20:24 -07:00
|
|
|
ctx := context.Background()
|
|
|
|
|
|
2019-03-19 05:47:41 -07:00
|
|
|
masterGrpcAddress, parseErr := util.ParseServerToGrpcAddress(masterServer)
|
2019-01-18 14:14:47 -08:00
|
|
|
if parseErr != nil {
|
2019-04-16 01:15:30 -07:00
|
|
|
return fmt.Errorf("failed to parse master grpc %v: %v", masterServer, parseErr)
|
2019-01-18 14:14:47 -08:00
|
|
|
}
|
|
|
|
|
|
2020-01-26 14:42:11 -08:00
|
|
|
return util.WithCachedGrpcClient(ctx, func(ctx2 context.Context, grpcConnection *grpc.ClientConn) error {
|
2018-12-07 01:25:01 -08:00
|
|
|
client := master_pb.NewSeaweedClient(grpcConnection)
|
2020-01-26 14:42:11 -08:00
|
|
|
return fn(ctx2, client)
|
2019-02-18 12:11:52 -08:00
|
|
|
}, masterGrpcAddress, grpcDialOption)
|
2018-10-14 00:12:28 -07:00
|
|
|
|
|
|
|
|
}
|