2020-12-01 05:34:33 +00:00
|
|
|
#[derive(Debug, Default)]
|
|
|
|
/// Tracker for progress of operations iterating over `Datastore` contents.
|
|
|
|
pub struct StoreProgress {
|
|
|
|
/// Completed groups
|
|
|
|
pub done_groups: u64,
|
|
|
|
/// Total groups
|
|
|
|
pub total_groups: u64,
|
|
|
|
/// Completed snapshots within current group
|
|
|
|
pub done_snapshots: u64,
|
|
|
|
/// Total snapshots in current group
|
|
|
|
pub group_snapshots: u64,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl StoreProgress {
|
|
|
|
pub fn new(total_groups: u64) -> Self {
|
|
|
|
StoreProgress {
|
|
|
|
total_groups,
|
|
|
|
.. Default::default()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Calculates an interpolated relative progress based on current counters.
|
|
|
|
pub fn percentage(&self) -> f64 {
|
|
|
|
let per_groups = (self.done_groups as f64) / (self.total_groups as f64);
|
|
|
|
if self.group_snapshots == 0 {
|
|
|
|
per_groups
|
|
|
|
} else {
|
|
|
|
let per_snapshots = (self.done_snapshots as f64) / (self.group_snapshots as f64);
|
|
|
|
per_groups + (1.0 / self.total_groups as f64) * per_snapshots
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl std::fmt::Display for StoreProgress {
|
|
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
2021-05-07 08:03:08 +00:00
|
|
|
let current_group = if self.done_groups < self.total_groups {
|
|
|
|
self.done_groups + 1
|
|
|
|
} else {
|
|
|
|
self.done_groups
|
|
|
|
};
|
|
|
|
|
2020-12-01 05:34:33 +00:00
|
|
|
if self.group_snapshots == 0 {
|
|
|
|
write!(
|
|
|
|
f,
|
|
|
|
"{:.2}% ({} of {} groups)",
|
|
|
|
self.percentage() * 100.0,
|
|
|
|
self.done_groups,
|
|
|
|
self.total_groups,
|
|
|
|
)
|
|
|
|
} else if self.total_groups == 1 {
|
|
|
|
write!(
|
|
|
|
f,
|
|
|
|
"{:.2}% ({} of {} snapshots)",
|
|
|
|
self.percentage() * 100.0,
|
|
|
|
self.done_snapshots,
|
|
|
|
self.group_snapshots,
|
|
|
|
)
|
2021-05-07 08:03:08 +00:00
|
|
|
} else if self.done_snapshots == self.group_snapshots {
|
|
|
|
write!(
|
|
|
|
f,
|
|
|
|
"{:.2}% ({} of {} groups)",
|
|
|
|
self.percentage() * 100.0,
|
|
|
|
current_group,
|
|
|
|
self.total_groups,
|
|
|
|
)
|
2020-12-01 05:34:33 +00:00
|
|
|
} else {
|
|
|
|
write!(
|
|
|
|
f,
|
2021-05-07 08:03:09 +00:00
|
|
|
"{:.2}% ({} of {} groups, {} of {} group #{}'s snapshots)",
|
2020-12-01 05:34:33 +00:00
|
|
|
self.percentage() * 100.0,
|
|
|
|
self.done_groups,
|
|
|
|
self.total_groups,
|
|
|
|
self.done_snapshots,
|
|
|
|
self.group_snapshots,
|
2021-05-07 08:03:09 +00:00
|
|
|
current_group,
|
2020-12-01 05:34:33 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|