accessor.go 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. /*
  2. Copyright 2018 The Knative Authors
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. */
  13. package kmeta
  14. import (
  15. "fmt"
  16. metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
  17. "k8s.io/apimachinery/pkg/runtime"
  18. "k8s.io/apimachinery/pkg/runtime/schema"
  19. "k8s.io/apimachinery/pkg/types"
  20. "k8s.io/client-go/tools/cache"
  21. )
  22. // Accessor is a collection of interfaces from metav1.TypeMeta,
  23. // runtime.Object and metav1.Object that Kubernetes API types
  24. // registered with runtime.Scheme must support.
  25. type Accessor interface {
  26. // Interfaces for metav1.TypeMeta
  27. GroupVersionKind() schema.GroupVersionKind
  28. SetGroupVersionKind(gvk schema.GroupVersionKind)
  29. // Interfaces for runtime.Object
  30. GetObjectKind() schema.ObjectKind
  31. DeepCopyObject() runtime.Object
  32. // Interfaces for metav1.Object
  33. GetNamespace() string
  34. SetNamespace(namespace string)
  35. GetName() string
  36. SetName(name string)
  37. GetGenerateName() string
  38. SetGenerateName(name string)
  39. GetUID() types.UID
  40. SetUID(uid types.UID)
  41. GetResourceVersion() string
  42. SetResourceVersion(version string)
  43. GetGeneration() int64
  44. SetGeneration(generation int64)
  45. GetSelfLink() string
  46. SetSelfLink(selfLink string)
  47. GetCreationTimestamp() metav1.Time
  48. SetCreationTimestamp(timestamp metav1.Time)
  49. GetDeletionTimestamp() *metav1.Time
  50. SetDeletionTimestamp(timestamp *metav1.Time)
  51. GetDeletionGracePeriodSeconds() *int64
  52. SetDeletionGracePeriodSeconds(*int64)
  53. GetLabels() map[string]string
  54. SetLabels(labels map[string]string)
  55. GetAnnotations() map[string]string
  56. SetAnnotations(annotations map[string]string)
  57. GetInitializers() *metav1.Initializers
  58. SetInitializers(initializers *metav1.Initializers)
  59. GetFinalizers() []string
  60. SetFinalizers(finalizers []string)
  61. GetOwnerReferences() []metav1.OwnerReference
  62. SetOwnerReferences([]metav1.OwnerReference)
  63. GetClusterName() string
  64. SetClusterName(clusterName string)
  65. }
  66. // DeletionHandlingAccessor tries to convert given interface into Accessor first;
  67. // and to handle deletion, it try to fetch info from DeletedFinalStateUnknown on failure.
  68. // The name is a reference to cache.DeletionHandlingMetaNamespaceKeyFunc
  69. func DeletionHandlingAccessor(obj interface{}) (Accessor, error) {
  70. accessor, ok := obj.(Accessor)
  71. if !ok {
  72. // To handle obj deletion, try to fetch info from DeletedFinalStateUnknown.
  73. tombstone, ok := obj.(cache.DeletedFinalStateUnknown)
  74. if !ok {
  75. return nil, fmt.Errorf("Couldn't get Accessor from tombstone %#v", obj)
  76. }
  77. accessor, ok = tombstone.Obj.(Accessor)
  78. if !ok {
  79. return nil, fmt.Errorf("The object that Tombstone contained is not of kmeta.Accessor %#v", obj)
  80. }
  81. }
  82. return accessor, nil
  83. }