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
//! A custom Goblin error
//!

use scroll;
use core::result;
use core::fmt::{self, Display};
use alloc::string::String;
#[cfg(feature = "std")]
use std::{error, io};

#[derive(Debug)]
/// A custom Goblin error
pub enum Error {
    /// The binary is malformed somehow
    Malformed(String),
    /// The binary's magic is unknown or bad
    BadMagic(u64),
    /// An error emanating from reading and interpreting bytes
    Scroll(scroll::Error),
    /// An IO based error
    #[cfg(feature = "std")]
    IO(io::Error),
}

impl Error {
    pub fn description(&self) -> &str {
        match *self {
            #[cfg(feature = "std")]
            Error::IO(_) => { "IO error" }
            Error::Scroll(_) => { "Scroll error" }
            Error::BadMagic(_) => { "Invalid magic number" }
            Error::Malformed(_) => { "Entity is malformed in some way" }
        }
    }
}

#[cfg(feature = "std")]
impl error::Error for Error {
    fn description(&self) -> &str {
        Error::description(self)
    }
    fn cause(&self) -> Option<&error::Error> {
        match *self {
            Error::IO(ref io) => { io.cause() }
            Error::Scroll(ref scroll) => { scroll.cause() }
            Error::BadMagic(_) => { None }
            Error::Malformed(_) => { None }
        }
    }
}

#[cfg(feature = "std")]
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 {
            #[cfg(feature = "std")]
            Error::IO(ref err) => { write!(fmt, "{}", err) },
            Error::Scroll(ref err) => { write!(fmt, "{}", err) },
            Error::BadMagic(magic) => { write! (fmt, "Invalid magic number: 0x{:x}", magic) },
            Error::Malformed(ref msg) => { write! (fmt, "Malformed entity: {}", msg) },
        }
    }
}

/// An impish result
pub type Result<T> = result::Result<T, Error>;