1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
use std::error;
use std::fmt::{self, Display, Formatter};
use std::io;
use std::path::PathBuf;

/// Info for a command that exited non 0.
#[derive(Debug, Clone)]
pub struct CommandFailed {
    /// The current working directory of the command ran.
    pub dir: PathBuf,
    /// The command that was ran.
    pub command: PathBuf,
    /// Args passed to the command that was ran.
    pub args: Vec<String>,
    /// The stderr from the command ran.
    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(())
        }
    }
}

/// The error type for this crate.
#[derive(Debug)]
pub enum Error {
    /// A command exited with non 0.
    CommandFailed(CommandFailed),
    /// An io error occurred.
    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)
    }
}