use std::error;
use std::fmt::{self, Display, Formatter};
use std::io;
use std::path::PathBuf;
#[derive(Debug, Clone)]
pub struct CommandFailed {
pub dir: PathBuf,
pub command: PathBuf,
pub args: Vec<String>,
pub stderr: Option<String>,
}
impl Display for CommandFailed {
fn fmt(&self, fmt: &mut Formatter) -> Result<(), fmt::Error> {
write!(
fmt,
"command failed: {}: {}",
self.dir.display(),
self.command.display()
)?;
for arg in &self.args {
write!(fmt, " {}", arg)?;
}
if let Some(stderr) = &self.stderr {
write!(fmt, ":\n {}", &stderr.trim().replace('\n', "\n "))
} else {
Ok(())
}
}
}
#[derive(Debug)]
pub enum Error {
CommandFailed(CommandFailed),
Io(io::Error),
}
impl Display for Error {
fn fmt(&self, fmt: &mut Formatter) -> Result<(), fmt::Error> {
use Error::*;
match self {
CommandFailed(e) => e.fmt(fmt),
Io(e) => e.fmt(fmt),
}
}
}
impl error::Error for Error {
fn source(&self) -> Option<&(dyn error::Error + 'static)> {
use Error::*;
match self {
Io(e) => e.source(),
_ => None,
}
}
}
impl From<io::Error> for Error {
fn from(e: io::Error) -> Self {
Error::Io(e)
}
}