github.com/tickoalcantara12/micro/v3@v3.0.0-20221007104245-9d75b9bcbab9/service/server/mucp/options.go (about) 1 // Copyright 2020 Asim Aslam 2 // 3 // Licensed under the Apache License, Version 2.0 (the "License"); 4 // you may not use this file except in compliance with the License. 5 // You may obtain a copy of the License at 6 // 7 // https://www.apache.org/licenses/LICENSE-2.0 8 // 9 // Unless required by applicable law or agreed to in writing, software 10 // distributed under the License is distributed on an "AS IS" BASIS, 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 // See the License for the specific language governing permissions and 13 // limitations under the License. 14 // 15 // Original source: github.com/micro/go-micro/v3/server/mucp/options.go 16 17 package mucp 18 19 import ( 20 "github.com/tickoalcantara12/micro/v3/service/broker/memory" 21 thttp "github.com/tickoalcantara12/micro/v3/service/network/transport/http" 22 memReg "github.com/tickoalcantara12/micro/v3/service/registry/memory" 23 "github.com/tickoalcantara12/micro/v3/service/server" 24 "github.com/tickoalcantara12/micro/v3/util/codec" 25 ) 26 27 func newOptions(opt ...server.Option) server.Options { 28 opts := server.Options{ 29 Codecs: make(map[string]codec.NewCodec), 30 Metadata: map[string]string{}, 31 RegisterInterval: server.DefaultRegisterInterval, 32 RegisterTTL: server.DefaultRegisterTTL, 33 } 34 35 for _, o := range opt { 36 o(&opts) 37 } 38 39 if opts.Broker == nil { 40 opts.Broker = memory.NewBroker() 41 } 42 43 if opts.Registry == nil { 44 opts.Registry = memReg.NewRegistry() 45 } 46 47 if opts.Transport == nil { 48 opts.Transport = thttp.NewTransport() 49 } 50 51 if opts.RegisterCheck == nil { 52 opts.RegisterCheck = server.DefaultRegisterCheck 53 } 54 55 if len(opts.Address) == 0 { 56 opts.Address = server.DefaultAddress 57 } 58 59 if len(opts.Name) == 0 { 60 opts.Name = server.DefaultName 61 } 62 63 if len(opts.Id) == 0 { 64 opts.Id = server.DefaultId 65 } 66 67 if len(opts.Version) == 0 { 68 opts.Version = server.DefaultVersion 69 } 70 71 return opts 72 }