forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserviceaccessor.go
181 lines (159 loc) · 6.13 KB
/
serviceaccessor.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
package dns
import (
"fmt"
"time"
"k8s.io/kubernetes/pkg/api"
"k8s.io/kubernetes/pkg/api/errors"
"k8s.io/kubernetes/pkg/client/cache"
"k8s.io/kubernetes/pkg/client/restclient"
client "k8s.io/kubernetes/pkg/client/unversioned"
"k8s.io/kubernetes/pkg/fields"
"k8s.io/kubernetes/pkg/watch"
)
// ServiceAccessor is the interface used by the ServiceResolver to access
// services.
type ServiceAccessor interface {
client.ServicesNamespacer
ServiceByPortalIP(ip string) (*api.Service, error)
}
// cachedServiceAccessor provides a cache of services that can answer queries
// about service lookups efficiently.
type cachedServiceAccessor struct {
store cache.Indexer
}
// cachedServiceAccessor implements ServiceAccessor
var _ ServiceAccessor = &cachedServiceAccessor{}
func NewCachedServiceAccessorAndStore() (ServiceAccessor, cache.Store) {
store := cache.NewIndexer(cache.MetaNamespaceKeyFunc, map[string]cache.IndexFunc{
"portalIP": indexServiceByPortalIP, // for reverse lookups
"namespace": cache.MetaNamespaceIndexFunc,
})
return &cachedServiceAccessor{store: store}, store
}
// NewCachedServiceAccessor returns a service accessor that can answer queries about services.
// It uses a backing cache to make PortalIP lookups efficient.
func NewCachedServiceAccessor(client cache.Getter, stopCh <-chan struct{}) ServiceAccessor {
accessor, store := NewCachedServiceAccessorAndStore()
lw := cache.NewListWatchFromClient(client, "services", api.NamespaceAll, fields.Everything())
reflector := cache.NewReflector(lw, &api.Service{}, store, 30*time.Minute)
if stopCh != nil {
reflector.RunUntil(stopCh)
} else {
reflector.Run()
}
return accessor
}
// ServiceByPortalIP returns the first service that matches the provided portalIP value.
// errors.IsNotFound(err) will be true if no such service exists.
func (a *cachedServiceAccessor) ServiceByPortalIP(ip string) (*api.Service, error) {
items, err := a.store.Index("portalIP", &api.Service{Spec: api.ServiceSpec{ClusterIP: ip}})
if err != nil {
return nil, err
}
if len(items) == 0 {
return nil, errors.NewNotFound(api.Resource("service"), "portalIP="+ip)
}
return items[0].(*api.Service), nil
}
// indexServiceByPortalIP creates an index between a portalIP and the service that
// uses it.
func indexServiceByPortalIP(obj interface{}) ([]string, error) {
return []string{obj.(*api.Service).Spec.ClusterIP}, nil
}
func (a *cachedServiceAccessor) Services(namespace string) client.ServiceInterface {
return cachedServiceNamespacer{a, namespace}
}
// TODO: needs to be unified with Registry interfaces once that work is done.
type cachedServiceNamespacer struct {
accessor *cachedServiceAccessor
namespace string
}
var _ client.ServiceInterface = cachedServiceNamespacer{}
func (a cachedServiceNamespacer) Get(name string) (*api.Service, error) {
item, ok, err := a.accessor.store.Get(&api.Service{ObjectMeta: api.ObjectMeta{Namespace: a.namespace, Name: name}})
if err != nil {
return nil, err
}
if !ok {
return nil, errors.NewNotFound(api.Resource("service"), name)
}
return item.(*api.Service), nil
}
func (a cachedServiceNamespacer) List(options api.ListOptions) (*api.ServiceList, error) {
if !options.LabelSelector.Empty() {
return nil, fmt.Errorf("label selection on the cache is not currently implemented")
}
items, err := a.accessor.store.Index("namespace", &api.Service{ObjectMeta: api.ObjectMeta{Namespace: a.namespace}})
if err != nil {
return nil, err
}
services := make([]api.Service, 0, len(items))
for i := range items {
services = append(services, *items[i].(*api.Service))
}
return &api.ServiceList{
// TODO: set ResourceVersion so that we can make watch work.
Items: services,
}, nil
}
func (a cachedServiceNamespacer) Create(srv *api.Service) (*api.Service, error) {
return nil, fmt.Errorf("not implemented")
}
func (a cachedServiceNamespacer) Update(srv *api.Service) (*api.Service, error) {
return nil, fmt.Errorf("not implemented")
}
func (a cachedServiceNamespacer) UpdateStatus(srv *api.Service) (*api.Service, error) {
return nil, fmt.Errorf("not implemented")
}
func (a cachedServiceNamespacer) Delete(name string) error {
return fmt.Errorf("not implemented")
}
func (a cachedServiceNamespacer) Watch(options api.ListOptions) (watch.Interface, error) {
return nil, fmt.Errorf("not implemented")
}
func (a cachedServiceNamespacer) ProxyGet(scheme, name, port, path string, params map[string]string) restclient.ResponseWrapper {
return nil
}
// cachedEndpointsAccessor provides a cache of services that can answer queries
// about service lookups efficiently.
type cachedEndpointsAccessor struct {
store cache.Store
}
func NewCachedEndpointsAccessorAndStore() (client.EndpointsNamespacer, cache.Store) {
store := cache.NewStore(cache.MetaNamespaceKeyFunc)
return &cachedEndpointsAccessor{store: store}, store
}
func (a *cachedEndpointsAccessor) Endpoints(namespace string) client.EndpointsInterface {
return cachedEndpointsNamespacer{accessor: a, namespace: namespace}
}
// TODO: needs to be unified with Registry interfaces once that work is done.
type cachedEndpointsNamespacer struct {
accessor *cachedEndpointsAccessor
namespace string
}
var _ client.EndpointsInterface = cachedEndpointsNamespacer{}
func (a cachedEndpointsNamespacer) Get(name string) (*api.Endpoints, error) {
item, ok, err := a.accessor.store.Get(&api.Endpoints{ObjectMeta: api.ObjectMeta{Namespace: a.namespace, Name: name}})
if err != nil {
return nil, err
}
if !ok {
return nil, errors.NewNotFound(api.Resource("endpoints"), name)
}
return item.(*api.Endpoints), nil
}
func (a cachedEndpointsNamespacer) List(options api.ListOptions) (*api.EndpointsList, error) {
return nil, fmt.Errorf("not implemented")
}
func (a cachedEndpointsNamespacer) Create(srv *api.Endpoints) (*api.Endpoints, error) {
return nil, fmt.Errorf("not implemented")
}
func (a cachedEndpointsNamespacer) Update(srv *api.Endpoints) (*api.Endpoints, error) {
return nil, fmt.Errorf("not implemented")
}
func (a cachedEndpointsNamespacer) Delete(name string) error {
return fmt.Errorf("not implemented")
}
func (a cachedEndpointsNamespacer) Watch(options api.ListOptions) (watch.Interface, error) {
return nil, fmt.Errorf("not implemented")
}