Initial QSfera import
This commit is contained in:
+666
@@ -0,0 +1,666 @@
|
||||
// Copyright 2020 The OPA Authors. All rights reserved.
|
||||
// Use of this source code is governed by an Apache2
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
// Package cache defines the inter-query cache interface that can cache data across queries
|
||||
package cache
|
||||
|
||||
import (
|
||||
"container/list"
|
||||
"context"
|
||||
"fmt"
|
||||
"math"
|
||||
"sync"
|
||||
"time"
|
||||
|
||||
"github.com/open-policy-agent/opa/v1/ast"
|
||||
"github.com/open-policy-agent/opa/v1/util"
|
||||
)
|
||||
|
||||
const (
|
||||
defaultInterQueryBuiltinValueCacheSize = int(0) // unlimited
|
||||
defaultMaxSizeBytes = int64(0) // unlimited
|
||||
defaultForcedEvictionThresholdPercentage = int64(100) // trigger at max_size_bytes
|
||||
defaultStaleEntryEvictionPeriodSeconds = int64(0) // never
|
||||
)
|
||||
|
||||
var interQueryBuiltinValueCacheDefaultConfigs = map[string]*NamedValueCacheConfig{}
|
||||
|
||||
func getDefaultInterQueryBuiltinValueCacheConfig(name string) *NamedValueCacheConfig {
|
||||
return interQueryBuiltinValueCacheDefaultConfigs[name]
|
||||
}
|
||||
|
||||
// RegisterDefaultInterQueryBuiltinValueCacheConfig registers a default configuration for the inter-query value cache;
|
||||
// used when none has been explicitly configured.
|
||||
// To disable a named cache when not configured, pass a config with the disabled value set to true.
|
||||
func RegisterDefaultInterQueryBuiltinValueCacheConfig(name string, config *NamedValueCacheConfig) {
|
||||
interQueryBuiltinValueCacheDefaultConfigs[name] = config
|
||||
}
|
||||
|
||||
// Config represents the configuration for the inter-query builtin cache.
|
||||
type Config struct {
|
||||
InterQueryBuiltinCache InterQueryBuiltinCacheConfig `json:"inter_query_builtin_cache"`
|
||||
InterQueryBuiltinValueCache InterQueryBuiltinValueCacheConfig `json:"inter_query_builtin_value_cache"`
|
||||
}
|
||||
|
||||
// Clone creates a deep copy of Config.
|
||||
func (c *Config) Clone() *Config {
|
||||
if c == nil {
|
||||
return nil
|
||||
}
|
||||
|
||||
return &Config{
|
||||
InterQueryBuiltinCache: *c.InterQueryBuiltinCache.Clone(),
|
||||
InterQueryBuiltinValueCache: *c.InterQueryBuiltinValueCache.Clone(),
|
||||
}
|
||||
}
|
||||
|
||||
// NamedValueCacheConfig represents the configuration of a named cache that built-in functions can utilize.
|
||||
// A default configuration to be used if not explicitly configured can be registered using RegisterDefaultInterQueryBuiltinValueCacheConfig.
|
||||
type NamedValueCacheConfig struct {
|
||||
MaxNumEntries *int `json:"max_num_entries,omitempty"`
|
||||
Disabled *bool `json:"disabled,omitempty"`
|
||||
}
|
||||
|
||||
// Clone creates a deep copy of NamedValueCacheConfig.
|
||||
func (n *NamedValueCacheConfig) Clone() *NamedValueCacheConfig {
|
||||
if n == nil {
|
||||
return nil
|
||||
}
|
||||
|
||||
clone := &NamedValueCacheConfig{}
|
||||
|
||||
if n.MaxNumEntries != nil {
|
||||
maxEntries := *n.MaxNumEntries
|
||||
clone.MaxNumEntries = &maxEntries
|
||||
}
|
||||
if n.Disabled != nil {
|
||||
disabled := *n.Disabled
|
||||
clone.Disabled = &disabled
|
||||
}
|
||||
|
||||
return clone
|
||||
}
|
||||
|
||||
// InterQueryBuiltinValueCacheConfig represents the configuration of the inter-query value cache that built-in functions can utilize.
|
||||
// MaxNumEntries - max number of cache entries
|
||||
type InterQueryBuiltinValueCacheConfig struct {
|
||||
MaxNumEntries *int `json:"max_num_entries,omitempty"`
|
||||
NamedCacheConfigs map[string]*NamedValueCacheConfig `json:"named,omitempty"`
|
||||
}
|
||||
|
||||
// Clone creates a deep copy of InterQueryBuiltinValueCacheConfig.
|
||||
func (i *InterQueryBuiltinValueCacheConfig) Clone() *InterQueryBuiltinValueCacheConfig {
|
||||
if i == nil {
|
||||
return nil
|
||||
}
|
||||
|
||||
clone := &InterQueryBuiltinValueCacheConfig{}
|
||||
|
||||
if i.MaxNumEntries != nil {
|
||||
maxEntries := *i.MaxNumEntries
|
||||
clone.MaxNumEntries = &maxEntries
|
||||
}
|
||||
|
||||
if i.NamedCacheConfigs != nil {
|
||||
clone.NamedCacheConfigs = make(map[string]*NamedValueCacheConfig, len(i.NamedCacheConfigs))
|
||||
for k, v := range i.NamedCacheConfigs {
|
||||
clone.NamedCacheConfigs[k] = v.Clone()
|
||||
}
|
||||
}
|
||||
|
||||
return clone
|
||||
}
|
||||
|
||||
// InterQueryBuiltinCacheConfig represents the configuration of the inter-query cache that built-in functions can utilize.
|
||||
// MaxSizeBytes - max capacity of cache in bytes
|
||||
// ForcedEvictionThresholdPercentage - capacity usage in percentage after which forced FIFO eviction starts
|
||||
// StaleEntryEvictionPeriodSeconds - time period between end of previous and start of new stale entry eviction routine
|
||||
type InterQueryBuiltinCacheConfig struct {
|
||||
MaxSizeBytes *int64 `json:"max_size_bytes,omitempty"`
|
||||
ForcedEvictionThresholdPercentage *int64 `json:"forced_eviction_threshold_percentage,omitempty"`
|
||||
StaleEntryEvictionPeriodSeconds *int64 `json:"stale_entry_eviction_period_seconds,omitempty"`
|
||||
}
|
||||
|
||||
// Clone creates a deep copy of InterQueryBuiltinCacheConfig.
|
||||
func (i *InterQueryBuiltinCacheConfig) Clone() *InterQueryBuiltinCacheConfig {
|
||||
if i == nil {
|
||||
return nil
|
||||
}
|
||||
|
||||
clone := &InterQueryBuiltinCacheConfig{}
|
||||
|
||||
if i.MaxSizeBytes != nil {
|
||||
maxSize := *i.MaxSizeBytes
|
||||
clone.MaxSizeBytes = &maxSize
|
||||
}
|
||||
|
||||
if i.ForcedEvictionThresholdPercentage != nil {
|
||||
threshold := *i.ForcedEvictionThresholdPercentage
|
||||
clone.ForcedEvictionThresholdPercentage = &threshold
|
||||
}
|
||||
|
||||
if i.StaleEntryEvictionPeriodSeconds != nil {
|
||||
period := *i.StaleEntryEvictionPeriodSeconds
|
||||
clone.StaleEntryEvictionPeriodSeconds = &period
|
||||
}
|
||||
|
||||
return clone
|
||||
}
|
||||
|
||||
// ParseCachingConfig returns the config for the inter-query cache.
|
||||
func ParseCachingConfig(raw []byte) (*Config, error) {
|
||||
if raw == nil {
|
||||
maxSize := new(int64)
|
||||
*maxSize = defaultMaxSizeBytes
|
||||
threshold := new(int64)
|
||||
*threshold = defaultForcedEvictionThresholdPercentage
|
||||
period := new(int64)
|
||||
*period = defaultStaleEntryEvictionPeriodSeconds
|
||||
|
||||
maxInterQueryBuiltinValueCacheSize := new(int)
|
||||
*maxInterQueryBuiltinValueCacheSize = defaultInterQueryBuiltinValueCacheSize
|
||||
|
||||
return &Config{
|
||||
InterQueryBuiltinCache: InterQueryBuiltinCacheConfig{
|
||||
MaxSizeBytes: maxSize,
|
||||
ForcedEvictionThresholdPercentage: threshold,
|
||||
StaleEntryEvictionPeriodSeconds: period,
|
||||
},
|
||||
InterQueryBuiltinValueCache: InterQueryBuiltinValueCacheConfig{
|
||||
MaxNumEntries: maxInterQueryBuiltinValueCacheSize,
|
||||
},
|
||||
}, nil
|
||||
}
|
||||
|
||||
var config Config
|
||||
|
||||
if err := util.Unmarshal(raw, &config); err == nil {
|
||||
if err = config.validateAndInjectDefaults(); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
} else {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
return &config, nil
|
||||
}
|
||||
|
||||
func (c *Config) validateAndInjectDefaults() error {
|
||||
if c.InterQueryBuiltinCache.MaxSizeBytes == nil {
|
||||
maxSize := new(int64)
|
||||
*maxSize = defaultMaxSizeBytes
|
||||
c.InterQueryBuiltinCache.MaxSizeBytes = maxSize
|
||||
}
|
||||
if c.InterQueryBuiltinCache.ForcedEvictionThresholdPercentage == nil {
|
||||
threshold := new(int64)
|
||||
*threshold = defaultForcedEvictionThresholdPercentage
|
||||
c.InterQueryBuiltinCache.ForcedEvictionThresholdPercentage = threshold
|
||||
} else {
|
||||
threshold := *c.InterQueryBuiltinCache.ForcedEvictionThresholdPercentage
|
||||
if threshold < 0 || threshold > 100 {
|
||||
return fmt.Errorf("invalid forced_eviction_threshold_percentage %v", threshold)
|
||||
}
|
||||
}
|
||||
if c.InterQueryBuiltinCache.StaleEntryEvictionPeriodSeconds == nil {
|
||||
period := new(int64)
|
||||
*period = defaultStaleEntryEvictionPeriodSeconds
|
||||
c.InterQueryBuiltinCache.StaleEntryEvictionPeriodSeconds = period
|
||||
} else {
|
||||
period := *c.InterQueryBuiltinCache.StaleEntryEvictionPeriodSeconds
|
||||
if period < 0 {
|
||||
return fmt.Errorf("invalid stale_entry_eviction_period_seconds %v", period)
|
||||
}
|
||||
}
|
||||
|
||||
if c.InterQueryBuiltinValueCache.MaxNumEntries == nil {
|
||||
maxSize := new(int)
|
||||
*maxSize = defaultInterQueryBuiltinValueCacheSize
|
||||
c.InterQueryBuiltinValueCache.MaxNumEntries = maxSize
|
||||
} else {
|
||||
numEntries := *c.InterQueryBuiltinValueCache.MaxNumEntries
|
||||
if numEntries < 0 {
|
||||
return fmt.Errorf("invalid max_num_entries %v", numEntries)
|
||||
}
|
||||
}
|
||||
|
||||
for name, namedConfig := range c.InterQueryBuiltinValueCache.NamedCacheConfigs {
|
||||
if namedConfig == nil || (namedConfig.MaxNumEntries == nil && namedConfig.Disabled == nil) {
|
||||
return fmt.Errorf("missing configuration for named cache %v", name)
|
||||
}
|
||||
|
||||
if namedConfig.MaxNumEntries != nil {
|
||||
numEntries := *namedConfig.MaxNumEntries
|
||||
if numEntries < 0 {
|
||||
return fmt.Errorf("invalid max_num_entries %v for named cache %v", numEntries, name)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
// InterQueryCacheValue defines the interface for the data that the inter-query cache holds.
|
||||
type InterQueryCacheValue interface {
|
||||
SizeInBytes() int64
|
||||
Clone() (InterQueryCacheValue, error)
|
||||
}
|
||||
|
||||
// InterQueryCache defines the interface for the inter-query cache.
|
||||
type InterQueryCache interface {
|
||||
Get(key ast.Value) (value InterQueryCacheValue, found bool)
|
||||
Insert(key ast.Value, value InterQueryCacheValue) int
|
||||
InsertWithExpiry(key ast.Value, value InterQueryCacheValue, expiresAt time.Time) int
|
||||
Delete(key ast.Value)
|
||||
UpdateConfig(config *Config)
|
||||
Clone(value InterQueryCacheValue) (InterQueryCacheValue, error)
|
||||
}
|
||||
|
||||
// NewInterQueryCache returns a new inter-query cache.
|
||||
// The cache uses a FIFO eviction policy when it reaches the forced eviction threshold.
|
||||
// Parameters:
|
||||
//
|
||||
// config - to configure the InterQueryCache
|
||||
func NewInterQueryCache(config *Config) InterQueryCache {
|
||||
return newCache(config)
|
||||
}
|
||||
|
||||
// NewInterQueryCacheWithContext returns a new inter-query cache with context.
|
||||
// The cache uses a combination of FIFO eviction policy when it reaches the forced eviction threshold
|
||||
// and a periodic cleanup routine to remove stale entries that exceed their expiration time, if specified.
|
||||
// If configured with a zero stale_entry_eviction_period_seconds value, the stale entry cleanup routine is disabled.
|
||||
//
|
||||
// Parameters:
|
||||
//
|
||||
// ctx - used to control lifecycle of the stale entry cleanup routine
|
||||
// config - to configure the InterQueryCache
|
||||
func NewInterQueryCacheWithContext(ctx context.Context, config *Config) InterQueryCache {
|
||||
iqCache := newCache(config)
|
||||
if iqCache.staleEntryEvictionTimePeriodSeconds() > 0 {
|
||||
go func() {
|
||||
cleanupTicker := time.NewTicker(time.Duration(iqCache.staleEntryEvictionTimePeriodSeconds()) * time.Second)
|
||||
for {
|
||||
select {
|
||||
case <-cleanupTicker.C:
|
||||
// NOTE: We stop the ticker and create a new one here to ensure that applications
|
||||
// get _at least_ staleEntryEvictionTimePeriodSeconds with the cache unlocked;
|
||||
// see https://github.com/open-policy-agent/opa/pull/7188/files#r1855342998
|
||||
cleanupTicker.Stop()
|
||||
iqCache.cleanStaleValues()
|
||||
cleanupTicker = time.NewTicker(time.Duration(iqCache.staleEntryEvictionTimePeriodSeconds()) * time.Second)
|
||||
case <-ctx.Done():
|
||||
cleanupTicker.Stop()
|
||||
return
|
||||
}
|
||||
}
|
||||
}()
|
||||
}
|
||||
|
||||
return iqCache
|
||||
}
|
||||
|
||||
type cacheItem struct {
|
||||
value InterQueryCacheValue
|
||||
expiresAt time.Time
|
||||
keyElement *list.Element
|
||||
}
|
||||
|
||||
type cache struct {
|
||||
items map[string]cacheItem
|
||||
usage int64
|
||||
config *Config
|
||||
l *list.List
|
||||
mtx sync.Mutex
|
||||
}
|
||||
|
||||
func newCache(config *Config) *cache {
|
||||
return &cache{
|
||||
items: map[string]cacheItem{},
|
||||
usage: 0,
|
||||
config: config,
|
||||
l: list.New(),
|
||||
}
|
||||
}
|
||||
|
||||
// InsertWithExpiry inserts a key k into the cache with value v with an expiration time expiresAt.
|
||||
// A zero time value for expiresAt indicates no expiry
|
||||
func (c *cache) InsertWithExpiry(k ast.Value, v InterQueryCacheValue, expiresAt time.Time) (dropped int) {
|
||||
c.mtx.Lock()
|
||||
defer c.mtx.Unlock()
|
||||
return c.unsafeInsert(k, v, expiresAt)
|
||||
}
|
||||
|
||||
// Insert inserts a key k into the cache with value v with no expiration time.
|
||||
func (c *cache) Insert(k ast.Value, v InterQueryCacheValue) (dropped int) {
|
||||
return c.InsertWithExpiry(k, v, time.Time{})
|
||||
}
|
||||
|
||||
// Get returns the value in the cache for k.
|
||||
func (c *cache) Get(k ast.Value) (InterQueryCacheValue, bool) {
|
||||
c.mtx.Lock()
|
||||
defer c.mtx.Unlock()
|
||||
cacheItem, ok := c.unsafeGet(k)
|
||||
|
||||
if ok {
|
||||
return cacheItem.value, true
|
||||
}
|
||||
return nil, false
|
||||
}
|
||||
|
||||
// Delete deletes the value in the cache for k.
|
||||
func (c *cache) Delete(k ast.Value) {
|
||||
c.mtx.Lock()
|
||||
defer c.mtx.Unlock()
|
||||
c.unsafeDelete(k)
|
||||
}
|
||||
|
||||
func (c *cache) UpdateConfig(config *Config) {
|
||||
if config == nil {
|
||||
return
|
||||
}
|
||||
c.mtx.Lock()
|
||||
defer c.mtx.Unlock()
|
||||
c.config = config
|
||||
}
|
||||
|
||||
func (c *cache) Clone(value InterQueryCacheValue) (InterQueryCacheValue, error) {
|
||||
c.mtx.Lock()
|
||||
defer c.mtx.Unlock()
|
||||
return c.unsafeClone(value)
|
||||
}
|
||||
|
||||
func (c *cache) unsafeInsert(k ast.Value, v InterQueryCacheValue, expiresAt time.Time) (dropped int) {
|
||||
size := v.SizeInBytes()
|
||||
limit := int64(math.Ceil(float64(c.forcedEvictionThresholdPercentage())/100.0) * (float64(c.maxSizeBytes())))
|
||||
if limit > 0 {
|
||||
if size > limit {
|
||||
dropped++
|
||||
return dropped
|
||||
}
|
||||
|
||||
for key := c.l.Front(); key != nil && (c.usage+size > limit); key = c.l.Front() {
|
||||
dropKey := key.Value.(ast.Value)
|
||||
c.unsafeDelete(dropKey)
|
||||
dropped++
|
||||
}
|
||||
}
|
||||
|
||||
// By deleting the old value, if it exists, we ensure the usage variable stays correct
|
||||
c.unsafeDelete(k)
|
||||
|
||||
c.items[k.String()] = cacheItem{
|
||||
value: v,
|
||||
expiresAt: expiresAt,
|
||||
keyElement: c.l.PushBack(k),
|
||||
}
|
||||
c.usage += size
|
||||
return dropped
|
||||
}
|
||||
|
||||
func (c *cache) unsafeGet(k ast.Value) (cacheItem, bool) {
|
||||
value, ok := c.items[k.String()]
|
||||
return value, ok
|
||||
}
|
||||
|
||||
func (c *cache) unsafeDelete(k ast.Value) {
|
||||
cacheItem, ok := c.unsafeGet(k)
|
||||
if !ok {
|
||||
return
|
||||
}
|
||||
|
||||
c.usage -= cacheItem.value.SizeInBytes()
|
||||
delete(c.items, k.String())
|
||||
c.l.Remove(cacheItem.keyElement)
|
||||
}
|
||||
|
||||
func (*cache) unsafeClone(value InterQueryCacheValue) (InterQueryCacheValue, error) {
|
||||
return value.Clone()
|
||||
}
|
||||
|
||||
func (c *cache) maxSizeBytes() int64 {
|
||||
if c.config == nil {
|
||||
return defaultMaxSizeBytes
|
||||
}
|
||||
return *c.config.InterQueryBuiltinCache.MaxSizeBytes
|
||||
}
|
||||
|
||||
func (c *cache) forcedEvictionThresholdPercentage() int64 {
|
||||
if c.config == nil {
|
||||
return defaultForcedEvictionThresholdPercentage
|
||||
}
|
||||
return *c.config.InterQueryBuiltinCache.ForcedEvictionThresholdPercentage
|
||||
}
|
||||
|
||||
func (c *cache) staleEntryEvictionTimePeriodSeconds() int64 {
|
||||
if c.config == nil {
|
||||
return defaultStaleEntryEvictionPeriodSeconds
|
||||
}
|
||||
return *c.config.InterQueryBuiltinCache.StaleEntryEvictionPeriodSeconds
|
||||
}
|
||||
|
||||
func (c *cache) cleanStaleValues() (dropped int) {
|
||||
c.mtx.Lock()
|
||||
defer c.mtx.Unlock()
|
||||
for key := c.l.Front(); key != nil; {
|
||||
nextKey := key.Next()
|
||||
// if expiresAt is zero, the item doesn't have an expiry
|
||||
if ea := c.items[(key.Value.(ast.Value)).String()].expiresAt; !ea.IsZero() && ea.Before(time.Now()) {
|
||||
c.unsafeDelete(key.Value.(ast.Value))
|
||||
dropped++
|
||||
}
|
||||
key = nextKey
|
||||
}
|
||||
return dropped
|
||||
}
|
||||
|
||||
type InterQueryValueCacheBucket interface {
|
||||
Get(key ast.Value) (value any, found bool)
|
||||
Insert(key ast.Value, value any) int
|
||||
Delete(key ast.Value)
|
||||
}
|
||||
|
||||
type interQueryValueCacheBucket struct {
|
||||
items util.HasherMap[ast.Value, any]
|
||||
config *NamedValueCacheConfig
|
||||
mtx sync.RWMutex
|
||||
}
|
||||
|
||||
func newItemsMap() *util.HasherMap[ast.Value, any] {
|
||||
return util.NewHasherMap[ast.Value, any](ast.ValueEqual)
|
||||
}
|
||||
|
||||
func (c *interQueryValueCacheBucket) Get(k ast.Value) (any, bool) {
|
||||
c.mtx.RLock()
|
||||
defer c.mtx.RUnlock()
|
||||
return c.items.Get(k)
|
||||
}
|
||||
|
||||
func (c *interQueryValueCacheBucket) Insert(k ast.Value, v any) (dropped int) {
|
||||
c.mtx.Lock()
|
||||
defer c.mtx.Unlock()
|
||||
|
||||
maxEntries := c.maxNumEntries()
|
||||
if maxEntries > 0 {
|
||||
l := c.items.Len()
|
||||
if l >= maxEntries {
|
||||
itemsToRemove := l - maxEntries + 1
|
||||
|
||||
// Delete a (semi-)random key to make room for the new one.
|
||||
c.items.Iter(func(k ast.Value, _ any) bool {
|
||||
c.items.Delete(k)
|
||||
dropped++
|
||||
|
||||
return itemsToRemove == dropped
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
c.items.Put(k, v)
|
||||
return dropped
|
||||
}
|
||||
|
||||
func (c *interQueryValueCacheBucket) Delete(k ast.Value) {
|
||||
c.mtx.Lock()
|
||||
defer c.mtx.Unlock()
|
||||
c.items.Delete(k)
|
||||
}
|
||||
|
||||
func (c *interQueryValueCacheBucket) updateConfig(config *NamedValueCacheConfig) {
|
||||
if config == nil {
|
||||
return
|
||||
}
|
||||
c.mtx.Lock()
|
||||
defer c.mtx.Unlock()
|
||||
c.config = config
|
||||
}
|
||||
|
||||
func (c *interQueryValueCacheBucket) maxNumEntries() int {
|
||||
if c.config == nil {
|
||||
return defaultInterQueryBuiltinValueCacheSize
|
||||
}
|
||||
return *c.config.MaxNumEntries
|
||||
}
|
||||
|
||||
type InterQueryValueCache interface {
|
||||
InterQueryValueCacheBucket
|
||||
GetCache(name string) InterQueryValueCacheBucket
|
||||
UpdateConfig(config *Config)
|
||||
}
|
||||
|
||||
func NewInterQueryValueCache(_ context.Context, config *Config) InterQueryValueCache {
|
||||
var c *InterQueryBuiltinValueCacheConfig
|
||||
var nc *NamedValueCacheConfig
|
||||
if config != nil {
|
||||
c = &config.InterQueryBuiltinValueCache
|
||||
// NOTE: This is a side-effect of reusing the interQueryValueCacheBucket as the global cache.
|
||||
// It's a hidden implementation detail that we can clean up in the future when revisiting the named caches
|
||||
// to automatically apply them to any built-in instead of the global cache.
|
||||
nc = &NamedValueCacheConfig{
|
||||
MaxNumEntries: c.MaxNumEntries,
|
||||
}
|
||||
}
|
||||
|
||||
return &interQueryBuiltinValueCache{
|
||||
globalCache: interQueryValueCacheBucket{
|
||||
items: *newItemsMap(),
|
||||
config: nc,
|
||||
},
|
||||
namedCaches: map[string]*interQueryValueCacheBucket{},
|
||||
config: c,
|
||||
}
|
||||
}
|
||||
|
||||
type interQueryBuiltinValueCache struct {
|
||||
globalCache interQueryValueCacheBucket
|
||||
namedCachesLock sync.RWMutex
|
||||
namedCaches map[string]*interQueryValueCacheBucket
|
||||
config *InterQueryBuiltinValueCacheConfig
|
||||
}
|
||||
|
||||
func (c *interQueryBuiltinValueCache) Get(k ast.Value) (any, bool) {
|
||||
if c == nil {
|
||||
return nil, false
|
||||
}
|
||||
|
||||
return c.globalCache.Get(k)
|
||||
}
|
||||
|
||||
func (c *interQueryBuiltinValueCache) Insert(k ast.Value, v any) int {
|
||||
if c == nil {
|
||||
return 0
|
||||
}
|
||||
|
||||
return c.globalCache.Insert(k, v)
|
||||
}
|
||||
|
||||
func (c *interQueryBuiltinValueCache) Delete(k ast.Value) {
|
||||
if c == nil {
|
||||
return
|
||||
}
|
||||
|
||||
c.globalCache.Delete(k)
|
||||
}
|
||||
|
||||
func (c *interQueryBuiltinValueCache) GetCache(name string) InterQueryValueCacheBucket {
|
||||
if c == nil {
|
||||
return nil
|
||||
}
|
||||
|
||||
if c.namedCaches == nil {
|
||||
return nil
|
||||
}
|
||||
|
||||
c.namedCachesLock.RLock()
|
||||
nc, ok := c.namedCaches[name]
|
||||
c.namedCachesLock.RUnlock()
|
||||
|
||||
if !ok {
|
||||
c.namedCachesLock.Lock()
|
||||
defer c.namedCachesLock.Unlock()
|
||||
|
||||
if nc, ok := c.namedCaches[name]; ok {
|
||||
// Some other goroutine has created the cache while we were waiting for the lock.
|
||||
return nc
|
||||
}
|
||||
|
||||
var config *NamedValueCacheConfig
|
||||
if c.config != nil {
|
||||
config = c.config.NamedCacheConfigs[name]
|
||||
if config == nil {
|
||||
config = getDefaultInterQueryBuiltinValueCacheConfig(name)
|
||||
}
|
||||
}
|
||||
|
||||
if config == nil {
|
||||
// No config, cache disabled.
|
||||
return nil
|
||||
}
|
||||
|
||||
if config.Disabled != nil && *config.Disabled {
|
||||
return nil
|
||||
}
|
||||
|
||||
nc = &interQueryValueCacheBucket{
|
||||
items: *newItemsMap(),
|
||||
config: config,
|
||||
}
|
||||
|
||||
c.namedCaches[name] = nc
|
||||
}
|
||||
|
||||
return nc
|
||||
}
|
||||
|
||||
func (c *interQueryBuiltinValueCache) UpdateConfig(config *Config) {
|
||||
if c == nil {
|
||||
return
|
||||
}
|
||||
|
||||
if config == nil {
|
||||
c.globalCache.updateConfig(nil)
|
||||
} else {
|
||||
|
||||
c.globalCache.updateConfig(&NamedValueCacheConfig{
|
||||
MaxNumEntries: config.InterQueryBuiltinValueCache.MaxNumEntries,
|
||||
})
|
||||
}
|
||||
|
||||
c.namedCachesLock.Lock()
|
||||
defer c.namedCachesLock.Unlock()
|
||||
|
||||
c.config = &config.InterQueryBuiltinValueCache
|
||||
|
||||
for name, nc := range c.namedCaches {
|
||||
// For each named cache: if it has a config, update it; if no config, remove it.
|
||||
namedConfig := c.config.NamedCacheConfigs[name]
|
||||
if namedConfig == nil {
|
||||
namedConfig = getDefaultInterQueryBuiltinValueCacheConfig(name)
|
||||
}
|
||||
|
||||
if namedConfig == nil {
|
||||
delete(c.namedCaches, name)
|
||||
} else {
|
||||
nc.updateConfig(namedConfig)
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user