forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontroller.go
135 lines (113 loc) · 3.99 KB
/
controller.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
package controller
import (
"fmt"
"sync"
"time"
"github.com/golang/glog"
kapi "k8s.io/kubernetes/pkg/api"
utilruntime "k8s.io/kubernetes/pkg/util/runtime"
"k8s.io/kubernetes/pkg/util/sets"
utilwait "k8s.io/kubernetes/pkg/util/wait"
"k8s.io/kubernetes/pkg/watch"
routeapi "github.com/openshift/origin/pkg/route/api"
"github.com/openshift/origin/pkg/router"
)
// NamespaceLister returns all the names that should be watched by the client
type NamespaceLister interface {
NamespaceNames() (sets.String, error)
}
// RouterController abstracts the details of watching the Route and Endpoints
// resources from the Plugin implementation being used.
type RouterController struct {
lock sync.Mutex
Plugin router.Plugin
NextRoute func() (watch.EventType, *routeapi.Route, error)
NextEndpoints func() (watch.EventType, *kapi.Endpoints, error)
RoutesListConsumed func() bool
EndpointsListConsumed func() bool
routesListConsumed bool
endpointsListConsumed bool
filteredByNamespace bool
Namespaces NamespaceLister
NamespaceSyncInterval time.Duration
NamespaceWaitInterval time.Duration
NamespaceRetries int
}
// Run begins watching and syncing.
func (c *RouterController) Run() {
glog.V(4).Info("Running router controller")
if c.Namespaces != nil {
c.HandleNamespaces()
go utilwait.Forever(c.HandleNamespaces, c.NamespaceSyncInterval)
}
go utilwait.Forever(c.HandleRoute, 0)
go utilwait.Forever(c.HandleEndpoints, 0)
}
func (c *RouterController) HandleNamespaces() {
for i := 0; i < c.NamespaceRetries; i++ {
namespaces, err := c.Namespaces.NamespaceNames()
if err == nil {
c.lock.Lock()
defer c.lock.Unlock()
// Namespace filtering is assumed to be have been
// performed so long as the plugin event handler is called
// at least once.
c.filteredByNamespace = true
c.updateLastSyncProcessed()
glog.V(4).Infof("Updating watched namespaces: %v", namespaces)
if err := c.Plugin.HandleNamespaces(namespaces); err != nil {
utilruntime.HandleError(err)
}
return
}
utilruntime.HandleError(fmt.Errorf("unable to find namespaces for router: %v", err))
time.Sleep(c.NamespaceWaitInterval)
}
glog.V(4).Infof("Unable to update list of namespaces")
}
// HandleRoute handles a single Route event and synchronizes the router backend.
func (c *RouterController) HandleRoute() {
eventType, route, err := c.NextRoute()
if err != nil {
utilruntime.HandleError(fmt.Errorf("unable to read routes: %v", err))
return
}
c.lock.Lock()
defer c.lock.Unlock()
// Change the local sync state within the lock to ensure that all
// event handlers have the same view of sync state.
c.routesListConsumed = c.RoutesListConsumed()
c.updateLastSyncProcessed()
glog.V(4).Infof("Processing Route: %s -> %s", route.Name, route.Spec.To.Name)
glog.V(4).Infof(" Alias: %s", route.Spec.Host)
glog.V(4).Infof(" Event: %s", eventType)
if err := c.Plugin.HandleRoute(eventType, route); err != nil {
utilruntime.HandleError(err)
}
}
// HandleEndpoints handles a single Endpoints event and refreshes the router backend.
func (c *RouterController) HandleEndpoints() {
eventType, endpoints, err := c.NextEndpoints()
if err != nil {
utilruntime.HandleError(fmt.Errorf("unable to read endpoints: %v", err))
return
}
c.lock.Lock()
defer c.lock.Unlock()
// Change the local sync state within the lock to ensure that all
// event handlers have the same view of sync state.
c.endpointsListConsumed = c.EndpointsListConsumed()
c.updateLastSyncProcessed()
if err := c.Plugin.HandleEndpoints(eventType, endpoints); err != nil {
utilruntime.HandleError(err)
}
}
// updateLastSyncProcessed notifies the plugin if the most recent sync
// of router resources has been completed.
func (c *RouterController) updateLastSyncProcessed() {
lastSyncProcessed := c.endpointsListConsumed && c.routesListConsumed &&
(c.Namespaces == nil || c.filteredByNamespace)
if err := c.Plugin.SetLastSyncProcessed(lastSyncProcessed); err != nil {
utilruntime.HandleError(err)
}
}