pub use std::error::Error;
use std::fmt;
use std::result;
pub type Result<T> = result::Result<T, MazeError>;
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
pub enum ErrorKind {
InvalidDimensions,
InvalidDimensionsNotNumber,
InvalidVertexOrVertices,
}
impl ErrorKind {
fn as_str(&self) -> &'static str {
match *self {
ErrorKind::InvalidDimensionsNotNumber => "invalid dimensions: non-numeric values",
ErrorKind::InvalidDimensions => "invalid dimensions: non (positive) integer values",
ErrorKind::InvalidVertexOrVertices => "invalid vertex or vertices",
}
}
}
pub struct MazeError {
repr: Repr,
}
#[derive(Debug)]
enum Repr {
Simple(ErrorKind),
Custom(Box<Custom>),
}
#[derive(Debug)]
struct Custom {
kind: ErrorKind,
error: Box<dyn Error + Send + Sync>,
}
impl MazeError {
pub fn new<E>(kind: ErrorKind, error: E) -> Self
where
E: Into<Box<dyn Error + Send + Sync>>,
{
MazeError {
repr: Repr::Custom(Box::new(Custom {
kind: kind,
error: error.into(),
})),
}
}
pub fn of(kind: ErrorKind) -> Self {
MazeError {
repr: Repr::Simple(kind),
}
}
}
impl Error for MazeError {}
impl fmt::Debug for MazeError {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
fmt::Debug::fmt(&self.repr, f)
}
}
impl fmt::Display for MazeError {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match self.repr {
Repr::Simple(kind) => write!(f, "Error: {}", kind.as_str()),
Repr::Custom(ref custom_error) => write!(f, "{}", custom_error.error),
}
}
}
impl From<ErrorKind> for MazeError {
#[inline]
fn from(kind: ErrorKind) -> MazeError {
MazeError {
repr: Repr::Simple(kind),
}
}
}