etcd/store/ttl_key_heap.go

98 lines
1.9 KiB
Go
Raw Normal View History

/*
Copyright 2014 CoreOS, Inc.
Licensed 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.
*/
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
}