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
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
use failure::{Backtrace, Context, Fail};
use std::fmt;

/// Any error that can occur during caching.
#[derive(Debug)]
pub struct Error {
    inner: Context<ErrorKind>,
}

/// Error kinds that can occur during caching.
#[derive(Clone, Eq, PartialEq, Debug, Fail)]
pub enum ErrorKind {
    #[fail(
        display = "Treated resource as local file, but file does not exist ({})",
        _0
    )]
    ResourceNotFound(String),

    #[fail(display = "Unable to parse resource URL ({})", _0)]
    InvalidUrl(String),

    #[fail(display = "An IO error occurred: {:?}", _0)]
    IoError(Option<tokio::io::ErrorKind>),

    #[fail(display = "HTTP response had status code {}", _0)]
    HttpStatusError(u16),

    #[fail(display = "HTTP response timeout out")]
    HttpTimeoutError,

    #[fail(display = "HTTP builder error")]
    HttpBuilderError,

    #[fail(display = "An HTTP error occurred")]
    HttpError,
}

impl Fail for Error {
    fn cause(&self) -> Option<&dyn Fail> {
        self.inner.cause()
    }

    fn backtrace(&self) -> Option<&Backtrace> {
        self.inner.backtrace()
    }
}

impl fmt::Display for Error {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        fmt::Display::fmt(&self.inner, f)
    }
}

impl Error {
    pub fn kind(&self) -> ErrorKind {
        self.inner.get_context().clone()
    }

    pub(crate) fn is_retriable(&self) -> bool {
        match self.inner.get_context() {
            ErrorKind::HttpTimeoutError => true,
            ErrorKind::HttpStatusError(status_code) => match status_code {
                502 => true,
                503 => true,
                504 => true,
                _ => false,
            },
            _ => false,
        }
    }
}

impl From<tokio::io::Error> for Error {
    fn from(err: tokio::io::Error) -> Error {
        Error {
            inner: Context::new(ErrorKind::IoError(Some(err.kind()))),
        }
    }
}

impl From<reqwest::Error> for Error {
    fn from(err: reqwest::Error) -> Error {
        if err.is_status() {
            Error {
                inner: Context::new(ErrorKind::HttpStatusError(err.status().unwrap().as_u16())),
            }
        } else if err.is_timeout() {
            Error {
                inner: Context::new(ErrorKind::HttpTimeoutError),
            }
        } else if err.is_builder() {
            Error {
                inner: Context::new(ErrorKind::HttpBuilderError),
            }
        } else {
            Error {
                inner: Context::new(ErrorKind::HttpError),
            }
        }
    }
}

impl From<ErrorKind> for Error {
    fn from(kind: ErrorKind) -> Error {
        Error {
            inner: Context::new(kind),
        }
    }
}

impl From<Context<ErrorKind>> for Error {
    fn from(inner: Context<ErrorKind>) -> Error {
        Error { inner }
    }
}