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
use std::fmt::{Debug, Display, Error as FmtError, Formatter};
use std::sync::Arc;

use crate::body::IngestBody;

quick_error! {
     #[derive(Debug)]
     pub enum RequestError {
        Build(err: http::Error) {
             from()
        }
        Body(err: BodyError) {
             from()
        }
     }
}

pub enum HttpError {
    Build(RequestError),
    Send(Arc<IngestBody>, hyper::error::Error),
    Timeout(Arc<IngestBody>),
    Hyper(hyper::error::Error),
    Utf8(std::string::FromUtf8Error),
}

impl From<RequestError> for HttpError {
    fn from(e: RequestError) -> HttpError {
        HttpError::Build(e)
    }
}

impl From<hyper::error::Error> for HttpError {
    fn from(e: hyper::error::Error) -> HttpError {
        HttpError::Hyper(e)
    }
}

impl From<std::string::FromUtf8Error> for HttpError {
    fn from(e: std::string::FromUtf8Error) -> HttpError {
        HttpError::Utf8(e)
    }
}

impl Display for HttpError {
    fn fmt(&self, f: &mut Formatter) -> Result<(), FmtError> {
        match self {
            HttpError::Send(_, ref e) => { write!(f, "{}", e) }
            HttpError::Timeout(_) => { write!(f, "request timed out!") }
            HttpError::Hyper(ref e) => { write!(f, "{}", e) }
            HttpError::Build(ref e) => { write!(f, "{}", e) }
            HttpError::Utf8(ref e) => { write!(f, "{}", e) }
        }
    }
}

impl Debug for HttpError {
    fn fmt(&self, f: &mut Formatter) -> Result<(), FmtError> {
        match self {
            HttpError::Send(_, ref e) => { write!(f, "{}", e) }
            HttpError::Timeout(_) => { write!(f, "request timed out!") }
            HttpError::Hyper(ref e) => { write!(f, "{}", e) }
            HttpError::Build(ref e) => { write!(f, "{}", e) }
            HttpError::Utf8(ref e) => { write!(f, "{}", e) }
        }
    }
}

quick_error! {
     #[derive(Debug)]
     pub enum BodyError {
        Json(err: serde_json::Error) {
             from()
        }
        Gzip(err: std::io::Error) {
             from()
        }
     }
}

quick_error! {
     #[derive(Debug)]
     pub enum TemplateError {
        InvalidHeader(err: http::Error) {
             from()
        }
        RequiredField(err: std::string::String) {
             from()
        }
     }
}

quick_error! {
     #[derive(Debug)]
     pub enum ParamsError {
        RequiredField(err: std::string::String) {
             from()
        }
     }
}

quick_error! {
     #[derive(Debug)]
     pub enum LineError {
        RequiredField(err: std::string::String) {
             from()
        }
     }
}