mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-14 10:20:20 +00:00
82 lines
2.1 KiB
Go
82 lines
2.1 KiB
Go
/*
|
|
Copyright 2016 The Kubernetes 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 generic
|
|
|
|
import (
|
|
"sync"
|
|
|
|
"k8s.io/apimachinery/pkg/runtime/schema"
|
|
"k8s.io/kubernetes/pkg/quota"
|
|
)
|
|
|
|
// implements a basic registry
|
|
type simpleRegistry struct {
|
|
lock sync.RWMutex
|
|
// evaluators tracked by the registry
|
|
evaluators map[schema.GroupResource]quota.Evaluator
|
|
}
|
|
|
|
// NewRegistry creates a simple registry with initial list of evaluators
|
|
func NewRegistry(evaluators []quota.Evaluator) quota.Registry {
|
|
return &simpleRegistry{
|
|
evaluators: evaluatorsByGroupResource(evaluators),
|
|
}
|
|
}
|
|
|
|
func (r *simpleRegistry) Add(e quota.Evaluator) {
|
|
r.lock.Lock()
|
|
defer r.lock.Unlock()
|
|
r.evaluators[e.GroupResource()] = e
|
|
}
|
|
|
|
func (r *simpleRegistry) Remove(e quota.Evaluator) {
|
|
r.lock.Lock()
|
|
defer r.lock.Unlock()
|
|
delete(r.evaluators, e.GroupResource())
|
|
}
|
|
|
|
func (r *simpleRegistry) Get(gr schema.GroupResource) quota.Evaluator {
|
|
r.lock.RLock()
|
|
defer r.lock.RUnlock()
|
|
return r.evaluators[gr]
|
|
}
|
|
|
|
func (r *simpleRegistry) List() []quota.Evaluator {
|
|
r.lock.RLock()
|
|
defer r.lock.RUnlock()
|
|
|
|
return evaluatorsList(r.evaluators)
|
|
}
|
|
|
|
// evaluatorsByGroupResource converts a list of evaluators to a map by group resource.
|
|
func evaluatorsByGroupResource(items []quota.Evaluator) map[schema.GroupResource]quota.Evaluator {
|
|
result := map[schema.GroupResource]quota.Evaluator{}
|
|
for _, item := range items {
|
|
result[item.GroupResource()] = item
|
|
}
|
|
return result
|
|
}
|
|
|
|
// evaluatorsList converts a map of evaluators to list
|
|
func evaluatorsList(input map[schema.GroupResource]quota.Evaluator) []quota.Evaluator {
|
|
var result []quota.Evaluator
|
|
for _, item := range input {
|
|
result = append(result, item)
|
|
}
|
|
return result
|
|
}
|