-
Notifications
You must be signed in to change notification settings - Fork 67
/
rabbitmqbrokerconfig.go
116 lines (94 loc) · 4.13 KB
/
rabbitmqbrokerconfig.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
/*
Copyright 2022 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.
*/
// Code generated by injection-gen. DO NOT EDIT.
package rabbitmqbrokerconfig
import (
context "context"
v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
labels "k8s.io/apimachinery/pkg/labels"
cache "k8s.io/client-go/tools/cache"
apiseventingv1alpha1 "knative.dev/eventing-rabbitmq/pkg/apis/eventing/v1alpha1"
versioned "knative.dev/eventing-rabbitmq/pkg/client/clientset/versioned"
v1alpha1 "knative.dev/eventing-rabbitmq/pkg/client/informers/externalversions/eventing/v1alpha1"
client "knative.dev/eventing-rabbitmq/pkg/client/injection/client"
factory "knative.dev/eventing-rabbitmq/pkg/client/injection/informers/factory"
eventingv1alpha1 "knative.dev/eventing-rabbitmq/pkg/client/listers/eventing/v1alpha1"
controller "knative.dev/pkg/controller"
injection "knative.dev/pkg/injection"
logging "knative.dev/pkg/logging"
)
func init() {
injection.Default.RegisterInformer(withInformer)
injection.Dynamic.RegisterDynamicInformer(withDynamicInformer)
}
// Key is used for associating the Informer inside the context.Context.
type Key struct{}
func withInformer(ctx context.Context) (context.Context, controller.Informer) {
f := factory.Get(ctx)
inf := f.Eventing().V1alpha1().RabbitmqBrokerConfigs()
return context.WithValue(ctx, Key{}, inf), inf.Informer()
}
func withDynamicInformer(ctx context.Context) context.Context {
inf := &wrapper{client: client.Get(ctx), resourceVersion: injection.GetResourceVersion(ctx)}
return context.WithValue(ctx, Key{}, inf)
}
// Get extracts the typed informer from the context.
func Get(ctx context.Context) v1alpha1.RabbitmqBrokerConfigInformer {
untyped := ctx.Value(Key{})
if untyped == nil {
logging.FromContext(ctx).Panic(
"Unable to fetch knative.dev/eventing-rabbitmq/pkg/client/informers/externalversions/eventing/v1alpha1.RabbitmqBrokerConfigInformer from context.")
}
return untyped.(v1alpha1.RabbitmqBrokerConfigInformer)
}
type wrapper struct {
client versioned.Interface
namespace string
resourceVersion string
}
var _ v1alpha1.RabbitmqBrokerConfigInformer = (*wrapper)(nil)
var _ eventingv1alpha1.RabbitmqBrokerConfigLister = (*wrapper)(nil)
func (w *wrapper) Informer() cache.SharedIndexInformer {
return cache.NewSharedIndexInformer(nil, &apiseventingv1alpha1.RabbitmqBrokerConfig{}, 0, nil)
}
func (w *wrapper) Lister() eventingv1alpha1.RabbitmqBrokerConfigLister {
return w
}
func (w *wrapper) RabbitmqBrokerConfigs(namespace string) eventingv1alpha1.RabbitmqBrokerConfigNamespaceLister {
return &wrapper{client: w.client, namespace: namespace, resourceVersion: w.resourceVersion}
}
// SetResourceVersion allows consumers to adjust the minimum resourceVersion
// used by the underlying client. It is not accessible via the standard
// lister interface, but can be accessed through a user-defined interface and
// an implementation check e.g. rvs, ok := foo.(ResourceVersionSetter)
func (w *wrapper) SetResourceVersion(resourceVersion string) {
w.resourceVersion = resourceVersion
}
func (w *wrapper) List(selector labels.Selector) (ret []*apiseventingv1alpha1.RabbitmqBrokerConfig, err error) {
lo, err := w.client.EventingV1alpha1().RabbitmqBrokerConfigs(w.namespace).List(context.TODO(), v1.ListOptions{
LabelSelector: selector.String(),
ResourceVersion: w.resourceVersion,
})
if err != nil {
return nil, err
}
for idx := range lo.Items {
ret = append(ret, &lo.Items[idx])
}
return ret, nil
}
func (w *wrapper) Get(name string) (*apiseventingv1alpha1.RabbitmqBrokerConfig, error) {
return w.client.EventingV1alpha1().RabbitmqBrokerConfigs(w.namespace).Get(context.TODO(), name, v1.GetOptions{
ResourceVersion: w.resourceVersion,
})
}