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
use std::error::Error as StdError;
use std::io::Error as IoError;

#[derive(Debug)]
pub enum Error {
    Unknown,

    NoDriver,
    NotFile,
    NotLive,

    BadOption,

    OpenDevice,
    OpenFile,
    FileExists,

    BadFormat,
}

impl Error {
    pub fn from_errno() -> Self {
        match IoError::last_os_error().raw_os_error() {
            Some(e) => Self::from_u32(e as u32),
            None => Error::Unknown,
        }
    }

    pub fn from_u32(code: u32) -> Self {
        match code {
            1 => Error::NoDriver,
            2 => Error::NotFile,
            3 => Error::NotLive,
            4 => Error::BadOption,
            5 => Error::OpenDevice,
            6 => Error::OpenFile,
            7 => Error::FileExists,
            8 => Error::BadFormat,
            _ => Error::Unknown,
        }
    }

    pub fn to_str(&self) -> &str {
        match *self {
            Error::Unknown => "Unknown",

            Error::NoDriver => "No driver",
            Error::NotFile => "No file",
            Error::NotLive => "Not live",

            Error::BadOption => "Bad option",

            Error::OpenDevice => "Can't open device",
            Error::OpenFile => "Cant' open file",
            Error::FileExists => "File exists",

            Error::BadFormat => "Bad format",
        }
    }
}

impl StdError for Error {
    fn description(&self) -> &str {
        self.to_str()
    }
}

impl ::std::fmt::Display for Error {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        write!(f, "{:?}", self)
    }
}

impl From<u32> for Error {
    fn from(code: u32) -> Self {
        Error::from_u32(code)
    }
}