-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Ivan.Makeev <[email protected]>
- Loading branch information
Showing
4 changed files
with
207 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
131 changes: 131 additions & 0 deletions
131
images/storage-network-controller/src/pkg/cache/ttl_cache.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,131 @@ | ||
/* | ||
Copyright 2024 Flant JSC | ||
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 cache | ||
|
||
import ( | ||
"sync" | ||
"time" | ||
) | ||
|
||
// item represents a cache item with a value and an expiration time. | ||
type item[V any] struct { | ||
value V | ||
expiry time.Time | ||
} | ||
|
||
// isExpired checks if the cache item has expired. | ||
func (i item[V]) isExpired() bool { | ||
return time.Now().After(i.expiry) | ||
} | ||
|
||
// TTLCache is a generic cache implementation with support for time-to-live | ||
// (TTL) expiration. | ||
type TTLCache[K comparable, V any] struct { | ||
items map[K]item[V] // The map storing cache items. | ||
mu sync.Mutex // Mutex for controlling concurrent access to the cache. | ||
} | ||
|
||
// NewTTL creates a new TTLCache instance and starts a goroutine to periodically | ||
// remove expired items every 5 seconds. | ||
func NewTTL[K comparable, V any]() *TTLCache[K, V] { | ||
c := &TTLCache[K, V]{ | ||
items: make(map[K]item[V]), | ||
} | ||
|
||
go func() { | ||
for range time.Tick(5 * time.Second) { | ||
c.mu.Lock() | ||
|
||
// Iterate over the cache items and delete expired ones. | ||
for key, item := range c.items { | ||
if item.isExpired() { | ||
delete(c.items, key) | ||
} | ||
} | ||
|
||
c.mu.Unlock() | ||
} | ||
}() | ||
|
||
return c | ||
} | ||
|
||
// Set adds a new item to the cache with the specified key, value, and | ||
// time-to-live (TTL). | ||
func (c *TTLCache[K, V]) Set(key K, value V, ttl time.Duration) { | ||
c.mu.Lock() | ||
defer c.mu.Unlock() | ||
|
||
c.items[key] = item[V]{ | ||
value: value, | ||
expiry: time.Now().Add(ttl), | ||
} | ||
} | ||
|
||
// Get retrieves the value associated with the given key from the cache. | ||
func (c *TTLCache[K, V]) Get(key K) (V, bool) { | ||
c.mu.Lock() | ||
defer c.mu.Unlock() | ||
|
||
item, found := c.items[key] | ||
if !found { | ||
// If the key is not found, return the zero value for V and false. | ||
return item.value, false | ||
} | ||
|
||
if item.isExpired() { | ||
// If the item has expired, remove it from the cache and return the | ||
// value and false. | ||
delete(c.items, key) | ||
return item.value, false | ||
} | ||
|
||
// Otherwise return the value and true. | ||
return item.value, true | ||
} | ||
|
||
// Remove removes the item with the specified key from the cache. | ||
func (c *TTLCache[K, V]) Remove(key K) { | ||
c.mu.Lock() | ||
defer c.mu.Unlock() | ||
|
||
// Delete the item with the given key from the cache. | ||
delete(c.items, key) | ||
} | ||
|
||
// Pop removes and returns the item with the specified key from the cache. | ||
func (c *TTLCache[K, V]) Pop(key K) (V, bool) { | ||
c.mu.Lock() | ||
defer c.mu.Unlock() | ||
|
||
item, found := c.items[key] | ||
if !found { | ||
// If the key is not found, return the zero value for V and false. | ||
return item.value, false | ||
} | ||
|
||
// If the key is found, delete the item from the cache. | ||
delete(c.items, key) | ||
|
||
if item.isExpired() { | ||
// If the item has expired, return the value and false. | ||
return item.value, false | ||
} | ||
|
||
// Otherwise return the value and true. | ||
return item.value, true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters