2020-11-21 21:43:03 +08:00
|
|
|
package ttlcache
|
2020-11-21 20:44:19 +08:00
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"github.com/TeaOSLab/EdgeNode/internal/utils"
|
|
|
|
|
"sync"
|
|
|
|
|
"time"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type Piece struct {
|
2020-11-21 21:43:03 +08:00
|
|
|
m map[uint64]*Item
|
|
|
|
|
maxItems int
|
|
|
|
|
locker sync.RWMutex
|
2020-11-21 20:44:19 +08:00
|
|
|
}
|
|
|
|
|
|
2020-11-21 21:43:03 +08:00
|
|
|
func NewPiece(maxItems int) *Piece {
|
|
|
|
|
return &Piece{m: map[uint64]*Item{}, maxItems: maxItems}
|
2020-11-21 20:44:19 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (this *Piece) Add(key uint64, item *Item) () {
|
|
|
|
|
this.locker.Lock()
|
2020-11-21 21:43:03 +08:00
|
|
|
if len(this.m) >= this.maxItems {
|
|
|
|
|
this.locker.Unlock()
|
|
|
|
|
return
|
|
|
|
|
}
|
2020-11-21 20:44:19 +08:00
|
|
|
this.m[key] = item
|
|
|
|
|
this.locker.Unlock()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (this *Piece) Delete(key uint64) {
|
|
|
|
|
this.locker.Lock()
|
|
|
|
|
delete(this.m, key)
|
|
|
|
|
this.locker.Unlock()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (this *Piece) Read(key uint64) (item *Item) {
|
|
|
|
|
this.locker.RLock()
|
|
|
|
|
item = this.m[key]
|
|
|
|
|
if item != nil && item.expiredAt < utils.UnixTime() {
|
|
|
|
|
item = nil
|
|
|
|
|
}
|
|
|
|
|
this.locker.RUnlock()
|
|
|
|
|
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (this *Piece) Count() (count int) {
|
|
|
|
|
this.locker.RLock()
|
|
|
|
|
count = len(this.m)
|
|
|
|
|
this.locker.RUnlock()
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (this *Piece) GC() {
|
|
|
|
|
this.locker.Lock()
|
|
|
|
|
timestamp := time.Now().Unix()
|
|
|
|
|
for k, item := range this.m {
|
|
|
|
|
if item.expiredAt <= timestamp {
|
|
|
|
|
delete(this.m, k)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
this.locker.Unlock()
|
|
|
|
|
}
|