2015-12-23 22:07:26 +03:00
|
|
|
package broker
|
|
|
|
|
2016-01-06 19:25:12 +03:00
|
|
|
import (
|
2018-03-03 14:53:52 +03:00
|
|
|
"context"
|
2016-01-17 02:39:47 +03:00
|
|
|
"crypto/tls"
|
|
|
|
|
2020-08-19 17:47:17 +03:00
|
|
|
"github.com/unistack-org/micro/v3/codec"
|
2020-08-29 17:44:49 +03:00
|
|
|
"github.com/unistack-org/micro/v3/logger"
|
2021-01-22 23:32:33 +03:00
|
|
|
"github.com/unistack-org/micro/v3/meter"
|
2021-01-29 13:17:32 +03:00
|
|
|
"github.com/unistack-org/micro/v3/register"
|
2021-01-22 23:32:33 +03:00
|
|
|
"github.com/unistack-org/micro/v3/tracer"
|
2016-01-06 19:25:12 +03:00
|
|
|
)
|
|
|
|
|
2020-11-03 01:08:23 +03:00
|
|
|
// Options struct
|
2015-12-31 21:11:46 +03:00
|
|
|
type Options struct {
|
2021-01-29 13:17:32 +03:00
|
|
|
Name string
|
2021-01-22 23:32:33 +03:00
|
|
|
// Addrs useed by broker
|
|
|
|
Addrs []string
|
|
|
|
// ErrorHandler executed when errors occur processing messages
|
|
|
|
ErrorHandler Handler
|
|
|
|
// Codec used to marshal/unmarshal messages
|
2020-12-09 12:10:25 +03:00
|
|
|
Codec codec.Codec
|
2021-01-22 23:32:33 +03:00
|
|
|
// Logger the used logger
|
2020-08-29 17:44:49 +03:00
|
|
|
Logger logger.Logger
|
2021-01-22 23:32:33 +03:00
|
|
|
// Meter the used for metrics
|
|
|
|
Meter meter.Meter
|
|
|
|
// Tracer used for trace
|
|
|
|
Tracer tracer.Tracer
|
|
|
|
// TLSConfig for secure communication
|
2016-01-17 02:39:47 +03:00
|
|
|
TLSConfig *tls.Config
|
2021-01-29 13:17:32 +03:00
|
|
|
// Register used for clustering
|
|
|
|
Register register.Register
|
2021-01-22 23:32:33 +03:00
|
|
|
// Context is used for non default options
|
2016-01-06 19:25:12 +03:00
|
|
|
Context context.Context
|
2015-12-31 21:11:46 +03:00
|
|
|
}
|
2015-12-23 22:07:26 +03:00
|
|
|
|
2020-11-03 01:08:23 +03:00
|
|
|
// NewOptions create new Options
|
2020-09-05 02:11:29 +03:00
|
|
|
func NewOptions(opts ...Option) Options {
|
|
|
|
options := Options{
|
2021-01-29 13:17:32 +03:00
|
|
|
Register: register.DefaultRegister,
|
2020-09-05 02:11:29 +03:00
|
|
|
Logger: logger.DefaultLogger,
|
|
|
|
Context: context.Background(),
|
2021-01-22 23:32:33 +03:00
|
|
|
Meter: meter.DefaultMeter,
|
|
|
|
Codec: codec.DefaultCodec,
|
|
|
|
Tracer: tracer.DefaultTracer,
|
2020-08-27 11:18:02 +03:00
|
|
|
}
|
2020-09-05 02:11:29 +03:00
|
|
|
for _, o := range opts {
|
|
|
|
o(&options)
|
|
|
|
}
|
|
|
|
return options
|
2020-08-27 11:18:02 +03:00
|
|
|
}
|
|
|
|
|
2020-11-03 01:08:23 +03:00
|
|
|
// Context sets the context option
|
2020-10-16 09:38:57 +03:00
|
|
|
func Context(ctx context.Context) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.Context = ctx
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-03 01:08:23 +03:00
|
|
|
// PublishOptions struct
|
2015-12-31 21:14:40 +03:00
|
|
|
type PublishOptions struct {
|
2020-11-25 08:33:29 +03:00
|
|
|
// BodyOnly says that only body of the message must be published
|
|
|
|
BodyOnly bool
|
2021-01-22 23:32:33 +03:00
|
|
|
// Context for non default options
|
2016-01-06 19:25:12 +03:00
|
|
|
Context context.Context
|
2015-12-31 21:14:40 +03:00
|
|
|
}
|
2015-12-23 22:07:26 +03:00
|
|
|
|
2020-11-03 01:08:23 +03:00
|
|
|
// NewPublishOptions creates PublishOptions struct
|
2020-10-10 00:47:09 +03:00
|
|
|
func NewPublishOptions(opts ...PublishOption) PublishOptions {
|
2020-11-03 01:08:23 +03:00
|
|
|
options := PublishOptions{
|
2020-10-10 00:47:09 +03:00
|
|
|
Context: context.Background(),
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, o := range opts {
|
2020-11-03 01:08:23 +03:00
|
|
|
o(&options)
|
2020-10-10 00:47:09 +03:00
|
|
|
}
|
|
|
|
|
2020-11-03 01:08:23 +03:00
|
|
|
return options
|
2020-10-10 00:47:09 +03:00
|
|
|
}
|
|
|
|
|
2020-11-03 01:08:23 +03:00
|
|
|
// SubscribeOptions struct
|
2015-12-23 22:07:26 +03:00
|
|
|
type SubscribeOptions struct {
|
2020-08-25 13:44:41 +03:00
|
|
|
// AutoAck ack messages if handler returns nil err
|
|
|
|
AutoAck bool
|
|
|
|
|
2021-01-22 23:32:33 +03:00
|
|
|
// ErrorHandler executed when errors occur processing messages
|
2020-08-25 13:44:41 +03:00
|
|
|
ErrorHandler Handler
|
2020-08-18 16:00:51 +03:00
|
|
|
|
2021-01-22 23:32:33 +03:00
|
|
|
// Group for subscriber, Subscribers with the same group name
|
2015-12-23 23:05:47 +03:00
|
|
|
// will create a shared subscription where each
|
|
|
|
// receives a subset of messages.
|
2020-08-25 13:44:41 +03:00
|
|
|
Group string
|
2015-12-31 21:14:40 +03:00
|
|
|
|
2020-11-25 08:33:29 +03:00
|
|
|
// BodyOnly says that consumed only body of the message
|
|
|
|
BodyOnly bool
|
|
|
|
|
2021-01-22 23:32:33 +03:00
|
|
|
// Context is used for non default options
|
2016-01-06 19:25:12 +03:00
|
|
|
Context context.Context
|
2015-12-23 22:07:26 +03:00
|
|
|
}
|
|
|
|
|
2020-11-03 01:08:23 +03:00
|
|
|
// Option func
|
2015-12-23 22:07:26 +03:00
|
|
|
type Option func(*Options)
|
|
|
|
|
2020-11-03 01:08:23 +03:00
|
|
|
// PublishOption func
|
2015-12-23 22:07:26 +03:00
|
|
|
type PublishOption func(*PublishOptions)
|
|
|
|
|
2020-11-25 08:33:29 +03:00
|
|
|
// PublishBodyOnly publish only body of the message
|
|
|
|
func PublishBodyOnly(b bool) PublishOption {
|
|
|
|
return func(o *PublishOptions) {
|
|
|
|
o.BodyOnly = b
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-03 01:08:23 +03:00
|
|
|
// PublishContext sets the context
|
2020-04-28 19:29:00 +03:00
|
|
|
func PublishContext(ctx context.Context) PublishOption {
|
|
|
|
return func(o *PublishOptions) {
|
|
|
|
o.Context = ctx
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-03 01:08:23 +03:00
|
|
|
// SubscribeOption func
|
2015-12-23 22:07:26 +03:00
|
|
|
type SubscribeOption func(*SubscribeOptions)
|
|
|
|
|
2020-11-03 01:08:23 +03:00
|
|
|
// NewSubscribeOptions creates new SubscribeOptions
|
2018-11-30 20:32:48 +03:00
|
|
|
func NewSubscribeOptions(opts ...SubscribeOption) SubscribeOptions {
|
2020-11-03 01:08:23 +03:00
|
|
|
options := SubscribeOptions{
|
2020-08-27 11:18:02 +03:00
|
|
|
AutoAck: true,
|
|
|
|
Context: context.Background(),
|
|
|
|
}
|
2016-01-17 01:13:02 +03:00
|
|
|
|
|
|
|
for _, o := range opts {
|
2020-11-03 01:08:23 +03:00
|
|
|
o(&options)
|
2016-01-17 01:13:02 +03:00
|
|
|
}
|
|
|
|
|
2020-11-03 01:08:23 +03:00
|
|
|
return options
|
2016-01-17 01:13:02 +03:00
|
|
|
}
|
|
|
|
|
2016-03-16 01:12:28 +03:00
|
|
|
// Addrs sets the host addresses to be used by the broker
|
|
|
|
func Addrs(addrs ...string) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.Addrs = addrs
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-06 21:59:41 +03:00
|
|
|
// Codec sets the codec used for encoding/decoding used where
|
|
|
|
// a broker does not support headers
|
2020-11-23 16:18:47 +03:00
|
|
|
func Codec(c codec.Codec) Option {
|
2016-12-06 21:59:41 +03:00
|
|
|
return func(o *Options) {
|
|
|
|
o.Codec = c
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-03 01:08:23 +03:00
|
|
|
// DisableAutoAck disables auto ack
|
2020-08-31 16:51:49 +03:00
|
|
|
func DisableAutoAck() SubscribeOption {
|
|
|
|
return func(o *SubscribeOptions) {
|
|
|
|
o.AutoAck = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-27 11:18:02 +03:00
|
|
|
// SubscribeAutoAck will disable auto acking of messages
|
|
|
|
// after they have been handled.
|
|
|
|
func SubscribeAutoAck(b bool) SubscribeOption {
|
|
|
|
return func(o *SubscribeOptions) {
|
|
|
|
o.AutoAck = b
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-25 08:33:29 +03:00
|
|
|
// SubscribeBodyOnly consumes only body of the message
|
|
|
|
func SubscribeBodyOnly(b bool) SubscribeOption {
|
|
|
|
return func(o *SubscribeOptions) {
|
|
|
|
o.BodyOnly = b
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-07 00:25:16 +03:00
|
|
|
// ErrorHandler will catch all broker errors that cant be handled
|
|
|
|
// in normal way, for example Codec errors
|
2020-08-25 13:44:41 +03:00
|
|
|
func ErrorHandler(h Handler) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.ErrorHandler = h
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// SubscribeErrorHandler will catch all broker errors that cant be handled
|
|
|
|
// in normal way, for example Codec errors
|
|
|
|
func SubscribeErrorHandler(h Handler) SubscribeOption {
|
2020-08-18 16:00:51 +03:00
|
|
|
return func(o *SubscribeOptions) {
|
2020-03-07 00:25:16 +03:00
|
|
|
o.ErrorHandler = h
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-08 00:38:37 +03:00
|
|
|
// Queue sets the subscribers queue
|
|
|
|
// Deprecated
|
2020-08-31 16:48:29 +03:00
|
|
|
func Queue(name string) SubscribeOption {
|
|
|
|
return func(o *SubscribeOptions) {
|
|
|
|
o.Group = name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-25 13:44:41 +03:00
|
|
|
// SubscribeGroup sets the name of the queue to share messages on
|
|
|
|
func SubscribeGroup(name string) SubscribeOption {
|
2015-12-23 23:05:47 +03:00
|
|
|
return func(o *SubscribeOptions) {
|
2020-08-25 13:44:41 +03:00
|
|
|
o.Group = name
|
2015-12-23 23:05:47 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-29 13:17:32 +03:00
|
|
|
// Register sets register option
|
|
|
|
func Register(r register.Register) Option {
|
2016-01-20 18:22:44 +03:00
|
|
|
return func(o *Options) {
|
2021-01-29 13:17:32 +03:00
|
|
|
o.Register = r
|
2016-01-20 18:22:44 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-03 02:02:32 +03:00
|
|
|
// TLSConfig sets the TLS Config
|
2016-01-17 02:39:47 +03:00
|
|
|
func TLSConfig(t *tls.Config) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.TLSConfig = t
|
|
|
|
}
|
|
|
|
}
|
2019-01-24 00:46:26 +03:00
|
|
|
|
2020-08-29 17:44:49 +03:00
|
|
|
// Logger sets the logger
|
|
|
|
func Logger(l logger.Logger) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.Logger = l
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-22 23:32:33 +03:00
|
|
|
// Tracer to be used for tracing
|
|
|
|
func Tracer(t tracer.Tracer) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.Tracer = t
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Meter sets the meter
|
|
|
|
func Meter(m meter.Meter) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.Meter = m
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-29 13:17:32 +03:00
|
|
|
// Name sets the name
|
|
|
|
func Name(n string) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.Name = n
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-24 00:46:26 +03:00
|
|
|
// SubscribeContext set context
|
|
|
|
func SubscribeContext(ctx context.Context) SubscribeOption {
|
|
|
|
return func(o *SubscribeOptions) {
|
|
|
|
o.Context = ctx
|
|
|
|
}
|
|
|
|
}
|