imag/libimagentrylink/src/error.rs

91 lines
2.0 KiB
Rust
Raw Normal View History

2016-02-03 14:47:14 +00:00
use std::error::Error;
use std::fmt::Error as FmtError;
2016-04-16 20:03:42 +00:00
use std::fmt::{Display, Formatter};
2016-02-03 14:47:14 +00:00
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum LinkErrorKind {
2016-02-03 18:59:01 +00:00
EntryHeaderReadError,
EntryHeaderWriteError,
ExistingLinkTypeWrong,
LinkTargetDoesNotExist,
InternalConversionError,
InvalidUri,
2016-04-08 21:35:04 +00:00
StoreReadError,
2016-04-10 15:52:12 +00:00
StoreWriteError,
2016-02-03 14:47:14 +00:00
}
fn link_error_type_as_str(e: &LinkErrorKind) -> &'static str {
match e {
2016-02-03 18:59:01 +00:00
&LinkErrorKind::EntryHeaderReadError
=> "Error while reading an entry header",
&LinkErrorKind::EntryHeaderWriteError
=> "Error while writing an entry header",
&LinkErrorKind::ExistingLinkTypeWrong
=> "Existing link entry has wrong type",
&LinkErrorKind::LinkTargetDoesNotExist
=> "Link target does not exist in the store",
&LinkErrorKind::InternalConversionError
=> "Error while converting values internally",
&LinkErrorKind::InvalidUri
=> "URI is not valid",
2016-04-08 21:35:04 +00:00
&LinkErrorKind::StoreReadError
=> "Store read error",
2016-04-10 15:52:12 +00:00
&LinkErrorKind::StoreWriteError
=> "Store write error",
2016-02-03 14:47:14 +00:00
}
}
impl Display for LinkErrorKind {
fn fmt(&self, fmt: &mut Formatter) -> Result<(), FmtError> {
try!(write!(fmt, "{}", link_error_type_as_str(self)));
Ok(())
}
}
#[derive(Debug)]
pub struct LinkError {
kind: LinkErrorKind,
cause: Option<Box<Error>>,
}
impl LinkError {
pub fn new(errtype: LinkErrorKind, cause: Option<Box<Error>>) -> LinkError {
LinkError {
kind: errtype,
cause: cause,
}
}
}
impl Display for LinkError {
fn fmt(&self, fmt: &mut Formatter) -> Result<(), FmtError> {
try!(write!(fmt, "[{}]", link_error_type_as_str(&self.kind)));
Ok(())
}
}
impl Error for LinkError {
fn description(&self) -> &str {
link_error_type_as_str(&self.kind)
}
fn cause(&self) -> Option<&Error> {
self.cause.as_ref().map(|e| &**e)
}
}