2015-12-09 21:23:16 +02:00
|
|
|
package selector
|
|
|
|
|
|
|
|
import (
|
2018-03-03 13:53:52 +02:00
|
|
|
"context"
|
2016-01-06 18:25:12 +02:00
|
|
|
|
2024-06-04 22:40:43 +02:00
|
|
|
"go-micro.dev/v5/logger"
|
|
|
|
"go-micro.dev/v5/registry"
|
2015-12-09 21:23:16 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
type Options struct {
|
|
|
|
Registry registry.Registry
|
2016-05-03 23:06:19 +02:00
|
|
|
Strategy Strategy
|
2015-12-31 20:14:40 +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
|
2022-09-29 16:44:53 +02:00
|
|
|
// Logger is the underline logger
|
|
|
|
Logger logger.Logger
|
2015-12-09 21:23:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
type SelectOptions struct {
|
2015-12-31 20:14:40 +02:00
|
|
|
|
2016-01-06 18:25:12 +02:00
|
|
|
// Other options for implementations of the interface
|
|
|
|
// can be stored in a context
|
2023-04-26 02:16:34 +02:00
|
|
|
Context context.Context
|
|
|
|
Strategy Strategy
|
|
|
|
|
|
|
|
Filters []Filter
|
2015-12-09 21:23:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
type Option func(*Options)
|
|
|
|
|
2022-09-30 16:27:07 +02:00
|
|
|
// SelectOption used when making a select call.
|
2015-12-09 21:23:16 +02:00
|
|
|
type SelectOption func(*SelectOptions)
|
|
|
|
|
2022-09-30 16:27:07 +02:00
|
|
|
// Registry sets the registry used by the selector.
|
2015-12-09 21:23:16 +02:00
|
|
|
func Registry(r registry.Registry) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.Registry = r
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-30 16:27:07 +02:00
|
|
|
// SetStrategy sets the default strategy for the selector.
|
2016-05-03 23:06:19 +02:00
|
|
|
func SetStrategy(fn Strategy) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.Strategy = fn
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-23 21:15:01 +02:00
|
|
|
// WithFilter adds a filter function to the list of filters
|
2015-12-09 21:23:16 +02:00
|
|
|
// used during the Select call.
|
2016-04-23 22:37:26 +02:00
|
|
|
func WithFilter(fn ...Filter) SelectOption {
|
2015-12-09 21:23:16 +02:00
|
|
|
return func(o *SelectOptions) {
|
2016-04-23 22:37:26 +02:00
|
|
|
o.Filters = append(o.Filters, fn...)
|
2015-12-09 21:23:16 +02:00
|
|
|
}
|
|
|
|
}
|
2016-05-03 23:06:19 +02:00
|
|
|
|
2022-09-30 16:27:07 +02:00
|
|
|
// Strategy sets the selector strategy.
|
2016-05-03 23:06:19 +02:00
|
|
|
func WithStrategy(fn Strategy) SelectOption {
|
|
|
|
return func(o *SelectOptions) {
|
|
|
|
o.Strategy = fn
|
|
|
|
}
|
|
|
|
}
|
2022-09-29 16:44:53 +02:00
|
|
|
|
2022-09-30 16:27:07 +02:00
|
|
|
// WithLogger sets the underline logger.
|
2022-09-29 16:44:53 +02:00
|
|
|
func WithLogger(l logger.Logger) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.Logger = l
|
|
|
|
}
|
|
|
|
}
|