blob: 3c644de7c789a7c671a6deefaf4985789410a5da [file] [log] [blame]
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF licenses this file to You 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
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// 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.
package lru
import (
"container/list"
"errors"
"sync"
)
type Lru struct {
max int
l *list.List
Call func(key interface{}, value interface{})
cache map[interface{}]*list.Element
mu *sync.Mutex
}
type Node struct {
Key interface{}
Val interface{}
}
func NewLru(len int) *Lru {
return &Lru{
max: len,
l: list.New(),
cache: make(map[interface{}]*list.Element),
mu: new(sync.Mutex),
}
}
func (l *Lru) Len() int {
return len(l.cache)
}
func (l *Lru) Add(key interface{}, val interface{}) error {
if l.l == nil {
return errors.New("not init NewLru")
}
l.mu.Lock()
defer l.mu.Unlock()
if e, ok := l.cache[key]; ok { // 以及存在
e.Value.(*Node).Val = val
l.l.MoveToFront(e)
return nil
}
ele := l.l.PushFront(&Node{
Key: key,
Val: val,
})
l.cache[key] = ele
if l.max != 0 && l.l.Len() > l.max {
if e := l.l.Back(); e != nil {
l.l.Remove(e)
node := e.Value.(*Node)
delete(l.cache, node.Key)
if l.Call != nil {
l.Call(node.Key, node.Val)
}
}
}
return nil
}
func (l *Lru) RangeValue(reverse bool, f func(key, value interface{}) error) error {
if reverse {
for e := l.l.Back(); e != nil; e = e.Prev() {
node := e.Value.(*Node)
err := f(node.Key, node.Val)
if err != nil {
return err
}
}
return nil
}
for e := l.l.Front(); e != nil; e = e.Next() {
node := e.Value.(*Node)
err := f(node.Key, node.Val)
if err != nil {
return err
}
}
return nil
}
func (l *Lru) Get(key interface{}) (val interface{}, ok bool) {
if l.cache == nil {
return
}
l.mu.Lock()
defer l.mu.Unlock()
if ele, ok := l.cache[key]; ok {
l.l.MoveToFront(ele)
return ele.Value.(*Node).Val, true
}
return
}
func (l *Lru) Del(key interface{}) {
if l.cache == nil {
return
}
l.mu.Lock()
defer l.mu.Unlock()
if ele, ok := l.cache[key]; ok {
delete(l.cache, ele)
if e := l.l.Back(); e != nil {
l.l.Remove(e)
delete(l.cache, key)
if l.Call != nil {
node := e.Value.(*Node)
l.Call(node.Key, node.Val)
}
}
}
}