forked from flannel-io/flannel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
watch.go
288 lines (232 loc) · 6.6 KB
/
watch.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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
// Copyright 2015 flannel authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package subnet
import (
"time"
log "github.com/golang/glog"
"golang.org/x/net/context"
"github.com/coreos/flannel/pkg/ip"
)
// WatchLeases performs a long term watch of the given network's subnet leases
// and communicates addition/deletion events on receiver channel. It takes care
// of handling "fall-behind" logic where the history window has advanced too far
// and it needs to diff the latest snapshot with its saved state and generate events
func WatchLeases(ctx context.Context, sm Manager, network string, ownLease *Lease, receiver chan []Event) {
lw := &leaseWatcher{
ownLease: ownLease,
}
var cursor interface{}
for {
res, err := sm.WatchLeases(ctx, network, cursor)
if err != nil {
if err == context.Canceled || err == context.DeadlineExceeded {
return
}
log.Errorf("Watch subnets: %v", err)
time.Sleep(time.Second)
continue
}
cursor = res.Cursor
batch := []Event{}
if len(res.Events) > 0 {
batch = lw.update(res.Events)
} else {
batch = lw.reset(res.Snapshot)
}
if len(batch) > 0 {
receiver <- batch
}
}
}
type leaseWatcher struct {
ownLease *Lease
leases []Lease
}
func (lw *leaseWatcher) reset(leases []Lease) []Event {
batch := []Event{}
for _, nl := range leases {
if lw.ownLease != nil && nl.Subnet.Equal(lw.ownLease.Subnet) {
continue
}
found := false
for i, ol := range lw.leases {
if ol.Subnet.Equal(nl.Subnet) {
lw.leases = deleteLease(lw.leases, i)
found = true
break
}
}
if !found {
// new lease
batch = append(batch, Event{EventAdded, nl, ""})
}
}
// everything left in sm.leases has been deleted
for _, l := range lw.leases {
if lw.ownLease != nil && l.Subnet.Equal(lw.ownLease.Subnet) {
continue
}
batch = append(batch, Event{EventRemoved, l, ""})
}
// copy the leases over (caution: don't just assign a slice)
lw.leases = make([]Lease, len(leases))
copy(lw.leases, leases)
return batch
}
func (lw *leaseWatcher) update(events []Event) []Event {
batch := []Event{}
for _, e := range events {
if lw.ownLease != nil && e.Lease.Subnet.Equal(lw.ownLease.Subnet) {
continue
}
switch e.Type {
case EventAdded:
batch = append(batch, lw.add(&e.Lease))
case EventRemoved:
batch = append(batch, lw.remove(&e.Lease))
}
}
return batch
}
func (lw *leaseWatcher) add(lease *Lease) Event {
for i, l := range lw.leases {
if l.Subnet.Equal(lease.Subnet) {
lw.leases[i] = *lease
return Event{EventAdded, lw.leases[i], ""}
}
}
lw.leases = append(lw.leases, *lease)
return Event{EventAdded, lw.leases[len(lw.leases)-1], ""}
}
func (lw *leaseWatcher) remove(lease *Lease) Event {
for i, l := range lw.leases {
if l.Subnet.Equal(lease.Subnet) {
lw.leases = deleteLease(lw.leases, i)
return Event{EventRemoved, l, ""}
}
}
log.Errorf("Removed subnet (%s) was not found", lease.Subnet)
return Event{EventRemoved, *lease, ""}
}
func deleteLease(l []Lease, i int) []Lease {
l[i] = l[len(l)-1]
return l[:len(l)-1]
}
// WatchNetworks performs a long term watch of flannel networks and communicates
// addition/deletion events on receiver channel. It takes care of handling
// "fall-behind" logic where the history window has advanced too far and it
// needs to diff the latest snapshot with its saved state and generate events
func WatchNetworks(ctx context.Context, sm Manager, receiver chan []Event) {
nw := newNetWatcher()
var cursor interface{}
for {
res, err := sm.WatchNetworks(ctx, cursor)
if err != nil {
if err == context.Canceled || err == context.DeadlineExceeded {
return
}
log.Errorf("Watch networks: %v", err)
time.Sleep(time.Second)
continue
}
cursor = res.Cursor
batch := []Event{}
if len(res.Events) > 0 {
batch = nw.update(res.Events)
} else {
batch = nw.reset(res.Snapshot)
}
if len(batch) > 0 {
receiver <- batch
}
}
}
type netWatcher struct {
networks map[string]bool
}
func newNetWatcher() *netWatcher {
return &netWatcher{networks: make(map[string]bool)}
}
func (nw *netWatcher) reset(networks []string) []Event {
batch := []Event{}
newNetworks := make(map[string]bool)
for _, netname := range networks {
if nw.networks[netname] {
delete(nw.networks, netname)
} else {
// new network
batch = append(batch, Event{EventAdded, Lease{}, netname})
}
newNetworks[netname] = true
}
// everything left in sm.networks has been deleted
for netname, _ := range nw.networks {
batch = append(batch, Event{EventRemoved, Lease{}, netname})
}
nw.networks = newNetworks
return batch
}
func (nw *netWatcher) update(events []Event) []Event {
batch := []Event{}
for _, e := range events {
switch e.Type {
case EventAdded:
batch = append(batch, nw.add(e.Network))
case EventRemoved:
batch = append(batch, nw.remove(e.Network))
}
}
return batch
}
func (nw *netWatcher) add(network string) Event {
if _, ok := nw.networks[network]; !ok {
nw.networks[network] = true
}
return Event{EventAdded, Lease{}, network}
}
func (nw *netWatcher) remove(network string) Event {
if _, ok := nw.networks[network]; ok {
delete(nw.networks, network)
} else {
log.Errorf("Removed network (%s) was not found", network)
}
return Event{EventRemoved, Lease{}, network}
}
// WatchLease performs a long term watch of the given network's subnet lease
// and communicates addition/deletion events on receiver channel. It takes care
// of handling "fall-behind" logic where the history window has advanced too far
// and it needs to diff the latest snapshot with its saved state and generate events
func WatchLease(ctx context.Context, sm Manager, network string, sn ip.IP4Net, receiver chan Event) {
var cursor interface{}
for {
wr, err := sm.WatchLease(ctx, network, sn, cursor)
if err != nil {
if err == context.Canceled || err == context.DeadlineExceeded {
return
}
log.Errorf("Subnet watch failed: %v", err)
time.Sleep(time.Second)
continue
}
if len(wr.Snapshot) > 0 {
receiver <- Event{
Type: EventAdded,
Lease: wr.Snapshot[0],
}
} else {
receiver <- wr.Events[0]
}
cursor = wr.Cursor
}
}