2015-05-27 00:39:48 +03:00
|
|
|
package server
|
|
|
|
|
|
|
|
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"
|
|
|
|
"github.com/micro/go-micro/transport"
|
2015-05-27 00:39:48 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
type options struct {
|
2015-12-02 14:54:36 +03:00
|
|
|
codecs map[string]codec.NewCodec
|
|
|
|
broker broker.Broker
|
|
|
|
registry registry.Registry
|
|
|
|
transport transport.Transport
|
|
|
|
metadata map[string]string
|
|
|
|
name string
|
|
|
|
address string
|
|
|
|
advertise string
|
|
|
|
id string
|
|
|
|
version string
|
|
|
|
wrappers []HandlerWrapper
|
|
|
|
subWrappers []SubscriberWrapper
|
2015-05-27 00:39:48 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func newOptions(opt ...Option) options {
|
2015-11-25 22:50:05 +03:00
|
|
|
opts := options{
|
2015-11-28 14:22:29 +03:00
|
|
|
codecs: make(map[string]codec.NewCodec),
|
2015-11-25 22:50:05 +03:00
|
|
|
}
|
2015-05-27 00:39:48 +03:00
|
|
|
|
|
|
|
for _, o := range opt {
|
|
|
|
o(&opts)
|
|
|
|
}
|
|
|
|
|
2015-06-12 21:52:27 +03:00
|
|
|
if opts.broker == nil {
|
|
|
|
opts.broker = broker.DefaultBroker
|
|
|
|
}
|
|
|
|
|
2015-06-01 20:55:27 +03:00
|
|
|
if opts.registry == nil {
|
|
|
|
opts.registry = registry.DefaultRegistry
|
|
|
|
}
|
|
|
|
|
2015-05-27 00:39:48 +03:00
|
|
|
if opts.transport == nil {
|
|
|
|
opts.transport = transport.DefaultTransport
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(opts.address) == 0 {
|
|
|
|
opts.address = DefaultAddress
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(opts.name) == 0 {
|
|
|
|
opts.name = DefaultName
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(opts.id) == 0 {
|
|
|
|
opts.id = DefaultId
|
|
|
|
}
|
|
|
|
|
2015-06-03 03:25:37 +03:00
|
|
|
if len(opts.version) == 0 {
|
|
|
|
opts.version = DefaultVersion
|
|
|
|
}
|
|
|
|
|
2015-05-27 00:39:48 +03:00
|
|
|
return opts
|
|
|
|
}
|
|
|
|
|
|
|
|
func (o options) Name() string {
|
|
|
|
return o.name
|
|
|
|
}
|
|
|
|
|
|
|
|
func (o options) Id() string {
|
|
|
|
return o.name + "-" + o.id
|
|
|
|
}
|
|
|
|
|
2015-06-03 03:25:37 +03:00
|
|
|
func (o options) Version() string {
|
|
|
|
return o.version
|
|
|
|
}
|
|
|
|
|
2015-05-27 00:39:48 +03:00
|
|
|
func (o options) Address() string {
|
|
|
|
return o.address
|
|
|
|
}
|
|
|
|
|
2015-11-11 21:22:04 +03:00
|
|
|
func (o options) Advertise() string {
|
|
|
|
return o.advertise
|
|
|
|
}
|
|
|
|
|
2015-05-27 00:39:48 +03:00
|
|
|
func (o options) Metadata() map[string]string {
|
|
|
|
return o.metadata
|
|
|
|
}
|
2015-06-03 03:25:37 +03:00
|
|
|
|
2015-11-26 03:23:36 +03:00
|
|
|
// Server name
|
2015-06-03 03:25:37 +03:00
|
|
|
func Name(n string) Option {
|
|
|
|
return func(o *options) {
|
|
|
|
o.name = n
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-26 03:23:36 +03:00
|
|
|
// Unique server id
|
2015-06-03 03:25:37 +03:00
|
|
|
func Id(id string) Option {
|
|
|
|
return func(o *options) {
|
|
|
|
o.id = id
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-26 03:23:36 +03:00
|
|
|
// Version of the service
|
2015-06-03 03:25:37 +03:00
|
|
|
func Version(v string) Option {
|
|
|
|
return func(o *options) {
|
|
|
|
o.version = v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-26 03:23:36 +03:00
|
|
|
// Address to bind to - host:port
|
2015-06-03 03:25:37 +03:00
|
|
|
func Address(a string) Option {
|
|
|
|
return func(o *options) {
|
|
|
|
o.address = a
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-26 03:23:36 +03:00
|
|
|
// The address to advertise for discovery - host:port
|
2015-11-11 21:22:04 +03:00
|
|
|
func Advertise(a string) Option {
|
|
|
|
return func(o *options) {
|
|
|
|
o.advertise = a
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-26 03:23:36 +03:00
|
|
|
// Broker to use 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 03:23:36 +03:00
|
|
|
// Codec to use 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 03:23:36 +03:00
|
|
|
// Registry used for discovery
|
2015-06-03 03:25:37 +03:00
|
|
|
func Registry(r registry.Registry) Option {
|
|
|
|
return func(o *options) {
|
|
|
|
o.registry = r
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-26 03:23:36 +03:00
|
|
|
// Transport mechanism for communication e.g http, rabbitmq, etc
|
2015-06-03 03:25:37 +03:00
|
|
|
func Transport(t transport.Transport) Option {
|
|
|
|
return func(o *options) {
|
|
|
|
o.transport = t
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-26 03:23:36 +03:00
|
|
|
// Metadata associated with the server
|
2015-06-03 03:25:37 +03:00
|
|
|
func Metadata(md map[string]string) Option {
|
|
|
|
return func(o *options) {
|
|
|
|
o.metadata = md
|
|
|
|
}
|
|
|
|
}
|
2015-12-02 03:47:52 +03:00
|
|
|
|
|
|
|
// Adds a handler Wrapper to a list of options passed into the server
|
2015-12-02 14:54:36 +03:00
|
|
|
func WrapHandler(w HandlerWrapper) Option {
|
2015-12-02 03:47:52 +03:00
|
|
|
return func(o *options) {
|
|
|
|
o.wrappers = append(o.wrappers, w)
|
|
|
|
}
|
|
|
|
}
|
2015-12-02 14:54:36 +03:00
|
|
|
|
|
|
|
// Adds a subscriber Wrapper to a list of options passed into the server
|
|
|
|
func WrapSubscriber(w SubscriberWrapper) Option {
|
|
|
|
return func(o *options) {
|
|
|
|
o.subWrappers = append(o.subWrappers, w)
|
|
|
|
}
|
|
|
|
}
|