2018-10-14 07:12:28 +00:00
|
|
|
package operation
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"strconv"
|
2018-10-14 07:30:20 +00:00
|
|
|
"strings"
|
2018-11-23 08:26:15 +00:00
|
|
|
"sync"
|
2018-10-14 07:12:28 +00:00
|
|
|
|
|
|
|
"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"
|
2018-10-14 07:12:28 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
2018-11-15 07:50:46 +00:00
|
|
|
"google.golang.org/grpc"
|
2018-11-23 08:26:15 +00:00
|
|
|
)
|
2018-11-15 07:50:46 +00:00
|
|
|
|
|
|
|
var (
|
|
|
|
grpcClients = make(map[string]*grpc.ClientConn)
|
|
|
|
grpcClientsLock sync.Mutex
|
2018-10-14 07:12:28 +00:00
|
|
|
)
|
|
|
|
|
2018-10-15 06:12:43 +00:00
|
|
|
func WithVolumeServerClient(volumeServer string, fn func(volume_server_pb.VolumeServerClient) error) error {
|
2018-10-14 07:12:28 +00:00
|
|
|
|
|
|
|
grpcAddress, err := toVolumeServerGrpcAddress(volumeServer)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2018-12-07 09:25:01 +00:00
|
|
|
return util.WithCachedGrpcClient(func(grpcConnection *grpc.ClientConn) error {
|
|
|
|
client := volume_server_pb.NewVolumeServerClient(grpcConnection)
|
2018-11-15 07:50:46 +00:00
|
|
|
return fn(client)
|
2018-12-07 09:25:01 +00:00
|
|
|
}, grpcAddress)
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
func withMasterServerClient(masterServer string, fn func(masterClient master_pb.SeaweedClient) error) error {
|
|
|
|
|
2019-01-18 22:14:47 +00:00
|
|
|
masterGrpcAddress, parseErr := util.ParseServerToGrpcAddress(masterServer, 0)
|
|
|
|
if parseErr != nil {
|
|
|
|
return fmt.Errorf("failed to parse master grpc %v", masterServer)
|
|
|
|
}
|
|
|
|
|
2018-12-07 09:25:01 +00:00
|
|
|
return util.WithCachedGrpcClient(func(grpcConnection *grpc.ClientConn) error {
|
|
|
|
client := master_pb.NewSeaweedClient(grpcConnection)
|
2018-11-15 07:50:46 +00:00
|
|
|
return fn(client)
|
2019-01-18 22:14:47 +00:00
|
|
|
}, masterGrpcAddress)
|
2018-10-14 07:12:28 +00:00
|
|
|
|
|
|
|
}
|