forked from yyyar/gobetween
-
Notifications
You must be signed in to change notification settings - Fork 0
/
discovery.go
205 lines (169 loc) · 3.5 KB
/
discovery.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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
package discovery
/**
* discovery.go - discovery
*
* @author Yaroslav Pogrebnyak <[email protected]>
*/
import (
"time"
"github.com/yyyar/gobetween/config"
"github.com/yyyar/gobetween/core"
"github.com/yyyar/gobetween/logging"
)
/**
* Registry of factory methods for Discoveries
*/
var registry = make(map[string]func(config.DiscoveryConfig) interface{})
/**
* Initialize type registry
*/
func init() {
registry["static"] = NewStaticDiscovery
registry["srv"] = NewSrvDiscovery
registry["docker"] = NewDockerDiscovery
registry["json"] = NewJsonDiscovery
registry["exec"] = NewExecDiscovery
registry["plaintext"] = NewPlaintextDiscovery
registry["consul"] = NewConsulDiscovery
registry["lxd"] = NewLXDDiscovery
}
/**
* Create new Discovery based on strategy
*/
func New(strategy string, cfg config.DiscoveryConfig) *Discovery {
return registry[strategy](cfg).(*Discovery)
}
/**
* Fetch func for pullig backends
*/
type FetchFunc func(config.DiscoveryConfig) (*[]core.Backend, error)
/**
* Options for pull discovery
*/
type DiscoveryOpts struct {
RetryWaitDuration time.Duration
}
/**
* Discovery
*/
type Discovery struct {
/**
* Cached backends
*/
backends *[]core.Backend
/**
* Function to fetch / discovery backends
*/
fetch FetchFunc
/**
* Options for fetch
*/
opts DiscoveryOpts
/**
* Discovery configuration
*/
cfg config.DiscoveryConfig
/**
* Channel where to push newly discovered backends
*/
out chan ([]core.Backend)
/**
* Channel for stopping discovery
*/
stop chan bool
}
/**
* Pull / fetch backends loop
*/
func (this *Discovery) Start() {
log := logging.For("discovery")
this.out = make(chan []core.Backend)
this.stop = make(chan bool)
// Prepare interval
interval, err := time.ParseDuration(this.cfg.Interval)
if err != nil {
log.Fatal(err)
}
// TODO: rewrite with channels for stop
go func() {
for {
backends, err := this.fetch(this.cfg)
select {
case <-this.stop:
log.Info("Stopping discovery ", this.cfg)
return
default:
}
if err != nil {
log.Error(this.cfg.Kind, " error ", err, " retrying in ", this.opts.RetryWaitDuration.String())
log.Info("Applying failpolicy ", this.cfg.Failpolicy)
if this.cfg.Failpolicy == "setempty" {
this.backends = &[]core.Backend{}
if !this.send() {
log.Info("Stopping discovery ", this.cfg)
return
}
}
if !this.wait(this.opts.RetryWaitDuration) {
log.Info("Stopping discovery ", this.cfg)
return
}
continue
}
// cache
this.backends = backends
if !this.send() {
log.Info("Stopping discovery ", this.cfg)
return
}
// exit gorouting if no cacheTtl
// used for static discovery
if interval == 0 {
return
}
if !this.wait(interval) {
log.Info("Stopping discovery ", this.cfg)
return
}
}
}()
}
func (this *Discovery) send() bool {
// out if not stopped
select {
case <-this.stop:
return false
default:
this.out <- *this.backends
return true
}
}
/**
* wait waits for interval or stop
* returns true if waiting was successfull
* return false if waiting was interrupted with stop
*/
func (this *Discovery) wait(interval time.Duration) bool {
t := time.NewTimer(interval)
select {
case <-t.C:
return true
case <-this.stop:
if !t.Stop() {
<-t.C
}
return false
}
}
/**
* Stop discovery
*/
func (this *Discovery) Stop() {
this.stop <- true
}
/**
* Returns backends channel
*/
func (this *Discovery) Discover() <-chan []core.Backend {
return this.out
}