etcd/store/ttl_key_heap.go

71 lines
1.2 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{}) {
2013-11-04 11:34:47 +04:00
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
}
2013-11-05 09:51:14 +04:00
func (h *ttlKeyHeap) pop() *Node {
2013-11-05 09:33:23 +04:00
x := heap.Pop(h)
n, _ := x.(*Node)
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)
}
2013-11-05 09:51:14 +04:00
func (h *ttlKeyHeap) update(n *Node) {
index := h.keyMap[n]
2013-11-04 11:34:47 +04:00
heap.Remove(h, index)
heap.Push(h, n)
}
2013-11-05 09:22:22 +04:00
2013-11-05 09:51:14 +04:00
func (h *ttlKeyHeap) remove(n *Node) {
index := h.keyMap[n]
2013-11-05 09:22:22 +04:00
heap.Remove(h, index)
}