123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- package internal
- import (
- "context"
- "errors"
- "fmt"
- "strings"
- "time"
- "github.com/tal-tech/go-zero/zrpc/internal/balancer/p2c"
- "github.com/tal-tech/go-zero/zrpc/internal/clientinterceptors"
- "github.com/tal-tech/go-zero/zrpc/internal/resolver"
- "google.golang.org/grpc"
- )
- const (
- dialTimeout = time.Second * 3
- separator = '/'
- )
- func init() {
- resolver.RegisterResolver()
- }
- type (
- ClientOptions struct {
- Timeout time.Duration
- DialOptions []grpc.DialOption
- }
- ClientOption func(options *ClientOptions)
- client struct {
- conn *grpc.ClientConn
- }
- )
- func NewClient(target string, opts ...ClientOption) (*client, error) {
- var cli client
- opts = append([]ClientOption{WithDialOption(grpc.WithBalancerName(p2c.Name))}, opts...)
- if err := cli.dial(target, opts...); err != nil {
- return nil, err
- }
- return &cli, nil
- }
- func (c *client) Conn() *grpc.ClientConn {
- return c.conn
- }
- func (c *client) buildDialOptions(opts ...ClientOption) []grpc.DialOption {
- var cliOpts ClientOptions
- for _, opt := range opts {
- opt(&cliOpts)
- }
- options := []grpc.DialOption{
- grpc.WithInsecure(),
- grpc.WithBlock(),
- WithUnaryClientInterceptors(
- clientinterceptors.TracingInterceptor,
- clientinterceptors.DurationInterceptor,
- clientinterceptors.BreakerInterceptor,
- clientinterceptors.PrometheusInterceptor,
- clientinterceptors.TimeoutInterceptor(cliOpts.Timeout),
- ),
- }
- return append(options, cliOpts.DialOptions...)
- }
- 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...)
- if err != nil {
- service := server
- if errors.Is(err, context.DeadlineExceeded) {
- pos := strings.LastIndexByte(server, separator)
- // len(server) - 1 is the index of last char
- if 0 < pos && pos < len(server)-1 {
- service = server[pos+1:]
- }
- }
- return fmt.Errorf("rpc dial: %s, error: %s, make sure rpc service %q is alread started",
- server, err.Error(), service)
- }
- 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
- }
- }
- func WithUnaryClientInterceptor(interceptor grpc.UnaryClientInterceptor) ClientOption {
- return func(options *ClientOptions) {
- options.DialOptions = append(options.DialOptions, WithUnaryClientInterceptors(interceptor))
- }
- }
|