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
use ebacktrace::define_error;
use std::{
result,
fmt::{ self, Display, Formatter }
};
#[macro_export] macro_rules! e {
($kind:expr, $($arg:tt)*) => ({ $crate::error::ErrorImpl::with_string($kind, format!($($arg)*)) })
}
#[macro_export] macro_rules! epath {
($($arg:tt)*) => ({ e!($crate::error::ErrorKind::PathError, $($arg)*) });
}
#[macro_export] macro_rules! eexec {
($($arg:tt)*) => ({ e!($crate::error::ErrorKind::ExecError, $($arg)*) });
}
#[macro_export] macro_rules! echild {
($($arg:tt)*) => ({ e!($crate::error::ErrorKind::ChildError, $($arg)*) });
}
#[derive(Debug)]
pub enum ErrorKind {
PathError,
ExecError,
ChildError
}
impl Display for ErrorKind {
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
match self {
Self::PathError => write!(f, "Failed to find the requested binary"),
Self::ExecError => write!(f, "Failed to execute the child"),
Self::ChildError => write!(f, "The child exited with a non-zero error code")
}
}
}
define_error!(ErrorImpl);
pub type Error = ErrorImpl<ErrorKind>;
pub type Result<T = ()> = result::Result<T, ErrorImpl<ErrorKind>>;