1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
use std;
use std::error;
use std::fmt;

#[derive(Debug)]
pub enum CellError {
    Generic(GenericError),
    FromUtf8(std::string::FromUtf8Error),
    ParseInt(std::num::ParseIntError),
}

impl CellError {
    pub fn generic(message: &str) -> CellError {
        CellError::Generic(GenericError::new(message))
    }
}

impl From<std::string::FromUtf8Error> for CellError {
    fn from(err: std::string::FromUtf8Error) -> CellError {
        CellError::FromUtf8(err)
    }
}

impl From<std::num::ParseIntError> for CellError {
    fn from(err: std::num::ParseIntError) -> CellError {
        CellError::ParseInt(err)
    }
}

impl fmt::Display for CellError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match *self {
            // Both underlying errors already impl `Display`, so we defer to
            // their implementations.
            CellError::Generic(ref err) => write!(f, "{}", err),
            CellError::FromUtf8(ref err) => write!(f, "{}", err),
            CellError::ParseInt(ref err) => write!(f, "{}", err),
        }
    }
}

impl error::Error for CellError {
    fn description(&self) -> &str {
        // Both underlying errors already impl `Error`, so we defer to their
        // implementations.
        match *self {
            CellError::Generic(ref err) => err.description(),
            CellError::FromUtf8(ref err) => err.description(),
            CellError::ParseInt(ref err) => err.description(),
        }
    }

    fn cause(&self) -> Option<&error::Error> {
        match *self {
            // N.B. Both of these implicitly cast `err` from their concrete
            // types (either `&io::Error` or `&num::ParseIntError`)
            // to a trait object `&Error`. This works because both error types
            // implement `Error`.
            CellError::Generic(ref err) => Some(err),
            CellError::FromUtf8(ref err) => Some(err),
            CellError::ParseInt(ref err) => Some(err),
        }
    }
}

#[derive(Debug)]
pub struct GenericError {
    message: String,
}

impl GenericError {
    pub fn new(message: &str) -> GenericError {
        GenericError {
            message: String::from(message),
        }
    }
}

impl<'a> fmt::Display for GenericError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "Store error: {}", self.message)
    }
}

impl<'a> error::Error for GenericError {
    fn description(&self) -> &str {
        self.message.as_str()
    }

    fn cause(&self) -> Option<&error::Error> {
        None
    }
}