-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathoption.go
118 lines (95 loc) · 2.08 KB
/
option.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
package server
import (
"net"
"time"
"github.com/gmsec/micro/registry"
"github.com/xxjwxc/public/mylog"
"google.golang.org/grpc"
)
// Options is a simple micro server abstraction
type Options struct {
Name string
Address string
// Advertise string
ID string
Version string
// registry
// The register expiry time
RegisterTTL time.Duration
// The interval on which to register
RegisterInterval time.Duration
Registry *registry.Registry
Server *grpc.Server
Listener net.Listener
}
// Name Server name
func Name(n string) Option {
return func(o *Options) {
o.Name = n
}
}
// RegisterTTL Register the service with a TTL
func RegisterTTL(t time.Duration) Option {
return func(o *Options) {
o.RegisterTTL = t
}
}
// RegisterInterval Register the service with at interval
func RegisterInterval(t time.Duration) Option {
return func(o *Options) {
o.RegisterInterval = t
}
}
func newOptions(opt ...Option) Options {
opts := Options{
// Codecs: make(map[string]codec.NewCodec),
// Metadata: map[string]string{},
RegisterInterval: DefaultRegisterInterval,
RegisterTTL: DefaultRegisterTTL,
}
for _, o := range opt {
o(&opts)
}
if len(opts.Address) == 0 {
opts.Address = DefaultAddress
}
if len(opts.Name) == 0 {
opts.Name = DefaultName
}
if len(opts.ID) == 0 {
opts.ID = DefaultID
}
if len(opts.Version) == 0 {
opts.Version = DefaultVersion
}
return opts
}
func (obj *Options) getListener() net.Listener {
if obj.Listener == nil {
//起服务
lis, err := net.Listen("tcp", obj.Address)
if err != nil {
mylog.Fatal("failed to listen: ", err)
}
obj.Listener = lis
obj.Address = lis.Addr().String()
}
return obj.Listener
}
func (obj *Options) setListener(lis net.Listener) bool {
if obj.Listener == nil {
//起服务
obj.Listener = lis
obj.Address = lis.Addr().String()
return true
}
return false
}
// WithRegistryNaming 注册naming 服务发现
func WithRegistryNaming(reg registry.RegNaming) Option {
return func(o *Options) {
o.Registry = ®istry.Registry{
RegNaming: reg,
}
}
}