2015-01-14 02:31:27 +03:00
|
|
|
package client
|
|
|
|
|
|
|
|
import (
|
2018-03-03 14:53:52 +03:00
|
|
|
"context"
|
2015-01-14 02:31:27 +03:00
|
|
|
"fmt"
|
2018-09-19 16:58:20 +03:00
|
|
|
"sync/atomic"
|
2019-01-18 15:30:39 +03:00
|
|
|
"time"
|
2018-09-19 16:58:20 +03:00
|
|
|
|
2019-01-10 23:35:10 +03:00
|
|
|
"github.com/google/uuid"
|
2020-01-30 14:39:00 +03:00
|
|
|
"github.com/micro/go-micro/v2/broker"
|
|
|
|
"github.com/micro/go-micro/v2/codec"
|
|
|
|
raw "github.com/micro/go-micro/v2/codec/bytes"
|
|
|
|
"github.com/micro/go-micro/v2/errors"
|
|
|
|
"github.com/micro/go-micro/v2/metadata"
|
2020-07-02 19:26:45 +03:00
|
|
|
"github.com/micro/go-micro/v2/registry"
|
2020-01-30 14:39:00 +03:00
|
|
|
"github.com/micro/go-micro/v2/transport"
|
|
|
|
"github.com/micro/go-micro/v2/util/buf"
|
2020-04-21 17:54:40 +03:00
|
|
|
"github.com/micro/go-micro/v2/util/net"
|
2020-01-30 14:39:00 +03:00
|
|
|
"github.com/micro/go-micro/v2/util/pool"
|
2015-01-14 02:31:27 +03:00
|
|
|
)
|
|
|
|
|
2015-05-23 19:40:53 +03:00
|
|
|
type rpcClient struct {
|
2020-02-19 02:05:38 +03:00
|
|
|
once atomic.Value
|
2015-12-31 21:11:46 +03:00
|
|
|
opts Options
|
2019-07-28 20:56:18 +03:00
|
|
|
pool pool.Pool
|
2018-03-21 06:17:38 +03:00
|
|
|
seq uint64
|
2015-05-21 00:57:19 +03:00
|
|
|
}
|
2015-01-14 02:31:27 +03:00
|
|
|
|
2015-05-23 19:40:53 +03:00
|
|
|
func newRpcClient(opt ...Option) Client {
|
2019-12-30 00:07:55 +03:00
|
|
|
opts := NewOptions(opt...)
|
2015-12-08 00:09:10 +03:00
|
|
|
|
2019-07-28 20:56:18 +03:00
|
|
|
p := pool.NewPool(
|
|
|
|
pool.Size(opts.PoolSize),
|
|
|
|
pool.TTL(opts.PoolTTL),
|
|
|
|
pool.Transport(opts.Transport),
|
|
|
|
)
|
|
|
|
|
2015-11-26 23:36:42 +03:00
|
|
|
rc := &rpcClient{
|
2015-05-23 19:40:53 +03:00
|
|
|
opts: opts,
|
2019-07-28 20:56:18 +03:00
|
|
|
pool: p,
|
2018-03-21 06:17:38 +03:00
|
|
|
seq: 0,
|
2015-05-23 19:40:53 +03:00
|
|
|
}
|
2020-02-19 02:05:38 +03:00
|
|
|
rc.once.Store(false)
|
2015-11-26 23:36:42 +03:00
|
|
|
|
|
|
|
c := Client(rc)
|
|
|
|
|
|
|
|
// wrap in reverse
|
2015-12-31 21:11:46 +03:00
|
|
|
for i := len(opts.Wrappers); i > 0; i-- {
|
|
|
|
c = opts.Wrappers[i-1](c)
|
2015-11-26 23:36:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return c
|
2015-05-23 19:40:53 +03:00
|
|
|
}
|
|
|
|
|
2015-11-28 14:22:29 +03:00
|
|
|
func (r *rpcClient) newCodec(contentType string) (codec.NewCodec, error) {
|
2015-12-31 21:11:46 +03:00
|
|
|
if c, ok := r.opts.Codecs[contentType]; ok {
|
2015-11-28 14:22:29 +03:00
|
|
|
return c, nil
|
2015-11-25 22:50:05 +03:00
|
|
|
}
|
2019-01-07 16:48:38 +03:00
|
|
|
if cf, ok := DefaultCodecs[contentType]; ok {
|
2015-11-25 22:50:05 +03:00
|
|
|
return cf, nil
|
|
|
|
}
|
|
|
|
return nil, fmt.Errorf("Unsupported Content-Type: %s", contentType)
|
|
|
|
}
|
|
|
|
|
2020-07-02 19:26:45 +03:00
|
|
|
func (r *rpcClient) call(ctx context.Context, node *registry.Node, req Request, resp interface{}, opts CallOptions) error {
|
2015-05-21 00:57:19 +03:00
|
|
|
msg := &transport.Message{
|
|
|
|
Header: make(map[string]string),
|
|
|
|
}
|
2015-01-14 02:31:27 +03:00
|
|
|
|
2016-01-28 20:55:28 +03:00
|
|
|
md, ok := metadata.FromContext(ctx)
|
2015-05-23 13:53:40 +03:00
|
|
|
if ok {
|
|
|
|
for k, v := range md {
|
2020-02-08 01:09:52 +03:00
|
|
|
// don't copy Micro-Topic header, that used for pub/sub
|
|
|
|
// this fix case then client uses the same context that received in subscriber
|
|
|
|
if k == "Micro-Topic" {
|
|
|
|
continue
|
|
|
|
}
|
2015-05-23 13:53:40 +03:00
|
|
|
msg.Header[k] = v
|
2015-05-21 00:57:19 +03:00
|
|
|
}
|
2015-01-14 02:31:27 +03:00
|
|
|
}
|
|
|
|
|
2016-05-13 01:32:58 +03:00
|
|
|
// set timeout in nanoseconds
|
|
|
|
msg.Header["Timeout"] = fmt.Sprintf("%d", opts.RequestTimeout)
|
|
|
|
// set the content type for the request
|
2016-01-06 00:13:20 +03:00
|
|
|
msg.Header["Content-Type"] = req.ContentType()
|
2016-08-25 15:34:47 +03:00
|
|
|
// set the accept header
|
|
|
|
msg.Header["Accept"] = req.ContentType()
|
2015-05-21 00:57:19 +03:00
|
|
|
|
2019-01-18 15:30:39 +03:00
|
|
|
// setup old protocol
|
2020-07-02 19:26:45 +03:00
|
|
|
cf := setupProtocol(msg, node)
|
2019-01-18 15:30:39 +03:00
|
|
|
|
|
|
|
// no codec specified
|
|
|
|
if cf == nil {
|
|
|
|
var err error
|
|
|
|
cf, err = r.newCodec(req.ContentType())
|
|
|
|
if err != nil {
|
|
|
|
return errors.InternalServerError("go.micro.client", err.Error())
|
|
|
|
}
|
2015-11-25 22:50:05 +03:00
|
|
|
}
|
|
|
|
|
2019-08-31 20:26:48 +03:00
|
|
|
dOpts := []transport.DialOption{
|
|
|
|
transport.WithStream(),
|
|
|
|
}
|
|
|
|
|
|
|
|
if opts.DialTimeout >= 0 {
|
|
|
|
dOpts = append(dOpts, transport.WithTimeout(opts.DialTimeout))
|
|
|
|
}
|
|
|
|
|
2020-07-02 19:26:45 +03:00
|
|
|
c, err := r.pool.Get(node.Address, dOpts...)
|
2015-01-14 02:31:27 +03:00
|
|
|
if err != nil {
|
2017-06-11 15:02:08 +03:00
|
|
|
return errors.InternalServerError("go.micro.client", "connection error: %v", err)
|
2015-01-14 02:31:27 +03:00
|
|
|
}
|
|
|
|
|
2020-05-19 16:44:46 +03:00
|
|
|
seq := atomic.AddUint64(&r.seq, 1) - 1
|
2019-08-15 22:08:49 +03:00
|
|
|
codec := newRpcCodec(msg, c, cf, "")
|
2019-01-15 00:30:43 +03:00
|
|
|
|
|
|
|
rsp := &rpcResponse{
|
|
|
|
socket: c,
|
|
|
|
codec: codec,
|
|
|
|
}
|
2018-03-21 06:17:38 +03:00
|
|
|
|
2016-01-06 00:13:20 +03:00
|
|
|
stream := &rpcStream{
|
2019-08-16 18:46:29 +03:00
|
|
|
id: fmt.Sprintf("%v", seq),
|
2019-01-15 00:30:43 +03:00
|
|
|
context: ctx,
|
|
|
|
request: req,
|
|
|
|
response: rsp,
|
|
|
|
codec: codec,
|
|
|
|
closed: make(chan bool),
|
2019-08-16 18:46:29 +03:00
|
|
|
release: func(err error) { r.pool.Release(c, err) },
|
2019-08-16 19:24:17 +03:00
|
|
|
sendEOS: false,
|
2016-01-06 00:13:20 +03:00
|
|
|
}
|
2019-08-16 18:46:29 +03:00
|
|
|
// close the stream on exiting this function
|
2016-05-13 01:32:58 +03:00
|
|
|
defer stream.Close()
|
2016-01-04 00:14:33 +03:00
|
|
|
|
2019-08-16 18:46:29 +03:00
|
|
|
// wait for error response
|
2016-01-04 00:14:33 +03:00
|
|
|
ch := make(chan error, 1)
|
|
|
|
|
|
|
|
go func() {
|
2016-06-30 18:19:02 +03:00
|
|
|
defer func() {
|
|
|
|
if r := recover(); r != nil {
|
2017-06-11 15:02:08 +03:00
|
|
|
ch <- errors.InternalServerError("go.micro.client", "panic recovered: %v", r)
|
2016-06-30 18:19:02 +03:00
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2016-01-06 00:13:20 +03:00
|
|
|
// send request
|
2019-01-10 14:39:39 +03:00
|
|
|
if err := stream.Send(req.Body()); err != nil {
|
2016-01-06 00:13:20 +03:00
|
|
|
ch <- err
|
|
|
|
return
|
2016-01-04 00:14:33 +03:00
|
|
|
}
|
2016-01-06 00:13:20 +03:00
|
|
|
|
|
|
|
// recv request
|
|
|
|
if err := stream.Recv(resp); err != nil {
|
|
|
|
ch <- err
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// success
|
|
|
|
ch <- nil
|
2016-01-04 00:14:33 +03:00
|
|
|
}()
|
|
|
|
|
2019-08-16 18:46:29 +03:00
|
|
|
var grr error
|
|
|
|
|
2016-01-04 00:14:33 +03:00
|
|
|
select {
|
2016-05-13 01:32:58 +03:00
|
|
|
case err := <-ch:
|
|
|
|
return err
|
|
|
|
case <-ctx.Done():
|
2019-08-16 18:46:29 +03:00
|
|
|
grr = errors.Timeout("go.micro.client", fmt.Sprintf("%v", ctx.Err()))
|
2015-10-22 17:14:56 +03:00
|
|
|
}
|
2019-08-16 18:46:29 +03:00
|
|
|
|
|
|
|
// set the stream error
|
|
|
|
if grr != nil {
|
|
|
|
stream.Lock()
|
|
|
|
stream.err = grr
|
|
|
|
stream.Unlock()
|
|
|
|
|
|
|
|
return grr
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
2015-06-01 20:55:27 +03:00
|
|
|
}
|
2015-01-14 02:31:27 +03:00
|
|
|
|
2020-07-02 19:26:45 +03:00
|
|
|
func (r *rpcClient) stream(ctx context.Context, node *registry.Node, req Request, opts CallOptions) (Stream, error) {
|
2015-06-01 20:55:27 +03:00
|
|
|
msg := &transport.Message{
|
|
|
|
Header: make(map[string]string),
|
2015-01-14 02:31:27 +03:00
|
|
|
}
|
|
|
|
|
2016-01-28 20:55:28 +03:00
|
|
|
md, ok := metadata.FromContext(ctx)
|
2015-06-01 20:55:27 +03:00
|
|
|
if ok {
|
|
|
|
for k, v := range md {
|
|
|
|
msg.Header[k] = v
|
|
|
|
}
|
2015-01-14 02:31:27 +03:00
|
|
|
}
|
|
|
|
|
2016-05-13 01:32:58 +03:00
|
|
|
// set timeout in nanoseconds
|
2020-04-01 01:22:11 +03:00
|
|
|
if opts.StreamTimeout > time.Duration(0) {
|
|
|
|
msg.Header["Timeout"] = fmt.Sprintf("%d", opts.StreamTimeout)
|
|
|
|
}
|
2016-05-13 01:32:58 +03:00
|
|
|
// set the content type for the request
|
2015-12-17 23:37:35 +03:00
|
|
|
msg.Header["Content-Type"] = req.ContentType()
|
2016-08-25 15:34:47 +03:00
|
|
|
// set the accept header
|
|
|
|
msg.Header["Accept"] = req.ContentType()
|
2015-01-14 02:31:27 +03:00
|
|
|
|
2019-01-18 15:30:39 +03:00
|
|
|
// set old codecs
|
2020-07-02 19:26:45 +03:00
|
|
|
cf := setupProtocol(msg, node)
|
2019-01-18 15:30:39 +03:00
|
|
|
|
|
|
|
// no codec specified
|
|
|
|
if cf == nil {
|
|
|
|
var err error
|
|
|
|
cf, err = r.newCodec(req.ContentType())
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.InternalServerError("go.micro.client", err.Error())
|
|
|
|
}
|
2015-11-25 22:50:05 +03:00
|
|
|
}
|
|
|
|
|
2018-07-18 02:32:35 +03:00
|
|
|
dOpts := []transport.DialOption{
|
|
|
|
transport.WithStream(),
|
|
|
|
}
|
|
|
|
|
|
|
|
if opts.DialTimeout >= 0 {
|
|
|
|
dOpts = append(dOpts, transport.WithTimeout(opts.DialTimeout))
|
|
|
|
}
|
|
|
|
|
2020-07-02 19:26:45 +03:00
|
|
|
c, err := r.opts.Transport.Dial(node.Address, dOpts...)
|
2015-01-14 02:31:27 +03:00
|
|
|
if err != nil {
|
2017-06-11 15:02:08 +03:00
|
|
|
return nil, errors.InternalServerError("go.micro.client", "connection error: %v", err)
|
2015-01-14 02:31:27 +03:00
|
|
|
}
|
|
|
|
|
2019-08-15 22:08:49 +03:00
|
|
|
// increment the sequence number
|
2020-05-19 16:44:46 +03:00
|
|
|
seq := atomic.AddUint64(&r.seq, 1) - 1
|
2019-08-15 22:08:49 +03:00
|
|
|
id := fmt.Sprintf("%v", seq)
|
|
|
|
|
|
|
|
// create codec with stream id
|
|
|
|
codec := newRpcCodec(msg, c, cf, id)
|
2019-01-15 00:30:43 +03:00
|
|
|
|
|
|
|
rsp := &rpcResponse{
|
|
|
|
socket: c,
|
|
|
|
codec: codec,
|
|
|
|
}
|
|
|
|
|
2019-01-30 21:42:11 +03:00
|
|
|
// set request codec
|
|
|
|
if r, ok := req.(*rpcRequest); ok {
|
|
|
|
r.codec = codec
|
|
|
|
}
|
|
|
|
|
2015-12-18 04:21:56 +03:00
|
|
|
stream := &rpcStream{
|
2019-08-16 18:46:29 +03:00
|
|
|
id: id,
|
2019-01-15 00:30:43 +03:00
|
|
|
context: ctx,
|
|
|
|
request: req,
|
|
|
|
response: rsp,
|
2019-01-30 21:42:11 +03:00
|
|
|
codec: codec,
|
2019-08-16 18:46:29 +03:00
|
|
|
// used to close the stream
|
|
|
|
closed: make(chan bool),
|
2019-08-15 22:08:49 +03:00
|
|
|
// signal the end of stream,
|
2019-08-16 19:24:17 +03:00
|
|
|
sendEOS: true,
|
2019-08-16 18:46:29 +03:00
|
|
|
// release func
|
2019-09-25 17:21:21 +03:00
|
|
|
release: func(err error) { c.Close() },
|
2015-12-18 04:21:56 +03:00
|
|
|
}
|
|
|
|
|
2019-08-16 18:46:29 +03:00
|
|
|
// wait for error response
|
2016-01-04 00:14:33 +03:00
|
|
|
ch := make(chan error, 1)
|
|
|
|
|
|
|
|
go func() {
|
2019-08-16 18:46:29 +03:00
|
|
|
// send the first message
|
2019-01-10 14:39:39 +03:00
|
|
|
ch <- stream.Send(req.Body())
|
2016-01-04 00:14:33 +03:00
|
|
|
}()
|
|
|
|
|
2016-05-13 01:32:58 +03:00
|
|
|
var grr error
|
|
|
|
|
2016-01-04 00:14:33 +03:00
|
|
|
select {
|
2016-05-13 01:32:58 +03:00
|
|
|
case err := <-ch:
|
|
|
|
grr = err
|
|
|
|
case <-ctx.Done():
|
2018-11-25 12:41:28 +03:00
|
|
|
grr = errors.Timeout("go.micro.client", fmt.Sprintf("%v", ctx.Err()))
|
2016-01-04 00:14:33 +03:00
|
|
|
}
|
|
|
|
|
2016-05-13 01:32:58 +03:00
|
|
|
if grr != nil {
|
2019-08-16 18:46:29 +03:00
|
|
|
// set the error
|
|
|
|
stream.Lock()
|
|
|
|
stream.err = grr
|
|
|
|
stream.Unlock()
|
|
|
|
|
|
|
|
// close the stream
|
2016-05-13 01:32:58 +03:00
|
|
|
stream.Close()
|
|
|
|
return nil, grr
|
|
|
|
}
|
|
|
|
|
|
|
|
return stream, nil
|
2015-01-14 02:31:27 +03:00
|
|
|
}
|
|
|
|
|
2016-01-02 22:12:17 +03:00
|
|
|
func (r *rpcClient) Init(opts ...Option) error {
|
2016-06-07 02:46:14 +03:00
|
|
|
size := r.opts.PoolSize
|
|
|
|
ttl := r.opts.PoolTTL
|
2019-07-28 20:56:18 +03:00
|
|
|
tr := r.opts.Transport
|
2016-06-07 02:46:14 +03:00
|
|
|
|
2016-01-02 22:12:17 +03:00
|
|
|
for _, o := range opts {
|
|
|
|
o(&r.opts)
|
|
|
|
}
|
2016-06-07 02:46:14 +03:00
|
|
|
|
2018-05-26 10:38:41 +03:00
|
|
|
// update pool configuration if the options changed
|
2019-07-28 20:56:18 +03:00
|
|
|
if size != r.opts.PoolSize || ttl != r.opts.PoolTTL || tr != r.opts.Transport {
|
|
|
|
// close existing pool
|
|
|
|
r.pool.Close()
|
|
|
|
// create new pool
|
|
|
|
r.pool = pool.NewPool(
|
|
|
|
pool.Size(r.opts.PoolSize),
|
|
|
|
pool.TTL(r.opts.PoolTTL),
|
|
|
|
pool.Transport(r.opts.Transport),
|
|
|
|
)
|
2016-06-07 02:46:14 +03:00
|
|
|
}
|
|
|
|
|
2016-01-02 22:12:17 +03:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *rpcClient) Options() Options {
|
|
|
|
return r.opts
|
|
|
|
}
|
|
|
|
|
2015-12-08 22:25:42 +03:00
|
|
|
func (r *rpcClient) Call(ctx context.Context, request Request, response interface{}, opts ...CallOption) error {
|
2016-04-05 20:07:07 +03:00
|
|
|
// make a copy of call opts
|
|
|
|
callOpts := r.opts.CallOptions
|
2015-12-09 03:02:45 +03:00
|
|
|
for _, opt := range opts {
|
2016-04-05 20:07:07 +03:00
|
|
|
opt(&callOpts)
|
2015-12-09 03:02:45 +03:00
|
|
|
}
|
|
|
|
|
2016-05-13 01:32:58 +03:00
|
|
|
// check if we already have a deadline
|
2020-07-01 19:06:59 +03:00
|
|
|
if d, ok := ctx.Deadline(); !ok {
|
2016-05-13 01:32:58 +03:00
|
|
|
// no deadline so we create a new one
|
2019-12-03 10:25:58 +03:00
|
|
|
var cancel context.CancelFunc
|
|
|
|
ctx, cancel = context.WithTimeout(ctx, callOpts.RequestTimeout)
|
|
|
|
defer cancel()
|
2016-05-13 01:32:58 +03:00
|
|
|
} else {
|
|
|
|
// got a deadline so no need to setup context
|
|
|
|
// but we need to set the timeout we pass along
|
2020-07-01 19:06:59 +03:00
|
|
|
remaining := d.Sub(time.Now())
|
|
|
|
WithRequestTimeout(remaining)(&callOpts)
|
2016-05-13 01:32:58 +03:00
|
|
|
}
|
2016-01-04 00:14:33 +03:00
|
|
|
|
2016-05-13 01:56:25 +03:00
|
|
|
// should we noop right here?
|
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
2018-11-25 12:41:28 +03:00
|
|
|
return errors.Timeout("go.micro.client", fmt.Sprintf("%v", ctx.Err()))
|
2016-05-13 01:56:25 +03:00
|
|
|
default:
|
|
|
|
}
|
|
|
|
|
2016-11-09 21:02:41 +03:00
|
|
|
// make copy of call method
|
|
|
|
rcall := r.call
|
|
|
|
|
|
|
|
// wrap the call in reverse
|
|
|
|
for i := len(callOpts.CallWrappers); i > 0; i-- {
|
|
|
|
rcall = callOpts.CallWrappers[i-1](rcall)
|
|
|
|
}
|
|
|
|
|
2016-05-13 01:32:58 +03:00
|
|
|
// return errors.New("go.micro.client", "request timeout", 408)
|
|
|
|
call := func(i int) error {
|
2016-04-05 22:04:37 +03:00
|
|
|
// call backoff first. Someone may want an initial start delay
|
|
|
|
t, err := callOpts.Backoff(ctx, request, i)
|
|
|
|
if err != nil {
|
2018-07-26 11:33:50 +03:00
|
|
|
return errors.InternalServerError("go.micro.client", "backoff error: %v", err.Error())
|
2016-04-05 22:04:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// only sleep if greater than 0
|
|
|
|
if t.Seconds() > 0 {
|
|
|
|
time.Sleep(t)
|
|
|
|
}
|
|
|
|
|
2020-07-16 18:32:37 +03:00
|
|
|
// use the router passed as a call option, or fallback to the rpc clients router
|
|
|
|
if callOpts.Router == nil {
|
|
|
|
callOpts.Router = r.opts.Router
|
|
|
|
}
|
|
|
|
// use the selector passed as a call option, or fallback to the rpc clients selector
|
|
|
|
if callOpts.Selector == nil {
|
|
|
|
callOpts.Selector = r.opts.Selector
|
|
|
|
}
|
|
|
|
|
2020-07-01 19:06:59 +03:00
|
|
|
// lookup the route to send the request via
|
2020-07-16 18:32:37 +03:00
|
|
|
route, err := LookupRoute(request, callOpts)
|
2019-08-11 05:14:41 +03:00
|
|
|
if err != nil {
|
2020-07-01 19:06:59 +03:00
|
|
|
return err
|
2016-01-03 02:16:15 +03:00
|
|
|
}
|
|
|
|
|
2020-07-16 18:33:11 +03:00
|
|
|
// pass a node to enable backwards comparability as changing the
|
2020-07-02 19:26:45 +03:00
|
|
|
// call func would be a breaking change.
|
|
|
|
// todo v3: change the call func to accept a route
|
|
|
|
node := ®istry.Node{Address: route.Address, Metadata: route.Metadata}
|
|
|
|
|
2016-05-13 01:32:58 +03:00
|
|
|
// make the call
|
2020-07-02 19:26:45 +03:00
|
|
|
err = rcall(ctx, node, request, response, callOpts)
|
2020-07-01 19:06:59 +03:00
|
|
|
|
|
|
|
// record the result of the call to inform future routing decisions
|
|
|
|
r.opts.Selector.Record(*route, err)
|
|
|
|
|
2016-05-13 01:32:58 +03:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-12-07 22:54:29 +03:00
|
|
|
// get the retries
|
|
|
|
retries := callOpts.Retries
|
|
|
|
|
|
|
|
// disable retries when using a proxy
|
2020-04-21 17:54:40 +03:00
|
|
|
if _, _, ok := net.Proxy(request.Service(), callOpts.Address); ok {
|
2019-12-07 22:54:29 +03:00
|
|
|
retries = 0
|
|
|
|
}
|
|
|
|
|
|
|
|
ch := make(chan error, retries+1)
|
2016-05-13 01:32:58 +03:00
|
|
|
var gerr error
|
2015-01-14 02:31:27 +03:00
|
|
|
|
2019-12-07 22:54:29 +03:00
|
|
|
for i := 0; i <= retries; i++ {
|
2018-09-19 16:58:20 +03:00
|
|
|
go func(i int) {
|
2016-05-13 01:32:58 +03:00
|
|
|
ch <- call(i)
|
2018-09-19 16:58:20 +03:00
|
|
|
}(i)
|
2016-05-13 01:32:58 +03:00
|
|
|
|
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
2018-11-25 12:41:28 +03:00
|
|
|
return errors.Timeout("go.micro.client", fmt.Sprintf("call timeout: %v", ctx.Err()))
|
2016-05-13 01:32:58 +03:00
|
|
|
case err := <-ch:
|
|
|
|
// if the call succeeded lets bail early
|
|
|
|
if err == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2016-11-03 12:45:31 +03:00
|
|
|
|
2016-11-07 19:39:05 +03:00
|
|
|
retry, rerr := callOpts.Retry(ctx, request, i, err)
|
|
|
|
if rerr != nil {
|
|
|
|
return rerr
|
|
|
|
}
|
|
|
|
|
|
|
|
if !retry {
|
2016-11-03 12:45:31 +03:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-05-13 01:32:58 +03:00
|
|
|
gerr = err
|
2016-01-03 02:16:15 +03:00
|
|
|
}
|
2015-05-21 21:24:57 +03:00
|
|
|
}
|
|
|
|
|
2016-05-13 01:32:58 +03:00
|
|
|
return gerr
|
2015-01-14 02:31:27 +03:00
|
|
|
}
|
|
|
|
|
2018-04-14 20:15:09 +03:00
|
|
|
func (r *rpcClient) Stream(ctx context.Context, request Request, opts ...CallOption) (Stream, error) {
|
2016-04-05 20:07:07 +03:00
|
|
|
// make a copy of call opts
|
|
|
|
callOpts := r.opts.CallOptions
|
2015-12-09 03:02:45 +03:00
|
|
|
for _, opt := range opts {
|
2016-04-05 20:07:07 +03:00
|
|
|
opt(&callOpts)
|
2015-12-09 03:02:45 +03:00
|
|
|
}
|
|
|
|
|
2016-05-13 01:56:25 +03:00
|
|
|
// should we noop right here?
|
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
2018-11-25 12:41:28 +03:00
|
|
|
return nil, errors.Timeout("go.micro.client", fmt.Sprintf("%v", ctx.Err()))
|
2016-05-13 01:56:25 +03:00
|
|
|
default:
|
|
|
|
}
|
|
|
|
|
2018-04-14 20:15:09 +03:00
|
|
|
call := func(i int) (Stream, error) {
|
2016-04-05 22:04:37 +03:00
|
|
|
// call backoff first. Someone may want an initial start delay
|
|
|
|
t, err := callOpts.Backoff(ctx, request, i)
|
|
|
|
if err != nil {
|
2018-07-26 11:33:50 +03:00
|
|
|
return nil, errors.InternalServerError("go.micro.client", "backoff error: %v", err.Error())
|
2016-04-05 22:04:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// only sleep if greater than 0
|
|
|
|
if t.Seconds() > 0 {
|
|
|
|
time.Sleep(t)
|
|
|
|
}
|
|
|
|
|
2020-07-16 18:32:37 +03:00
|
|
|
// use the router passed as a call option, or fallback to the rpc clients router
|
|
|
|
if callOpts.Router == nil {
|
|
|
|
callOpts.Router = r.opts.Router
|
|
|
|
}
|
|
|
|
// use the selector passed as a call option, or fallback to the rpc clients selector
|
|
|
|
if callOpts.Selector == nil {
|
|
|
|
callOpts.Selector = r.opts.Selector
|
|
|
|
}
|
|
|
|
|
2020-07-01 19:06:59 +03:00
|
|
|
// lookup the route to send the request via
|
2020-07-16 18:32:37 +03:00
|
|
|
route, err := LookupRoute(request, callOpts)
|
2019-08-11 05:14:41 +03:00
|
|
|
if err != nil {
|
2020-07-01 19:06:59 +03:00
|
|
|
return nil, err
|
2016-01-03 02:16:15 +03:00
|
|
|
}
|
2015-06-01 20:55:27 +03:00
|
|
|
|
2020-07-02 19:26:45 +03:00
|
|
|
// pass a node to enable backwards compatability as changing the
|
|
|
|
// call func would be a breaking change.
|
|
|
|
// todo v3: change the call func to accept a route
|
|
|
|
node := ®istry.Node{Address: route.Address, Metadata: route.Metadata}
|
|
|
|
|
2020-07-01 19:06:59 +03:00
|
|
|
// perform the call
|
2020-07-02 19:26:45 +03:00
|
|
|
stream, err := r.stream(ctx, node, request, callOpts)
|
2020-07-01 19:06:59 +03:00
|
|
|
|
|
|
|
// record the result of the call to inform future routing decisions
|
|
|
|
r.opts.Selector.Record(*route, err)
|
|
|
|
|
2016-05-13 01:32:58 +03:00
|
|
|
return stream, err
|
|
|
|
}
|
|
|
|
|
|
|
|
type response struct {
|
2018-04-14 20:15:09 +03:00
|
|
|
stream Stream
|
2016-05-13 01:32:58 +03:00
|
|
|
err error
|
|
|
|
}
|
2016-01-03 02:16:15 +03:00
|
|
|
|
2019-12-07 22:54:29 +03:00
|
|
|
// get the retries
|
|
|
|
retries := callOpts.Retries
|
|
|
|
|
|
|
|
// disable retries when using a proxy
|
2020-04-21 17:54:40 +03:00
|
|
|
if _, _, ok := net.Proxy(request.Service(), callOpts.Address); ok {
|
2019-12-07 22:54:29 +03:00
|
|
|
retries = 0
|
|
|
|
}
|
|
|
|
|
|
|
|
ch := make(chan response, retries+1)
|
2016-05-13 01:32:58 +03:00
|
|
|
var grr error
|
|
|
|
|
2019-12-07 22:54:29 +03:00
|
|
|
for i := 0; i <= retries; i++ {
|
2019-05-31 09:24:37 +03:00
|
|
|
go func(i int) {
|
2016-05-13 01:32:58 +03:00
|
|
|
s, err := call(i)
|
|
|
|
ch <- response{s, err}
|
2019-05-31 09:24:37 +03:00
|
|
|
}(i)
|
2016-05-13 01:32:58 +03:00
|
|
|
|
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
2018-11-25 12:41:28 +03:00
|
|
|
return nil, errors.Timeout("go.micro.client", fmt.Sprintf("call timeout: %v", ctx.Err()))
|
2016-05-13 01:32:58 +03:00
|
|
|
case rsp := <-ch:
|
|
|
|
// if the call succeeded lets bail early
|
|
|
|
if rsp.err == nil {
|
|
|
|
return rsp.stream, nil
|
|
|
|
}
|
2016-11-07 19:10:40 +03:00
|
|
|
|
2016-11-07 19:39:05 +03:00
|
|
|
retry, rerr := callOpts.Retry(ctx, request, i, rsp.err)
|
|
|
|
if rerr != nil {
|
|
|
|
return nil, rerr
|
|
|
|
}
|
|
|
|
|
|
|
|
if !retry {
|
|
|
|
return nil, rsp.err
|
2016-11-07 19:10:40 +03:00
|
|
|
}
|
|
|
|
|
2016-11-07 19:46:12 +03:00
|
|
|
grr = rsp.err
|
2016-01-03 02:16:15 +03:00
|
|
|
}
|
2015-06-01 20:55:27 +03:00
|
|
|
}
|
|
|
|
|
2016-05-13 01:32:58 +03:00
|
|
|
return nil, grr
|
2015-06-01 20:55:27 +03:00
|
|
|
}
|
|
|
|
|
2018-04-14 20:06:52 +03:00
|
|
|
func (r *rpcClient) Publish(ctx context.Context, msg Message, opts ...PublishOption) error {
|
2019-02-23 13:50:53 +03:00
|
|
|
options := PublishOptions{
|
|
|
|
Context: context.Background(),
|
|
|
|
}
|
|
|
|
for _, o := range opts {
|
|
|
|
o(&options)
|
|
|
|
}
|
|
|
|
|
2016-01-28 20:55:28 +03:00
|
|
|
md, ok := metadata.FromContext(ctx)
|
2015-06-12 21:52:27 +03:00
|
|
|
if !ok {
|
|
|
|
md = make(map[string]string)
|
|
|
|
}
|
2019-01-10 23:35:10 +03:00
|
|
|
|
|
|
|
id := uuid.New().String()
|
2018-04-14 20:06:52 +03:00
|
|
|
md["Content-Type"] = msg.ContentType()
|
2019-01-24 13:11:02 +03:00
|
|
|
md["Micro-Topic"] = msg.Topic()
|
|
|
|
md["Micro-Id"] = id
|
2015-06-12 21:52:27 +03:00
|
|
|
|
2019-02-23 20:06:17 +03:00
|
|
|
// set the topic
|
2019-02-23 13:50:53 +03:00
|
|
|
topic := msg.Topic()
|
2019-02-23 20:06:17 +03:00
|
|
|
|
|
|
|
// get the exchange
|
2019-02-23 13:50:53 +03:00
|
|
|
if len(options.Exchange) > 0 {
|
|
|
|
topic = options.Exchange
|
|
|
|
}
|
|
|
|
|
2015-06-12 21:52:27 +03:00
|
|
|
// encode message body
|
2018-04-14 20:06:52 +03:00
|
|
|
cf, err := r.newCodec(msg.ContentType())
|
2015-11-28 14:22:29 +03:00
|
|
|
if err != nil {
|
|
|
|
return errors.InternalServerError("go.micro.client", err.Error())
|
|
|
|
}
|
2019-07-28 21:33:24 +03:00
|
|
|
|
2019-11-25 19:31:43 +03:00
|
|
|
var body []byte
|
2019-07-28 21:33:24 +03:00
|
|
|
|
2019-11-25 19:31:43 +03:00
|
|
|
// passed in raw data
|
|
|
|
if d, ok := msg.Payload().(*raw.Frame); ok {
|
|
|
|
body = d.Data
|
|
|
|
} else {
|
|
|
|
// new buffer
|
|
|
|
b := buf.New(nil)
|
|
|
|
|
|
|
|
if err := cf(b).Write(&codec.Message{
|
|
|
|
Target: topic,
|
|
|
|
Type: codec.Event,
|
|
|
|
Header: map[string]string{
|
|
|
|
"Micro-Id": id,
|
|
|
|
"Micro-Topic": msg.Topic(),
|
|
|
|
},
|
|
|
|
}, msg.Payload()); err != nil {
|
|
|
|
return errors.InternalServerError("go.micro.client", err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
// set the body
|
|
|
|
body = b.Bytes()
|
2015-06-12 21:52:27 +03:00
|
|
|
}
|
2019-11-25 19:31:43 +03:00
|
|
|
|
2020-02-19 02:05:38 +03:00
|
|
|
if !r.once.Load().(bool) {
|
|
|
|
if err = r.opts.Broker.Connect(); err != nil {
|
|
|
|
return errors.InternalServerError("go.micro.client", err.Error())
|
|
|
|
}
|
|
|
|
r.once.Store(true)
|
|
|
|
}
|
2015-06-12 21:52:27 +03:00
|
|
|
|
2019-02-23 13:50:53 +03:00
|
|
|
return r.opts.Broker.Publish(topic, &broker.Message{
|
2015-06-12 21:52:27 +03:00
|
|
|
Header: md,
|
2019-11-25 19:31:43 +03:00
|
|
|
Body: body,
|
2020-04-28 19:29:00 +03:00
|
|
|
}, broker.PublishContext(options.Context))
|
2015-06-12 21:52:27 +03:00
|
|
|
}
|
|
|
|
|
2018-05-10 19:33:54 +03:00
|
|
|
func (r *rpcClient) NewMessage(topic string, message interface{}, opts ...MessageOption) Message {
|
|
|
|
return newMessage(topic, message, r.opts.ContentType, opts...)
|
2015-06-12 21:52:27 +03:00
|
|
|
}
|
|
|
|
|
2015-12-17 23:37:35 +03:00
|
|
|
func (r *rpcClient) NewRequest(service, method string, request interface{}, reqOpts ...RequestOption) Request {
|
2018-04-14 20:06:52 +03:00
|
|
|
return newRequest(service, method, request, r.opts.ContentType, reqOpts...)
|
2015-01-14 02:31:27 +03:00
|
|
|
}
|
2015-12-20 00:56:14 +03:00
|
|
|
|
|
|
|
func (r *rpcClient) String() string {
|
2019-06-08 21:40:44 +03:00
|
|
|
return "mucp"
|
2015-12-20 00:56:14 +03:00
|
|
|
}
|