use crate::snapshot_id_set::SnapshotId;
const INITIAL_CAPACITY: usize = 16;
#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
pub struct SnapshotDoubleIndexHeapDebugStats {
pub len: usize,
pub values_cap: usize,
pub index_cap: usize,
pub handles_len: usize,
pub handles_cap: usize,
}
#[derive(Debug)]
pub struct SnapshotDoubleIndexHeap {
size: usize,
values: Vec<SnapshotId>,
index: Vec<usize>,
handles: Vec<usize>,
first_free_handle: usize,
}
impl SnapshotDoubleIndexHeap {
pub fn new() -> Self {
Self::with_capacity(INITIAL_CAPACITY)
}
pub fn with_capacity(capacity: usize) -> Self {
let mut handles = Vec::with_capacity(capacity);
for i in 0..capacity {
handles.push(i + 1);
}
Self {
size: 0,
values: Vec::with_capacity(capacity),
index: Vec::with_capacity(capacity),
handles,
first_free_handle: 0,
}
}
#[inline]
pub fn len(&self) -> usize {
self.size
}
#[inline]
pub fn is_empty(&self) -> bool {
self.size == 0
}
#[inline]
pub fn lowest_or_default(&self, default: SnapshotId) -> SnapshotId {
if self.size > 0 {
self.values[0]
} else {
default
}
}
pub fn add(&mut self, value: SnapshotId) -> usize {
self.ensure_capacity(self.size + 1);
let i = self.size;
self.size += 1;
let handle = self.allocate_handle();
if i >= self.values.len() {
self.values.push(value);
self.index.push(handle);
} else {
self.values[i] = value;
self.index[i] = handle;
}
self.handles[handle] = i;
self.shift_up(i);
handle
}
pub fn remove(&mut self, handle: usize) {
let i = self.handles[handle];
self.swap(i, self.size - 1);
self.size -= 1;
self.shift_up(i);
self.shift_down(i);
self.free_handle(handle);
}
pub fn debug_stats(&self) -> SnapshotDoubleIndexHeapDebugStats {
SnapshotDoubleIndexHeapDebugStats {
len: self.size,
values_cap: self.values.capacity(),
index_cap: self.index.capacity(),
handles_len: self.handles.len(),
handles_cap: self.handles.capacity(),
}
}
fn ensure_capacity(&mut self, capacity: usize) {
if capacity <= self.values.capacity() {
return;
}
let new_capacity = capacity.max(self.values.capacity() * 2);
self.values.reserve(new_capacity - self.values.capacity());
self.index.reserve(new_capacity - self.index.capacity());
let old_len = self.handles.len();
self.handles.reserve(new_capacity - old_len);
for i in old_len..new_capacity {
self.handles.push(i + 1);
}
}
fn allocate_handle(&mut self) -> usize {
let handle = self.first_free_handle;
if handle >= self.handles.len() {
let new_size = self.handles.len().max(1) * 2;
for i in self.handles.len()..new_size {
self.handles.push(i + 1);
}
}
self.first_free_handle = self.handles[handle];
handle
}
fn free_handle(&mut self, handle: usize) {
self.handles[handle] = self.first_free_handle;
self.first_free_handle = handle;
}
fn swap(&mut self, i: usize, j: usize) {
if i >= self.size || j >= self.size {
return;
}
self.values.swap(i, j);
self.index.swap(i, j);
let handle_i = self.index[i];
let handle_j = self.index[j];
self.handles[handle_i] = i;
self.handles[handle_j] = j;
}
fn shift_up(&mut self, mut i: usize) {
if i >= self.size {
return;
}
let value = self.values[i];
while i > 0 {
let parent = (i - 1) / 2;
if self.values[parent] <= value {
break;
}
self.swap(i, parent);
i = parent;
}
}
fn shift_down(&mut self, mut i: usize) {
if i >= self.size {
return;
}
let value = self.values[i];
let half = self.size / 2;
while i < half {
let mut child = 2 * i + 1;
let right = child + 1;
if right < self.size && self.values[right] < self.values[child] {
child = right;
}
if value <= self.values[child] {
break;
}
self.swap(i, child);
i = child;
}
}
}
impl Default for SnapshotDoubleIndexHeap {
fn default() -> Self {
Self::new()
}
}
#[cfg(test)]
#[path = "tests/snapshot_double_index_heap_tests.rs"]
mod tests;