caching/vendor/knative.dev/pkg/controller/helper.go

68 lines
1.9 KiB
Go

/*
Copyright 2018 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
https://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 controller
import (
"k8s.io/apimachinery/pkg/api/meta"
"k8s.io/apimachinery/pkg/runtime/schema"
"k8s.io/client-go/tools/cache"
"knative.dev/pkg/kmeta"
)
type Callback func(interface{})
func EnsureTypeMeta(f Callback, gvk schema.GroupVersionKind) Callback {
apiVersion, kind := gvk.ToAPIVersionAndKind()
return func(untyped interface{}) {
typed, err := kmeta.DeletionHandlingAccessor(untyped)
if err != nil {
// TODO: We should consider logging here.
return
}
// We need to populated TypeMeta, but cannot trample the
// informer's copy.
// TODO(mattmoor): Avoid the copy if TypeMeta is set.
copy := typed.DeepCopyObject()
accessor, err := meta.TypeAccessor(copy)
if err != nil {
return
}
accessor.SetAPIVersion(apiVersion)
accessor.SetKind(kind)
// Pass in the mutated copy (accessor is not just a type cast)
f(copy)
}
}
// SendGlobalUpdates triggers an update event for all objects from the
// passed SharedInformer.
//
// Since this is triggered not by a real update of these objects
// themselves, we have no way of knowing the change to these objects
// if any, so we call handler.OnUpdate(obj, obj) for all of them
// regardless if they have changes or not.
func SendGlobalUpdates(si cache.SharedInformer, handler cache.ResourceEventHandler) {
store := si.GetStore()
for _, obj := range store.List() {
handler.OnUpdate(obj, obj)
}
}