| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466 |
- package cache
- import (
- "encoding/gob"
- "fmt"
- "io"
- "os"
- "runtime"
- "sync"
- "time"
- )
- type Item struct {
- Object interface{}
- Expiration int64
- Accessed int64
- }
- // Returns true if the item has expired.
- func (item Item) Expired() bool {
- if item.Expiration == 0 {
- return false
- }
- return time.Now().UnixNano() > item.Expiration
- }
- // Return the time at which this item was last accessed.
- func (item Item) LastAccessed() time.Time {
- return time.Unix(0, item.Accessed)
- }
- const (
- // For use with functions that take an expiration time.
- 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
- )
- type Cache struct {
- *cache
- // If this is confusing, see the comment at the bottom of New()
- }
- type cache struct {
- defaultExpiration time.Duration
- items map[string]Item
- mu sync.RWMutex
- onEvicted func(string, interface{})
- janitor *janitor
- maxItems int
- }
- // 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.
- func (c *cache) Set(k string, x interface{}, d time.Duration) {
- // "Inlining" of set
- var (
- now time.Time
- e int64
- )
- if d == DefaultExpiration {
- d = c.defaultExpiration
- }
- if d > 0 {
- now = time.Now()
- e = now.Add(d).UnixNano()
- }
- if c.maxItems > 0 {
- if d <= 0 {
- // d <= 0 means we didn't set now above
- now = time.Now()
- }
- c.mu.Lock()
- c.items[k] = Item{
- Object: x,
- Expiration: e,
- Accessed: now.UnixNano(),
- }
- // TODO: Calls to mu.Unlock are currently not deferred because
- // defer adds ~200 ns (as of go1.)
- c.mu.Unlock()
- } else {
- c.mu.Lock()
- c.items[k] = Item{
- Object: x,
- Expiration: e,
- }
- c.mu.Unlock()
- }
- }
- func (c *cache) set(k string, x interface{}, d time.Duration) {
- var (
- now time.Time
- e int64
- )
- if d == DefaultExpiration {
- d = c.defaultExpiration
- }
- if d > 0 {
- now = time.Now()
- e = now.Add(d).UnixNano()
- }
- if c.maxItems > 0 {
- if d <= 0 {
- // d <= 0 means we didn't set now above
- now = time.Now()
- }
- c.items[k] = Item{
- Object: x,
- Expiration: e,
- Accessed: now.UnixNano(),
- }
- } else {
- c.items[k] = Item{
- Object: x,
- Expiration: e,
- }
- }
- }
- // Add an item to the cache, replacing any existing item, using the default
- // expiration.
- func (c *cache) SetDefault(k string, x interface{}) {
- 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.
- func (c *cache) Add(k string, x interface{}, d time.Duration) error {
- c.mu.Lock()
- _, found := c.get(k)
- if found {
- c.mu.Unlock()
- return fmt.Errorf("Item %s already exists", k)
- }
- c.set(k, x, d)
- c.mu.Unlock()
- 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.
- func (c *cache) Replace(k string, x interface{}, d time.Duration) error {
- c.mu.Lock()
- _, found := c.get(k)
- if !found {
- c.mu.Unlock()
- return fmt.Errorf("Item %s doesn't exist", k)
- }
- c.set(k, x, d)
- c.mu.Unlock()
- return nil
- }
- // Get an item from the cache. Returns the item or nil, and a bool indicating
- // whether the key was found.
- func (c *cache) Get(k string) (interface{}, bool) {
- if c.maxItems > 0 {
- // LRU enabled; Get implies write
- c.mu.Lock()
- } else {
- // LRU not enabled; Get is read-only
- c.mu.RLock()
- }
- // "Inlining" of get and Expired
- item, found := c.items[k]
- if !found {
- if c.maxItems > 0 {
- c.mu.Unlock()
- } else {
- c.mu.RUnlock()
- }
- return nil, false
- }
- var now int64
- if item.Expiration > 0 {
- now = time.Now().UnixNano()
- if now > item.Expiration {
- if c.maxItems > 0 {
- c.mu.Unlock()
- } else {
- c.mu.RUnlock()
- }
- return nil, false
- }
- }
- if c.maxItems > 0 {
- if now == 0 {
- now = time.Now().UnixNano()
- }
- item.Accessed = now
- c.items[k] = item
- c.mu.Unlock()
- } else {
- c.mu.RUnlock()
- }
- return item.Object, true
- }
- // If LRU functionality is being used (and get implies updating item.Accessed,)
- // this function must be write-locked.
- func (c *cache) get(k string) (interface{}, bool) {
- item, found := c.items[k]
- if !found {
- return nil, false
- }
- // "Inlining" of Expired
- var now int64
- if item.Expiration > 0 {
- now = time.Now().UnixNano()
- if now > item.Expiration {
- return nil, false
- }
- }
- if c.maxItems > 0 {
- if now == 0 {
- now = time.Now().UnixNano()
- }
- item.Accessed = now
- c.items[k] = item
- }
- return item.Object, true
- }
- // 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.
- func (c *cache) GetWithExpiration(k string) (interface{}, time.Time, bool) {
- if c.maxItems > 0 {
- // LRU enabled; GetWithExpiration implies write
- c.mu.Lock()
- } else {
- // LRU not enabled; GetWithExpiration is read-only
- c.mu.RLock()
- }
- // "Inlining" of get and Expired
- item, found := c.items[k]
- if !found {
- if c.maxItems > 0 {
- c.mu.Unlock()
- } else {
- c.mu.RUnlock()
- }
- return nil, time.Time{}, false
- }
- var now int64
- if item.Expiration > 0 {
- now = time.Now().UnixNano()
- if now > item.Expiration {
- if c.maxItems > 0 {
- c.mu.Unlock()
- } else {
- c.mu.RUnlock()
- }
- return nil, time.Time{}, false
- }
- if c.maxItems > 0 {
- if now == 0 {
- now = time.Now().UnixNano()
- }
- item.Accessed = now
- c.items[k] = item
- c.mu.Unlock()
- } else {
- c.mu.RUnlock()
- }
- return item.Object, time.Unix(0, item.Expiration), true
- }
- if c.maxItems > 0 {
- if now == 0 {
- now = time.Now().UnixNano()
- }
- item.Accessed = now
- c.items[k] = item
- c.mu.Unlock()
- } else {
- c.mu.RUnlock()
- }
- // If expiration <= 0 (i.e. no expiration time set) then return the item
- // and a zeroed time.Time
- return item.Object, time.Time{}, true
- }
- // Increment an item of type int, int8, int16, int32, int64, uintptr, uint,
- // uint8, uint32, or uint64, float32 or float64 by n. Returns an error if the
- // item's value is not an integer, if it was not found, or if it is not
- // possible to increment it by n. To retrieve the incremented value, use one
- // of the specialized methods, e.g. IncrementInt64.
- func (c *cache) Increment(k string, n int64) error {
- c.mu.Lock()
- v, found := c.items[k]
- if !found || v.Expired() {
- c.mu.Unlock()
- return fmt.Errorf("Item %s not found", k)
- }
- if c.maxItems > 0 {
- v.Accessed = time.Now().UnixNano()
- }
- switch v.Object.(type) {
- case int:
- v.Object = v.Object.(int) + int(n)
- case int8:
- v.Object = v.Object.(int8) + int8(n)
- case int16:
- v.Object = v.Object.(int16) + int16(n)
- case int32:
- v.Object = v.Object.(int32) + int32(n)
- case int64:
- v.Object = v.Object.(int64) + n
- case uint:
- v.Object = v.Object.(uint) + uint(n)
- case uintptr:
- v.Object = v.Object.(uintptr) + uintptr(n)
- case uint8:
- v.Object = v.Object.(uint8) + uint8(n)
- case uint16:
- v.Object = v.Object.(uint16) + uint16(n)
- case uint32:
- v.Object = v.Object.(uint32) + uint32(n)
- case uint64:
- v.Object = v.Object.(uint64) + uint64(n)
- case float32:
- v.Object = v.Object.(float32) + float32(n)
- case float64:
- v.Object = v.Object.(float64) + float64(n)
- default:
- c.mu.Unlock()
- return fmt.Errorf("The value for %s is not an integer", k)
- }
- c.items[k] = v
- c.mu.Unlock()
- return nil
- }
- // Increment an item of type float32 or float64 by n. Returns an error if the
- // item's value is not floating point, if it was not found, or if it is not
- // possible to increment it by n. Pass a negative number to decrement the
- // value. To retrieve the incremented value, use one of the specialized methods,
- // e.g. IncrementFloat64.
- func (c *cache) IncrementFloat(k string, n float64) error {
- c.mu.Lock()
- v, found := c.items[k]
- if !found || v.Expired() {
- c.mu.Unlock()
- return fmt.Errorf("Item %s not found", k)
- }
- if c.maxItems > 0 {
- v.Accessed = time.Now().UnixNano()
- }
- switch v.Object.(type) {
- case float32:
- v.Object = v.Object.(float32) + float32(n)
- case float64:
- v.Object = v.Object.(float64) + n
- default:
- c.mu.Unlock()
- return fmt.Errorf("The value for %s does not have type float32 or float64", k)
- }
- c.items[k] = v
- c.mu.Unlock()
- return nil
- }
- // Increment an item of type int by n. Returns an error if the item's value is
- // not an int, or if it was not found. If there is no error, the incremented
- // value is returned.
- func (c *cache) IncrementInt(k string, n int) (int, error) {
- c.mu.Lock()
- v, found := c.items[k]
- if !found || v.Expired() {
- c.mu.Unlock()
- return 0, fmt.Errorf("Item %s not found", k)
- }
- if c.maxItems > 0 {
- v.Accessed = time.Now().UnixNano()
- }
- rv, ok := v.Object.(int)
- if !ok {
- c.mu.Unlock()
- return 0, fmt.Errorf("The value for %s is not an int", k)
- }
- nv := rv + n
- v.Object = nv
- c.items[k] = v
- c.mu.Unlock()
- return nv, nil
- }
- // Increment an item of type int8 by n. Returns an error if the item's value is
- // not an int8, or if it was not found. If there is no error, the incremented
- // value is returned.
- func (c *cache) IncrementInt8(k string, n int8) (int8, error) {
- c.mu.Lock()
- v, found := c.items[k]
- if !found || v.Expired() {
- c.mu.Unlock()
- return 0, fmt.Errorf("Item %s not found", k)
- }
- if c.maxItems > 0 {
- v.Accessed = time.Now().UnixNano()
- }
- rv, ok := v.Object.(int8)
- if !ok {
- c.mu.Unlock()
- return 0, fmt.Errorf("The value for %s is not an int8", k)
- }
- nv := rv + n
- v.Object = nv
- c.items[k] = v
- c.mu.Unlock()
- return nv, nil
- }
- // Increment an item of type int16 by n. Returns an error if the item's value is
- // not an int16, or if it was not found. If there is no error, the incremented
- // value is returned.
- func (c *cache) IncrementInt16(k string, n int16) (int16, error) {
- c.mu.Lock()
- v, found := c.items[k]
- if !found || v.Expired() {
- c.mu.Unlock()
- return 0, fmt.Errorf("Item %s not found", k)
- }
- if c.maxItems > 0 {
- v.Accessed = time.Now().UnixNano()
- }
- rv, ok := v.Object.(int16)
- if !ok {
- c.mu.Unlock()
- return 0, fmt.Errorf("The value for %s is not an int16", k)
- }
- nv := rv + n
- v.Object = nv
- c.items[k] = v
- c.mu.Unlock()
- return nv, nil
- }
- // Increment an item of type int32 by n. Returns an error if the item's value is
- // not an int32, or if it was not found. If there is no error, the incremented
- // value is returned.
- func (c *cache) IncrementInt32(k string, n int32) (int32, error) {
- c.mu.Lock()
- v, found := c.items[k]
- if !found || v.Expired() {
- c.mu.Unlock()
- return 0, fmt.Errorf("Item %s not found", k)
- }
- if c.maxItems > 0 {
- v.Accessed = time.Now().UnixNano()
- }
- rv, ok := v.Object.(int32)
- if !ok {
- c.mu.Unlock()
- return 0, fmt.Errorf("The value for %s is not an int32", k)
- }
- nv := rv + n
- v.Object = nv
- c.items[k] = v
- c.mu.Unlock()
- return nv, nil
- }
- // Increment an item of type int64 by n. Returns an error if the item's value is
- // not an int64, or if it was not found. If there is no error, the incremented
- // value is returned.
- func (c *cache) IncrementInt64(k string, n int64) (int64, error) {
- c.mu.Lock()
- v, found := c.items[k]
- if !found || v.Expired() {
- c.mu.Unlock()
- return 0, fmt.Errorf("Item %s not found", k)
- }
- if c.maxItems > 0 {
- v.Accessed = time.Now().UnixNano()
- }
- rv, ok := v.Object.(int64)
- if !ok {
- c.mu.Unlock()
- return 0, fmt.Errorf("The value for %s is not an int64", k)
- }
- nv := rv + n
- v.Object = nv
- c.items[k] = v
- c.mu.Unlock()
- return nv, nil
- }
- // Increment an item of type uint by n. Returns an error if the item's value is
- // not an uint, or if it was not found. If there is no error, the incremented
- // value is returned.
- func (c *cache) IncrementUint(k string, n uint) (uint, error) {
- c.mu.Lock()
- v, found := c.items[k]
- if !found || v.Expired() {
- c.mu.Unlock()
- return 0, fmt.Errorf("Item %s not found", k)
- }
- if c.maxItems > 0 {
- v.Accessed = time.Now().UnixNano()
- }
- rv, ok := v.Object.(uint)
- if !ok {
- c.mu.Unlock()
- return 0, fmt.Errorf("The value for %s is not an uint", k)
- }
- nv := rv + n
- v.Object = nv
- c.items[k] = v
- c.mu.Unlock()
- return nv, nil
- }
- // Increment an item of type uintptr by n. Returns an error if the item's value
- // is not an uintptr, or if it was not found. If there is no error, the
- // incremented value is returned.
- func (c *cache) IncrementUintptr(k string, n uintptr) (uintptr, error) {
- c.mu.Lock()
- v, found := c.items[k]
- if !found || v.Expired() {
- c.mu.Unlock()
- return 0, fmt.Errorf("Item %s not found", k)
- }
- if c.maxItems > 0 {
- v.Accessed = time.Now().UnixNano()
- }
- rv, ok := v.Object.(uintptr)
- if !ok {
- c.mu.Unlock()
- return 0, fmt.Errorf("The value for %s is not an uintptr", k)
- }
- nv := rv + n
- v.Object = nv
- c.items[k] = v
- c.mu.Unlock()
- return nv, nil
- }
- // Increment an item of type uint8 by n. Returns an error if the item's value
- // is not an uint8, or if it was not found. If there is no error, the
- // incremented value is returned.
- func (c *cache) IncrementUint8(k string, n uint8) (uint8, error) {
- c.mu.Lock()
- v, found := c.items[k]
- if !found || v.Expired() {
- c.mu.Unlock()
- return 0, fmt.Errorf("Item %s not found", k)
- }
- if c.maxItems > 0 {
- v.Accessed = time.Now().UnixNano()
- }
- rv, ok := v.Object.(uint8)
- if !ok {
- c.mu.Unlock()
- return 0, fmt.Errorf("The value for %s is not an uint8", k)
- }
- nv := rv + n
- v.Object = nv
- c.items[k] = v
- c.mu.Unlock()
- return nv, nil
- }
- // Increment an item of type uint16 by n. Returns an error if the item's value
- // is not an uint16, or if it was not found. If there is no error, the
- // incremented value is returned.
- func (c *cache) IncrementUint16(k string, n uint16) (uint16, error) {
- c.mu.Lock()
- v, found := c.items[k]
- if !found || v.Expired() {
- c.mu.Unlock()
- return 0, fmt.Errorf("Item %s not found", k)
- }
- if c.maxItems > 0 {
- v.Accessed = time.Now().UnixNano()
- }
- rv, ok := v.Object.(uint16)
- if !ok {
- c.mu.Unlock()
- return 0, fmt.Errorf("The value for %s is not an uint16", k)
- }
- nv := rv + n
- v.Object = nv
- c.items[k] = v
- c.mu.Unlock()
- return nv, nil
- }
- // Increment an item of type uint32 by n. Returns an error if the item's value
- // is not an uint32, or if it was not found. If there is no error, the
- // incremented value is returned.
- func (c *cache) IncrementUint32(k string, n uint32) (uint32, error) {
- c.mu.Lock()
- v, found := c.items[k]
- if !found || v.Expired() {
- c.mu.Unlock()
- return 0, fmt.Errorf("Item %s not found", k)
- }
- if c.maxItems > 0 {
- v.Accessed = time.Now().UnixNano()
- }
- rv, ok := v.Object.(uint32)
- if !ok {
- c.mu.Unlock()
- return 0, fmt.Errorf("The value for %s is not an uint32", k)
- }
- nv := rv + n
- v.Object = nv
- c.items[k] = v
- c.mu.Unlock()
- return nv, nil
- }
- // Increment an item of type uint64 by n. Returns an error if the item's value
- // is not an uint64, or if it was not found. If there is no error, the
- // incremented value is returned.
- func (c *cache) IncrementUint64(k string, n uint64) (uint64, error) {
- c.mu.Lock()
- v, found := c.items[k]
- if !found || v.Expired() {
- c.mu.Unlock()
- return 0, fmt.Errorf("Item %s not found", k)
- }
- if c.maxItems > 0 {
- v.Accessed = time.Now().UnixNano()
- }
- rv, ok := v.Object.(uint64)
- if !ok {
- c.mu.Unlock()
- return 0, fmt.Errorf("The value for %s is not an uint64", k)
- }
- nv := rv + n
- v.Object = nv
- c.items[k] = v
- c.mu.Unlock()
- return nv, nil
- }
- // Increment an item of type float32 by n. Returns an error if the item's value
- // is not an float32, or if it was not found. If there is no error, the
- // incremented value is returned.
- func (c *cache) IncrementFloat32(k string, n float32) (float32, error) {
- c.mu.Lock()
- v, found := c.items[k]
- if !found || v.Expired() {
- c.mu.Unlock()
- return 0, fmt.Errorf("Item %s not found", k)
- }
- if c.maxItems > 0 {
- v.Accessed = time.Now().UnixNano()
- }
- rv, ok := v.Object.(float32)
- if !ok {
- c.mu.Unlock()
- return 0, fmt.Errorf("The value for %s is not an float32", k)
- }
- nv := rv + n
- v.Object = nv
- c.items[k] = v
- c.mu.Unlock()
- return nv, nil
- }
- // Increment an item of type float64 by n. Returns an error if the item's value
- // is not an float64, or if it was not found. If there is no error, the
- // incremented value is returned.
- func (c *cache) IncrementFloat64(k string, n float64) (float64, error) {
- c.mu.Lock()
- v, found := c.items[k]
- if !found || v.Expired() {
- c.mu.Unlock()
- return 0, fmt.Errorf("Item %s not found", k)
- }
- if c.maxItems > 0 {
- v.Accessed = time.Now().UnixNano()
- }
- rv, ok := v.Object.(float64)
- if !ok {
- c.mu.Unlock()
- return 0, fmt.Errorf("The value for %s is not an float64", k)
- }
- nv := rv + n
- v.Object = nv
- c.items[k] = v
- c.mu.Unlock()
- return nv, nil
- }
- // Decrement an item of type int, int8, int16, int32, int64, uintptr, uint,
- // uint8, uint32, or uint64, float32 or float64 by n. Returns an error if the
- // item's value is not an integer, if it was not found, or if it is not
- // possible to decrement it by n. To retrieve the decremented value, use one
- // of the specialized methods, e.g. DecrementInt64.
- func (c *cache) Decrement(k string, n int64) error {
- // TODO: Implement Increment and Decrement more cleanly.
- // (Cannot do Increment(k, n*-1) for uints.)
- c.mu.Lock()
- v, found := c.items[k]
- if !found || v.Expired() {
- c.mu.Unlock()
- return fmt.Errorf("Item not found")
- }
- if c.maxItems > 0 {
- v.Accessed = time.Now().UnixNano()
- }
- switch v.Object.(type) {
- case int:
- v.Object = v.Object.(int) - int(n)
- case int8:
- v.Object = v.Object.(int8) - int8(n)
- case int16:
- v.Object = v.Object.(int16) - int16(n)
- case int32:
- v.Object = v.Object.(int32) - int32(n)
- case int64:
- v.Object = v.Object.(int64) - n
- case uint:
- v.Object = v.Object.(uint) - uint(n)
- case uintptr:
- v.Object = v.Object.(uintptr) - uintptr(n)
- case uint8:
- v.Object = v.Object.(uint8) - uint8(n)
- case uint16:
- v.Object = v.Object.(uint16) - uint16(n)
- case uint32:
- v.Object = v.Object.(uint32) - uint32(n)
- case uint64:
- v.Object = v.Object.(uint64) - uint64(n)
- case float32:
- v.Object = v.Object.(float32) - float32(n)
- case float64:
- v.Object = v.Object.(float64) - float64(n)
- default:
- c.mu.Unlock()
- return fmt.Errorf("The value for %s is not an integer", k)
- }
- c.items[k] = v
- c.mu.Unlock()
- return nil
- }
- // Decrement an item of type float32 or float64 by n. Returns an error if the
- // item's value is not floating point, if it was not found, or if it is not
- // possible to decrement it by n. Pass a negative number to decrement the
- // value. To retrieve the decremented value, use one of the specialized methods,
- // e.g. DecrementFloat64.
- func (c *cache) DecrementFloat(k string, n float64) error {
- c.mu.Lock()
- v, found := c.items[k]
- if !found || v.Expired() {
- c.mu.Unlock()
- return fmt.Errorf("Item %s not found", k)
- }
- if c.maxItems > 0 {
- v.Accessed = time.Now().UnixNano()
- }
- switch v.Object.(type) {
- case float32:
- v.Object = v.Object.(float32) - float32(n)
- case float64:
- v.Object = v.Object.(float64) - n
- default:
- c.mu.Unlock()
- return fmt.Errorf("The value for %s does not have type float32 or float64", k)
- }
- c.items[k] = v
- c.mu.Unlock()
- return nil
- }
- // Decrement an item of type int by n. Returns an error if the item's value is
- // not an int, or if it was not found. If there is no error, the decremented
- // value is returned.
- func (c *cache) DecrementInt(k string, n int) (int, error) {
- c.mu.Lock()
- v, found := c.items[k]
- if !found || v.Expired() {
- c.mu.Unlock()
- return 0, fmt.Errorf("Item %s not found", k)
- }
- if c.maxItems > 0 {
- v.Accessed = time.Now().UnixNano()
- }
- rv, ok := v.Object.(int)
- if !ok {
- c.mu.Unlock()
- return 0, fmt.Errorf("The value for %s is not an int", k)
- }
- nv := rv - n
- v.Object = nv
- c.items[k] = v
- c.mu.Unlock()
- return nv, nil
- }
- // Decrement an item of type int8 by n. Returns an error if the item's value is
- // not an int8, or if it was not found. If there is no error, the decremented
- // value is returned.
- func (c *cache) DecrementInt8(k string, n int8) (int8, error) {
- c.mu.Lock()
- v, found := c.items[k]
- if !found || v.Expired() {
- c.mu.Unlock()
- return 0, fmt.Errorf("Item %s not found", k)
- }
- if c.maxItems > 0 {
- v.Accessed = time.Now().UnixNano()
- }
- rv, ok := v.Object.(int8)
- if !ok {
- c.mu.Unlock()
- return 0, fmt.Errorf("The value for %s is not an int8", k)
- }
- nv := rv - n
- v.Object = nv
- c.items[k] = v
- c.mu.Unlock()
- return nv, nil
- }
- // Decrement an item of type int16 by n. Returns an error if the item's value is
- // not an int16, or if it was not found. If there is no error, the decremented
- // value is returned.
- func (c *cache) DecrementInt16(k string, n int16) (int16, error) {
- c.mu.Lock()
- v, found := c.items[k]
- if !found || v.Expired() {
- c.mu.Unlock()
- return 0, fmt.Errorf("Item %s not found", k)
- }
- if c.maxItems > 0 {
- v.Accessed = time.Now().UnixNano()
- }
- rv, ok := v.Object.(int16)
- if !ok {
- c.mu.Unlock()
- return 0, fmt.Errorf("The value for %s is not an int16", k)
- }
- nv := rv - n
- v.Object = nv
- c.items[k] = v
- c.mu.Unlock()
- return nv, nil
- }
- // Decrement an item of type int32 by n. Returns an error if the item's value is
- // not an int32, or if it was not found. If there is no error, the decremented
- // value is returned.
- func (c *cache) DecrementInt32(k string, n int32) (int32, error) {
- c.mu.Lock()
- v, found := c.items[k]
- if !found || v.Expired() {
- c.mu.Unlock()
- return 0, fmt.Errorf("Item %s not found", k)
- }
- if c.maxItems > 0 {
- v.Accessed = time.Now().UnixNano()
- }
- rv, ok := v.Object.(int32)
- if !ok {
- c.mu.Unlock()
- return 0, fmt.Errorf("The value for %s is not an int32", k)
- }
- nv := rv - n
- v.Object = nv
- c.items[k] = v
- c.mu.Unlock()
- return nv, nil
- }
- // Decrement an item of type int64 by n. Returns an error if the item's value is
- // not an int64, or if it was not found. If there is no error, the decremented
- // value is returned.
- func (c *cache) DecrementInt64(k string, n int64) (int64, error) {
- c.mu.Lock()
- v, found := c.items[k]
- if !found || v.Expired() {
- c.mu.Unlock()
- return 0, fmt.Errorf("Item %s not found", k)
- }
- if c.maxItems > 0 {
- v.Accessed = time.Now().UnixNano()
- }
- rv, ok := v.Object.(int64)
- if !ok {
- c.mu.Unlock()
- return 0, fmt.Errorf("The value for %s is not an int64", k)
- }
- nv := rv - n
- v.Object = nv
- c.items[k] = v
- c.mu.Unlock()
- return nv, nil
- }
- // Decrement an item of type uint by n. Returns an error if the item's value is
- // not an uint, or if it was not found. If there is no error, the decremented
- // value is returned.
- func (c *cache) DecrementUint(k string, n uint) (uint, error) {
- c.mu.Lock()
- v, found := c.items[k]
- if !found || v.Expired() {
- c.mu.Unlock()
- return 0, fmt.Errorf("Item %s not found", k)
- }
- if c.maxItems > 0 {
- v.Accessed = time.Now().UnixNano()
- }
- rv, ok := v.Object.(uint)
- if !ok {
- c.mu.Unlock()
- return 0, fmt.Errorf("The value for %s is not an uint", k)
- }
- nv := rv - n
- v.Object = nv
- c.items[k] = v
- c.mu.Unlock()
- return nv, nil
- }
- // Decrement an item of type uintptr by n. Returns an error if the item's value
- // is not an uintptr, or if it was not found. If there is no error, the
- // decremented value is returned.
- func (c *cache) DecrementUintptr(k string, n uintptr) (uintptr, error) {
- c.mu.Lock()
- v, found := c.items[k]
- if !found || v.Expired() {
- c.mu.Unlock()
- return 0, fmt.Errorf("Item %s not found", k)
- }
- if c.maxItems > 0 {
- v.Accessed = time.Now().UnixNano()
- }
- rv, ok := v.Object.(uintptr)
- if !ok {
- c.mu.Unlock()
- return 0, fmt.Errorf("The value for %s is not an uintptr", k)
- }
- nv := rv - n
- v.Object = nv
- c.items[k] = v
- c.mu.Unlock()
- return nv, nil
- }
- // Decrement an item of type uint8 by n. Returns an error if the item's value is
- // not an uint8, or if it was not found. If there is no error, the decremented
- // value is returned.
- func (c *cache) DecrementUint8(k string, n uint8) (uint8, error) {
- c.mu.Lock()
- v, found := c.items[k]
- if !found || v.Expired() {
- c.mu.Unlock()
- return 0, fmt.Errorf("Item %s not found", k)
- }
- if c.maxItems > 0 {
- v.Accessed = time.Now().UnixNano()
- }
- rv, ok := v.Object.(uint8)
- if !ok {
- c.mu.Unlock()
- return 0, fmt.Errorf("The value for %s is not an uint8", k)
- }
- nv := rv - n
- v.Object = nv
- c.items[k] = v
- c.mu.Unlock()
- return nv, nil
- }
- // Decrement an item of type uint16 by n. Returns an error if the item's value
- // is not an uint16, or if it was not found. If there is no error, the
- // decremented value is returned.
- func (c *cache) DecrementUint16(k string, n uint16) (uint16, error) {
- c.mu.Lock()
- v, found := c.items[k]
- if !found || v.Expired() {
- c.mu.Unlock()
- return 0, fmt.Errorf("Item %s not found", k)
- }
- if c.maxItems > 0 {
- v.Accessed = time.Now().UnixNano()
- }
- rv, ok := v.Object.(uint16)
- if !ok {
- c.mu.Unlock()
- return 0, fmt.Errorf("The value for %s is not an uint16", k)
- }
- nv := rv - n
- v.Object = nv
- c.items[k] = v
- c.mu.Unlock()
- return nv, nil
- }
- // Decrement an item of type uint32 by n. Returns an error if the item's value
- // is not an uint32, or if it was not found. If there is no error, the
- // decremented value is returned.
- func (c *cache) DecrementUint32(k string, n uint32) (uint32, error) {
- c.mu.Lock()
- v, found := c.items[k]
- if !found || v.Expired() {
- c.mu.Unlock()
- return 0, fmt.Errorf("Item %s not found", k)
- }
- if c.maxItems > 0 {
- v.Accessed = time.Now().UnixNano()
- }
- rv, ok := v.Object.(uint32)
- if !ok {
- c.mu.Unlock()
- return 0, fmt.Errorf("The value for %s is not an uint32", k)
- }
- nv := rv - n
- v.Object = nv
- c.items[k] = v
- c.mu.Unlock()
- return nv, nil
- }
- // Decrement an item of type uint64 by n. Returns an error if the item's value
- // is not an uint64, or if it was not found. If there is no error, the
- // decremented value is returned.
- func (c *cache) DecrementUint64(k string, n uint64) (uint64, error) {
- c.mu.Lock()
- v, found := c.items[k]
- if !found || v.Expired() {
- c.mu.Unlock()
- return 0, fmt.Errorf("Item %s not found", k)
- }
- if c.maxItems > 0 {
- v.Accessed = time.Now().UnixNano()
- }
- rv, ok := v.Object.(uint64)
- if !ok {
- c.mu.Unlock()
- return 0, fmt.Errorf("The value for %s is not an uint64", k)
- }
- nv := rv - n
- v.Object = nv
- c.items[k] = v
- c.mu.Unlock()
- return nv, nil
- }
- // Decrement an item of type float32 by n. Returns an error if the item's value
- // is not an float32, or if it was not found. If there is no error, the
- // decremented value is returned.
- func (c *cache) DecrementFloat32(k string, n float32) (float32, error) {
- c.mu.Lock()
- v, found := c.items[k]
- if !found || v.Expired() {
- c.mu.Unlock()
- return 0, fmt.Errorf("Item %s not found", k)
- }
- if c.maxItems > 0 {
- v.Accessed = time.Now().UnixNano()
- }
- rv, ok := v.Object.(float32)
- if !ok {
- c.mu.Unlock()
- return 0, fmt.Errorf("The value for %s is not an float32", k)
- }
- nv := rv - n
- v.Object = nv
- c.items[k] = v
- c.mu.Unlock()
- return nv, nil
- }
- // Decrement an item of type float64 by n. Returns an error if the item's value
- // is not an float64, or if it was not found. If there is no error, the
- // decremented value is returned.
- func (c *cache) DecrementFloat64(k string, n float64) (float64, error) {
- c.mu.Lock()
- v, found := c.items[k]
- if !found || v.Expired() {
- c.mu.Unlock()
- return 0, fmt.Errorf("Item %s not found", k)
- }
- if c.maxItems > 0 {
- v.Accessed = time.Now().UnixNano()
- }
- rv, ok := v.Object.(float64)
- if !ok {
- c.mu.Unlock()
- return 0, fmt.Errorf("The value for %s is not an float64", k)
- }
- nv := rv - n
- v.Object = nv
- c.items[k] = v
- c.mu.Unlock()
- return nv, nil
- }
- // Delete an item from the cache. Does nothing if the key is not in the cache.
- func (c *cache) Delete(k string) {
- c.mu.Lock()
- v, evicted := c.delete(k)
- evictFunc := c.onEvicted
- c.mu.Unlock()
- if evicted {
- evictFunc(k, v)
- }
- }
- func (c *cache) delete(k string) (interface{}, bool) {
- if c.onEvicted != nil {
- if v, found := c.items[k]; found {
- delete(c.items, k)
- return v.Object, true
- }
- }
- delete(c.items, k)
- return nil, false
- }
- type keyAndValue struct {
- key string
- value interface{}
- }
- // Delete all expired items from the cache.
- func (c *cache) DeleteExpired() {
- var evictedItems []keyAndValue
- now := time.Now().UnixNano()
- c.mu.Lock()
- evictFunc := c.onEvicted
- for k, v := range c.items {
- // "Inlining" of Expired
- if v.Expiration > 0 && now > v.Expiration {
- ov, evicted := c.delete(k)
- if evicted {
- evictedItems = append(evictedItems, keyAndValue{k, ov})
- }
- }
- }
- c.mu.Unlock()
- for _, v := range evictedItems {
- evictFunc(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.
- func (c *cache) OnEvicted(f func(string, interface{})) {
- c.mu.Lock()
- c.onEvicted = f
- c.mu.Unlock()
- }
- // Delete some of the oldest items in the cache if the soft size limit has been
- // exceeded.
- func (c *cache) DeleteLRU() {
- c.mu.Lock()
- var (
- overCount = c.itemCount() - c.maxItems
- evictFunc = c.onEvicted
- )
- evicted := c.deleteLRUAmount(overCount)
- c.mu.Unlock()
- for _, v := range evicted {
- evictFunc(v.key, v.value)
- }
- }
- // Delete a number of the oldest items from the cache.
- func (c *cache) DeleteLRUAmount(numItems int) {
- c.mu.Lock()
- evictFunc := c.onEvicted
- evicted := c.deleteLRUAmount(numItems)
- c.mu.Unlock()
- for _, v := range evicted {
- evictFunc(v.key, v.value)
- }
- }
- func (c *cache) deleteLRUAmount(numItems int) []keyAndValue {
- if numItems <= 0 {
- return nil
- }
- var (
- lastTime int64 = 0
- lastItems = make([]string, numItems) // Ring buffer
- liCount = 0
- full = false
- evictedItems []keyAndValue
- now = time.Now().UnixNano()
- )
- if c.onEvicted != nil {
- evictedItems = make([]keyAndValue, 0, numItems)
- }
- for k, v := range c.items {
- // "Inlining" of !Expired
- if v.Expiration == 0 || now <= v.Expiration {
- if full == false || v.Accessed < lastTime {
- // We found a least-recently-used item, or our
- // purge buffer isn't full yet
- lastTime = v.Accessed
- // Append it to the buffer, or start overwriting
- // it
- if liCount < numItems {
- lastItems[liCount] = k
- liCount++
- } else {
- lastItems[0] = k
- liCount = 1
- full = true
- }
- }
- }
- }
- if lastTime > 0 {
- for _, v := range lastItems {
- if v != "" {
- ov, evicted := c.delete(v)
- if evicted {
- evictedItems = append(evictedItems, keyAndValue{v, ov})
- }
- }
- }
- }
- return evictedItems
- }
- // 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().)
- func (c *cache) Save(w io.Writer) (err error) {
- enc := gob.NewEncoder(w)
- defer func() {
- if x := recover(); x != nil {
- err = fmt.Errorf("Error registering item types with Gob library")
- }
- }()
- c.mu.RLock()
- defer c.mu.RUnlock()
- for _, v := range c.items {
- gob.Register(v.Object)
- }
- err = enc.Encode(&c.items)
- return
- }
- // Save the cache's items to the given filename, creating the file if it
- // 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().)
- func (c *cache) SaveFile(fname string) error {
- fp, err := os.Create(fname)
- if err != nil {
- return err
- }
- err = c.Save(fp)
- if err != nil {
- fp.Close()
- return err
- }
- return fp.Close()
- }
- // 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().)
- func (c *cache) Load(r io.Reader) error {
- dec := gob.NewDecoder(r)
- items := map[string]Item{}
- err := dec.Decode(&items)
- if err == nil {
- c.mu.Lock()
- defer c.mu.Unlock()
- for k, v := range items {
- ov, found := c.items[k]
- if !found || ov.Expired() {
- c.items[k] = v
- }
- }
- }
- 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().)
- func (c *cache) LoadFile(fname string) error {
- fp, err := os.Open(fname)
- if err != nil {
- return err
- }
- err = c.Load(fp)
- if err != nil {
- fp.Close()
- return err
- }
- return fp.Close()
- }
- // Copies all unexpired items in the cache into a new map and returns it.
- func (c *cache) Items() map[string]Item {
- c.mu.RLock()
- defer c.mu.RUnlock()
- m := make(map[string]Item, 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.
- func (c *cache) ItemCount() int {
- c.mu.RLock()
- n := len(c.items)
- c.mu.RUnlock()
- return n
- }
- // Returns the number of items in the cache without locking. This may include
- // items that have expired, but have not yet been cleaned up. Equivalent to
- // len(c.Items()).
- func (c *cache) itemCount() int {
- n := len(c.items)
- return n
- }
- // Delete all items from the cache.
- func (c *cache) Flush() {
- c.mu.Lock()
- c.items = map[string]Item{}
- c.mu.Unlock()
- }
- type janitor struct {
- Interval time.Duration
- stop chan bool
- }
- func (j *janitor) Run(c *cache) {
- j.stop = make(chan bool)
- ticker := time.NewTicker(j.Interval)
- for {
- select {
- case <-ticker.C:
- c.DeleteExpired()
- if c.maxItems > 0 {
- c.DeleteLRU()
- }
- case <-j.stop:
- ticker.Stop()
- return
- }
- }
- }
- func stopJanitor(c *Cache) {
- c.janitor.stop <- true
- }
- func runJanitor(c *cache, ci time.Duration) {
- j := &janitor{
- Interval: ci,
- }
- c.janitor = j
- go j.Run(c)
- }
- func newCache(de time.Duration, m map[string]Item, mi int) *cache {
- if de == 0 {
- de = -1
- }
- c := &cache{
- defaultExpiration: de,
- maxItems: mi,
- items: m,
- }
- return c
- }
- func newCacheWithJanitor(de time.Duration, ci time.Duration, m map[string]Item, mi int) *Cache {
- c := newCache(de, m, mi)
- // 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.
- C := &Cache{c}
- if ci > 0 {
- runJanitor(c, ci)
- runtime.SetFinalizer(C, stopJanitor)
- }
- return C
- }
- // 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().
- func New(defaultExpiration, cleanupInterval time.Duration) *Cache {
- items := make(map[string]Item)
- return newCacheWithJanitor(defaultExpiration, cleanupInterval, items, 0)
- }
- // Return a new cache with a given default expiration duration, cleanup
- // interval, and maximum-ish number of items. 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(), c.DeleteLRU(), or c.DeleteLRUAmount(). If maxItems
- // is not greater than zero, then there will be no soft cap on the number of
- // items in the cache.
- //
- // Using the LRU functionality makes Get() a slower, write-locked operation.
- func NewWithLRU(defaultExpiration, cleanupInterval time.Duration, maxItems int) *Cache {
- items := make(map[string]Item)
- return newCacheWithJanitor(defaultExpiration, cleanupInterval, items, maxItems)
- }
- // 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().
- //
- // 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.
- func NewFrom(defaultExpiration, cleanupInterval time.Duration, items map[string]Item) *Cache {
- return newCacheWithJanitor(defaultExpiration, cleanupInterval, items, 0)
- }
- // Similar to NewFrom, but creates a cache with LRU functionality enabled.
- func NewFromWithLRU(defaultExpiration, cleanupInterval time.Duration, items map[string]Item, maxItems int) *Cache {
- return newCacheWithJanitor(defaultExpiration, cleanupInterval, items, maxItems)
- }
|