mirror of https://github.com/knative/caching.git
100 lines
2.9 KiB
Go
100 lines
2.9 KiB
Go
/*
|
|
Copyright 2019 The Knative 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 injection
|
|
|
|
import (
|
|
"context"
|
|
|
|
"k8s.io/client-go/rest"
|
|
|
|
"knative.dev/pkg/controller"
|
|
)
|
|
|
|
// InformerInjector holds the type of a callback that attaches a particular
|
|
// informer type to a context.
|
|
type InformerInjector func(context.Context) (context.Context, controller.Informer)
|
|
|
|
// FilteredInformersInjector holds the type of a callback that attaches a set of particular
|
|
// filtered informers type to a context.
|
|
type FilteredInformersInjector func(context.Context) (context.Context, []controller.Informer)
|
|
|
|
func (i *impl) RegisterInformer(ii InformerInjector) {
|
|
i.m.Lock()
|
|
defer i.m.Unlock()
|
|
|
|
i.informers = append(i.informers, ii)
|
|
}
|
|
|
|
func (i *impl) RegisterFilteredInformers(fii FilteredInformersInjector) {
|
|
i.m.Lock()
|
|
defer i.m.Unlock()
|
|
|
|
i.filteredInformers = append(i.filteredInformers, fii)
|
|
}
|
|
|
|
func (i *impl) GetInformers() []InformerInjector {
|
|
i.m.RLock()
|
|
defer i.m.RUnlock()
|
|
|
|
// Copy the slice before returning.
|
|
return append(i.informers[:0:0], i.informers...)
|
|
}
|
|
|
|
func (i *impl) GetFilteredInformers() []FilteredInformersInjector {
|
|
i.m.RLock()
|
|
defer i.m.RUnlock()
|
|
|
|
// Copy the slice before returning.
|
|
return append(i.filteredInformers[:0:0], i.filteredInformers...)
|
|
}
|
|
|
|
func (i *impl) SetupInformers(ctx context.Context, cfg *rest.Config) (context.Context, []controller.Informer) {
|
|
// Based on the reconcilers we have linked, build up a set of clients and inject
|
|
// them onto the context.
|
|
for _, ci := range i.GetClients() {
|
|
ctx = ci(ctx, cfg)
|
|
}
|
|
|
|
// Based on the reconcilers we have linked, build up a set of informer factories
|
|
// and inject them onto the context.
|
|
for _, ifi := range i.GetInformerFactories() {
|
|
ctx = ifi(ctx)
|
|
}
|
|
|
|
// Based on the reconcilers we have linked, build up a set of duck informer factories
|
|
// and inject them onto the context.
|
|
for _, duck := range i.GetDucks() {
|
|
ctx = duck(ctx)
|
|
}
|
|
|
|
// Based on the reconcilers we have linked, build up a set of informers
|
|
// and inject them onto the context.
|
|
var inf controller.Informer
|
|
var filteredinfs []controller.Informer
|
|
informers := make([]controller.Informer, 0, len(i.GetInformers()))
|
|
for _, ii := range i.GetInformers() {
|
|
ctx, inf = ii(ctx)
|
|
informers = append(informers, inf)
|
|
}
|
|
for _, fii := range i.GetFilteredInformers() {
|
|
ctx, filteredinfs = fii(ctx)
|
|
informers = append(informers, filteredinfs...)
|
|
|
|
}
|
|
return ctx, informers
|
|
}
|