-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuffer.go
92 lines (76 loc) · 1.81 KB
/
buffer.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
package extsort
import (
"container/heap"
)
type memBufferEntry struct {
i int
*entry
}
type memBuffer struct {
size int
ents []memBufferEntry
compare Compare
}
func (b *memBuffer) Append(key, val []byte) {
ent := fetchEntry(len(key), len(val))
n := copy(ent.data, key)
copy(ent.data[n:], val)
i := len(b.ents)
b.ents = append(b.ents, memBufferEntry{i, ent})
b.size += len(ent.data)
}
func (b *memBuffer) ByteSize() int { return b.size }
func (b *memBuffer) Len() int { return len(b.ents) }
func (b *memBuffer) Less(i, j int) bool {
e1, e2 := b.ents[i], b.ents[j]
c := b.compare(e1.Key(), e2.Key())
if c != 0 {
return c < 0
}
return e1.i > e2.i
}
func (b *memBuffer) Swap(i, j int) { b.ents[i], b.ents[j] = b.ents[j], b.ents[i] }
func (b *memBuffer) Reset() {
for _, e := range b.ents {
e.Release()
}
b.size = 0
b.ents = b.ents[:0]
}
func (b *memBuffer) Free() {
b.Reset()
b.ents = nil
}
// --------------------------------------------------------------------
type heapItem struct {
section int
*entry
}
type minHeap struct {
items []heapItem
compare Compare
}
func (h *minHeap) Len() int { return len(h.items) }
func (h *minHeap) Less(i, j int) bool {
a, b := h.items[i], h.items[j]
c := h.compare(a.Key(), b.Key())
if c != 0 {
return c < 0
}
return a.section > b.section
}
func (h *minHeap) Swap(i, j int) { h.items[i], h.items[j] = h.items[j], h.items[i] }
func (h *minHeap) Push(x interface{}) { h.items = append(h.items, x.(heapItem)) }
func (h *minHeap) Pop() interface{} {
n := len(h.items)
x := h.items[n-1]
h.items = h.items[:n-1]
return x
}
func (h *minHeap) PushEntry(section int, ent *entry) {
heap.Push(h, heapItem{section: section, entry: ent})
}
func (h *minHeap) PopEntry() (int, *entry) {
item := heap.Pop(h).(heapItem)
return item.section, item.entry
}