1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-10-10 20:22:07 +00:00
actix-web/src/error.rs

214 lines
6.6 KiB
Rust
Raw Normal View History

2017-10-07 04:48:14 +00:00
//! Error and Result module.
use std::error::Error as StdError;
use std::fmt;
use std::io::Error as IoError;
use std::str::Utf8Error;
use std::string::FromUtf8Error;
use cookie;
2017-10-07 04:48:14 +00:00
use httparse;
use http::{StatusCode, Error as HttpError};
2017-10-07 04:48:14 +00:00
use HttpRangeParseError;
2017-10-19 23:22:21 +00:00
use multipart::MultipartError;
2017-10-15 16:33:17 +00:00
use httpresponse::{Body, HttpResponse};
2017-10-07 04:48:14 +00:00
2017-10-13 23:33:23 +00:00
/// A set of errors that can occur during parsing HTTP streams.
2017-10-07 04:48:14 +00:00
#[derive(Debug)]
pub enum ParseError {
2017-10-07 04:48:14 +00:00
/// An invalid `Method`, such as `GE,T`.
Method,
/// An invalid `Uri`, such as `exam ple.domain`.
Uri,
/// An invalid `HttpVersion`, such as `HTP/1.1`
Version,
/// An invalid `Header`.
Header,
/// A message head is too large to be reasonable.
TooLarge,
/// A message reached EOF, but is not complete.
Incomplete,
/// An invalid `Status`, such as `1337 ELITE`.
Status,
/// A timeout occurred waiting for an IO event.
#[allow(dead_code)]
Timeout,
/// An `io::Error` that occurred while trying to read or write to a network stream.
Io(IoError),
/// Parsing a field as string failed
Utf8(Utf8Error),
}
impl fmt::Display for ParseError {
2017-10-07 04:48:14 +00:00
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match *self {
ParseError::Io(ref e) => fmt::Display::fmt(e, f),
ParseError::Utf8(ref e) => fmt::Display::fmt(e, f),
2017-10-07 04:48:14 +00:00
ref e => f.write_str(e.description()),
}
}
}
impl StdError for ParseError {
2017-10-07 04:48:14 +00:00
fn description(&self) -> &str {
match *self {
ParseError::Method => "Invalid Method specified",
ParseError::Version => "Invalid HTTP version specified",
ParseError::Header => "Invalid Header provided",
ParseError::TooLarge => "Message head is too large",
ParseError::Status => "Invalid Status provided",
ParseError::Incomplete => "Message is incomplete",
ParseError::Timeout => "Timeout",
ParseError::Uri => "Uri error",
ParseError::Io(ref e) => e.description(),
ParseError::Utf8(ref e) => e.description(),
2017-10-07 04:48:14 +00:00
}
}
fn cause(&self) -> Option<&StdError> {
match *self {
ParseError::Io(ref error) => Some(error),
ParseError::Utf8(ref error) => Some(error),
2017-10-07 04:48:14 +00:00
_ => None,
}
}
}
impl From<IoError> for ParseError {
fn from(err: IoError) -> ParseError {
ParseError::Io(err)
2017-10-07 04:48:14 +00:00
}
}
impl From<Utf8Error> for ParseError {
fn from(err: Utf8Error) -> ParseError {
ParseError::Utf8(err)
2017-10-07 04:48:14 +00:00
}
}
impl From<FromUtf8Error> for ParseError {
fn from(err: FromUtf8Error) -> ParseError {
ParseError::Utf8(err.utf8_error())
2017-10-07 04:48:14 +00:00
}
}
impl From<httparse::Error> for ParseError {
fn from(err: httparse::Error) -> ParseError {
2017-10-07 04:48:14 +00:00
match err {
httparse::Error::HeaderName |
httparse::Error::HeaderValue |
httparse::Error::NewLine |
httparse::Error::Token => ParseError::Header,
httparse::Error::Status => ParseError::Status,
httparse::Error::TooManyHeaders => ParseError::TooLarge,
httparse::Error::Version => ParseError::Version,
2017-10-07 04:48:14 +00:00
}
}
}
2017-10-13 23:33:23 +00:00
/// Return `BadRequest` for `ParseError`
impl From<ParseError> for HttpResponse {
fn from(err: ParseError) -> Self {
2017-10-22 16:13:29 +00:00
HttpResponse::from_error(StatusCode::BAD_REQUEST, err)
}
}
2017-10-13 23:33:23 +00:00
/// Return `InternalServerError` for `HttpError`,
/// Response generation can return `HttpError`, so it is internal error
impl From<HttpError> for HttpResponse {
fn from(err: HttpError) -> Self {
2017-10-22 16:13:29 +00:00
HttpResponse::from_error(StatusCode::INTERNAL_SERVER_ERROR, err)
}
}
2017-10-13 23:33:23 +00:00
/// Return `BadRequest` for `cookie::ParseError`
impl From<cookie::ParseError> for HttpResponse {
fn from(err: cookie::ParseError) -> Self {
2017-10-22 16:13:29 +00:00
HttpResponse::from_error(StatusCode::BAD_REQUEST, err)
}
}
2017-10-19 23:22:21 +00:00
/// Return `BadRequest` for `MultipartError`
impl From<MultipartError> for HttpResponse {
fn from(err: MultipartError) -> Self {
2017-10-22 16:13:29 +00:00
HttpResponse::from_error(StatusCode::BAD_REQUEST, err)
2017-10-19 23:22:21 +00:00
}
}
/// Return `BadRequest` for `HttpRangeParseError`
impl From<HttpRangeParseError> for HttpResponse {
fn from(_: HttpRangeParseError) -> Self {
HttpResponse::new(StatusCode::BAD_REQUEST,
Body::Binary("Invalid Range header provided".into()))
}
}
2017-10-07 04:48:14 +00:00
#[cfg(test)]
mod tests {
use std::error::Error as StdError;
use std::io;
use httparse;
2017-10-15 06:14:26 +00:00
use http::StatusCode;
use cookie::ParseError as CookieParseError;
use super::{ParseError, HttpResponse, HttpRangeParseError};
#[test]
fn test_into_response() {
let resp: HttpResponse = ParseError::Incomplete.into();
assert_eq!(resp.status(), StatusCode::BAD_REQUEST);
let resp: HttpResponse = HttpRangeParseError::InvalidRange.into();
assert_eq!(resp.status(), StatusCode::BAD_REQUEST);
let resp: HttpResponse = CookieParseError::EmptyName.into();
assert_eq!(resp.status(), StatusCode::BAD_REQUEST);
}
2017-10-07 04:48:14 +00:00
#[test]
fn test_cause() {
let orig = io::Error::new(io::ErrorKind::Other, "other");
let desc = orig.description().to_owned();
2017-10-13 23:33:23 +00:00
let e = ParseError::Io(orig);
2017-10-07 04:48:14 +00:00
assert_eq!(e.cause().unwrap().description(), desc);
}
macro_rules! from {
($from:expr => $error:pat) => {
2017-10-13 23:33:23 +00:00
match ParseError::from($from) {
2017-10-07 04:48:14 +00:00
e @ $error => {
assert!(e.description().len() >= 5);
} ,
e => panic!("{:?}", e)
}
}
}
macro_rules! from_and_cause {
($from:expr => $error:pat) => {
2017-10-13 23:33:23 +00:00
match ParseError::from($from) {
2017-10-07 04:48:14 +00:00
e @ $error => {
let desc = e.cause().unwrap().description();
assert_eq!(desc, $from.description().to_owned());
assert_eq!(desc, e.description());
},
_ => panic!("{:?}", $from)
}
}
}
#[test]
fn test_from() {
2017-10-13 23:33:23 +00:00
from_and_cause!(io::Error::new(io::ErrorKind::Other, "other") => ParseError::Io(..));
from!(httparse::Error::HeaderName => ParseError::Header);
from!(httparse::Error::HeaderName => ParseError::Header);
from!(httparse::Error::HeaderValue => ParseError::Header);
from!(httparse::Error::NewLine => ParseError::Header);
from!(httparse::Error::Status => ParseError::Status);
from!(httparse::Error::Token => ParseError::Header);
from!(httparse::Error::TooManyHeaders => ParseError::TooLarge);
from!(httparse::Error::Version => ParseError::Version);
2017-10-07 04:48:14 +00:00
}
}