libimagentryview: Replace error code with code generator macro
This commit is contained in:
parent
5c7412ebc6
commit
ea98cc41da
3 changed files with 7 additions and 74 deletions
|
@ -8,3 +8,6 @@ authors = ["Matthias Beyer <mail@beyermatthias.de>"]
|
||||||
[dependencies.libimagstore]
|
[dependencies.libimagstore]
|
||||||
path = "../libimagstore"
|
path = "../libimagstore"
|
||||||
|
|
||||||
|
[dependencies.libimagerror]
|
||||||
|
path = "../libimagerror"
|
||||||
|
|
||||||
|
|
|
@ -2,78 +2,7 @@ use std::error::Error;
|
||||||
use std::fmt::Error as FmtError;
|
use std::fmt::Error as FmtError;
|
||||||
use std::fmt::{Display, Formatter};
|
use std::fmt::{Display, Formatter};
|
||||||
|
|
||||||
/**
|
generate_error_types!(ViewError, ViewErrorKind,
|
||||||
* Kind of error
|
Unknown => "Unknown view error"
|
||||||
*/
|
);
|
||||||
#[derive(Clone, Copy, Debug, PartialEq)]
|
|
||||||
pub enum ViewErrorKind {
|
|
||||||
}
|
|
||||||
|
|
||||||
fn counter_error_type_as_str(e: &ViewErrorKind) -> &'static str {
|
|
||||||
match e {
|
|
||||||
_ => "",
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl Display for ViewErrorKind {
|
|
||||||
|
|
||||||
fn fmt(&self, fmt: &mut Formatter) -> Result<(), FmtError> {
|
|
||||||
try!(write!(fmt, "{}", counter_error_type_as_str(self)));
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Store error type
|
|
||||||
*/
|
|
||||||
#[derive(Debug)]
|
|
||||||
pub struct ViewError {
|
|
||||||
err_type: ViewErrorKind,
|
|
||||||
cause: Option<Box<Error>>,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl ViewError {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Build a new ViewError from an ViewErrorKind, optionally with cause
|
|
||||||
*/
|
|
||||||
pub fn new(errtype: ViewErrorKind, cause: Option<Box<Error>>)
|
|
||||||
-> ViewError
|
|
||||||
{
|
|
||||||
ViewError {
|
|
||||||
err_type: errtype,
|
|
||||||
cause: cause,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the error type of this ViewError
|
|
||||||
*/
|
|
||||||
pub fn err_type(&self) -> ViewErrorKind {
|
|
||||||
self.err_type
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
impl Display for ViewError {
|
|
||||||
|
|
||||||
fn fmt(&self, fmt: &mut Formatter) -> Result<(), FmtError> {
|
|
||||||
try!(write!(fmt, "[{}]", counter_error_type_as_str(&self.err_type)));
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
impl Error for ViewError {
|
|
||||||
|
|
||||||
fn description(&self) -> &str {
|
|
||||||
counter_error_type_as_str(&self.err_type)
|
|
||||||
}
|
|
||||||
|
|
||||||
fn cause(&self) -> Option<&Error> {
|
|
||||||
self.cause.as_ref().map(|e| &**e)
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
)]
|
)]
|
||||||
|
|
||||||
extern crate libimagstore;
|
extern crate libimagstore;
|
||||||
|
#[macro_use] extern crate libimagerror;
|
||||||
|
|
||||||
pub mod error;
|
pub mod error;
|
||||||
pub mod builtin;
|
pub mod builtin;
|
||||||
|
|
Loading…
Reference in a new issue