@@ -36,6 +36,7 @@ type RouterController struct {
36
36
routesListConsumed bool
37
37
endpointsListConsumed bool
38
38
filteredByNamespace bool
39
+ syncing bool
39
40
40
41
RoutesListSuccessfulAtLeastOnce func () bool
41
42
EndpointsListSuccessfulAtLeastOnce func () bool
@@ -78,25 +79,26 @@ func (c *RouterController) handleFirstSync() bool {
78
79
return false
79
80
}
80
81
82
+ err := c .Plugin .SetSyncedAtLeastOnce ()
83
+ if err != nil {
84
+ utilruntime .HandleError (err )
85
+ return false
86
+ }
87
+
81
88
// If either of the event queues were empty after the initial
82
89
// List, the tracking listConsumed variable's default value of
83
- // 'false' may prevent the router from reloading to indicate the
84
- // readiness status. Set the value to 'true' to ensure that a
85
- // reload will be performed if necessary.
90
+ // 'false' may prevent the router from committing the readiness
91
+ // status. Set the value to 'true' to ensure that state will be
92
+ // committed if necessary.
86
93
if c .RoutesListCount () == 0 {
87
94
c .routesListConsumed = true
88
95
}
89
96
if c .EndpointsListCount () == 0 {
90
97
c .endpointsListConsumed = true
91
98
}
92
- c .updateLastSyncProcessed ()
99
+ c .commit ()
93
100
94
- err := c .Plugin .SetSyncedAtLeastOnce ()
95
- if err == nil {
96
- return true
97
- }
98
- utilruntime .HandleError (err )
99
- return false
101
+ return true
100
102
}
101
103
102
104
// watchForFirstSync loops until the first sync has been handled.
@@ -116,16 +118,17 @@ func (c *RouterController) HandleNamespaces() {
116
118
c .lock .Lock ()
117
119
defer c .lock .Unlock ()
118
120
121
+ glog .V (4 ).Infof ("Updating watched namespaces: %v" , namespaces )
122
+ if err := c .Plugin .HandleNamespaces (namespaces ); err != nil {
123
+ utilruntime .HandleError (err )
124
+ }
125
+
119
126
// Namespace filtering is assumed to be have been
120
127
// performed so long as the plugin event handler is called
121
128
// at least once.
122
129
c .filteredByNamespace = true
123
- c .updateLastSyncProcessed ()
130
+ c .commit ()
124
131
125
- glog .V (4 ).Infof ("Updating watched namespaces: %v" , namespaces )
126
- if err := c .Plugin .HandleNamespaces (namespaces ); err != nil {
127
- utilruntime .HandleError (err )
128
- }
129
132
return
130
133
}
131
134
utilruntime .HandleError (fmt .Errorf ("unable to find namespaces for router: %v" , err ))
@@ -164,18 +167,18 @@ func (c *RouterController) HandleRoute() {
164
167
c .lock .Lock ()
165
168
defer c .lock .Unlock ()
166
169
167
- // Change the local sync state within the lock to ensure that all
168
- // event handlers have the same view of sync state.
169
- c .routesListConsumed = c .RoutesListConsumed ()
170
- c .updateLastSyncProcessed ()
171
-
172
170
glog .V (4 ).Infof ("Processing Route: %s -> %s" , route .Name , route .Spec .To .Name )
173
171
glog .V (4 ).Infof (" Alias: %s" , route .Spec .Host )
174
172
glog .V (4 ).Infof (" Event: %s" , eventType )
175
173
176
174
if err := c .Plugin .HandleRoute (eventType , route ); err != nil {
177
175
utilruntime .HandleError (err )
178
176
}
177
+
178
+ // Change the local sync state within the lock to ensure that all
179
+ // event handlers have the same view of sync state.
180
+ c .routesListConsumed = c .RoutesListConsumed ()
181
+ c .commit ()
179
182
}
180
183
181
184
// HandleEndpoints handles a single Endpoints event and refreshes the router backend.
@@ -189,22 +192,32 @@ func (c *RouterController) HandleEndpoints() {
189
192
c .lock .Lock ()
190
193
defer c .lock .Unlock ()
191
194
192
- // Change the local sync state within the lock to ensure that all
193
- // event handlers have the same view of sync state.
194
- c .endpointsListConsumed = c .EndpointsListConsumed ()
195
- c .updateLastSyncProcessed ()
196
-
197
195
if err := c .Plugin .HandleEndpoints (eventType , endpoints ); err != nil {
198
196
utilruntime .HandleError (err )
199
197
}
198
+
199
+ // Change the local sync state within the lock to ensure that all
200
+ // event handlers have the same view of sync state.
201
+ c .endpointsListConsumed = c .EndpointsListConsumed ()
202
+ c .commit ()
200
203
}
201
204
202
- // updateLastSyncProcessed notifies the plugin if the most recent sync
203
- // of router resources has been completed.
204
- func (c * RouterController ) updateLastSyncProcessed () {
205
- lastSyncProcessed := c .endpointsListConsumed && c .routesListConsumed &&
206
- (c .Namespaces == nil || c .filteredByNamespace )
207
- if err := c .Plugin .SetLastSyncProcessed (lastSyncProcessed ); err != nil {
205
+ // commit notifies the plugin that it is safe to commit state.
206
+ func (c * RouterController ) commit () {
207
+ syncing := ! (c .endpointsListConsumed && c .routesListConsumed &&
208
+ (c .Namespaces == nil || c .filteredByNamespace ))
209
+ if c .syncing != syncing {
210
+ c .syncing = syncing
211
+ if c .syncing {
212
+ glog .V (4 ).Infof ("Router sync started" )
213
+ } else {
214
+ glog .V (4 ).Infof ("Router sync complete" )
215
+ }
216
+ }
217
+ if c .syncing {
218
+ return
219
+ }
220
+ if err := c .Plugin .Commit (); err != nil {
208
221
utilruntime .HandleError (err )
209
222
}
210
223
}
0 commit comments