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

use scroll;

#[derive(Debug)]
pub enum Error {
    MalFormed(String),
    IO(io::Error),
    InvalidId(String),
    Scroll(scroll::Error),
    BadOffset(usize, String),
}

impl error::Error for Error {
    fn description(&self) -> &str {
        match *self {
            Error::IO(_) => "IO error",
            Error::MalFormed(_) => "Entity is malformed in some way",
            Error::Scroll(_) => "Scroll error",
            Error::InvalidId(_) => "Invalid index",
            Error::BadOffset(_, _) => "Invalid offset",
        }
    }

    fn cause(&self) -> Option<&error::Error> {
        match *self {
            Error::IO(ref io) => io.source(),
            Error::Scroll(ref err) => err.source(),
            Error::MalFormed(_) => None,
            Error::InvalidId(_) => None,
            Error::BadOffset(_, _) => None,
        }
    }
}

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 Display for Error {
    fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
        match *self {
            Error::IO(ref err) => write!(fmt, "{}", err),
            Error::Scroll(ref err) => write!(fmt, "{}", err),
            Error::MalFormed(ref msg) => write!(fmt, "Malformed entity: {}", msg),
            Error::InvalidId(ref msg) => write!(fmt, "{}", msg),
            Error::BadOffset(offset, ref msg) => write!(fmt, "{}: {}", msg, offset),
        }
    }
}