2015-06-12 20:52:27 +02:00
|
|
|
package client
|
|
|
|
|
|
|
|
import (
|
2018-03-03 13:53:52 +02:00
|
|
|
"context"
|
2016-01-03 23:14:33 +02:00
|
|
|
"time"
|
|
|
|
|
2015-11-20 18:17:33 +02:00
|
|
|
"github.com/micro/go-micro/broker"
|
2015-11-27 02:17:36 +02:00
|
|
|
"github.com/micro/go-micro/codec"
|
2015-11-20 18:17:33 +02:00
|
|
|
"github.com/micro/go-micro/registry"
|
2015-12-09 21:23:16 +02:00
|
|
|
"github.com/micro/go-micro/selector"
|
2015-11-20 18:17:33 +02:00
|
|
|
"github.com/micro/go-micro/transport"
|
2015-06-12 20:52:27 +02:00
|
|
|
)
|
|
|
|
|
2015-12-31 20:11:46 +02:00
|
|
|
type Options struct {
|
2016-04-05 19:07:07 +02:00
|
|
|
// Used to select codec
|
|
|
|
ContentType string
|
|
|
|
|
|
|
|
// Plugged interfaces
|
|
|
|
Broker broker.Broker
|
|
|
|
Codecs map[string]codec.NewCodec
|
|
|
|
Registry registry.Registry
|
|
|
|
Selector selector.Selector
|
|
|
|
Transport transport.Transport
|
|
|
|
|
2019-01-13 14:15:13 +02:00
|
|
|
// Router sets the router
|
|
|
|
Router Router
|
|
|
|
|
2016-06-07 01:46:14 +02:00
|
|
|
// Connection Pool
|
|
|
|
PoolSize int
|
|
|
|
PoolTTL time.Duration
|
|
|
|
|
2016-04-05 19:07:07 +02:00
|
|
|
// Middleware for client
|
|
|
|
Wrappers []Wrapper
|
|
|
|
|
|
|
|
// Default Call Options
|
|
|
|
CallOptions CallOptions
|
2015-12-31 20:11:46 +02:00
|
|
|
|
2016-01-06 18:25:12 +02:00
|
|
|
// Other options for implementations of the interface
|
|
|
|
// can be stored in a context
|
|
|
|
Context context.Context
|
2015-06-12 20:52:27 +02:00
|
|
|
}
|
|
|
|
|
2015-12-31 20:11:46 +02:00
|
|
|
type CallOptions struct {
|
|
|
|
SelectOptions []selector.SelectOption
|
|
|
|
|
2018-04-14 17:16:58 +02:00
|
|
|
// Address of remote host
|
|
|
|
Address string
|
2016-04-05 21:04:37 +02:00
|
|
|
// Backoff func
|
|
|
|
Backoff BackoffFunc
|
2016-11-03 11:45:31 +02:00
|
|
|
// Check if retriable func
|
2016-11-07 10:40:11 +02:00
|
|
|
Retry RetryFunc
|
2016-04-05 19:07:07 +02:00
|
|
|
// Transport Dial Timeout
|
|
|
|
DialTimeout time.Duration
|
|
|
|
// Number of Call attempts
|
|
|
|
Retries int
|
|
|
|
// Request/Response timeout
|
|
|
|
RequestTimeout time.Duration
|
|
|
|
|
2016-11-07 19:49:35 +02:00
|
|
|
// Middleware for low level call func
|
2016-11-07 19:58:34 +02:00
|
|
|
CallWrappers []CallWrapper
|
2016-11-07 19:49:35 +02:00
|
|
|
|
2016-01-06 18:25:12 +02:00
|
|
|
// Other options for implementations of the interface
|
|
|
|
// can be stored in a context
|
|
|
|
Context context.Context
|
2015-12-31 20:11:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
type PublishOptions struct {
|
2016-01-06 18:25:12 +02:00
|
|
|
// Other options for implementations of the interface
|
|
|
|
// can be stored in a context
|
|
|
|
Context context.Context
|
2015-12-09 02:02:45 +02:00
|
|
|
}
|
2015-12-08 21:25:42 +02:00
|
|
|
|
2018-05-10 18:33:54 +02:00
|
|
|
type MessageOptions struct {
|
|
|
|
ContentType string
|
|
|
|
}
|
|
|
|
|
2015-12-31 20:11:46 +02:00
|
|
|
type RequestOptions struct {
|
2018-04-14 19:06:52 +02:00
|
|
|
ContentType string
|
|
|
|
Stream bool
|
2015-12-08 21:25:42 +02:00
|
|
|
|
2016-01-06 18:25:12 +02:00
|
|
|
// Other options for implementations of the interface
|
|
|
|
// can be stored in a context
|
|
|
|
Context context.Context
|
2015-12-17 22:37:35 +02:00
|
|
|
}
|
|
|
|
|
2016-01-03 01:16:15 +02:00
|
|
|
func newOptions(options ...Option) Options {
|
|
|
|
opts := Options{
|
2016-04-05 19:07:07 +02:00
|
|
|
Codecs: make(map[string]codec.NewCodec),
|
|
|
|
CallOptions: CallOptions{
|
2016-11-07 18:46:12 +02:00
|
|
|
Backoff: DefaultBackoff,
|
|
|
|
Retry: DefaultRetry,
|
|
|
|
Retries: DefaultRetries,
|
|
|
|
RequestTimeout: DefaultRequestTimeout,
|
|
|
|
DialTimeout: transport.DefaultDialTimeout,
|
2016-04-05 19:07:07 +02:00
|
|
|
},
|
2016-06-07 01:46:14 +02:00
|
|
|
PoolSize: DefaultPoolSize,
|
|
|
|
PoolTTL: DefaultPoolTTL,
|
2016-01-03 01:16:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, o := range options {
|
|
|
|
o(&opts)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(opts.ContentType) == 0 {
|
2019-01-07 15:48:38 +02:00
|
|
|
opts.ContentType = DefaultContentType
|
2016-01-03 01:16:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if opts.Broker == nil {
|
|
|
|
opts.Broker = broker.DefaultBroker
|
|
|
|
}
|
|
|
|
|
|
|
|
if opts.Registry == nil {
|
|
|
|
opts.Registry = registry.DefaultRegistry
|
|
|
|
}
|
|
|
|
|
|
|
|
if opts.Selector == nil {
|
|
|
|
opts.Selector = selector.NewSelector(
|
|
|
|
selector.Registry(opts.Registry),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
if opts.Transport == nil {
|
|
|
|
opts.Transport = transport.DefaultTransport
|
|
|
|
}
|
|
|
|
|
|
|
|
return opts
|
|
|
|
}
|
|
|
|
|
2015-11-26 14:51:53 +02:00
|
|
|
// Broker to be used for pub/sub
|
2015-06-12 20:52:27 +02:00
|
|
|
func Broker(b broker.Broker) Option {
|
2015-12-31 20:11:46 +02:00
|
|
|
return func(o *Options) {
|
|
|
|
o.Broker = b
|
2015-06-12 20:52:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-26 14:51:53 +02:00
|
|
|
// Codec to be used to encode/decode requests for a given content type
|
2015-11-28 13:22:29 +02:00
|
|
|
func Codec(contentType string, c codec.NewCodec) Option {
|
2015-12-31 20:11:46 +02:00
|
|
|
return func(o *Options) {
|
|
|
|
o.Codecs[contentType] = c
|
2015-11-25 21:50:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-26 14:51:53 +02:00
|
|
|
// Default content type of the client
|
2015-11-25 21:50:05 +02:00
|
|
|
func ContentType(ct string) Option {
|
2015-12-31 20:11:46 +02:00
|
|
|
return func(o *Options) {
|
|
|
|
o.ContentType = ct
|
2015-11-25 21:50:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-07 01:46:14 +02:00
|
|
|
// PoolSize sets the connection pool size
|
|
|
|
func PoolSize(d int) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.PoolSize = d
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// PoolSize sets the connection pool size
|
|
|
|
func PoolTTL(d time.Duration) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.PoolTTL = d
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-26 14:51:53 +02:00
|
|
|
// Registry to find nodes for a given service
|
2015-06-12 20:52:27 +02:00
|
|
|
func Registry(r registry.Registry) Option {
|
2015-12-31 20:11:46 +02:00
|
|
|
return func(o *Options) {
|
|
|
|
o.Registry = r
|
2015-06-12 20:52:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-26 14:51:53 +02:00
|
|
|
// Transport to use for communication e.g http, rabbitmq, etc
|
2015-06-12 20:52:27 +02:00
|
|
|
func Transport(t transport.Transport) Option {
|
2015-12-31 20:11:46 +02:00
|
|
|
return func(o *Options) {
|
|
|
|
o.Transport = t
|
2015-06-12 20:52:27 +02:00
|
|
|
}
|
|
|
|
}
|
2015-11-26 22:36:42 +02:00
|
|
|
|
2015-12-08 01:56:17 +02:00
|
|
|
// Select is used to select a node to route a request to
|
2015-12-09 21:23:16 +02:00
|
|
|
func Selector(s selector.Selector) Option {
|
2015-12-31 20:11:46 +02:00
|
|
|
return func(o *Options) {
|
|
|
|
o.Selector = s
|
2015-12-07 23:09:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-26 22:36:42 +02:00
|
|
|
// Adds a Wrapper to a list of options passed into the client
|
|
|
|
func Wrap(w Wrapper) Option {
|
2015-12-31 20:11:46 +02:00
|
|
|
return func(o *Options) {
|
|
|
|
o.Wrappers = append(o.Wrappers, w)
|
2015-11-26 22:36:42 +02:00
|
|
|
}
|
|
|
|
}
|
2015-12-09 02:02:45 +02:00
|
|
|
|
2016-11-07 19:49:35 +02:00
|
|
|
// Adds a Wrapper to the list of CallFunc wrappers
|
2016-11-07 20:06:15 +02:00
|
|
|
func WrapCall(cw ...CallWrapper) Option {
|
2016-11-07 19:49:35 +02:00
|
|
|
return func(o *Options) {
|
2016-11-07 19:58:34 +02:00
|
|
|
o.CallOptions.CallWrappers = append(o.CallOptions.CallWrappers, cw...)
|
2016-11-07 19:49:35 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-05 21:04:37 +02:00
|
|
|
// Backoff is used to set the backoff function used
|
|
|
|
// when retrying Calls
|
|
|
|
func Backoff(fn BackoffFunc) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.CallOptions.Backoff = fn
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-03 23:14:33 +02:00
|
|
|
// Number of retries when making the request.
|
|
|
|
// Should this be a Call Option?
|
2016-01-03 01:16:15 +02:00
|
|
|
func Retries(i int) Option {
|
|
|
|
return func(o *Options) {
|
2016-04-05 19:07:07 +02:00
|
|
|
o.CallOptions.Retries = i
|
2016-01-03 01:16:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-12 22:47:40 +02:00
|
|
|
// Retry sets the retry function to be used when re-trying.
|
|
|
|
func Retry(fn RetryFunc) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.CallOptions.Retry = fn
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-03 23:14:33 +02:00
|
|
|
// The request timeout.
|
|
|
|
// Should this be a Call Option?
|
|
|
|
func RequestTimeout(d time.Duration) Option {
|
|
|
|
return func(o *Options) {
|
2016-04-05 19:07:07 +02:00
|
|
|
o.CallOptions.RequestTimeout = d
|
2016-01-03 23:14:33 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-03 23:25:03 +02:00
|
|
|
// Transport dial timeout
|
|
|
|
func DialTimeout(d time.Duration) Option {
|
|
|
|
return func(o *Options) {
|
2016-04-05 19:07:07 +02:00
|
|
|
o.CallOptions.DialTimeout = d
|
2016-01-03 23:25:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-09 02:02:45 +02:00
|
|
|
// Call Options
|
|
|
|
|
2018-04-14 17:16:58 +02:00
|
|
|
// WithAddress sets the remote address to use rather than using service discovery
|
|
|
|
func WithAddress(a string) CallOption {
|
|
|
|
return func(o *CallOptions) {
|
|
|
|
o.Address = a
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-23 22:37:26 +02:00
|
|
|
func WithSelectOption(so ...selector.SelectOption) CallOption {
|
2015-12-31 20:11:46 +02:00
|
|
|
return func(o *CallOptions) {
|
2016-04-23 22:37:26 +02:00
|
|
|
o.SelectOptions = append(o.SelectOptions, so...)
|
2015-12-09 02:02:45 +02:00
|
|
|
}
|
|
|
|
}
|
2015-12-17 22:37:35 +02:00
|
|
|
|
2016-11-07 19:58:34 +02:00
|
|
|
// WithCallWrapper is a CallOption which adds to the existing CallFunc wrappers
|
|
|
|
func WithCallWrapper(cw ...CallWrapper) CallOption {
|
2016-11-07 19:49:35 +02:00
|
|
|
return func(o *CallOptions) {
|
2016-11-07 19:58:34 +02:00
|
|
|
o.CallWrappers = append(o.CallWrappers, cw...)
|
2016-11-07 19:49:35 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-05 21:04:37 +02:00
|
|
|
// WithBackoff is a CallOption which overrides that which
|
|
|
|
// set in Options.CallOptions
|
|
|
|
func WithBackoff(fn BackoffFunc) CallOption {
|
|
|
|
return func(o *CallOptions) {
|
|
|
|
o.Backoff = fn
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-07 10:40:11 +02:00
|
|
|
// WithRetry is a CallOption which overrides that which
|
2016-11-03 11:45:31 +02:00
|
|
|
// set in Options.CallOptions
|
2016-11-07 10:40:11 +02:00
|
|
|
func WithRetry(fn RetryFunc) CallOption {
|
2016-11-03 11:45:31 +02:00
|
|
|
return func(o *CallOptions) {
|
2016-11-07 10:40:11 +02:00
|
|
|
o.Retry = fn
|
2016-11-03 11:45:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-05 19:07:07 +02:00
|
|
|
// WithRetries is a CallOption which overrides that which
|
|
|
|
// set in Options.CallOptions
|
|
|
|
func WithRetries(i int) CallOption {
|
|
|
|
return func(o *CallOptions) {
|
|
|
|
o.Retries = i
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// WithRequestTimeout is a CallOption which overrides that which
|
|
|
|
// set in Options.CallOptions
|
|
|
|
func WithRequestTimeout(d time.Duration) CallOption {
|
|
|
|
return func(o *CallOptions) {
|
|
|
|
o.RequestTimeout = d
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// WithDialTimeout is a CallOption which overrides that which
|
|
|
|
// set in Options.CallOptions
|
|
|
|
func WithDialTimeout(d time.Duration) CallOption {
|
|
|
|
return func(o *CallOptions) {
|
|
|
|
o.DialTimeout = d
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-17 22:37:35 +02:00
|
|
|
// Request Options
|
|
|
|
|
2018-04-14 19:06:52 +02:00
|
|
|
func WithContentType(ct string) RequestOption {
|
|
|
|
return func(o *RequestOptions) {
|
|
|
|
o.ContentType = ct
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-17 22:37:35 +02:00
|
|
|
func StreamingRequest() RequestOption {
|
2015-12-31 20:11:46 +02:00
|
|
|
return func(o *RequestOptions) {
|
|
|
|
o.Stream = true
|
2015-12-17 22:37:35 +02:00
|
|
|
}
|
|
|
|
}
|
2019-01-13 14:15:13 +02:00
|
|
|
|
|
|
|
// WithRouter sets the client router
|
|
|
|
func WithRouter(r Router) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.Router = r
|
|
|
|
}
|
|
|
|
}
|