57 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			57 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package mucp
 | |
| 
 | |
| import (
 | |
| 	"github.com/asim/go-micro/v3/broker/http"
 | |
| 	"github.com/asim/go-micro/v3/codec"
 | |
| 	thttp "github.com/asim/go-micro/v3/network/transport/http"
 | |
| 	"github.com/asim/go-micro/v3/registry/mdns"
 | |
| 	"github.com/asim/go-micro/v3/server"
 | |
| )
 | |
| 
 | |
| 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
 | |
| }
 |