1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2024-12-14 11:57:48 +00:00
kyverno/pkg/imageverifycache/client.go
Vishal Choudhary 274e93199b
feat: update ivcache Set() to use Wait() (#8286)
Signed-off-by: Vishal Choudhary <sendtovishalchoudhary@gmail.com>
Co-authored-by: shuting <shuting@nirmata.com>
2023-09-06 13:31:18 +00:00

118 lines
2.3 KiB
Go

package imageverifycache
import (
"context"
"time"
"github.com/dgraph-io/ristretto"
"github.com/go-logr/logr"
kyvernov1 "github.com/kyverno/kyverno/api/kyverno/v1"
)
const (
defaultTTL = 1 * time.Hour
deafultMaxSize = 1000
)
type cache struct {
logger logr.Logger
isCacheEnabled bool
maxSize int64
ttl time.Duration
cache *ristretto.Cache
}
type Option = func(*cache) error
func New(options ...Option) (Client, error) {
cache := &cache{}
for _, opt := range options {
if err := opt(cache); err != nil {
return nil, err
}
}
config := ristretto.Config{
MaxCost: cache.maxSize,
NumCounters: 10 * cache.maxSize,
BufferItems: 64,
}
rcache, err := ristretto.NewCache(&config)
if err != nil {
return nil, err
}
cache.cache = rcache
return cache, nil
}
func DisabledImageVerifyCache() Client {
return &cache{
logger: logr.Discard(),
isCacheEnabled: false,
maxSize: 0,
ttl: 0,
}
}
func WithLogger(l logr.Logger) Option {
return func(c *cache) error {
c.logger = l
return nil
}
}
func WithCacheEnableFlag(b bool) Option {
return func(c *cache) error {
c.isCacheEnabled = b
return nil
}
}
func WithMaxSize(s int64) Option {
return func(c *cache) error {
if s == 0 {
s = deafultMaxSize
}
c.maxSize = s
return nil
}
}
func WithTTLDuration(t time.Duration) Option {
return func(c *cache) error {
if t == 0 {
t = defaultTTL
}
c.ttl = t
return nil
}
}
func generateKey(policy kyvernov1.PolicyInterface, ruleName string, imageRef string) string {
return string(policy.GetUID()) + ";" + policy.GetResourceVersion() + ";" + ruleName + ";" + imageRef
}
func (c *cache) Set(ctx context.Context, policy kyvernov1.PolicyInterface, ruleName string, imageRef string) (bool, error) {
if !c.isCacheEnabled {
return false, nil
}
key := generateKey(policy, ruleName, imageRef)
stored := c.cache.SetWithTTL(key, nil, 1, c.ttl)
c.cache.Wait()
if stored {
return true, nil
}
return false, nil
}
func (c *cache) Get(ctx context.Context, policy kyvernov1.PolicyInterface, ruleName string, imageRef string) (bool, error) {
if !c.isCacheEnabled {
return false, nil
}
key := generateKey(policy, ruleName, imageRef)
_, found := c.cache.Get(key)
if found {
return true, nil
}
return false, nil
}