use std::path::PathBuf;
#[derive(Debug)]
#[cfg_attr(feature = "serde", derive(serde::Deserialize, serde::Serialize))]
#[allow(clippy::module_name_repetitions)]
pub struct GcReport {
    pub path: PathBuf,
    pub segment_count: usize,
    pub stale_segment_count: usize,
    pub total_bytes: u64,
    pub stale_bytes: u64,
    pub total_blobs: u64,
    pub stale_blobs: u64,
}
impl std::fmt::Display for GcReport {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        writeln!(f, "--- GC report for vLog @ {:?} ---", self.path)?;
        writeln!(f, "# segments : {}", self.segment_count)?;
        writeln!(f, "# stale    : {}", self.stale_segment_count)?;
        writeln!(f, "Total bytes: {}", self.total_bytes)?;
        writeln!(f, "Stale bytes: {}", self.stale_bytes)?;
        writeln!(f, "Total blobs: {}", self.total_blobs)?;
        writeln!(f, "Stale blobs: {}", self.stale_blobs)?;
        writeln!(f, "Stale %    : {}", self.stale_ratio())?;
        writeln!(f, "Space amp  : {}", self.space_amp())?;
        writeln!(f, "--- GC report done ---")?;
        Ok(())
    }
}
impl GcReport {
    #[must_use]
    pub fn space_amp(&self) -> f32 {
        if self.total_bytes == 0 {
            return 0.0;
        }
        let alive_bytes = self.total_bytes - self.stale_bytes;
        if alive_bytes == 0 {
            return 0.0;
        }
        self.total_bytes as f32 / alive_bytes as f32
    }
    #[must_use]
    pub fn stale_ratio(&self) -> f32 {
        if self.total_bytes == 0 {
            return 0.0;
        }
        if self.stale_bytes == 0 {
            return 0.0;
        }
        self.stale_bytes as f32 / self.total_bytes as f32
    }
}