imag/libimagstore/src/error.rs

96 lines
2.1 KiB
Rust
Raw Normal View History

2016-01-12 17:51:13 +00:00
use std::error::Error;
use std::fmt::Display;
use std::fmt::Formatter;
use std::fmt::Error as FmtError;
use std::clone::Clone;
2016-01-21 20:31:48 +00:00
/**
* Kind of store error
*/
2016-01-16 13:26:29 +00:00
#[derive(Clone, Copy, Debug)]
pub enum StoreErrorKind {
FileError,
IdLocked,
IdNotFound,
OutOfMemory,
FileNotFound,
FileNotCreated,
StorePathExists,
// maybe more
}
fn store_error_type_as_str(e: &StoreErrorKind) -> &'static str {
match e {
&StoreErrorKind::FileError => "File Error",
&StoreErrorKind::IdLocked => "ID locked",
&StoreErrorKind::IdNotFound => "ID not found",
&StoreErrorKind::OutOfMemory => "Out of Memory",
&StoreErrorKind::FileNotFound => "File corresponding to ID not found",
&StoreErrorKind::FileNotCreated => "File corresponding to ID could not be created",
&StoreErrorKind::StorePathExists => "Store path exists",
}
}
impl Display for StoreErrorKind {
fn fmt(&self, fmt: &mut Formatter) -> Result<(), FmtError> {
try!(write!(fmt, "{}", store_error_type_as_str(self)));
Ok(())
}
}
2016-01-21 20:31:48 +00:00
/**
* Store error type
*/
2016-01-16 13:29:09 +00:00
#[derive(Debug)]
2016-01-12 17:51:13 +00:00
pub struct StoreError {
err_type: StoreErrorKind,
2016-01-12 17:51:13 +00:00
cause: Option<Box<Error>>,
}
impl StoreError {
2016-01-21 20:31:48 +00:00
/**
* Build a new StoreError from an StoreErrorKind, optionally with cause
*/
pub fn new(errtype: StoreErrorKind, cause: Option<Box<Error>>)
2016-01-16 12:39:53 +00:00
-> StoreError
{
2016-01-12 17:51:13 +00:00
StoreError {
2016-01-16 12:39:53 +00:00
err_type: errtype,
cause: cause,
2016-01-12 17:51:13 +00:00
}
}
2016-01-21 20:31:48 +00:00
/**
* Get the error type of this StoreError
*/
pub fn err_type(&self) -> StoreErrorKind {
self.err_type.clone()
}
2016-01-12 17:51:13 +00:00
}
impl Display for StoreError {
fn fmt(&self, fmt: &mut Formatter) -> Result<(), FmtError> {
2016-01-16 13:08:39 +00:00
try!(write!(fmt, "[{}]", store_error_type_as_str(&self.err_type.clone())));
2016-01-12 17:51:13 +00:00
Ok(())
}
}
impl Error for StoreError {
fn description(&self) -> &str {
2016-01-16 13:08:39 +00:00
store_error_type_as_str(&self.err_type.clone())
2016-01-12 17:51:13 +00:00
}
fn cause(&self) -> Option<&Error> {
self.cause.as_ref().map(|e| &**e)
}
}