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

use {OSError, Error, MountError};
use remount::RemountError;

impl OSError {
    /// Convert error to the one providing extra useful information
    pub fn explain(self) -> Error {
        let text = self.1.explain();
        match self.0 {
            MountError::Io(e) => Error(self.1, e, text),
            MountError::Remount(RemountError::Io(msg, io_err)) => {
                Error(self.1, io_err, format!("{}, {}", msg, text))
            },
            MountError::Remount(err) => {
                let text = format!("{}, {}", &err, text);
                let err = Box::new(err);
                Error(self.1,
                      io::Error::new(io::ErrorKind::InvalidData, err),
                      text)
            },
        }
    }
}

impl fmt::Display for OSError {
    fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
        write!(fmt, "{}: {}", self.1, self.0)
    }
}

impl StdError for OSError {
    fn cause(&self) -> Option<&StdError> {
        Some(&self.0)
    }
    fn description(&self) -> &str {
        self.0.description()
    }
}

impl fmt::Display for Error {
    fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
        write!(fmt, "{}: {} ({})", self.0, self.1, self.2)
    }
}

impl StdError for Error {
    fn cause(&self) -> Option<&StdError> {
        Some(&self.1)
    }
    fn description(&self) -> &str {
       self.1.description()
    }
}