xorm/caches/cache_lru.go

283 lines
6.9 KiB
Go
Raw Normal View History

2015-04-28 08:25:04 +00:00
// Copyright 2015 The Xorm Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package caches
import (
2013-12-18 03:31:32 +00:00
"container/list"
"fmt"
"sync"
"time"
2013-11-16 16:52:43 +00:00
)
2016-12-11 04:45:37 +00:00
// LRUCacher implments cache object facilities
type LRUCacher struct {
idList *list.List
sqlList *list.List
idIndex map[string]map[string]*list.Element
sqlIndex map[string]map[string]*list.Element
store CacheStore
mutex sync.Mutex
2014-04-17 09:08:21 +00:00
MaxElementSize int
Expired time.Duration
GcInterval time.Duration
}
2016-12-11 04:45:37 +00:00
// NewLRUCacher creates a cacher
func NewLRUCacher(store CacheStore, maxElementSize int) *LRUCacher {
return NewLRUCacher2(store, 3600*time.Second, maxElementSize)
2014-04-17 09:08:21 +00:00
}
2016-12-11 04:45:37 +00:00
// NewLRUCacher2 creates a cache include different params
func NewLRUCacher2(store CacheStore, expired time.Duration, maxElementSize int) *LRUCacher {
2013-12-18 03:31:32 +00:00
cacher := &LRUCacher{store: store, idList: list.New(),
2014-04-17 09:08:21 +00:00
sqlList: list.New(), Expired: expired,
GcInterval: CacheGcInterval, MaxElementSize: maxElementSize,
sqlIndex: make(map[string]map[string]*list.Element),
idIndex: make(map[string]map[string]*list.Element),
2013-12-18 03:31:32 +00:00
}
cacher.RunGC()
return cacher
}
2013-11-16 16:52:43 +00:00
// RunGC run once every m.GcInterval
func (m *LRUCacher) RunGC() {
2013-12-18 03:31:32 +00:00
time.AfterFunc(m.GcInterval, func() {
m.RunGC()
m.GC()
})
2013-11-16 16:52:43 +00:00
}
// GC check ids lit and sql list to remove all element expired
func (m *LRUCacher) GC() {
2013-12-18 03:31:32 +00:00
m.mutex.Lock()
defer m.mutex.Unlock()
var removedNum int
for e := m.idList.Front(); e != nil; {
if removedNum <= CacheGcMaxRemoved &&
2013-12-18 03:31:32 +00:00
time.Now().Sub(e.Value.(*idNode).lastVisit) > m.Expired {
removedNum++
next := e.Next()
node := e.Value.(*idNode)
m.delBean(node.tbName, node.id)
e = next
} else {
break
}
}
removedNum = 0
for e := m.sqlList.Front(); e != nil; {
if removedNum <= CacheGcMaxRemoved &&
2013-12-18 03:31:32 +00:00
time.Now().Sub(e.Value.(*sqlNode).lastVisit) > m.Expired {
removedNum++
next := e.Next()
node := e.Value.(*sqlNode)
m.delIds(node.tbName, node.sql)
e = next
} else {
break
}
}
2013-11-16 16:52:43 +00:00
}
// GetIds returns all bean's ids according to sql and parameter from cache
2013-09-23 14:31:51 +00:00
func (m *LRUCacher) GetIds(tableName, sql string) interface{} {
2013-12-18 03:31:32 +00:00
m.mutex.Lock()
defer m.mutex.Unlock()
if _, ok := m.sqlIndex[tableName]; !ok {
m.sqlIndex[tableName] = make(map[string]*list.Element)
2013-12-18 03:31:32 +00:00
}
if v, err := m.store.Get(sql); err == nil {
if el, ok := m.sqlIndex[tableName][sql]; !ok {
2016-12-11 04:45:37 +00:00
el = m.sqlList.PushBack(newSQLNode(tableName, sql))
2013-12-18 03:31:32 +00:00
m.sqlIndex[tableName][sql] = el
} else {
lastTime := el.Value.(*sqlNode).lastVisit
// if expired, remove the node and return nil
if time.Now().Sub(lastTime) > m.Expired {
m.delIds(tableName, sql)
return nil
}
m.sqlList.MoveToBack(el)
el.Value.(*sqlNode).lastVisit = time.Now()
}
return v
}
2016-12-11 04:45:37 +00:00
m.delIds(tableName, sql)
2013-12-18 03:31:32 +00:00
return nil
}
// GetBean returns bean according tableName and id from cache
func (m *LRUCacher) GetBean(tableName string, id string) interface{} {
2013-12-18 03:31:32 +00:00
m.mutex.Lock()
defer m.mutex.Unlock()
if _, ok := m.idIndex[tableName]; !ok {
m.idIndex[tableName] = make(map[string]*list.Element)
2013-12-18 03:31:32 +00:00
}
2016-12-11 04:45:37 +00:00
tid := genID(tableName, id)
2013-12-18 03:31:32 +00:00
if v, err := m.store.Get(tid); err == nil {
if el, ok := m.idIndex[tableName][id]; ok {
lastTime := el.Value.(*idNode).lastVisit
// if expired, remove the node and return nil
if time.Now().Sub(lastTime) > m.Expired {
m.delBean(tableName, id)
return nil
}
m.idList.MoveToBack(el)
el.Value.(*idNode).lastVisit = time.Now()
} else {
2016-12-11 04:45:37 +00:00
el = m.idList.PushBack(newIDNode(tableName, id))
2013-12-18 03:31:32 +00:00
m.idIndex[tableName][id] = el
}
return v
}
2016-12-11 04:45:37 +00:00
// store bean is not exist, then remove memory's index
m.delBean(tableName, id)
return nil
}
2016-12-11 04:45:37 +00:00
// clearIds clears all sql-ids mapping on table tableName from cache
func (m *LRUCacher) clearIds(tableName string) {
2013-12-18 03:31:32 +00:00
if tis, ok := m.sqlIndex[tableName]; ok {
for sql, v := range tis {
m.sqlList.Remove(v)
m.store.Del(sql)
}
}
m.sqlIndex[tableName] = make(map[string]*list.Element)
}
2016-12-11 04:45:37 +00:00
// ClearIds clears all sql-ids mapping on table tableName from cache
func (m *LRUCacher) ClearIds(tableName string) {
2013-12-18 03:31:32 +00:00
m.mutex.Lock()
m.clearIds(tableName)
m.mutex.Unlock()
}
func (m *LRUCacher) clearBeans(tableName string) {
2013-12-18 03:31:32 +00:00
if tis, ok := m.idIndex[tableName]; ok {
for id, v := range tis {
m.idList.Remove(v)
2016-12-11 04:45:37 +00:00
tid := genID(tableName, id)
2013-12-18 03:31:32 +00:00
m.store.Del(tid)
}
}
m.idIndex[tableName] = make(map[string]*list.Element)
}
2016-12-11 04:45:37 +00:00
// ClearBeans clears all beans in some table
func (m *LRUCacher) ClearBeans(tableName string) {
2013-12-18 03:31:32 +00:00
m.mutex.Lock()
m.clearBeans(tableName)
m.mutex.Unlock()
2013-09-23 14:31:51 +00:00
}
2016-12-11 04:45:37 +00:00
// PutIds pus ids into table
2013-09-23 14:31:51 +00:00
func (m *LRUCacher) PutIds(tableName, sql string, ids interface{}) {
2013-12-18 03:31:32 +00:00
m.mutex.Lock()
if _, ok := m.sqlIndex[tableName]; !ok {
m.sqlIndex[tableName] = make(map[string]*list.Element)
2013-12-18 03:31:32 +00:00
}
if el, ok := m.sqlIndex[tableName][sql]; !ok {
2016-12-11 04:45:37 +00:00
el = m.sqlList.PushBack(newSQLNode(tableName, sql))
2013-12-18 03:31:32 +00:00
m.sqlIndex[tableName][sql] = el
} else {
el.Value.(*sqlNode).lastVisit = time.Now()
}
m.store.Put(sql, ids)
2014-04-17 09:08:21 +00:00
if m.sqlList.Len() > m.MaxElementSize {
2013-12-18 03:31:32 +00:00
e := m.sqlList.Front()
node := e.Value.(*sqlNode)
m.delIds(node.tbName, node.sql)
}
m.mutex.Unlock()
2013-09-23 14:31:51 +00:00
}
2016-12-11 04:45:37 +00:00
// PutBean puts beans into table
func (m *LRUCacher) PutBean(tableName string, id string, obj interface{}) {
2013-12-18 03:31:32 +00:00
m.mutex.Lock()
var el *list.Element
var ok bool
if el, ok = m.idIndex[tableName][id]; !ok {
2016-12-11 04:45:37 +00:00
el = m.idList.PushBack(newIDNode(tableName, id))
2013-12-18 03:31:32 +00:00
m.idIndex[tableName][id] = el
} else {
el.Value.(*idNode).lastVisit = time.Now()
}
2016-12-11 04:45:37 +00:00
m.store.Put(genID(tableName, id), obj)
2014-04-17 09:08:21 +00:00
if m.idList.Len() > m.MaxElementSize {
2013-12-18 03:31:32 +00:00
e := m.idList.Front()
node := e.Value.(*idNode)
m.delBean(node.tbName, node.id)
}
m.mutex.Unlock()
}
2013-11-16 16:52:43 +00:00
func (m *LRUCacher) delIds(tableName, sql string) {
2013-12-18 03:31:32 +00:00
if _, ok := m.sqlIndex[tableName]; ok {
if el, ok := m.sqlIndex[tableName][sql]; ok {
delete(m.sqlIndex[tableName], sql)
m.sqlList.Remove(el)
}
}
m.store.Del(sql)
2013-11-16 16:52:43 +00:00
}
2016-12-11 04:45:37 +00:00
// DelIds deletes ids
2013-11-16 16:52:43 +00:00
func (m *LRUCacher) DelIds(tableName, sql string) {
2013-12-18 03:31:32 +00:00
m.mutex.Lock()
m.delIds(tableName, sql)
m.mutex.Unlock()
2013-09-23 14:31:51 +00:00
}
func (m *LRUCacher) delBean(tableName string, id string) {
2016-12-11 04:45:37 +00:00
tid := genID(tableName, id)
2013-12-18 03:31:32 +00:00
if el, ok := m.idIndex[tableName][id]; ok {
delete(m.idIndex[tableName], id)
m.idList.Remove(el)
m.clearIds(tableName)
}
m.store.Del(tid)
2013-09-23 14:31:51 +00:00
}
2016-12-11 04:45:37 +00:00
// DelBean deletes beans in some table
func (m *LRUCacher) DelBean(tableName string, id string) {
2013-12-18 03:31:32 +00:00
m.mutex.Lock()
m.delBean(tableName, id)
m.mutex.Unlock()
}
type idNode struct {
tbName string
id string
lastVisit time.Time
}
type sqlNode struct {
tbName string
sql string
lastVisit time.Time
}
2016-12-11 04:45:37 +00:00
func genSQLKey(sql string, args interface{}) string {
return fmt.Sprintf("%s-%v", sql, args)
}
2016-12-11 04:45:37 +00:00
func genID(prefix string, id string) string {
return fmt.Sprintf("%s-%s", prefix, id)
}
2016-12-11 04:45:37 +00:00
func newIDNode(tbName string, id string) *idNode {
return &idNode{tbName, id, time.Now()}
2013-09-23 01:22:30 +00:00
}
2016-12-11 04:45:37 +00:00
func newSQLNode(tbName, sql string) *sqlNode {
return &sqlNode{tbName, sql, time.Now()}
}