You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-zero/rpcx/proxy.go

67 lines
1.2 KiB
Go

4 years ago
package rpcx
import (
"context"
"sync"
"google.golang.org/grpc"
4 years ago
"zero/core/syncx"
"zero/rpcx/internal"
"zero/rpcx/internal/auth"
4 years ago
)
type RpcProxy struct {
backend string
clients map[string]*RpcClient
4 years ago
options []internal.ClientOption
4 years ago
sharedCalls syncx.SharedCalls
lock sync.Mutex
}
4 years ago
func NewRpcProxy(backend string, opts ...internal.ClientOption) *RpcProxy {
4 years ago
return &RpcProxy{
backend: backend,
clients: make(map[string]*RpcClient),
options: opts,
sharedCalls: syncx.NewSharedCalls(),
}
}
func (p *RpcProxy) TakeConn(ctx context.Context) (*grpc.ClientConn, error) {
cred := auth.ParseCredential(ctx)
key := cred.App + "/" + cred.Token
val, err := p.sharedCalls.Do(key, func() (interface{}, error) {
p.lock.Lock()
client, ok := p.clients[key]
p.lock.Unlock()
if ok {
return client, nil
}
client, err := NewClient(RpcClientConf{
Server: p.backend,
App: cred.App,
Token: cred.Token,
}, p.options...)
if err != nil {
return nil, err
}
p.lock.Lock()
p.clients[key] = client
p.lock.Unlock()
return client, nil
})
if err != nil {
return nil, err
}
conn, ok := val.(*RpcClient).Next()
if !ok {
return nil, grpc.ErrServerStopped
}
return conn, nil
}