2015-06-12 21:52:27 +03:00
|
|
|
package client
|
|
|
|
|
|
|
|
import (
|
2015-11-20 19:17:33 +03:00
|
|
|
"github.com/micro/go-micro/broker"
|
2015-11-27 03:17:36 +03:00
|
|
|
"github.com/micro/go-micro/codec"
|
2015-11-20 19:17:33 +03:00
|
|
|
"github.com/micro/go-micro/registry"
|
2015-12-09 22:23:16 +03:00
|
|
|
"github.com/micro/go-micro/selector"
|
2015-11-20 19:17:33 +03:00
|
|
|
"github.com/micro/go-micro/transport"
|
2015-06-12 21:52:27 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
type options struct {
|
2015-11-25 22:50:05 +03:00
|
|
|
contentType string
|
|
|
|
broker broker.Broker
|
2015-11-28 14:22:29 +03:00
|
|
|
codecs map[string]codec.NewCodec
|
2015-11-25 22:50:05 +03:00
|
|
|
registry registry.Registry
|
2015-12-09 22:23:16 +03:00
|
|
|
selector selector.Selector
|
2015-11-25 22:50:05 +03:00
|
|
|
transport transport.Transport
|
2015-11-26 23:36:42 +03:00
|
|
|
wrappers []Wrapper
|
2015-06-12 21:52:27 +03:00
|
|
|
}
|
|
|
|
|
2015-12-09 03:02:45 +03:00
|
|
|
type callOptions struct {
|
2015-12-09 22:23:16 +03:00
|
|
|
selectOptions []selector.SelectOption
|
2015-12-09 03:02:45 +03:00
|
|
|
}
|
2015-12-08 22:25:42 +03:00
|
|
|
|
|
|
|
type publishOptions struct{}
|
|
|
|
|
2015-11-26 15:51:53 +03:00
|
|
|
// Broker to be used for pub/sub
|
2015-06-12 21:52:27 +03:00
|
|
|
func Broker(b broker.Broker) Option {
|
|
|
|
return func(o *options) {
|
|
|
|
o.broker = b
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-26 15:51:53 +03:00
|
|
|
// Codec to be used to encode/decode requests for a given content type
|
2015-11-28 14:22:29 +03:00
|
|
|
func Codec(contentType string, c codec.NewCodec) Option {
|
2015-11-25 22:50:05 +03:00
|
|
|
return func(o *options) {
|
2015-11-27 03:17:36 +03:00
|
|
|
o.codecs[contentType] = c
|
2015-11-25 22:50:05 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-26 15:51:53 +03:00
|
|
|
// Default content type of the client
|
2015-11-25 22:50:05 +03:00
|
|
|
func ContentType(ct string) Option {
|
|
|
|
return func(o *options) {
|
|
|
|
o.contentType = ct
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-26 15:51:53 +03:00
|
|
|
// Registry to find nodes for a given service
|
2015-06-12 21:52:27 +03:00
|
|
|
func Registry(r registry.Registry) Option {
|
|
|
|
return func(o *options) {
|
|
|
|
o.registry = r
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-26 15:51:53 +03:00
|
|
|
// Transport to use for communication e.g http, rabbitmq, etc
|
2015-06-12 21:52:27 +03:00
|
|
|
func Transport(t transport.Transport) Option {
|
|
|
|
return func(o *options) {
|
|
|
|
o.transport = t
|
|
|
|
}
|
|
|
|
}
|
2015-11-26 23:36:42 +03:00
|
|
|
|
2015-12-08 02:56:17 +03:00
|
|
|
// Select is used to select a node to route a request to
|
2015-12-09 22:23:16 +03:00
|
|
|
func Selector(s selector.Selector) Option {
|
2015-12-08 00:09:10 +03:00
|
|
|
return func(o *options) {
|
|
|
|
o.selector = s
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-26 23:36:42 +03:00
|
|
|
// Adds a Wrapper to a list of options passed into the client
|
|
|
|
func Wrap(w Wrapper) Option {
|
|
|
|
return func(o *options) {
|
|
|
|
o.wrappers = append(o.wrappers, w)
|
|
|
|
}
|
|
|
|
}
|
2015-12-09 03:02:45 +03:00
|
|
|
|
|
|
|
// Call Options
|
|
|
|
|
2015-12-09 22:23:16 +03:00
|
|
|
func WithSelectOption(so selector.SelectOption) CallOption {
|
2015-12-09 03:02:45 +03:00
|
|
|
return func(o *callOptions) {
|
|
|
|
o.selectOptions = append(o.selectOptions, so)
|
|
|
|
}
|
|
|
|
}
|