mirror of
https://github.com/fafhrd91/actix-web
synced 2024-11-27 17:52:56 +01:00
cleanup error
This commit is contained in:
parent
fd3dcdf0f6
commit
78d8d21196
@ -9,10 +9,10 @@
|
|||||||
|
|
||||||
* Asynchronous middlewares
|
* Asynchronous middlewares
|
||||||
|
|
||||||
* Content compression/decompression (br, gzip, deflate)
|
|
||||||
|
|
||||||
* Refactor logger middleware
|
* Refactor logger middleware
|
||||||
|
|
||||||
|
* Content compression/decompression (br, gzip, deflate)
|
||||||
|
|
||||||
|
|
||||||
## 0.2.1 (2017-11-03)
|
## 0.2.1 (2017-11-03)
|
||||||
|
|
||||||
|
35
src/error.rs
35
src/error.rs
@ -1,4 +1,4 @@
|
|||||||
//! Error and Result module.
|
//! Error and Result module
|
||||||
use std::{fmt, result};
|
use std::{fmt, result};
|
||||||
use std::str::Utf8Error;
|
use std::str::Utf8Error;
|
||||||
use std::string::FromUtf8Error;
|
use std::string::FromUtf8Error;
|
||||||
@ -19,19 +19,28 @@ use httpresponse::HttpResponse;
|
|||||||
use httpcodes::{HTTPBadRequest, HTTPMethodNotAllowed};
|
use httpcodes::{HTTPBadRequest, HTTPMethodNotAllowed};
|
||||||
|
|
||||||
/// A specialized [`Result`](https://doc.rust-lang.org/std/result/enum.Result.html)
|
/// A specialized [`Result`](https://doc.rust-lang.org/std/result/enum.Result.html)
|
||||||
/// for actix web operations.
|
/// for actix web operations
|
||||||
///
|
///
|
||||||
/// This typedef is generally used to avoid writing out `actix_web::error::Error` directly and
|
/// This typedef is generally used to avoid writing out `actix_web::error::Error` directly and
|
||||||
/// is otherwise a direct mapping to `Result`.
|
/// is otherwise a direct mapping to `Result`.
|
||||||
pub type Result<T> = result::Result<T, Error>;
|
pub type Result<T> = result::Result<T, Error>;
|
||||||
|
|
||||||
/// Actix web error.
|
/// Actix web error
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct Error {
|
pub struct Error {
|
||||||
cause: Box<ErrorResponse>,
|
cause: Box<ErrorResponse>,
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Error that can be converted to HttpResponse
|
impl Error {
|
||||||
|
|
||||||
|
/// Returns a reference to the underlying cause of this Error.
|
||||||
|
// this should return &Fail but needs this https://github.com/rust-lang/rust/issues/5665
|
||||||
|
pub fn cause(&self) -> &ErrorResponse {
|
||||||
|
self.cause.as_ref()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Error that can be converted to `HttpResponse`
|
||||||
pub trait ErrorResponse: Fail {
|
pub trait ErrorResponse: Fail {
|
||||||
|
|
||||||
/// Create response for error
|
/// Create response for error
|
||||||
@ -48,7 +57,7 @@ impl fmt::Display for Error {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// `HttpResponse` for `Error`.
|
/// `HttpResponse` for `Error`
|
||||||
impl From<Error> for HttpResponse {
|
impl From<Error> for HttpResponse {
|
||||||
fn from(err: Error) -> Self {
|
fn from(err: Error) -> Self {
|
||||||
err.cause.error_response()
|
err.cause.error_response()
|
||||||
@ -68,10 +77,10 @@ impl<T: ErrorResponse> From<T> for Error {
|
|||||||
// }
|
// }
|
||||||
// }
|
// }
|
||||||
|
|
||||||
/// A set of errors that can occur during parsing HTTP streams.
|
/// A set of errors that can occur during parsing HTTP streams
|
||||||
#[derive(Fail, Debug)]
|
#[derive(Fail, Debug)]
|
||||||
pub enum ParseError {
|
pub enum ParseError {
|
||||||
/// An invalid `Method`, such as `GE,T`.
|
/// An invalid `Method`, such as `GE.T`.
|
||||||
#[fail(display="Invalid Method specified")]
|
#[fail(display="Invalid Method specified")]
|
||||||
Method,
|
Method,
|
||||||
/// An invalid `Uri`, such as `exam ple.domain`.
|
/// An invalid `Uri`, such as `exam ple.domain`.
|
||||||
@ -144,7 +153,7 @@ impl From<httparse::Error> for ParseError {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Fail, Debug)]
|
#[derive(Fail, Debug)]
|
||||||
/// A set of errors that can occur during payload parsing.
|
/// A set of errors that can occur during payload parsing
|
||||||
pub enum PayloadError {
|
pub enum PayloadError {
|
||||||
/// A payload reached EOF, but is not complete.
|
/// A payload reached EOF, but is not complete.
|
||||||
#[fail(display="A payload reached EOF, but is not complete.")]
|
#[fail(display="A payload reached EOF, but is not complete.")]
|
||||||
@ -210,7 +219,7 @@ impl From<HttpRangeParseError> for HttpRangeError {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// A set of errors that can occur during parsing multipart streams.
|
/// A set of errors that can occur during parsing multipart streams
|
||||||
#[derive(Fail, Debug)]
|
#[derive(Fail, Debug)]
|
||||||
pub enum MultipartError {
|
pub enum MultipartError {
|
||||||
/// Content-Type header is not found
|
/// Content-Type header is not found
|
||||||
@ -334,6 +343,14 @@ mod tests {
|
|||||||
assert_eq!(format!("{}", e.cause().unwrap()), desc);
|
assert_eq!(format!("{}", e.cause().unwrap()), desc);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_error_cause() {
|
||||||
|
let orig = io::Error::new(io::ErrorKind::Other, "other");
|
||||||
|
let desc = orig.description().to_owned();
|
||||||
|
let e = Error::from(orig);
|
||||||
|
assert_eq!(format!("{}", e.cause()), desc);
|
||||||
|
}
|
||||||
|
|
||||||
macro_rules! from {
|
macro_rules! from {
|
||||||
($from:expr => $error:pat) => {
|
($from:expr => $error:pat) => {
|
||||||
match ParseError::from($from) {
|
match ParseError::from($from) {
|
||||||
|
Loading…
Reference in New Issue
Block a user