-
Notifications
You must be signed in to change notification settings - Fork 11
/
flowschema.go
124 lines (103 loc) · 4.74 KB
/
flowschema.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
//go:build !ignore_autogenerated
// +build !ignore_autogenerated
/*
Copyright The KCP 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 kcp code-generator. DO NOT EDIT.
package v1beta1
import (
"context"
"time"
kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache"
kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers"
"github.com/kcp-dev/logicalcluster/v3"
flowcontrolv1beta1 "k8s.io/api/flowcontrol/v1beta1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/watch"
upstreamflowcontrolv1beta1informers "k8s.io/client-go/informers/flowcontrol/v1beta1"
upstreamflowcontrolv1beta1listers "k8s.io/client-go/listers/flowcontrol/v1beta1"
"k8s.io/client-go/tools/cache"
"github.com/kcp-dev/client-go/informers/internalinterfaces"
clientset "github.com/kcp-dev/client-go/kubernetes"
flowcontrolv1beta1listers "github.com/kcp-dev/client-go/listers/flowcontrol/v1beta1"
)
// FlowSchemaClusterInformer provides access to a shared informer and lister for
// FlowSchemas.
type FlowSchemaClusterInformer interface {
Cluster(logicalcluster.Name) upstreamflowcontrolv1beta1informers.FlowSchemaInformer
Informer() kcpcache.ScopeableSharedIndexInformer
Lister() flowcontrolv1beta1listers.FlowSchemaClusterLister
}
type flowSchemaClusterInformer struct {
factory internalinterfaces.SharedInformerFactory
tweakListOptions internalinterfaces.TweakListOptionsFunc
}
// NewFlowSchemaClusterInformer constructs a new informer for FlowSchema type.
// Always prefer using an informer factory to get a shared informer instead of getting an independent
// one. This reduces memory footprint and number of connections to the server.
func NewFlowSchemaClusterInformer(client clientset.ClusterInterface, resyncPeriod time.Duration, indexers cache.Indexers) kcpcache.ScopeableSharedIndexInformer {
return NewFilteredFlowSchemaClusterInformer(client, resyncPeriod, indexers, nil)
}
// NewFilteredFlowSchemaClusterInformer constructs a new informer for FlowSchema type.
// Always prefer using an informer factory to get a shared informer instead of getting an independent
// one. This reduces memory footprint and number of connections to the server.
func NewFilteredFlowSchemaClusterInformer(client clientset.ClusterInterface, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) kcpcache.ScopeableSharedIndexInformer {
return kcpinformers.NewSharedIndexInformer(
&cache.ListWatch{
ListFunc: func(options metav1.ListOptions) (runtime.Object, error) {
if tweakListOptions != nil {
tweakListOptions(&options)
}
return client.FlowcontrolV1beta1().FlowSchemas().List(context.TODO(), options)
},
WatchFunc: func(options metav1.ListOptions) (watch.Interface, error) {
if tweakListOptions != nil {
tweakListOptions(&options)
}
return client.FlowcontrolV1beta1().FlowSchemas().Watch(context.TODO(), options)
},
},
&flowcontrolv1beta1.FlowSchema{},
resyncPeriod,
indexers,
)
}
func (f *flowSchemaClusterInformer) defaultInformer(client clientset.ClusterInterface, resyncPeriod time.Duration) kcpcache.ScopeableSharedIndexInformer {
return NewFilteredFlowSchemaClusterInformer(client, resyncPeriod, cache.Indexers{
kcpcache.ClusterIndexName: kcpcache.ClusterIndexFunc,
},
f.tweakListOptions,
)
}
func (f *flowSchemaClusterInformer) Informer() kcpcache.ScopeableSharedIndexInformer {
return f.factory.InformerFor(&flowcontrolv1beta1.FlowSchema{}, f.defaultInformer)
}
func (f *flowSchemaClusterInformer) Lister() flowcontrolv1beta1listers.FlowSchemaClusterLister {
return flowcontrolv1beta1listers.NewFlowSchemaClusterLister(f.Informer().GetIndexer())
}
func (f *flowSchemaClusterInformer) Cluster(clusterName logicalcluster.Name) upstreamflowcontrolv1beta1informers.FlowSchemaInformer {
return &flowSchemaInformer{
informer: f.Informer().Cluster(clusterName),
lister: f.Lister().Cluster(clusterName),
}
}
type flowSchemaInformer struct {
informer cache.SharedIndexInformer
lister upstreamflowcontrolv1beta1listers.FlowSchemaLister
}
func (f *flowSchemaInformer) Informer() cache.SharedIndexInformer {
return f.informer
}
func (f *flowSchemaInformer) Lister() upstreamflowcontrolv1beta1listers.FlowSchemaLister {
return f.lister
}