2015-06-12 21:52:27 +03:00
|
|
|
package client
|
|
|
|
|
|
|
|
import (
|
2018-03-03 14:53:52 +03:00
|
|
|
"context"
|
2021-03-26 15:44:34 +03:00
|
|
|
"crypto/tls"
|
2022-10-26 19:20:37 +03:00
|
|
|
"net"
|
2016-01-04 00:14:33 +03:00
|
|
|
"time"
|
|
|
|
|
2023-04-11 22:20:37 +03:00
|
|
|
"go.unistack.org/micro/v4/codec"
|
|
|
|
"go.unistack.org/micro/v4/logger"
|
|
|
|
"go.unistack.org/micro/v4/metadata"
|
|
|
|
"go.unistack.org/micro/v4/meter"
|
2023-07-29 00:40:58 +03:00
|
|
|
"go.unistack.org/micro/v4/options"
|
2023-04-11 22:20:37 +03:00
|
|
|
"go.unistack.org/micro/v4/router"
|
|
|
|
"go.unistack.org/micro/v4/selector"
|
|
|
|
"go.unistack.org/micro/v4/selector/random"
|
|
|
|
"go.unistack.org/micro/v4/tracer"
|
2015-06-12 21:52:27 +03:00
|
|
|
)
|
|
|
|
|
2020-12-08 00:38:37 +03:00
|
|
|
// Options holds client options
|
2015-12-31 21:11:46 +03:00
|
|
|
type Options struct {
|
2021-04-27 00:03:05 +03:00
|
|
|
// Selector used to select needed address
|
|
|
|
Selector selector.Selector
|
2021-03-06 19:45:13 +03:00
|
|
|
// Logger used to log messages
|
|
|
|
Logger logger.Logger
|
|
|
|
// Tracer used for tracing
|
|
|
|
Tracer tracer.Tracer
|
|
|
|
// Meter used for metrics
|
|
|
|
Meter meter.Meter
|
|
|
|
// Context is used for external options
|
|
|
|
Context context.Context
|
2021-09-30 21:00:02 +03:00
|
|
|
// Router used to get route
|
|
|
|
Router router.Router
|
|
|
|
// TLSConfig specifies tls.Config for secure connection
|
|
|
|
TLSConfig *tls.Config
|
2021-04-27 00:03:05 +03:00
|
|
|
// Codecs map
|
|
|
|
Codecs map[string]codec.Codec
|
2021-09-30 20:32:59 +03:00
|
|
|
// Lookup func used to get destination addr
|
|
|
|
Lookup LookupFunc
|
2021-03-06 19:45:13 +03:00
|
|
|
// Proxy is used for proxy requests
|
|
|
|
Proxy string
|
2021-04-27 00:03:05 +03:00
|
|
|
// ContentType is used to select codec
|
2021-03-06 19:45:13 +03:00
|
|
|
ContentType string
|
|
|
|
// Name is the client name
|
|
|
|
Name string
|
2021-09-30 21:00:02 +03:00
|
|
|
// CallOptions contains default CallOptions
|
|
|
|
CallOptions CallOptions
|
2021-03-06 19:45:13 +03:00
|
|
|
// PoolSize connection pool size
|
|
|
|
PoolSize int
|
2021-03-06 23:33:37 +03:00
|
|
|
// PoolTTL connection pool ttl
|
2021-03-06 19:45:13 +03:00
|
|
|
PoolTTL time.Duration
|
2022-10-26 19:20:37 +03:00
|
|
|
// ContextDialer used to connect
|
|
|
|
ContextDialer func(context.Context, string) (net.Conn, error)
|
2023-07-29 00:40:58 +03:00
|
|
|
// Hooks may contains Client func wrapper
|
|
|
|
Hooks options.Hooks
|
2015-06-12 21:52:27 +03:00
|
|
|
}
|
|
|
|
|
2020-12-08 00:38:37 +03:00
|
|
|
// NewCallOptions creates new call options struct
|
2023-07-29 00:40:58 +03:00
|
|
|
func NewCallOptions(opts ...options.Option) CallOptions {
|
2020-10-16 09:38:57 +03:00
|
|
|
options := CallOptions{}
|
|
|
|
for _, o := range opts {
|
|
|
|
o(&options)
|
|
|
|
}
|
|
|
|
return options
|
|
|
|
}
|
|
|
|
|
2020-12-08 00:38:37 +03:00
|
|
|
// CallOptions holds client call options
|
2015-12-31 21:11:46 +03:00
|
|
|
type CallOptions struct {
|
2021-03-06 19:45:13 +03:00
|
|
|
// Selector selects addr
|
2020-07-01 19:06:59 +03:00
|
|
|
Selector selector.Selector
|
2021-03-06 19:45:13 +03:00
|
|
|
// Context used for deadline
|
|
|
|
Context context.Context
|
2021-09-30 21:00:02 +03:00
|
|
|
// Router used for route
|
|
|
|
Router router.Router
|
2021-03-06 19:45:13 +03:00
|
|
|
// Retry func used for retries
|
|
|
|
Retry RetryFunc
|
|
|
|
// Backoff func used for backoff when retry
|
|
|
|
Backoff BackoffFunc
|
|
|
|
// Network name
|
|
|
|
Network string
|
2021-04-09 23:08:54 +03:00
|
|
|
// Content-Type
|
|
|
|
ContentType string
|
2021-09-30 21:00:02 +03:00
|
|
|
// AuthToken string
|
|
|
|
AuthToken string
|
2021-03-06 19:45:13 +03:00
|
|
|
// Address specifies static addr list
|
|
|
|
Address []string
|
2021-09-30 21:00:02 +03:00
|
|
|
// SelectOptions selector options
|
|
|
|
SelectOptions []selector.SelectOption
|
|
|
|
// CallWrappers call wrappers
|
|
|
|
CallWrappers []CallWrapper
|
2021-03-06 19:45:13 +03:00
|
|
|
// StreamTimeout stream timeout
|
2020-04-01 01:22:11 +03:00
|
|
|
StreamTimeout time.Duration
|
2021-03-06 19:45:13 +03:00
|
|
|
// RequestTimeout request timeout
|
|
|
|
RequestTimeout time.Duration
|
2022-11-14 15:29:45 +03:00
|
|
|
// RequestMetadata holds additional metadata for call
|
|
|
|
RequestMetadata metadata.Metadata
|
|
|
|
// ResponseMetadata holds additional metadata from call
|
2022-11-14 16:10:54 +03:00
|
|
|
ResponseMetadata *metadata.Metadata
|
2021-03-06 19:45:13 +03:00
|
|
|
// DialTimeout dial timeout
|
|
|
|
DialTimeout time.Duration
|
2021-09-30 21:00:02 +03:00
|
|
|
// Retries specifies retries num
|
|
|
|
Retries int
|
2022-10-26 19:20:37 +03:00
|
|
|
// ContextDialer used to connect
|
|
|
|
ContextDialer func(context.Context, string) (net.Conn, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ContextDialer pass ContextDialer to client
|
2023-07-29 00:40:58 +03:00
|
|
|
func ContextDialer(fn func(context.Context, string) (net.Conn, error)) options.Option {
|
|
|
|
return func(src interface{}) error {
|
|
|
|
return options.Set(src, fn, ".ContextDialer")
|
2020-10-16 09:38:57 +03:00
|
|
|
}
|
2018-05-10 19:33:54 +03:00
|
|
|
}
|
|
|
|
|
2020-12-08 00:38:37 +03:00
|
|
|
// NewRequestOptions creates new RequestOptions struct
|
2023-07-29 00:40:58 +03:00
|
|
|
func NewRequestOptions(opts ...options.Option) RequestOptions {
|
2020-10-16 09:38:57 +03:00
|
|
|
options := RequestOptions{}
|
|
|
|
for _, o := range opts {
|
|
|
|
o(&options)
|
|
|
|
}
|
|
|
|
return options
|
|
|
|
}
|
|
|
|
|
2020-12-08 00:38:37 +03:00
|
|
|
// RequestOptions holds client request options
|
2015-12-31 21:11:46 +03:00
|
|
|
type RequestOptions struct {
|
2021-03-06 19:45:13 +03:00
|
|
|
// Context used for external options
|
|
|
|
Context context.Context
|
|
|
|
// ContentType specify content-type of message
|
2018-04-14 20:06:52 +03:00
|
|
|
ContentType string
|
2021-03-06 19:45:13 +03:00
|
|
|
// Stream flag
|
2021-02-14 11:28:50 +03:00
|
|
|
Stream bool
|
2015-12-17 23:37:35 +03:00
|
|
|
}
|
|
|
|
|
2020-12-08 00:38:37 +03:00
|
|
|
// NewOptions creates new options struct
|
2023-07-29 00:40:58 +03:00
|
|
|
func NewOptions(opts ...options.Option) Options {
|
2020-09-05 02:11:29 +03:00
|
|
|
options := Options{
|
2019-12-30 00:07:55 +03:00
|
|
|
Context: context.Background(),
|
2021-02-13 15:35:56 +03:00
|
|
|
ContentType: DefaultContentType,
|
2020-11-23 16:18:47 +03:00
|
|
|
Codecs: make(map[string]codec.Codec),
|
2016-04-05 20:07:07 +03:00
|
|
|
CallOptions: CallOptions{
|
2021-03-16 19:09:49 +03:00
|
|
|
Context: context.Background(),
|
2016-11-07 19:46:12 +03:00
|
|
|
Backoff: DefaultBackoff,
|
|
|
|
Retry: DefaultRetry,
|
|
|
|
Retries: DefaultRetries,
|
|
|
|
RequestTimeout: DefaultRequestTimeout,
|
2023-07-29 00:40:58 +03:00
|
|
|
DialTimeout: DefaultDialTimeout,
|
2016-04-05 20:07:07 +03:00
|
|
|
},
|
2023-07-29 00:40:58 +03:00
|
|
|
Lookup: LookupRoute,
|
|
|
|
PoolSize: DefaultPoolSize,
|
|
|
|
PoolTTL: DefaultPoolTTL,
|
|
|
|
Selector: random.NewSelector(),
|
|
|
|
Logger: logger.DefaultLogger,
|
|
|
|
Meter: meter.DefaultMeter,
|
|
|
|
Tracer: tracer.DefaultTracer,
|
|
|
|
Router: router.DefaultRouter,
|
2016-01-03 02:16:15 +03:00
|
|
|
}
|
|
|
|
|
2020-09-05 02:11:29 +03:00
|
|
|
for _, o := range opts {
|
|
|
|
o(&options)
|
2016-01-03 02:16:15 +03:00
|
|
|
}
|
|
|
|
|
2020-09-05 02:11:29 +03:00
|
|
|
return options
|
2016-01-03 02:16:15 +03:00
|
|
|
}
|
|
|
|
|
2020-07-30 17:22:36 +03:00
|
|
|
// Proxy sets the proxy address
|
2023-07-29 00:40:58 +03:00
|
|
|
func Proxy(addr string) options.Option {
|
|
|
|
return func(src interface{}) error {
|
|
|
|
return options.Set(src, addr, ".Proxy")
|
2020-07-30 17:22:36 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-07 02:46:14 +03:00
|
|
|
// PoolSize sets the connection pool size
|
2023-07-29 00:40:58 +03:00
|
|
|
func PoolSize(d int) options.Option {
|
|
|
|
return func(src interface{}) error {
|
|
|
|
return options.Set(src, d, ".PoolSize")
|
2016-06-07 02:46:14 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-15 10:05:19 +03:00
|
|
|
// PoolTTL sets the connection pool ttl
|
2023-07-29 00:40:58 +03:00
|
|
|
func PoolTTL(td time.Duration) options.Option {
|
|
|
|
return func(src interface{}) error {
|
|
|
|
return options.Set(src, td, ".PoolTTL")
|
2015-06-12 21:52:27 +03:00
|
|
|
}
|
|
|
|
}
|
2015-11-26 23:36:42 +03:00
|
|
|
|
2020-07-01 19:06:59 +03:00
|
|
|
// Selector is used to select a route
|
2023-07-29 00:40:58 +03:00
|
|
|
func Selector(s selector.Selector) options.Option {
|
|
|
|
return func(src interface{}) error {
|
|
|
|
return options.Set(src, s, ".Selector")
|
2016-11-07 20:49:35 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-14 11:28:50 +03:00
|
|
|
// Backoff is used to set the backoff function used when retrying Calls
|
2023-07-29 00:40:58 +03:00
|
|
|
func Backoff(fn BackoffFunc) options.Option {
|
|
|
|
return func(src interface{}) error {
|
|
|
|
return options.Set(src, fn, ".Backoff")
|
2021-01-29 13:17:32 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-18 00:44:45 +03:00
|
|
|
// Lookup sets the lookup function to use for resolving service names
|
2023-07-29 00:40:58 +03:00
|
|
|
func Lookup(fn LookupFunc) options.Option {
|
|
|
|
return func(src interface{}) error {
|
|
|
|
return options.Set(src, fn, ".Lookup")
|
2020-08-18 00:44:45 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-29 00:40:58 +03:00
|
|
|
// WithCallWrapper sets the retry function to be used when re-trying.
|
|
|
|
func WithCallWrapper(fn CallWrapper) options.Option {
|
|
|
|
return func(src interface{}) error {
|
|
|
|
return options.Set(src, fn, ".CallWrappers")
|
2021-03-26 15:44:34 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-08 00:38:37 +03:00
|
|
|
// Retries sets the retry count when making the request.
|
2023-07-29 00:40:58 +03:00
|
|
|
func Retries(n int) options.Option {
|
|
|
|
return func(src interface{}) error {
|
|
|
|
return options.Set(src, n, ".Retries")
|
2016-01-03 02:16:15 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-12 23:47:40 +03:00
|
|
|
// Retry sets the retry function to be used when re-trying.
|
2023-07-29 00:40:58 +03:00
|
|
|
func Retry(fn RetryFunc) options.Option {
|
|
|
|
return func(src interface{}) error {
|
|
|
|
return options.Set(src, fn, ".Retry")
|
2017-04-12 23:47:40 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-08 00:38:37 +03:00
|
|
|
// RequestTimeout is the request timeout.
|
2023-07-29 00:40:58 +03:00
|
|
|
func RequestTimeout(td time.Duration) options.Option {
|
|
|
|
return func(src interface{}) error {
|
|
|
|
return options.Set(src, td, ".RequestTimeout")
|
2016-01-04 00:14:33 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-01 01:22:11 +03:00
|
|
|
// StreamTimeout sets the stream timeout
|
2023-07-29 00:40:58 +03:00
|
|
|
func StreamTimeout(td time.Duration) options.Option {
|
|
|
|
return func(src interface{}) error {
|
|
|
|
return options.Set(src, td, ".StreamTimeout")
|
2020-04-01 01:22:11 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-14 16:16:01 +03:00
|
|
|
// DialTimeout sets the dial timeout
|
2023-07-29 00:40:58 +03:00
|
|
|
func DialTimeout(td time.Duration) options.Option {
|
|
|
|
return func(src interface{}) error {
|
|
|
|
return options.Set(src, td, ".DialTimeout")
|
2016-04-05 20:07:07 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-14 15:29:45 +03:00
|
|
|
// WithResponseMetadata is a CallOption which adds metadata.Metadata to Options.CallOptions
|
2023-07-29 00:40:58 +03:00
|
|
|
func ResponseMetadata(md *metadata.Metadata) options.Option {
|
|
|
|
return func(src interface{}) error {
|
|
|
|
return options.Set(src, md, ".ResponseMetadata")
|
2022-11-14 15:29:45 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// WithRequestMetadata is a CallOption which adds metadata.Metadata to Options.CallOptions
|
2023-07-29 00:40:58 +03:00
|
|
|
func RequestMetadata(md metadata.Metadata) options.Option {
|
|
|
|
return func(src interface{}) error {
|
|
|
|
return options.Set(src, metadata.Copy(md), ".RequestMetadata")
|
2022-11-14 15:29:45 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-29 00:40:58 +03:00
|
|
|
// AuthToken is a CallOption which overrides the
|
2020-03-31 14:44:34 +03:00
|
|
|
// authorization header with the services own auth token
|
2023-07-29 00:40:58 +03:00
|
|
|
func AuthToken(t string) options.Option {
|
|
|
|
return func(src interface{}) error {
|
|
|
|
return options.Set(src, t, ".AuthToken")
|
2020-06-30 12:07:52 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-29 00:40:58 +03:00
|
|
|
// Network is a CallOption which sets the network attribute
|
|
|
|
func Network(n string) options.Option {
|
|
|
|
return func(src interface{}) error {
|
|
|
|
return options.Set(src, n, ".Network")
|
2020-07-01 19:06:59 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-29 00:40:58 +03:00
|
|
|
/*
|
2020-07-02 19:03:08 +03:00
|
|
|
// WithSelectOptions sets the options to pass to the selector for this call
|
2023-07-29 00:40:58 +03:00
|
|
|
func WithSelectOptions(sops ...selector.SelectOption) options.Option {
|
2020-07-02 19:03:08 +03:00
|
|
|
return func(o *CallOptions) {
|
|
|
|
o.SelectOptions = sops
|
|
|
|
}
|
|
|
|
}
|
2023-07-29 00:40:58 +03:00
|
|
|
*/
|
2021-12-16 15:03:42 +03:00
|
|
|
|
2021-04-09 23:08:54 +03:00
|
|
|
// StreamingRequest specifies that request is streaming
|
2023-07-29 00:40:58 +03:00
|
|
|
func StreamingRequest(b bool) options.Option {
|
|
|
|
return func(src interface{}) error {
|
|
|
|
return options.Set(src, b, ".Stream")
|
2015-12-17 23:37:35 +03:00
|
|
|
}
|
|
|
|
}
|