etcd/store/ttl_key_heap.go

82 lines
1.3 KiB
Go
Raw Normal View History

2013-11-04 11:34:47 +04:00
package store
import (
"container/heap"
)
// An TTLKeyHeap is a min-heap of TTLKeys order by expiration time
2013-11-05 09:51:14 +04:00
type ttlKeyHeap struct {
array []*node
keyMap map[*node]int
2013-11-04 11:34:47 +04:00
}
2013-11-05 09:51:14 +04:00
func newTtlKeyHeap() *ttlKeyHeap {
h := &ttlKeyHeap{keyMap: make(map[*node]int)}
2013-11-05 08:31:24 +04:00
heap.Init(h)
return h
}
2013-11-05 09:51:14 +04:00
func (h ttlKeyHeap) Len() int {
return len(h.array)
2013-11-04 11:34:47 +04:00
}
2013-11-05 09:51:14 +04:00
func (h ttlKeyHeap) Less(i, j int) bool {
return h.array[i].ExpireTime.Before(h.array[j].ExpireTime)
2013-11-04 11:34:47 +04:00
}
2013-11-05 09:51:14 +04:00
func (h ttlKeyHeap) Swap(i, j int) {
2013-11-04 11:34:47 +04:00
// swap node
2013-11-05 09:51:14 +04:00
h.array[i], h.array[j] = h.array[j], h.array[i]
2013-11-04 11:34:47 +04:00
// update map
2013-11-05 09:51:14 +04:00
h.keyMap[h.array[i]] = i
h.keyMap[h.array[j]] = j
2013-11-04 11:34:47 +04:00
}
2013-11-05 09:51:14 +04:00
func (h *ttlKeyHeap) Push(x interface{}) {
n, _ := x.(*node)
2013-11-05 09:51:14 +04:00
h.keyMap[n] = len(h.array)
h.array = append(h.array, n)
2013-11-04 11:34:47 +04:00
}
2013-11-05 09:51:14 +04:00
func (h *ttlKeyHeap) Pop() interface{} {
old := h.array
2013-11-04 11:34:47 +04:00
n := len(old)
x := old[n-1]
2013-11-05 09:51:14 +04:00
h.array = old[0 : n-1]
delete(h.keyMap, x)
2013-11-04 11:34:47 +04:00
return x
}
func (h *ttlKeyHeap) top() *node {
2013-11-06 09:47:25 +04:00
if h.Len() != 0 {
return h.array[0]
}
return nil
2013-11-05 10:13:26 +04:00
}
func (h *ttlKeyHeap) pop() *node {
2013-11-05 09:33:23 +04:00
x := heap.Pop(h)
n, _ := x.(*node)
2013-11-05 09:33:23 +04:00
return n
}
2013-11-05 09:51:14 +04:00
func (h *ttlKeyHeap) push(x interface{}) {
2013-11-05 09:33:23 +04:00
heap.Push(h, x)
}
func (h *ttlKeyHeap) update(n *node) {
2013-11-06 09:47:25 +04:00
index, ok := h.keyMap[n]
if ok {
heap.Remove(h, index)
heap.Push(h, n)
}
2013-11-04 11:34:47 +04:00
}
2013-11-05 09:22:22 +04:00
func (h *ttlKeyHeap) remove(n *node) {
2013-11-06 09:47:25 +04:00
index, ok := h.keyMap[n]
if ok {
heap.Remove(h, index)
}
2013-11-05 09:22:22 +04:00
}