pkgcruft 0.0.18

QA library and tools based on pkgcraft
Documentation
use clap::Args;
use clap::builder::{PossibleValuesParser, TypedValueParser};
use pkgcruft::reporter::Reporter;
use pkgcruft::scan::Scanner;
use strum::VariantNames;

#[derive(Debug, Args)]
#[clap(next_help_heading = Some("Reporter options"))]
pub(crate) struct ReporterOptions {
    /// Reporter to use
    #[arg(
        short = 'R',
        long,
        default_value = "fancy",
        hide_possible_values = true,
        value_parser = PossibleValuesParser::new(Reporter::VARIANTS)
            .map(|s| s.parse::<Reporter>().unwrap()),
    )]
    reporter: Reporter,

    /// Format string for the format reporter
    #[arg(long, required_if_eq("reporter", "format"))]
    format: Option<String>,

    /// Sorting variant for the stats reporter
    #[arg(
        long,
        default_value = "name",
        hide_possible_values = true,
        value_parser = ["name", "count", "level"],
    )]
    stats: Option<String>,
}

impl ReporterOptions {
    pub(crate) fn collapse(&self, scanner: Option<&Scanner>) -> Reporter {
        let mut reporter = self.reporter.clone();

        match &mut reporter {
            Reporter::Format(r) => r.format = self.format.clone().unwrap_or_default(),
            Reporter::Stats(r) => r.sort_by = self.stats.clone().unwrap_or_default(),
            Reporter::Time(r) => {
                r.stats = scanner.map(|s| s.stats().clone()).unwrap_or_default()
            }
            _ => (),
        }

        reporter
    }
}