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
use std::fmt::{self, Display};
use std::{error, io, str};

#[derive(Debug)]
/// Custom `Error` for VTIL parsing
pub enum Error {
    /// An error occured during parsing due to a malformed VTIL file
    Malformed(String),
    /// An I/O error occured
    Io(io::Error),
    /// Error inside of [Scroll](https://docs.rs/scroll) occured
    Scroll(scroll::Error),
}

impl error::Error for Error {
    fn description(&self) -> &str {
        match *self {
            Error::Malformed(_) => "Data is malformed",
            Error::Io(_) => "I/O error",
            Error::Scroll(_) => "Scroll error",
        }
    }

    fn cause(&self) -> Option<&dyn error::Error> {
        match *self {
            Error::Malformed(_) => None,
            Error::Io(ref err) => err.source(),
            Error::Scroll(ref err) => err.source(),
        }
    }
}

impl From<io::Error> for Error {
    fn from(err: io::Error) -> Error {
        Error::Io(err)
    }
}

impl From<scroll::Error> for Error {
    fn from(err: scroll::Error) -> Error {
        Error::Scroll(err)
    }
}

impl From<str::Utf8Error> for Error {
    fn from(err: str::Utf8Error) -> Error {
        Error::Malformed(err.to_string())
    }
}

impl Display for Error {
    fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
        match *self {
            Error::Malformed(ref message) => write!(fmt, "Error while reading: {}", message),
            Error::Io(ref err) => write!(fmt, "{}", err),
            Error::Scroll(ref err) => write!(fmt, "{}", err),
        }
    }
}