use std::fmt;
use std::num::ParseIntError;
#[derive(PartialEq, Eq, Debug)]
pub enum OptionsError {
Unsupported(String),
TreeAllAll,
FailedParse(String, NumberSource, ParseIntError),
FailedGlobPattern(String),
}
#[derive(PartialEq, Eq, Debug)]
pub enum NumberSource {
Env(&'static str),
}
impl From<glob::PatternError> for OptionsError {
fn from(error: glob::PatternError) -> Self {
Self::FailedGlobPattern(error.to_string())
}
}
impl fmt::Display for NumberSource {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
Self::Env(env) => write!(f, "environment variable {env}"),
}
}
}
impl fmt::Display for OptionsError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
Self::Unsupported(e) => write!(f, "{e}"),
Self::TreeAllAll => write!(f, "Option --tree is useless given --all --all"),
Self::FailedParse(s, n, e) => write!(f, "Value {s:?} not valid for {n}: {e}"),
Self::FailedGlobPattern(e) => write!(f, "Failed to parse glob pattern: {e}"),
}
}
}