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
use std::error::Error;
use std::fmt;
use std::io;
use nix;
use super::LinearDev;
#[derive(Debug)]
pub enum ErrorEnum {
Error,
Invalid,
NotFound,
CheckFailed(LinearDev, LinearDev),
}
impl fmt::Display for ErrorEnum {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
fmt::Debug::fmt(self, f)
}
}
#[derive(Debug)]
pub enum DmError {
Dm(ErrorEnum, String),
Io(io::Error),
Nix(nix::Error),
}
pub type DmResult<T> = Result<T, DmError>;
impl From<io::Error> for DmError {
fn from(err: io::Error) -> DmError {
DmError::Io(err)
}
}
impl From<nix::Error> for DmError {
fn from(err: nix::Error) -> DmError {
DmError::Nix(err)
}
}
impl fmt::Display for DmError {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match *self {
DmError::Dm(ref err, ref msg) => write!(f, "DM error: {}: {}", err, msg),
DmError::Io(ref err) => write!(f, "IO error: {}", err),
DmError::Nix(ref err) => write!(f, "Nix error: {}", err.description()),
}
}
}
impl Error for DmError {
fn description(&self) -> &str {
match *self {
DmError::Dm(_, ref msg) => msg,
DmError::Io(ref err) => err.description(),
DmError::Nix(ref err) => err.description(),
}
}
fn cause(&self) -> Option<&Error> {
match *self {
DmError::Dm(_, _) => None,
DmError::Io(ref err) => Some(err),
DmError::Nix(ref err) => Some(err),
}
}
}