grpc-xds/control-plane-go/pkg/applications/application_cache.go (48 lines of code) (raw):
// Copyright 2023 Google LLC
//
// 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 applications
import (
"fmt"
"slices"
"sync"
)
// The ApplicationCache key is `<kubecontext>/<namespace>`.
type ApplicationCache struct {
mu sync.RWMutex
cache map[string][]Application
}
func NewApplicationCache() *ApplicationCache {
return &ApplicationCache{
cache: map[string][]Application{},
}
}
// Put returns true iff the update changed the cache.
// Use the return value to avoid sending xDS updates to clients when nothing has changed.
func (c *ApplicationCache) Put(kubecontextName string, namespace string, apps []Application) bool {
if apps == nil {
apps = []Application{}
}
slices.SortFunc(apps, func(a Application, b Application) int {
return a.Compare(b)
})
c.mu.Lock()
defer c.mu.Unlock()
key := key(kubecontextName, namespace)
oldApps := c.cache[key]
c.cache[key] = apps
return !slices.EqualFunc(oldApps, apps, func(a Application, b Application) bool {
return a.Equal(b)
})
}
func (c *ApplicationCache) Get(kubecontextName string, namespace string) []Application {
c.mu.RLock()
defer c.mu.RUnlock()
return c.cache[key(kubecontextName, namespace)]
}
func (c *ApplicationCache) GetAll() []Application {
apps := []Application{}
c.mu.RLock()
defer c.mu.RUnlock()
for _, appsForKey := range c.cache {
apps = append(apps, appsForKey...)
}
return apps
}
func key(kubecontextName string, namespace string) string {
return fmt.Sprintf("%s/%s", kubecontextName, namespace)
}