use ebacktrace::define_error;
use std::{
io, 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! eexec {
($($arg:tt)*) => ({ e!($crate::error::ErrorKind::ExecError, $($arg)*) });
}
#[macro_export] macro_rules! eio {
($($arg:tt)*) => ({ e!($crate::error::ErrorKind::InOutError, $($arg)*) });
}
#[macro_export] macro_rules! einval {
($($arg:tt)*) => ({ e!($crate::error::ErrorKind::InvalidValue, $($arg)*) });
}
#[derive(Debug)]
pub enum ErrorKind {
ExecError,
InOutError,
InvalidValue
}
impl Display for ErrorKind {
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
match self {
Self::ExecError => write!(f, "Failed to execute a binary"),
Self::InOutError => write!(f, "An I/O-error occurred"),
Self::InvalidValue => write!(f, "A value is invalid")
}
}
}
define_error!(ErrorImpl);
impl From<io::Error> for ErrorImpl<ErrorKind> {
fn from(underlying: io::Error) -> Self {
ErrorImpl::with_string(ErrorKind::InOutError, underlying)
}
}
impl From<ezexec::error::Error> for ErrorImpl<ErrorKind> {
fn from(underlying: ezexec::error::Error) -> Self {
Self::with_string(ErrorKind::ExecError, underlying)
}
}
pub type Result<T = ()> = result::Result<T, ErrorImpl<ErrorKind>>;