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
|
|
|
)
|
|
|
|
|
2015-12-31 21:11:46 +03:00
|
|
|
type Options struct {
|
|
|
|
ContentType string
|
|
|
|
Broker broker.Broker
|
|
|
|
Codecs map[string]codec.NewCodec
|
|
|
|
Registry registry.Registry
|
|
|
|
Selector selector.Selector
|
|
|
|
Transport transport.Transport
|
|
|
|
Wrappers []Wrapper
|
|
|
|
|
|
|
|
// Other options to be used by client implementations
|
|
|
|
Options map[string]string
|
2015-06-12 21:52:27 +03:00
|
|
|
}
|
|
|
|
|
2015-12-31 21:11:46 +03:00
|
|
|
type CallOptions struct {
|
|
|
|
SelectOptions []selector.SelectOption
|
|
|
|
|
|
|
|
// Other options to be used by client implementations
|
|
|
|
Options map[string]string
|
|
|
|
}
|
|
|
|
|
|
|
|
type PublishOptions struct {
|
|
|
|
// Other options to be used by client implementations
|
|
|
|
Options map[string]string
|
2015-12-09 03:02:45 +03:00
|
|
|
}
|
2015-12-08 22:25:42 +03:00
|
|
|
|
2015-12-31 21:11:46 +03:00
|
|
|
type RequestOptions struct {
|
|
|
|
Stream bool
|
2015-12-08 22:25:42 +03:00
|
|
|
|
2015-12-31 21:11:46 +03:00
|
|
|
// Other options to be used by client implementations
|
|
|
|
Options map[string]string
|
2015-12-17 23:37:35 +03:00
|
|
|
}
|
|
|
|
|
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 {
|
2015-12-31 21:11:46 +03:00
|
|
|
return func(o *Options) {
|
|
|
|
o.Broker = b
|
2015-06-12 21:52:27 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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-12-31 21:11:46 +03:00
|
|
|
return func(o *Options) {
|
|
|
|
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 {
|
2015-12-31 21:11:46 +03:00
|
|
|
return func(o *Options) {
|
|
|
|
o.ContentType = ct
|
2015-11-25 22:50:05 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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 {
|
2015-12-31 21:11:46 +03:00
|
|
|
return func(o *Options) {
|
|
|
|
o.Registry = r
|
2015-06-12 21:52:27 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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 {
|
2015-12-31 21:11:46 +03:00
|
|
|
return func(o *Options) {
|
|
|
|
o.Transport = t
|
2015-06-12 21:52:27 +03:00
|
|
|
}
|
|
|
|
}
|
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-31 21:11:46 +03:00
|
|
|
return func(o *Options) {
|
|
|
|
o.Selector = s
|
2015-12-08 00:09:10 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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 {
|
2015-12-31 21:11:46 +03:00
|
|
|
return func(o *Options) {
|
|
|
|
o.Wrappers = append(o.Wrappers, w)
|
2015-11-26 23:36:42 +03:00
|
|
|
}
|
|
|
|
}
|
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-31 21:11:46 +03:00
|
|
|
return func(o *CallOptions) {
|
|
|
|
o.SelectOptions = append(o.SelectOptions, so)
|
2015-12-09 03:02:45 +03:00
|
|
|
}
|
|
|
|
}
|
2015-12-17 23:37:35 +03:00
|
|
|
|
|
|
|
// Request Options
|
|
|
|
|
|
|
|
func StreamingRequest() RequestOption {
|
2015-12-31 21:11:46 +03:00
|
|
|
return func(o *RequestOptions) {
|
|
|
|
o.Stream = true
|
2015-12-17 23:37:35 +03:00
|
|
|
}
|
|
|
|
}
|