go-cache/cache.go

560 lines
14 KiB
Go
Raw Normal View History

2012-01-02 18:01:04 +08:00
package cache
import (
2021-12-31 02:33:29 +08:00
"encoding/gob"
"fmt"
2021-12-31 02:33:29 +08:00
"io"
"os"
"runtime"
"sync"
"time"
)
2021-12-31 01:32:04 +08:00
type Item [T comparable] struct {
Object T
2015-12-01 04:02:02 +08:00
Expiration int64
2012-01-29 10:16:59 +08:00
}
// Returns true if the item has expired.
2021-12-31 01:32:04 +08:00
func (item Item[T]) Expired() bool {
2015-12-01 04:02:02 +08:00
if item.Expiration == 0 {
2015-12-01 02:50:17 +08:00
return false
}
return time.Now().UnixNano() > item.Expiration
2012-01-29 10:16:59 +08:00
}
const (
// For use with functions that take an expiration time.
2014-12-22 15:48:52 +08:00
NoExpiration time.Duration = -1
// For use with functions that take an expiration time. Equivalent to
// passing in the same expiration duration as was given to New() or
// NewFrom() when the cache was created (e.g. 5 minutes.)
DefaultExpiration time.Duration = 0
)
2021-12-31 01:32:04 +08:00
type Cache [T comparable] struct {
*cache[T]
2012-06-22 10:56:12 +08:00
// If this is confusing, see the comment at the bottom of New()
2012-01-02 18:01:04 +08:00
}
2021-12-31 01:32:04 +08:00
type cache [T comparable] struct {
defaultExpiration time.Duration
2021-12-31 01:32:04 +08:00
items map[string]Item[T]
2015-11-28 02:03:24 +08:00
mu sync.RWMutex
2021-12-31 01:32:04 +08:00
onEvicted func(string, T)
2012-01-02 18:01:04 +08:00
janitor *janitor
}
// Add an item to the cache, replacing any existing item. If the duration is 0
// (DefaultExpiration), the cache's default expiration time is used. If it is -1
// (NoExpiration), the item never expires.
2021-12-31 01:32:04 +08:00
func (c *cache[T]) Set(k string, x T, d time.Duration) {
// "Inlining" of set
var e int64
if d == DefaultExpiration {
d = c.defaultExpiration
}
if d > 0 {
e = time.Now().Add(d).UnixNano()
}
2015-11-28 02:03:24 +08:00
c.mu.Lock()
2021-12-31 01:32:04 +08:00
c.items[k] = Item[T]{
Object: x,
Expiration: e,
}
// TODO: Calls to mu.Unlock are currently not deferred because defer
// adds ~200 ns (as of go1.)
2015-11-28 02:03:24 +08:00
c.mu.Unlock()
2012-01-04 15:54:01 +08:00
}
2021-12-31 01:32:04 +08:00
func (c *cache[T]) set(k string, x T, d time.Duration) {
2015-12-01 04:02:02 +08:00
var e int64
if d == DefaultExpiration {
d = c.defaultExpiration
2012-01-02 18:01:04 +08:00
}
if d > 0 {
2015-12-01 04:02:02 +08:00
e = time.Now().Add(d).UnixNano()
2012-01-02 18:01:04 +08:00
}
2021-12-31 01:32:04 +08:00
c.items[k] = Item[T]{
Object: x,
2012-01-02 18:01:04 +08:00
Expiration: e,
}
}
// Add an item to the cache, replacing any existing item, using the default
// expiration.
2021-12-31 01:32:04 +08:00
func (c *cache[T]) SetDefault(k string, x T) {
c.Set(k, x, DefaultExpiration)
}
// Add an item to the cache only if an item doesn't already exist for the given
// key, or if the existing item has expired. Returns an error otherwise.
2021-12-31 01:32:04 +08:00
func (c *cache[T]) Add(k string, x T, d time.Duration) error {
2015-11-28 02:03:24 +08:00
c.mu.Lock()
2012-01-04 15:54:01 +08:00
_, found := c.get(k)
2012-01-02 21:04:47 +08:00
if found {
2015-11-28 02:03:24 +08:00
c.mu.Unlock()
return fmt.Errorf("Item %s already exists", k)
2012-01-02 21:04:47 +08:00
}
2012-01-04 15:54:01 +08:00
c.set(k, x, d)
2015-11-28 02:03:24 +08:00
c.mu.Unlock()
2012-01-02 21:04:47 +08:00
return nil
}
// Set a new value for the cache key only if it already exists, and the existing
// item hasn't expired. Returns an error otherwise.
2021-12-31 01:32:04 +08:00
func (c *cache[T]) Replace(k string, x T, d time.Duration) error {
2015-11-28 02:03:24 +08:00
c.mu.Lock()
2012-01-04 15:54:01 +08:00
_, found := c.get(k)
2012-01-02 21:04:47 +08:00
if !found {
2015-11-28 02:03:24 +08:00
c.mu.Unlock()
return fmt.Errorf("Item %s doesn't exist", k)
2012-01-02 21:04:47 +08:00
}
2012-01-04 15:54:01 +08:00
c.set(k, x, d)
2015-11-28 02:03:24 +08:00
c.mu.Unlock()
2012-01-02 21:04:47 +08:00
return nil
}
// Get an item from the cache. Returns the item or nil, and a bool indicating
// whether the key was found.
2021-12-31 01:32:04 +08:00
func (c *cache[T]) Get(k string) (T, bool) {
2015-11-28 02:03:24 +08:00
c.mu.RLock()
2021-12-31 01:32:04 +08:00
var zero T
2015-12-01 04:02:02 +08:00
// "Inlining" of get and Expired
2015-12-01 02:50:17 +08:00
item, found := c.items[k]
2015-12-01 03:47:22 +08:00
if !found {
2015-12-01 02:50:17 +08:00
c.mu.RUnlock()
2021-12-31 01:32:04 +08:00
return zero, false
2015-12-01 02:50:17 +08:00
}
2015-12-01 04:02:02 +08:00
if item.Expiration > 0 {
if time.Now().UnixNano() > item.Expiration {
2015-12-01 03:47:22 +08:00
c.mu.RUnlock()
2021-12-31 01:32:04 +08:00
return zero, false
2015-12-01 03:47:22 +08:00
}
}
2015-11-28 02:03:24 +08:00
c.mu.RUnlock()
2015-12-01 03:47:22 +08:00
return item.Object, true
2012-01-04 15:54:01 +08:00
}
2016-12-08 21:50:49 +08:00
// GetWithExpiration returns an item and its expiration time from the cache.
// It returns the item or nil, the expiration time if one is set (if the item
// never expires a zero value for time.Time is returned), and a bool indicating
// whether the key was found.
2021-12-31 01:32:04 +08:00
func (c *cache[T]) GetWithExpiration(k string) (T, time.Time, bool) {
2016-12-08 21:50:49 +08:00
c.mu.RLock()
2021-12-31 01:32:04 +08:00
var zero T
2016-12-08 21:50:49 +08:00
// "Inlining" of get and Expired
item, found := c.items[k]
if !found {
c.mu.RUnlock()
2021-12-31 01:32:04 +08:00
return zero, time.Time{}, false
2016-12-08 21:50:49 +08:00
}
if item.Expiration > 0 {
if time.Now().UnixNano() > item.Expiration {
c.mu.RUnlock()
2021-12-31 01:32:04 +08:00
return zero, time.Time{}, false
2016-12-08 21:50:49 +08:00
}
// Return the item and the expiration time
c.mu.RUnlock()
return item.Object, time.Unix(0, item.Expiration), true
}
// If expiration <= 0 (i.e. no expiration time set) then return the item
// and a zeroed time.Time
c.mu.RUnlock()
return item.Object, time.Time{}, true
}
2021-12-31 01:32:04 +08:00
func (c *cache[T]) get(k string) (T, bool) {
item, found := c.items[k]
2021-12-31 01:32:04 +08:00
var zero T
2015-12-01 03:47:22 +08:00
if !found {
2021-12-31 01:32:04 +08:00
return zero, false
2012-01-02 18:01:04 +08:00
}
2015-12-01 03:47:22 +08:00
// "Inlining" of Expired
2015-12-01 04:02:02 +08:00
if item.Expiration > 0 {
if time.Now().UnixNano() > item.Expiration {
2021-12-31 01:32:04 +08:00
return zero, false
2015-12-01 03:47:22 +08:00
}
}
2012-01-02 18:01:04 +08:00
return item.Object, true
}
2021-12-31 01:32:04 +08:00
type Incrementable interface {
~int | ~int8 | ~int16 | ~int32 | ~int64 | ~uintptr | ~uint | ~uint8 | ~uint32 | ~uint64 | ~float32 | ~float64
}
2021-12-31 01:32:04 +08:00
// Can't decrement unsigned values
type Decrementable interface {
~int | ~int8 | ~int16 | ~int32 | ~int64 | ~float32 | ~float64
}
2021-12-31 02:33:29 +08:00
func (c *cache[T]) Increment(k string, n int64) (T, error) {
2015-11-28 02:03:24 +08:00
c.mu.Lock()
2021-12-31 02:33:29 +08:00
var zero T
v, found := c.items[k]
if !found || v.Expired() {
2015-11-28 02:03:24 +08:00
c.mu.Unlock()
2021-12-31 02:33:29 +08:00
return zero, fmt.Errorf("Item %s not found", k)
}
// Generics does not (currently?) support type switching
// To workaround, we convert the value into a interface{}, and switching on that
var untypedValue interface{}
untypedValue = v.Object
switch untypedValue.(type) {
case int:
untypedValue = untypedValue.(int) + int(n)
case int8:
untypedValue = untypedValue.(int8) + int8(n)
case int16:
untypedValue = untypedValue.(int16) + int16(n)
case int32:
untypedValue= untypedValue.(int32) + int32(n)
case int64:
untypedValue = untypedValue.(int64) + n
case uint:
untypedValue = untypedValue.(uint) + uint(n)
case uintptr:
untypedValue = untypedValue.(uintptr) + uintptr(n)
case uint8:
untypedValue = untypedValue.(uint8) + uint8(n)
case uint16:
untypedValue = untypedValue.(uint16) + uint16(n)
case uint32:
untypedValue = untypedValue.(uint32) + uint32(n)
case uint64:
untypedValue = untypedValue.(uint64) + uint64(n)
case float32:
untypedValue = untypedValue.(float32) + float32(n)
case float64:
untypedValue = untypedValue.(float64) + float64(n)
default:
c.mu.Unlock()
return zero, fmt.Errorf("The value for %s is not an integer", k)
}
2021-12-31 02:33:29 +08:00
v.Object = untypedValue.(T)
c.items[k] = v
2015-11-28 02:03:24 +08:00
c.mu.Unlock()
2021-12-31 02:33:29 +08:00
return zero, nil
2012-01-02 20:52:43 +08:00
}
2021-12-31 02:33:29 +08:00
func (c *cache[T]) Decrement(k string, n int64) (T, error) {
2015-11-28 02:03:24 +08:00
c.mu.Lock()
2021-12-31 02:33:29 +08:00
var zero T
v, found := c.items[k]
if !found || v.Expired() {
2015-11-28 02:03:24 +08:00
c.mu.Unlock()
2021-12-31 02:33:29 +08:00
return zero, fmt.Errorf("Item %s not found", k)
}
2021-12-31 02:33:29 +08:00
// Generics does not (currently?) support type switching
// To workaround, we convert the value into a interface{}, and switching on that
var untypedValue interface{}
untypedValue = v.Object
switch untypedValue.(type) {
case int:
untypedValue = untypedValue.(int) - int(n)
case int8:
untypedValue = untypedValue.(int8) - int8(n)
case int16:
untypedValue = untypedValue.(int16) - int16(n)
case int32:
untypedValue= untypedValue.(int32) - int32(n)
case int64:
untypedValue = untypedValue.(int64) - n
case uint:
untypedValue = untypedValue.(uint) - uint(n)
case uintptr:
untypedValue = untypedValue.(uintptr) - uintptr(n)
case uint8:
untypedValue = untypedValue.(uint8) - uint8(n)
case uint16:
untypedValue = untypedValue.(uint16) - uint16(n)
case uint32:
untypedValue = untypedValue.(uint32) - uint32(n)
case uint64:
untypedValue = untypedValue.(uint64) - uint64(n)
case float32:
untypedValue = untypedValue.(float32) - float32(n)
case float64:
untypedValue = untypedValue.(float64) - float64(n)
default:
c.mu.Unlock()
return zero, fmt.Errorf("The value for %s is not an integer", k)
}
v.Object = untypedValue.(T)
c.items[k] = v
2015-11-28 02:03:24 +08:00
c.mu.Unlock()
2021-12-31 02:33:29 +08:00
return zero, nil
}
2021-12-31 02:33:29 +08:00
// Delete an item from the cache. Does nothing if the key is not in the cache.
2021-12-31 01:32:04 +08:00
func (c *cache[T]) Delete(k string) {
2015-11-28 02:03:24 +08:00
c.mu.Lock()
2015-11-28 11:00:08 +08:00
v, evicted := c.delete(k)
2015-11-28 02:03:24 +08:00
c.mu.Unlock()
2015-11-28 11:00:08 +08:00
if evicted {
c.onEvicted(k, v)
}
2012-01-04 15:54:01 +08:00
}
2021-12-31 01:32:04 +08:00
func (c *cache[T]) delete(k string) (T, bool) {
var zero T
2015-11-28 11:00:08 +08:00
if c.onEvicted != nil {
if v, found := c.items[k]; found {
delete(c.items, k)
return v.Object, true
}
}
delete(c.items, k)
2021-12-31 01:32:04 +08:00
return zero, false
2015-11-28 11:00:08 +08:00
}
2021-12-31 01:32:04 +08:00
type keyAndValue[T comparable] struct {
2015-11-28 11:00:08 +08:00
key string
2021-12-31 01:32:04 +08:00
value T
2012-01-02 18:01:04 +08:00
}
// Delete all expired items from the cache.
2021-12-31 01:32:04 +08:00
func (c *cache[T]) DeleteExpired() {
var evictedItems []keyAndValue[T]
now := time.Now().UnixNano()
2015-11-28 02:03:24 +08:00
c.mu.Lock()
for k, v := range c.items {
// "Inlining" of expired
2015-12-01 04:02:02 +08:00
if v.Expiration > 0 && now > v.Expiration {
2015-11-28 11:00:08 +08:00
ov, evicted := c.delete(k)
if evicted {
2021-12-31 01:32:04 +08:00
evictedItems = append(evictedItems, keyAndValue[T]{k, ov})
2015-11-28 11:00:08 +08:00
}
2012-01-02 18:01:04 +08:00
}
}
2015-11-28 02:03:24 +08:00
c.mu.Unlock()
2015-11-28 11:00:08 +08:00
for _, v := range evictedItems {
c.onEvicted(v.key, v.value)
}
}
// Sets an (optional) function that is called with the key and value when an
// item is evicted from the cache. (Including when it is deleted manually, but
// not when it is overwritten.) Set to nil to disable.
2021-12-31 01:32:04 +08:00
func (c *cache[T]) OnEvicted(f func(string, T)) {
2015-11-28 11:00:08 +08:00
c.mu.Lock()
c.onEvicted = f
2015-12-01 05:18:49 +08:00
c.mu.Unlock()
2012-01-02 18:01:04 +08:00
}
2021-12-31 02:33:29 +08:00
// Write the cache's items (using Gob) to an io.Writer.
//
// NOTE: This method is deprecated in favor of c.Items() and NewFrom() (see the
// documentation for NewFrom().)
2021-12-31 02:33:29 +08:00
func (c *cache[T]) Save(w io.Writer) (err error) {
2012-01-29 10:16:59 +08:00
enc := gob.NewEncoder(w)
defer func() {
if x := recover(); x != nil {
2012-02-17 07:22:46 +08:00
err = fmt.Errorf("Error registering item types with Gob library")
2012-01-29 10:16:59 +08:00
}
}()
2015-11-28 02:03:24 +08:00
c.mu.RLock()
defer c.mu.RUnlock()
2013-07-01 10:05:40 +08:00
for _, v := range c.items {
2012-01-29 10:16:59 +08:00
gob.Register(v.Object)
}
2013-07-01 10:05:40 +08:00
err = enc.Encode(&c.items)
2012-02-19 08:21:07 +08:00
return
2012-01-29 10:16:59 +08:00
}
// Save the cache's items to the given filename, creating the file if it
2012-01-29 10:34:14 +08:00
// doesn't exist, and overwriting it if it does.
//
// NOTE: This method is deprecated in favor of c.Items() and NewFrom() (see the
// documentation for NewFrom().)
2021-12-31 02:33:29 +08:00
func (c *cache[T]) SaveFile(fname string) error {
2012-01-29 10:16:59 +08:00
fp, err := os.Create(fname)
if err != nil {
return err
}
2012-09-19 07:25:42 +08:00
err = c.Save(fp)
if err != nil {
fp.Close()
return err
}
return fp.Close()
2012-01-29 10:16:59 +08:00
}
// Add (Gob-serialized) cache items from an io.Reader, excluding any items with
// keys that already exist (and haven't expired) in the current cache.
//
// NOTE: This method is deprecated in favor of c.Items() and NewFrom() (see the
// documentation for NewFrom().)
2021-12-31 02:33:29 +08:00
func (c *cache[T]) Load(r io.Reader) error {
2012-01-29 10:16:59 +08:00
dec := gob.NewDecoder(r)
2021-12-31 02:33:29 +08:00
items := map[string]Item[T]{}
2012-01-29 10:16:59 +08:00
err := dec.Decode(&items)
if err == nil {
2015-11-28 02:03:24 +08:00
c.mu.Lock()
defer c.mu.Unlock()
2012-01-29 10:16:59 +08:00
for k, v := range items {
ov, found := c.items[k]
if !found || ov.Expired() {
c.items[k] = v
2012-01-29 10:16:59 +08:00
}
}
}
return err
}
// Load and add cache items from the given filename, excluding any items with
// keys that already exist in the current cache.
//
// NOTE: This method is deprecated in favor of c.Items() and NewFrom() (see the
// documentation for NewFrom().)
2021-12-31 02:33:29 +08:00
func (c *cache[T]) LoadFile(fname string) error {
2012-01-29 10:16:59 +08:00
fp, err := os.Open(fname)
if err != nil {
return err
}
2012-09-19 07:25:42 +08:00
err = c.Load(fp)
if err != nil {
fp.Close()
return err
}
return fp.Close()
2012-01-29 10:16:59 +08:00
}
2021-12-31 02:33:29 +08:00
2012-01-29 10:16:59 +08:00
// Copies all unexpired items in the cache into a new map and returns it.
2021-12-31 01:32:04 +08:00
func (c *cache[T]) Items() map[string]Item[T] {
2015-11-28 02:03:24 +08:00
c.mu.RLock()
defer c.mu.RUnlock()
2021-12-31 01:32:04 +08:00
m := make(map[string]Item[T], len(c.items))
now := time.Now().UnixNano()
for k, v := range c.items {
// "Inlining" of Expired
if v.Expiration > 0 {
if now > v.Expiration {
continue
}
}
m[k] = v
}
return m
}
// Returns the number of items in the cache. This may include items that have
// expired, but have not yet been cleaned up.
2021-12-31 01:32:04 +08:00
func (c *cache[T]) ItemCount() int {
2015-11-28 02:03:24 +08:00
c.mu.RLock()
n := len(c.items)
2015-11-28 02:03:24 +08:00
c.mu.RUnlock()
return n
}
// Delete all items from the cache.
2021-12-31 01:32:04 +08:00
func (c *cache[T]) Flush() {
2015-11-28 02:03:24 +08:00
c.mu.Lock()
2021-12-31 01:32:04 +08:00
c.items = map[string]Item[T]{}
2015-11-28 02:03:24 +08:00
c.mu.Unlock()
2012-01-02 18:01:04 +08:00
}
2012-01-29 10:16:59 +08:00
type janitor struct {
Interval time.Duration
stop chan bool
2012-01-02 18:01:04 +08:00
}
2021-12-31 01:32:04 +08:00
func runJanitor[T comparable](j *janitor, c *cache[T]) {
ticker := time.NewTicker(j.Interval)
2012-01-02 18:01:04 +08:00
for {
select {
case <-ticker.C:
2012-01-02 18:01:04 +08:00
c.DeleteExpired()
case <-j.stop:
ticker.Stop()
2012-01-02 18:01:04 +08:00
return
}
}
}
2021-12-31 01:32:04 +08:00
func stopJanitor[T comparable](c *Cache[T]) {
c.janitor.stop <- true
2012-01-02 18:01:04 +08:00
}
2021-12-31 01:32:04 +08:00
func startJanitor[T comparable](c *cache[T], ci time.Duration) {
j := &janitor{
Interval: ci,
stop: make(chan bool),
}
c.janitor = j
2021-12-31 01:32:04 +08:00
go runJanitor(j, c)
2012-01-02 18:01:04 +08:00
}
2021-12-31 01:32:04 +08:00
func newCache[T comparable](de time.Duration, m map[string]Item[T]) *cache[T] {
2012-01-02 18:01:04 +08:00
if de == 0 {
de = -1
}
2021-12-31 01:32:04 +08:00
c := &cache[T]{
defaultExpiration: de,
items: m,
2012-01-02 18:01:04 +08:00
}
return c
}
2021-12-31 01:32:04 +08:00
func newCacheWithJanitor[T comparable](de time.Duration, ci time.Duration, m map[string]Item[T]) *Cache[T] {
c := newCache(de, m)
// This trick ensures that the janitor goroutine (which--granted it
// was enabled--is running DeleteExpired on c forever) does not keep
// the returned C object from being garbage collected. When it is
// garbage collected, the finalizer stops the janitor goroutine, after
// which c can be collected.
2021-12-31 01:32:04 +08:00
C := &Cache[T]{c}
if ci > 0 {
2021-12-31 01:32:04 +08:00
startJanitor(c, ci)
runtime.SetFinalizer(C, stopJanitor[T])
2012-01-02 18:01:04 +08:00
}
return C
}
2021-12-31 01:32:04 +08:00
// Return a new cache with a given default expiration duration and cleanup
// interval. If the expiration duration is less than one (or NoExpiration),
// the items in the cache never expire (by default), and must be deleted
// manually. If the cleanup interval is less than one, expired items are not
// deleted from the cache before calling c.DeleteExpired().
2021-12-31 01:32:04 +08:00
func New[T comparable](defaultExpiration, cleanupInterval time.Duration) *Cache[T] {
items := make(map[string]Item[T])
return newCacheWithJanitor[T](defaultExpiration, cleanupInterval, items)
}
// Return a new cache with a given default expiration duration and cleanup
// interval. If the expiration duration is less than one (or NoExpiration),
// the items in the cache never expire (by default), and must be deleted
// manually. If the cleanup interval is less than one, expired items are not
// deleted from the cache before calling c.DeleteExpired().
//
2014-12-22 15:39:59 +08:00
// NewFrom() also accepts an items map which will serve as the underlying map
// for the cache. This is useful for starting from a deserialized cache
// (serialized using e.g. gob.Encode() on c.Items()), or passing in e.g.
// make(map[string]Item, 500) to improve startup performance when the cache
// is expected to reach a certain minimum size.
//
// Only the cache's methods synchronize access to this map, so it is not
// recommended to keep any references to the map around after creating a cache.
// If need be, the map can be accessed at a later point using c.Items() (subject
// to the same caveat.)
//
// Note regarding serialization: When using e.g. gob, make sure to
// gob.Register() the individual types stored in the cache before encoding a
// map retrieved with c.Items(), and to register those same types before
// decoding a blob containing an items map.
2021-12-31 01:32:04 +08:00
func NewFrom[T comparable](defaultExpiration, cleanupInterval time.Duration, items map[string]Item[T]) *Cache[T] {
return newCacheWithJanitor(defaultExpiration, cleanupInterval, items)
}