2014-08-18 08:41:43 +00:00
|
|
|
// Copyright 2014 beego Author. All Rights Reserved.
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-08-18 08:41:43 +00:00
|
|
|
// 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
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-08-18 08:41:43 +00:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-08-18 08:41:43 +00:00
|
|
|
// 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.
|
|
|
|
|
2013-04-22 10:56:30 +00:00
|
|
|
package cache
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2013-12-22 05:35:02 +00:00
|
|
|
// clock time of recycling the expired cache items in memory.
|
2013-04-22 10:56:30 +00:00
|
|
|
DefaultEvery int = 60 // 1 minute
|
|
|
|
)
|
|
|
|
|
2013-12-22 05:35:02 +00:00
|
|
|
// Memory cache item.
|
2013-04-22 10:56:30 +00:00
|
|
|
type MemoryItem struct {
|
|
|
|
val interface{}
|
|
|
|
Lastaccess time.Time
|
2013-07-04 05:02:11 +00:00
|
|
|
expired int64
|
2013-04-22 10:56:30 +00:00
|
|
|
}
|
|
|
|
|
2013-12-22 05:35:02 +00:00
|
|
|
// Memory cache adapter.
|
|
|
|
// it contains a RW locker for safe map storage.
|
2013-04-22 10:56:30 +00:00
|
|
|
type MemoryCache struct {
|
|
|
|
lock sync.RWMutex
|
|
|
|
dur time.Duration
|
|
|
|
items map[string]*MemoryItem
|
2013-12-24 13:56:48 +00:00
|
|
|
Every int // run an expiration check Every clock time
|
2013-04-22 10:56:30 +00:00
|
|
|
}
|
|
|
|
|
2013-12-22 05:35:02 +00:00
|
|
|
// NewMemoryCache returns a new MemoryCache.
|
2013-04-22 10:56:30 +00:00
|
|
|
func NewMemoryCache() *MemoryCache {
|
|
|
|
cache := MemoryCache{items: make(map[string]*MemoryItem)}
|
|
|
|
return &cache
|
|
|
|
}
|
|
|
|
|
2013-12-22 05:35:02 +00:00
|
|
|
// Get cache from memory.
|
|
|
|
// if non-existed or expired, return nil.
|
2013-04-22 10:56:30 +00:00
|
|
|
func (bc *MemoryCache) Get(name string) interface{} {
|
|
|
|
bc.lock.RLock()
|
|
|
|
defer bc.lock.RUnlock()
|
2014-07-11 02:01:49 +00:00
|
|
|
if itm, ok := bc.items[name]; ok {
|
|
|
|
if (time.Now().Unix() - itm.Lastaccess.Unix()) > itm.expired {
|
|
|
|
go bc.Delete(name)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return itm.val
|
2013-07-04 05:02:11 +00:00
|
|
|
}
|
2014-07-11 02:01:49 +00:00
|
|
|
return nil
|
2013-04-22 10:56:30 +00:00
|
|
|
}
|
|
|
|
|
2013-12-22 05:35:02 +00:00
|
|
|
// Put cache to memory.
|
2013-12-24 13:56:48 +00:00
|
|
|
// if expired is 0, it will be cleaned by next gc operation ( default gc clock is 1 minute).
|
2013-07-04 05:02:11 +00:00
|
|
|
func (bc *MemoryCache) Put(name string, value interface{}, expired int64) error {
|
2013-04-22 10:56:30 +00:00
|
|
|
bc.lock.Lock()
|
|
|
|
defer bc.lock.Unlock()
|
2014-07-11 02:01:49 +00:00
|
|
|
bc.items[name] = &MemoryItem{
|
2013-07-04 05:02:11 +00:00
|
|
|
val: value,
|
|
|
|
Lastaccess: time.Now(),
|
|
|
|
expired: expired,
|
|
|
|
}
|
2013-04-22 10:56:30 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-12-22 05:35:02 +00:00
|
|
|
/// Delete cache in memory.
|
2013-04-22 10:56:30 +00:00
|
|
|
func (bc *MemoryCache) Delete(name string) error {
|
|
|
|
bc.lock.Lock()
|
|
|
|
defer bc.lock.Unlock()
|
|
|
|
if _, ok := bc.items[name]; !ok {
|
|
|
|
return errors.New("key not exist")
|
|
|
|
}
|
|
|
|
delete(bc.items, name)
|
2014-07-11 02:01:49 +00:00
|
|
|
if _, ok := bc.items[name]; ok {
|
2013-04-22 10:56:30 +00:00
|
|
|
return errors.New("delete key error")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-12-22 05:35:02 +00:00
|
|
|
// Increase cache counter in memory.
|
|
|
|
// it supports int,int64,int32,uint,uint64,uint32.
|
2013-07-16 11:05:44 +00:00
|
|
|
func (bc *MemoryCache) Incr(key string) error {
|
|
|
|
bc.lock.RLock()
|
|
|
|
defer bc.lock.RUnlock()
|
|
|
|
itm, ok := bc.items[key]
|
|
|
|
if !ok {
|
|
|
|
return errors.New("key not exist")
|
|
|
|
}
|
|
|
|
switch itm.val.(type) {
|
|
|
|
case int:
|
|
|
|
itm.val = itm.val.(int) + 1
|
|
|
|
case int64:
|
|
|
|
itm.val = itm.val.(int64) + 1
|
|
|
|
case int32:
|
|
|
|
itm.val = itm.val.(int32) + 1
|
|
|
|
case uint:
|
|
|
|
itm.val = itm.val.(uint) + 1
|
|
|
|
case uint32:
|
|
|
|
itm.val = itm.val.(uint32) + 1
|
|
|
|
case uint64:
|
|
|
|
itm.val = itm.val.(uint64) + 1
|
|
|
|
default:
|
|
|
|
return errors.New("item val is not int int64 int32")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-12-22 05:35:02 +00:00
|
|
|
// Decrease counter in memory.
|
2013-07-16 11:05:44 +00:00
|
|
|
func (bc *MemoryCache) Decr(key string) error {
|
|
|
|
bc.lock.RLock()
|
|
|
|
defer bc.lock.RUnlock()
|
|
|
|
itm, ok := bc.items[key]
|
|
|
|
if !ok {
|
|
|
|
return errors.New("key not exist")
|
|
|
|
}
|
|
|
|
switch itm.val.(type) {
|
|
|
|
case int:
|
|
|
|
itm.val = itm.val.(int) - 1
|
|
|
|
case int64:
|
|
|
|
itm.val = itm.val.(int64) - 1
|
|
|
|
case int32:
|
|
|
|
itm.val = itm.val.(int32) - 1
|
|
|
|
case uint:
|
|
|
|
if itm.val.(uint) > 0 {
|
|
|
|
itm.val = itm.val.(uint) - 1
|
|
|
|
} else {
|
|
|
|
return errors.New("item val is less than 0")
|
|
|
|
}
|
|
|
|
case uint32:
|
|
|
|
if itm.val.(uint32) > 0 {
|
|
|
|
itm.val = itm.val.(uint32) - 1
|
|
|
|
} else {
|
|
|
|
return errors.New("item val is less than 0")
|
|
|
|
}
|
|
|
|
case uint64:
|
|
|
|
if itm.val.(uint64) > 0 {
|
|
|
|
itm.val = itm.val.(uint64) - 1
|
|
|
|
} else {
|
|
|
|
return errors.New("item val is less than 0")
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
return errors.New("item val is not int int64 int32")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-12-22 05:35:02 +00:00
|
|
|
// check cache exist in memory.
|
2013-04-22 10:56:30 +00:00
|
|
|
func (bc *MemoryCache) IsExist(name string) bool {
|
|
|
|
bc.lock.RLock()
|
|
|
|
defer bc.lock.RUnlock()
|
|
|
|
_, ok := bc.items[name]
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
2013-12-22 05:35:02 +00:00
|
|
|
// delete all cache in memory.
|
2013-04-22 10:56:30 +00:00
|
|
|
func (bc *MemoryCache) ClearAll() error {
|
|
|
|
bc.lock.Lock()
|
|
|
|
defer bc.lock.Unlock()
|
|
|
|
bc.items = make(map[string]*MemoryItem)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-12-22 05:35:02 +00:00
|
|
|
// start memory cache. it will check expiration in every clock time.
|
2013-04-22 10:56:30 +00:00
|
|
|
func (bc *MemoryCache) StartAndGC(config string) error {
|
|
|
|
var cf map[string]int
|
|
|
|
json.Unmarshal([]byte(config), &cf)
|
2013-07-04 05:02:11 +00:00
|
|
|
if _, ok := cf["interval"]; !ok {
|
2013-04-22 13:31:23 +00:00
|
|
|
cf = make(map[string]int)
|
2013-04-22 10:56:30 +00:00
|
|
|
cf["interval"] = DefaultEvery
|
|
|
|
}
|
|
|
|
dur, err := time.ParseDuration(fmt.Sprintf("%ds", cf["interval"]))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
bc.Every = cf["interval"]
|
|
|
|
bc.dur = dur
|
|
|
|
go bc.vaccuum()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-12-22 05:35:02 +00:00
|
|
|
// check expiration.
|
2013-04-22 10:56:30 +00:00
|
|
|
func (bc *MemoryCache) vaccuum() {
|
|
|
|
if bc.Every < 1 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
for {
|
2013-07-04 05:02:11 +00:00
|
|
|
<-time.After(bc.dur)
|
2013-04-22 10:56:30 +00:00
|
|
|
if bc.items == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
for name, _ := range bc.items {
|
|
|
|
bc.item_expired(name)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// item_expired returns true if an item is expired.
|
|
|
|
func (bc *MemoryCache) item_expired(name string) bool {
|
|
|
|
bc.lock.Lock()
|
|
|
|
defer bc.lock.Unlock()
|
|
|
|
itm, ok := bc.items[name]
|
|
|
|
if !ok {
|
|
|
|
return true
|
|
|
|
}
|
2014-07-11 02:01:49 +00:00
|
|
|
if time.Now().Unix()-itm.Lastaccess.Unix() >= itm.expired {
|
2013-04-22 10:56:30 +00:00
|
|
|
delete(bc.items, name)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
Register("memory", NewMemoryCache())
|
|
|
|
}
|