sm
/
cache
1
0
Fork 0
cache/cache.go

319 lines
7.6 KiB
Go
Raw Normal View History

2012-01-02 02:01:04 -08:00
package cache
import (
2012-01-28 18:16:59 -08:00
"encoding/gob"
"fmt"
2012-01-28 18:16:59 -08:00
"io"
"os"
"reflect"
"runtime"
"sync"
"time"
)
2012-01-28 19:44:34 -08:00
const Version = "1.0"
2012-01-28 18:16:59 -08:00
type Item struct {
Object interface{}
Expiration *time.Time
}
// Returns true if the item has expired.
func (i *Item) Expired() bool {
if i.Expiration == nil {
return false
}
return i.Expiration.Before(time.Now())
}
2012-01-02 02:01:04 -08:00
type Cache struct {
*cache
// If this is confusing, see the comment at the bottom of the New() function
}
type cache struct {
2012-01-04 00:11:27 -08:00
DefaultExpiration time.Duration
2012-01-02 02:01:04 -08:00
Items map[string]*Item
2012-02-16 15:20:20 -08:00
mu sync.Mutex
2012-01-02 02:01:04 -08:00
janitor *janitor
}
2012-01-02 05:04:47 -08:00
// Adds an item to the cache, replacing any existing item. If the duration is 0, the
// cache's default expiration time is used. If it is -1, the item never expires.
2012-01-04 00:11:27 -08:00
func (c *cache) Set(k string, x interface{}, d time.Duration) {
2012-01-02 02:01:04 -08:00
c.mu.Lock()
2012-01-03 23:54:01 -08:00
c.set(k, x, d)
// TODO: Calls to mu.Unlock are currently not deferred because defer
// adds ~200 ns (as of go1.)
c.mu.Unlock()
2012-01-03 23:54:01 -08:00
}
2012-01-04 00:11:27 -08:00
func (c *cache) set(k string, x interface{}, d time.Duration) {
var e *time.Time
2012-01-02 02:01:04 -08:00
if d == 0 {
d = c.DefaultExpiration
}
if d > 0 {
2012-01-04 00:11:27 -08:00
t := time.Now().Add(d)
2012-01-02 02:01:04 -08:00
e = &t
}
2012-01-02 04:52:43 -08:00
c.Items[k] = &Item{
Object: x,
2012-01-02 02:01:04 -08:00
Expiration: e,
}
}
2012-01-02 05:04:47 -08:00
// Adds an item to the cache only if an item doesn't already exist for the given key,
2012-01-04 00:11:27 -08:00
// or if the existing item has expired. Returns an error if not.
func (c *cache) Add(k string, x interface{}, d time.Duration) error {
2012-01-03 23:54:01 -08:00
c.mu.Lock()
_, found := c.get(k)
2012-01-02 05:04:47 -08:00
if found {
c.mu.Unlock()
2012-01-02 05:04:47 -08:00
return fmt.Errorf("Item %s already exists", k)
}
2012-01-03 23:54:01 -08:00
c.set(k, x, d)
c.mu.Unlock()
2012-01-02 05:04:47 -08:00
return nil
}
2012-01-04 00:11:27 -08:00
// Sets a new value for the cache item only if it already exists. Returns an error if
2012-01-02 05:04:47 -08:00
// it does not.
2012-01-04 00:11:27 -08:00
func (c *cache) Replace(k string, x interface{}, d time.Duration) error {
2012-01-03 23:54:01 -08:00
c.mu.Lock()
_, found := c.get(k)
2012-01-02 05:04:47 -08:00
if !found {
c.mu.Unlock()
2012-01-02 05:04:47 -08:00
return fmt.Errorf("Item %s doesn't exist", k)
}
2012-01-03 23:54:01 -08:00
c.set(k, x, d)
c.mu.Unlock()
2012-01-02 05:04:47 -08:00
return nil
}
2012-01-03 03:03:43 -08:00
// Gets an item from the cache. Returns the item or nil, and a bool indicating whether
// the given key was found in the cache.
2012-01-02 04:52:43 -08:00
func (c *cache) Get(k string) (interface{}, bool) {
2012-01-02 02:01:04 -08:00
c.mu.Lock()
x, found := c.get(k)
c.mu.Unlock()
return x, found
2012-01-03 23:54:01 -08:00
}
func (c *cache) get(k string) (interface{}, bool) {
2012-01-02 04:52:43 -08:00
item, found := c.Items[k]
2012-01-02 02:01:04 -08:00
if !found {
return nil, false
}
if item.Expired() {
2012-01-03 23:54:01 -08:00
c.delete(k)
2012-01-02 02:01:04 -08:00
return nil, false
}
return item.Object, true
}
2012-01-02 04:52:43 -08:00
// Increment an item of type int, int8, int16, int32, int64, uintptr, uint, uint8,
2012-01-04 00:11:27 -08:00
// uint32, uint64, float32 or float64 by n. Returns an error if the item's value is
2012-01-02 04:52:43 -08:00
// not an integer, if it was not found, or if it is not possible to increment it by
2012-01-03 03:03:43 -08:00
// n. Passing a negative number will cause the item to be decremented.
2012-01-04 00:11:27 -08:00
func (c *cache) IncrementFloat(k string, n float64) error {
2012-01-02 04:52:43 -08:00
c.mu.Lock()
v, found := c.Items[k]
if !found || v.Expired() {
c.mu.Unlock()
2012-01-02 05:44:50 -08:00
return fmt.Errorf("Item not found")
2012-01-02 04:52:43 -08:00
}
t := reflect.TypeOf(v.Object)
switch t.Kind() {
default:
c.mu.Unlock()
2012-01-02 04:52:43 -08:00
return fmt.Errorf("The value of %s is not an integer", k)
case reflect.Uint:
v.Object = v.Object.(uint) + uint(n)
case reflect.Uintptr:
v.Object = v.Object.(uintptr) + uintptr(n)
case reflect.Uint8:
v.Object = v.Object.(uint8) + uint8(n)
case reflect.Uint16:
v.Object = v.Object.(uint16) + uint16(n)
case reflect.Uint32:
v.Object = v.Object.(uint32) + uint32(n)
case reflect.Uint64:
v.Object = v.Object.(uint64) + uint64(n)
case reflect.Int:
v.Object = v.Object.(int) + int(n)
case reflect.Int8:
v.Object = v.Object.(int8) + int8(n)
case reflect.Int16:
v.Object = v.Object.(int16) + int16(n)
case reflect.Int32:
v.Object = v.Object.(int32) + int32(n)
case reflect.Int64:
v.Object = v.Object.(int64) + int64(n)
case reflect.Float32:
v.Object = v.Object.(float32) + float32(n)
case reflect.Float64:
v.Object = v.Object.(float64) + n
}
c.mu.Unlock()
2012-01-02 04:52:43 -08:00
return nil
}
// Increment an item of type int, int8, int16, int32, int64, uintptr, uint, uint8,
2012-01-04 00:11:27 -08:00
// uint32, or uint64, float32 or float64 by n. Returns an error if the item's value
2012-01-02 04:52:43 -08:00
// is not an integer, if it was not found, or if it is not possible to increment it
2012-01-03 03:03:43 -08:00
// by n. Passing a negative number will cause the item to be decremented.
2012-01-04 00:11:27 -08:00
func (c *cache) Increment(k string, n int64) error {
2012-01-02 04:52:43 -08:00
return c.IncrementFloat(k, float64(n))
}
// Decrement an item of type int, int8, int16, int32, int64, uintptr, uint, uint8,
2012-01-04 00:11:27 -08:00
// uint32, or uint64, float32 or float64 by n. Returns an error if the item's value
2012-01-02 04:52:43 -08:00
// is not an integer, if it was not found, or if it is not possible to decrement it
// by n.
2012-01-04 00:11:27 -08:00
func (c *cache) Decrement(k string, n int64) error {
2012-01-02 04:52:43 -08:00
return c.Increment(k, n*-1)
}
2012-01-02 02:01:04 -08:00
// Deletes an item from the cache. Does nothing if the item does not exist in the cache.
2012-01-02 04:52:43 -08:00
func (c *cache) Delete(k string) {
2012-01-02 02:01:04 -08:00
c.mu.Lock()
2012-01-03 23:54:01 -08:00
c.delete(k)
c.mu.Unlock()
2012-01-03 23:54:01 -08:00
}
func (c *cache) delete(k string) {
2012-01-04 00:11:27 -08:00
delete(c.Items, k)
2012-01-02 02:01:04 -08:00
}
// Deletes all expired items from the cache.
func (c *cache) DeleteExpired() {
c.mu.Lock()
for k, v := range c.Items {
if v.Expired() {
2012-01-03 23:54:01 -08:00
c.delete(k)
2012-01-02 02:01:04 -08:00
}
}
c.mu.Unlock()
2012-01-02 02:01:04 -08:00
}
2012-01-28 18:34:14 -08:00
// Writes the cache's items (using Gob) to an io.Writer.
2012-02-18 16:21:07 -08:00
func (c *cache) Save(w io.Writer) (err error) {
2012-01-28 18:16:59 -08:00
enc := gob.NewEncoder(w)
defer func() {
if x := recover(); x != nil {
2012-02-16 15:22:46 -08:00
err = fmt.Errorf("Error registering item types with Gob library")
2012-01-28 18:16:59 -08:00
}
}()
for _, v := range c.Items {
gob.Register(v.Object)
}
2012-02-16 15:22:46 -08:00
err = enc.Encode(&c.Items)
2012-02-18 16:21:07 -08:00
return
2012-01-28 18:16:59 -08:00
}
// Saves the cache's items to the given filename, creating the file if it
2012-01-28 18:34:14 -08:00
// doesn't exist, and overwriting it if it does.
2012-01-28 18:16:59 -08:00
func (c *cache) SaveFile(fname string) error {
fp, err := os.Create(fname)
if err != nil {
return err
}
return c.Save(fp)
}
2012-01-28 18:34:14 -08:00
// Adds (Gob-serialized) cache items from an io.Reader, excluding any items that
// already exist in the current cache.
2012-01-28 18:16:59 -08:00
func (c *cache) Load(r io.Reader) error {
dec := gob.NewDecoder(r)
items := map[string]*Item{}
err := dec.Decode(&items)
if err == nil {
for k, v := range items {
_, found := c.Items[k]
if !found {
c.Items[k] = v
}
}
}
return err
}
2012-01-28 18:27:01 -08:00
// Loads and adds cache items from the given filename, excluding any items that
2012-01-28 18:34:14 -08:00
// already exist in the current cache.
2012-01-28 18:16:59 -08:00
func (c *cache) LoadFile(fname string) error {
fp, err := os.Open(fname)
if err != nil {
return err
}
return c.Load(fp)
}
2012-01-03 03:03:43 -08:00
// Deletes all items from the cache.
func (c *cache) Flush() {
2012-01-02 02:01:04 -08:00
c.mu.Lock()
c.Items = map[string]*Item{}
c.mu.Unlock()
2012-01-02 02:01:04 -08:00
}
2012-01-28 18:16:59 -08:00
type janitor struct {
Interval time.Duration
stop chan bool
2012-01-02 02:01:04 -08:00
}
func (j *janitor) Run(c *cache) {
j.stop = make(chan bool)
tick := time.Tick(j.Interval)
for {
select {
case <-tick:
c.DeleteExpired()
case <-j.stop:
return
}
}
}
func (j *janitor) Stop() {
j.stop <- true
}
func stopJanitor(c *Cache) {
c.janitor.Stop()
}
// Returns a new cache with a given default expiration duration and cleanup
// interval. If the expiration duration is less than 1, 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 their next lookup or before calling DeleteExpired.
2012-01-04 00:11:27 -08:00
func New(de, ci time.Duration) *Cache {
2012-01-02 02:01:04 -08:00
if de == 0 {
de = -1
}
c := &cache{
DefaultExpiration: de,
Items: map[string]*Item{},
2012-02-16 15:20:20 -08:00
mu: sync.Mutex{},
2012-01-02 02:01:04 -08:00
}
if ci > 0 {
j := &janitor{
Interval: ci,
}
c.janitor = j
go j.Run(c)
}
// 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.
2012-01-02 02:01:04 -08:00
C := &Cache{c}
if ci > 0 {
runtime.SetFinalizer(C, stopJanitor)
}
return C
}