Simplify the name generation

This commit is contained in:
Kerollmops 2025-02-18 18:48:44 +01:00
parent 11a11fc870
commit 4a058a080e
No known key found for this signature in database
GPG Key ID: F250A4C4E3AE5F5F

View File

@ -6,6 +6,7 @@ use std::sync::{Arc, RwLock};
use std::time::{Duration, Instant};
use indexmap::IndexMap;
use itertools::Itertools;
use serde::Serialize;
use utoipa::ToSchema;
@ -22,27 +23,12 @@ pub struct Progress {
#[derive(Default)]
struct InnerProgress {
/// The hierarchy of progress steps.
/// The hierarchy of steps.
steps: Vec<(TypeId, Box<dyn Step>, Instant)>,
/// The durations associated to the top level steps (*first*).
/// The durations associated to each steps.
durations: Vec<(String, Duration)>,
}
fn name_from_steps<'a, I>(steps: I) -> String
where
I: Iterator<Item = &'a Box<dyn Step>> + ExactSizeIterator,
{
let len = steps.len();
let mut name = String::new();
for (i, step) in steps.into_iter().enumerate() {
name.push_str(&step.name());
if i + 1 < len {
name.push_str(" > ");
}
}
name
}
impl Progress {
pub fn update_progress<P: Step>(&self, sub_progress: P) {
let mut inner = self.steps.write().unwrap();
@ -51,10 +37,7 @@ impl Progress {
let now = Instant::now();
let step_type = TypeId::of::<P>();
if let Some(idx) = steps.iter().position(|(id, _, _)| *id == step_type) {
for (i, (_, _, started_at)) in steps[idx..].iter().enumerate() {
let full_name = name_from_steps(steps.iter().take(idx + i + 1).map(|(_, s, _)| s));
durations.push((full_name, now.duration_since(*started_at)));
}
push_steps_durations(steps, durations, now, idx);
steps.truncate(idx);
}
@ -89,15 +72,25 @@ impl Progress {
let InnerProgress { steps, durations, .. } = &mut *inner;
let now = Instant::now();
for (i, (_, _, started_at)) in steps.iter().enumerate() {
let full_name = name_from_steps(steps.iter().take(i + 1).map(|(_, s, _)| s));
durations.push((full_name, now.duration_since(*started_at)));
}
push_steps_durations(steps, durations, now, 0);
durations.drain(..).map(|(name, duration)| (name, format!("{duration:.2?}"))).collect()
}
}
/// Generate the names associated with the durations and push them.
fn push_steps_durations(
steps: &[(TypeId, Box<dyn Step>, Instant)],
durations: &mut Vec<(String, Duration)>,
now: Instant,
idx: usize,
) {
for (i, (_, _, started_at)) in steps.iter().skip(idx).enumerate() {
let full_name = steps.iter().take(idx + i + 1).map(|(_, s, _)| s.name()).join(" > ");
durations.push((full_name, now.duration_since(*started_at)));
}
}
/// This trait lets you use the AtomicSubStep defined right below.
/// The name must be a const that never changed but that can't be enforced by the type system because it make the trait non object-safe.
/// By forcing the Default trait + the &'static str we make it harder to miss-use the trait.