1
0
mirror of https://github.com/go-micro/go-micro.git synced 2024-11-24 08:02:32 +02:00
go-micro/client/options.go

410 lines
9.5 KiB
Go
Raw Normal View History

package client
import (
2018-03-03 13:53:52 +02:00
"context"
2016-01-03 23:14:33 +02:00
"time"
2021-10-12 13:55:53 +02:00
"go-micro.dev/v4/broker"
"go-micro.dev/v4/codec"
"go-micro.dev/v4/logger"
2021-10-12 13:55:53 +02:00
"go-micro.dev/v4/registry"
"go-micro.dev/v4/selector"
"go-micro.dev/v4/transport"
)
var (
// DefaultBackoff is the default backoff function for retries.
DefaultBackoff = exponentialBackoff
// DefaultRetry is the default check-for-retry function for retries.
DefaultRetry = RetryOnError
// DefaultRetries is the default number of times a request is tried.
DefaultRetries = 5
// DefaultRequestTimeout is the default request timeout.
DefaultRequestTimeout = time.Second * 30
// DefaultConnectionTimeout is the default connection timeout.
DefaultConnectionTimeout = time.Second * 5
// DefaultPoolSize sets the connection pool size.
DefaultPoolSize = 100
// DefaultPoolTTL sets the connection pool ttl.
DefaultPoolTTL = time.Minute
)
// Options are the Client options.
type Options struct {
// 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
2020-05-22 17:52:24 +02:00
// Response cache
Cache *Cache
// Middleware for client
Wrappers []Wrapper
// Default Call Options
CallOptions CallOptions
// Logger is the underline logger
Logger logger.Logger
// Other options for implementations of the interface
// can be stored in a context
Context context.Context
}
// CallOptions are options used to make calls to a server.
type CallOptions struct {
SelectOptions []selector.SelectOption
2019-06-26 21:51:13 +02:00
// Address of remote hosts
Address []string
2016-04-05 21:04:37 +02:00
// Backoff func
Backoff BackoffFunc
// Check if retriable func
2016-11-07 10:40:11 +02:00
Retry RetryFunc
// Number of Call attempts
Retries int
// Transport Dial Timeout. Used for initial dial to establish a connection.
DialTimeout time.Duration
// ConnectionTimeout of one request to the server.
// Set this lower than the RequestTimeout to enbale retries on connection timeout.
ConnectionTimeout time.Duration
// Request/Response timeout of entire srv.Call, for single request timeout set ConnectionTimeout.
RequestTimeout time.Duration
// Stream timeout for the stream
StreamTimeout time.Duration
2020-03-31 13:44:34 +02:00
// Use the services own auth token
2020-03-31 14:48:28 +02:00
ServiceToken bool
2020-05-22 17:52:24 +02:00
// Duration to cache the response for
CacheExpiry time.Duration
// ConnClose sets the Connection: close header.
ConnClose bool
2016-11-07 19:49:35 +02:00
// Middleware for low level call func
CallWrappers []CallWrapper
2016-11-07 19:49:35 +02:00
// Other options for implementations of the interface
// can be stored in a context
Context context.Context
}
type PublishOptions struct {
2019-02-23 12:50:53 +02:00
// Exchange is the routing exchange for the message
Exchange string
// 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
}
type RequestOptions struct {
2018-04-14 19:06:52 +02:00
ContentType string
Stream bool
2015-12-08 21:25:42 +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
}
// NewOptions creates new Client options.
func NewOptions(options ...Option) Options {
2016-01-03 01:16:15 +02:00
opts := Options{
2020-05-22 17:52:24 +02:00
Cache: NewCache(),
Context: context.Background(),
ContentType: DefaultContentType,
Codecs: make(map[string]codec.NewCodec),
CallOptions: CallOptions{
Backoff: DefaultBackoff,
Retry: DefaultRetry,
Retries: DefaultRetries,
RequestTimeout: DefaultRequestTimeout,
ConnectionTimeout: DefaultConnectionTimeout,
DialTimeout: transport.DefaultDialTimeout,
},
PoolSize: DefaultPoolSize,
PoolTTL: DefaultPoolTTL,
Broker: broker.DefaultBroker,
Selector: selector.DefaultSelector,
Registry: registry.DefaultRegistry,
Transport: transport.DefaultTransport,
Logger: logger.DefaultLogger,
2016-01-03 01:16:15 +02:00
}
for _, o := range options {
o(&opts)
}
return opts
}
2022-09-30 16:27:07 +02:00
// Broker to be used for pub/sub.
func Broker(b broker.Broker) Option {
return func(o *Options) {
o.Broker = b
}
}
2022-09-30 16:27:07 +02:00
// Codec to be used to encode/decode requests for a given content type.
func Codec(contentType string, c codec.NewCodec) Option {
return func(o *Options) {
o.Codecs[contentType] = c
2015-11-25 21:50:05 +02:00
}
}
// ContentType sets the default content type of the client.
2015-11-25 21:50:05 +02:00
func ContentType(ct string) Option {
return func(o *Options) {
o.ContentType = ct
2015-11-25 21:50:05 +02:00
}
}
2022-09-30 16:27:07 +02:00
// PoolSize sets the connection pool size.
2016-06-07 01:46:14 +02:00
func PoolSize(d int) Option {
return func(o *Options) {
o.PoolSize = d
}
}
2022-09-30 16:27:07 +02:00
// PoolTTL sets the connection pool ttl.
2016-06-07 01:46:14 +02:00
func PoolTTL(d time.Duration) Option {
return func(o *Options) {
o.PoolTTL = d
}
}
2022-09-30 16:27:07 +02:00
// Registry to find nodes for a given service.
func Registry(r registry.Registry) Option {
return func(o *Options) {
o.Registry = r
// set in the selector
o.Selector.Init(selector.Registry(r))
}
}
2022-09-30 16:27:07 +02:00
// Transport to use for communication e.g http, rabbitmq, etc.
func Transport(t transport.Transport) Option {
return func(o *Options) {
o.Transport = t
}
}
2015-11-26 22:36:42 +02:00
2022-09-30 16:27:07 +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 {
return func(o *Options) {
o.Selector = s
}
}
2022-09-30 16:27:07 +02:00
// Adds a Wrapper to a list of options passed into the client.
2015-11-26 22:36:42 +02:00
func Wrap(w Wrapper) Option {
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
2022-09-30 16:27:07 +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) {
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
2022-09-30 16:27:07 +02:00
// when retrying Calls.
2016-04-05 21:04:37 +02:00
func Backoff(fn BackoffFunc) Option {
return func(o *Options) {
o.CallOptions.Backoff = fn
}
}
// Retries set the number of retries when making the request.
2016-01-03 01:16:15 +02:00
func Retries(i int) Option {
return func(o *Options) {
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
}
}
// RequestTimeout set the request timeout.
2016-01-03 23:14:33 +02:00
func RequestTimeout(d time.Duration) Option {
return func(o *Options) {
o.CallOptions.RequestTimeout = d
2016-01-03 23:14:33 +02:00
}
}
2022-09-30 16:27:07 +02:00
// StreamTimeout sets the stream timeout.
func StreamTimeout(d time.Duration) Option {
return func(o *Options) {
o.CallOptions.StreamTimeout = d
}
}
// DialTimeout sets the transport dial timeout.
2016-01-03 23:25:03 +02:00
func DialTimeout(d time.Duration) Option {
return func(o *Options) {
o.CallOptions.DialTimeout = d
2016-01-03 23:25:03 +02:00
}
}
2015-12-09 02:02:45 +02:00
// Call Options
2022-09-30 16:27:07 +02:00
// WithExchange sets the exchange to route a message through.
2019-02-23 12:50:53 +02:00
func WithExchange(e string) PublishOption {
return func(o *PublishOptions) {
o.Exchange = e
}
}
2022-09-30 16:27:07 +02:00
// PublishContext sets the context in publish options.
func PublishContext(ctx context.Context) PublishOption {
return func(o *PublishOptions) {
o.Context = ctx
}
}
2022-09-30 16:27:07 +02:00
// WithAddress sets the remote addresses to use rather than using service discovery.
2019-06-26 21:51:13 +02:00
func WithAddress(a ...string) CallOption {
2018-04-14 17:16:58 +02:00
return func(o *CallOptions) {
o.Address = a
}
}
2016-04-23 22:37:26 +02:00
func WithSelectOption(so ...selector.SelectOption) CallOption {
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
2022-09-30 16:27:07 +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) {
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
2022-09-30 16:27:07 +02:00
// set in Options.CallOptions.
2016-04-05 21:04:37 +02:00
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
2022-09-30 16:27:07 +02:00
// set in Options.CallOptions.
2016-11-07 10:40:11 +02:00
func WithRetry(fn RetryFunc) CallOption {
return func(o *CallOptions) {
2016-11-07 10:40:11 +02:00
o.Retry = fn
}
}
// WithRetries sets the number of tries for a call.
// This CallOption overrides Options.CallOptions.
func WithRetries(i int) CallOption {
return func(o *CallOptions) {
o.Retries = i
}
}
// WithRequestTimeout is a CallOption which overrides that which
2022-09-30 16:27:07 +02:00
// set in Options.CallOptions.
func WithRequestTimeout(d time.Duration) CallOption {
return func(o *CallOptions) {
o.RequestTimeout = d
}
}
// WithConnClose sets the Connection header to close.
func WithConnClose() CallOption {
return func(o *CallOptions) {
o.ConnClose = true
}
}
2022-09-30 16:27:07 +02:00
// WithStreamTimeout sets the stream timeout.
func WithStreamTimeout(d time.Duration) CallOption {
return func(o *CallOptions) {
o.StreamTimeout = d
}
}
// WithDialTimeout is a CallOption which overrides that which
2022-09-30 16:27:07 +02:00
// set in Options.CallOptions.
func WithDialTimeout(d time.Duration) CallOption {
return func(o *CallOptions) {
o.DialTimeout = d
}
}
2020-03-31 14:48:28 +02:00
// WithServiceToken is a CallOption which overrides the
2022-09-30 16:27:07 +02:00
// authorization header with the services own auth token.
2020-03-31 14:48:28 +02:00
func WithServiceToken() CallOption {
2020-03-31 13:44:34 +02:00
return func(o *CallOptions) {
2020-03-31 14:48:28 +02:00
o.ServiceToken = true
2020-03-31 13:44:34 +02:00
}
}
2020-05-22 17:52:24 +02:00
// WithCache is a CallOption which sets the duration the response
2022-09-30 16:27:07 +02:00
// shoull be cached for.
2020-05-22 17:52:24 +02:00
func WithCache(c time.Duration) CallOption {
return func(o *CallOptions) {
o.CacheExpiry = c
}
}
func WithMessageContentType(ct string) MessageOption {
return func(o *MessageOptions) {
o.ContentType = ct
}
}
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 {
return func(o *RequestOptions) {
o.Stream = true
2015-12-17 22:37:35 +02:00
}
}
2019-01-13 14:15:13 +02:00
2022-09-30 16:27:07 +02:00
// WithRouter sets the client router.
2019-01-13 14:15:13 +02:00
func WithRouter(r Router) Option {
return func(o *Options) {
o.Router = r
}
}
2022-09-30 16:27:07 +02:00
// WithLogger sets the underline logger.
func WithLogger(l logger.Logger) Option {
return func(o *Options) {
o.Logger = l
}
}