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
use std::{convert::From, fmt};

/// Represents the details of the [`Error`](struct.Error.html)
#[derive(Debug)]
pub enum ErrorKind {
    /// An error occurred during initialization in the other thread.
    Uninitialized,
    /// Errors that can possibly occur while accessing an HTTP server.
    HttpRequest(attohttpc::Error),
    /// Metadata service response status code other than 200.
    HttpResponse(attohttpc::StatusCode),
    /// Metadata parse error.
    MetadataParse(&'static str),
}

/// Represents errors that can occur during handling metadata service.
#[derive(Debug)]
pub struct Error {
    kind: ErrorKind,
}

impl Error {
    /// Borrow [`ErrorKind`](enum.ErrorKind.html).
    pub fn kind(&self) -> &ErrorKind {
        &self.kind
    }

    /// To own [`ErrorKind`](enum.ErrorKind.html).
    pub fn into_kind(self) -> ErrorKind {
        self.kind
    }
}

impl fmt::Display for Error {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        use ErrorKind::*;
        match self.kind() {
            Uninitialized => write!(
                f,
                "error occurred in a initialization call from the other thread"
            ),
            HttpRequest(e) => write!(f, "http request error: {}", e),
            HttpResponse(code) => write!(f, "http response status code error: {}", code),
            MetadataParse(tag) => write!(f, "metadata parse error: {}", tag),
        }
    }
}

impl ::std::error::Error for Error {}

impl From<attohttpc::Error> for Error {
    fn from(err: attohttpc::Error) -> Self {
        ErrorKind::HttpRequest(err).into()
    }
}

impl From<attohttpc::StatusCode> for Error {
    fn from(code: attohttpc::StatusCode) -> Self {
        ErrorKind::HttpResponse(code).into()
    }
}

impl From<ErrorKind> for Error {
    fn from(kind: ErrorKind) -> Self {
        Error { kind }
    }
}

/// Wrapper for the `Result` type with an [`Error`](struct.Error.html).
pub type Result<T> = ::std::result::Result<T, Error>;