micro/server/mucp/options.go
Vasiliy Tolstov 06136312bb
regen files with never protoc (#6)
* regen files with never protoc
* rewrite import path

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
2020-08-19 17:47:17 +03:00

57 lines
1.1 KiB
Go

package mucp
import (
"github.com/unistack-org/micro/v3/broker/http"
"github.com/unistack-org/micro/v3/codec"
"github.com/unistack-org/micro/v3/registry/mdns"
"github.com/unistack-org/micro/v3/server"
thttp "github.com/unistack-org/micro/v3/transport/http"
)
func newOptions(opt ...server.Option) server.Options {
opts := server.Options{
Codecs: make(map[string]codec.NewCodec),
Metadata: map[string]string{},
RegisterInterval: server.DefaultRegisterInterval,
RegisterTTL: server.DefaultRegisterTTL,
}
for _, o := range opt {
o(&opts)
}
if opts.Broker == nil {
opts.Broker = http.NewBroker()
}
if opts.Registry == nil {
opts.Registry = mdns.NewRegistry()
}
if opts.Transport == nil {
opts.Transport = thttp.NewTransport()
}
if opts.RegisterCheck == nil {
opts.RegisterCheck = server.DefaultRegisterCheck
}
if len(opts.Address) == 0 {
opts.Address = server.DefaultAddress
}
if len(opts.Name) == 0 {
opts.Name = server.DefaultName
}
if len(opts.Id) == 0 {
opts.Id = server.DefaultId
}
if len(opts.Version) == 0 {
opts.Version = server.DefaultVersion
}
return opts
}