|
|
|
@ -32,36 +32,29 @@ type (
|
|
|
|
|
|
|
|
|
|
client struct {
|
|
|
|
|
conn *grpc.ClientConn
|
|
|
|
|
interceptors []grpc.UnaryClientInterceptor
|
|
|
|
|
}
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func NewClient(target string, opts ...ClientOption) (*client, error) {
|
|
|
|
|
var cli client
|
|
|
|
|
opts = append(opts, WithDialOption(grpc.WithBalancerName(p2c.Name)))
|
|
|
|
|
conn, err := dial(target, opts...)
|
|
|
|
|
if err != nil {
|
|
|
|
|
if err := cli.dial(target, opts...); err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return &client{conn: conn}, nil
|
|
|
|
|
return &cli, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *client) Conn() *grpc.ClientConn {
|
|
|
|
|
return c.conn
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func WithDialOption(opt grpc.DialOption) ClientOption {
|
|
|
|
|
return func(options *ClientOptions) {
|
|
|
|
|
options.DialOptions = append(options.DialOptions, opt)
|
|
|
|
|
}
|
|
|
|
|
func (c *client) AddInterceptor(interceptor grpc.UnaryClientInterceptor) {
|
|
|
|
|
c.interceptors = append(c.interceptors, interceptor)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func WithTimeout(timeout time.Duration) ClientOption {
|
|
|
|
|
return func(options *ClientOptions) {
|
|
|
|
|
options.Timeout = timeout
|
|
|
|
|
}
|
|
|
|
|
func (c *client) Conn() *grpc.ClientConn {
|
|
|
|
|
return c.conn
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func buildDialOptions(opts ...ClientOption) []grpc.DialOption {
|
|
|
|
|
func (c *client) buildDialOptions(opts ...ClientOption) []grpc.DialOption {
|
|
|
|
|
var clientOptions ClientOptions
|
|
|
|
|
for _, opt := range opts {
|
|
|
|
|
opt(&clientOptions)
|
|
|
|
@ -78,12 +71,15 @@ func buildDialOptions(opts ...ClientOption) []grpc.DialOption {
|
|
|
|
|
clientinterceptors.TimeoutInterceptor(clientOptions.Timeout),
|
|
|
|
|
),
|
|
|
|
|
}
|
|
|
|
|
for _, interceptor := range c.interceptors {
|
|
|
|
|
options = append(options, WithUnaryClientInterceptors(interceptor))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return append(options, clientOptions.DialOptions...)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func dial(server string, opts ...ClientOption) (*grpc.ClientConn, error) {
|
|
|
|
|
options := buildDialOptions(opts...)
|
|
|
|
|
func (c *client) dial(server string, opts ...ClientOption) error {
|
|
|
|
|
options := c.buildDialOptions(opts...)
|
|
|
|
|
timeCtx, cancel := context.WithTimeout(context.Background(), dialTimeout)
|
|
|
|
|
defer cancel()
|
|
|
|
|
conn, err := grpc.DialContext(timeCtx, server, options...)
|
|
|
|
@ -96,9 +92,22 @@ func dial(server string, opts ...ClientOption) (*grpc.ClientConn, error) {
|
|
|
|
|
service = server[pos+1:]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return nil, fmt.Errorf("rpc dial: %s, error: %s, make sure rpc service %q is alread started",
|
|
|
|
|
return fmt.Errorf("rpc dial: %s, error: %s, make sure rpc service %q is alread started",
|
|
|
|
|
server, err.Error(), service)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return conn, nil
|
|
|
|
|
c.conn = conn
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func WithDialOption(opt grpc.DialOption) ClientOption {
|
|
|
|
|
return func(options *ClientOptions) {
|
|
|
|
|
options.DialOptions = append(options.DialOptions, opt)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func WithTimeout(timeout time.Duration) ClientOption {
|
|
|
|
|
return func(options *ClientOptions) {
|
|
|
|
|
options.Timeout = timeout
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|