2018-10-14 07:12:28 +00:00
|
|
|
package operation
|
|
|
|
|
|
|
|
import (
|
2019-03-16 00:20:24 +00:00
|
|
|
"context"
|
2018-10-14 07:12:28 +00:00
|
|
|
"fmt"
|
2020-02-15 01:49:07 +00:00
|
|
|
"net"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
"sync"
|
2020-02-15 22:01:37 +00:00
|
|
|
"time"
|
2020-02-15 01:49:07 +00:00
|
|
|
|
|
|
|
"google.golang.org/grpc"
|
|
|
|
|
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"
|
2020-02-15 01:49:07 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2020-02-15 22:01:37 +00:00
|
|
|
connectionPool = make(map[string]*util.ResourcePool)
|
2020-02-15 01:49:07 +00:00
|
|
|
connectionPoolLock sync.Mutex
|
2018-10-14 07:12:28 +00:00
|
|
|
)
|
|
|
|
|
2020-01-26 22:42:11 +00:00
|
|
|
func WithVolumeServerClient(volumeServer string, grpcDialOption grpc.DialOption, fn func(context.Context, volume_server_pb.VolumeServerClient) error) error {
|
2018-10-14 07:12:28 +00:00
|
|
|
|
2019-03-16 00:20:24 +00:00
|
|
|
ctx := context.Background()
|
|
|
|
|
2018-10-14 07:12:28 +00:00
|
|
|
grpcAddress, err := toVolumeServerGrpcAddress(volumeServer)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-01-26 22:42:11 +00:00
|
|
|
return util.WithCachedGrpcClient(ctx, func(ctx2 context.Context, grpcConnection *grpc.ClientConn) error {
|
2018-12-07 09:25:01 +00:00
|
|
|
client := volume_server_pb.NewVolumeServerClient(grpcConnection)
|
2020-01-26 22:42:11 +00:00
|
|
|
return fn(ctx2, 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-15 01:49:07 +00:00
|
|
|
func WithVolumeServerTcpConnection(volumeServer string, fn func(conn net.Conn) error) error {
|
|
|
|
tcpAddress, err := toVolumeServerTcpAddress(volumeServer)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-02-15 22:01:37 +00:00
|
|
|
conn, err := getConnection(tcpAddress)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-02-15 01:49:07 +00:00
|
|
|
defer releaseConnection(conn, tcpAddress)
|
|
|
|
|
|
|
|
err = fn(conn)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-02-15 22:01:37 +00:00
|
|
|
func getConnection(tcpAddress string) (net.Conn, error) {
|
2020-02-15 01:49:07 +00:00
|
|
|
connectionPoolLock.Lock()
|
|
|
|
defer connectionPoolLock.Unlock()
|
|
|
|
|
|
|
|
pool, found := connectionPool[tcpAddress]
|
|
|
|
if !found {
|
2020-02-15 06:24:38 +00:00
|
|
|
println("creating pool for", tcpAddress)
|
2020-02-15 22:01:37 +00:00
|
|
|
|
|
|
|
raddr, err := net.ResolveTCPAddr("tcp", tcpAddress)
|
|
|
|
if err != nil {
|
|
|
|
glog.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
pool = util.NewResourcePool(16, func() (interface{}, error) {
|
2020-02-15 06:24:38 +00:00
|
|
|
|
|
|
|
conn, err := net.DialTCP("tcp", nil, raddr)
|
2020-02-15 01:49:07 +00:00
|
|
|
if err != nil {
|
2020-02-15 22:01:37 +00:00
|
|
|
return conn, err
|
2020-02-15 01:49:07 +00:00
|
|
|
}
|
2020-02-15 06:24:38 +00:00
|
|
|
conn.SetKeepAlive(true)
|
|
|
|
conn.SetNoDelay(true)
|
|
|
|
println("connected", tcpAddress, "=>", conn.LocalAddr().String())
|
2020-02-15 22:01:37 +00:00
|
|
|
return conn, nil
|
|
|
|
})
|
2020-02-15 01:49:07 +00:00
|
|
|
connectionPool[tcpAddress] = pool
|
|
|
|
}
|
2020-02-15 22:01:37 +00:00
|
|
|
|
|
|
|
connObj, err := pool.Get(time.Minute)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-02-15 01:49:07 +00:00
|
|
|
// println("get connection", tcpAddress, "=>", conn.LocalAddr().String())
|
2020-02-15 22:01:37 +00:00
|
|
|
return connObj.(net.Conn), nil
|
2020-02-15 01:49:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func releaseConnection(conn net.Conn, tcpAddress string) {
|
|
|
|
connectionPoolLock.Lock()
|
|
|
|
defer connectionPoolLock.Unlock()
|
|
|
|
|
|
|
|
pool, found := connectionPool[tcpAddress]
|
|
|
|
if !found {
|
2020-02-15 06:24:38 +00:00
|
|
|
println("can not return connection", tcpAddress, "=>", conn.LocalAddr().String())
|
2020-02-15 01:49:07 +00:00
|
|
|
return
|
|
|
|
}
|
2020-02-15 22:01:37 +00:00
|
|
|
pool.Release(conn)
|
2020-02-15 01:49:07 +00:00
|
|
|
// println("returned connection", tcpAddress, "=>", conn.LocalAddr().String())
|
|
|
|
}
|
|
|
|
|
|
|
|
func toVolumeServerTcpAddress(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+20000), nil
|
|
|
|
}
|
|
|
|
|
2020-01-26 22:42:11 +00:00
|
|
|
func WithMasterServerClient(masterServer string, grpcDialOption grpc.DialOption, fn func(ctx2 context.Context, masterClient master_pb.SeaweedClient) error) error {
|
2018-10-14 07:12:28 +00:00
|
|
|
|
2019-03-16 00:20:24 +00:00
|
|
|
ctx := context.Background()
|
|
|
|
|
2019-03-19 12:47:41 +00:00
|
|
|
masterGrpcAddress, parseErr := util.ParseServerToGrpcAddress(masterServer)
|
2019-01-18 22:14:47 +00:00
|
|
|
if parseErr != nil {
|
2019-04-16 08:15:30 +00:00
|
|
|
return fmt.Errorf("failed to parse master grpc %v: %v", masterServer, parseErr)
|
2019-01-18 22:14:47 +00:00
|
|
|
}
|
|
|
|
|
2020-01-26 22:42:11 +00:00
|
|
|
return util.WithCachedGrpcClient(ctx, func(ctx2 context.Context, grpcConnection *grpc.ClientConn) error {
|
2018-12-07 09:25:01 +00:00
|
|
|
client := master_pb.NewSeaweedClient(grpcConnection)
|
2020-01-26 22:42:11 +00:00
|
|
|
return fn(ctx2, client)
|
2019-02-18 20:11:52 +00:00
|
|
|
}, masterGrpcAddress, grpcDialOption)
|
2018-10-14 07:12:28 +00:00
|
|
|
|
|
|
|
}
|