-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.rs
53 lines (41 loc) · 1.22 KB
/
error.rs
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
extern crate iron;
extern crate time;
use iron::prelude::*;
use iron::{Handler, BeforeMiddleware};
use iron::status;
use std::error::Error;
use std::fmt::{self, Debug};
struct ErrorHandler;
struct ErrorProducer;
#[derive(Debug)]
struct StringError(String);
impl fmt::Display for StringError {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
Debug::fmt(self, f)
}
}
impl Error for StringError {
fn description(&self) -> &str { &*self.0 }
}
impl Handler for ErrorHandler {
fn handle(&self, _: &mut Request) -> IronResult<Response> {
// This is never called!
//
// If a BeforeMiddleware returns an error through Err(...),
// and it is not handled by a subsequent BeforeMiddleware in
// the chain, the main handler is not invoked.
Ok(Response::new())
}
}
impl BeforeMiddleware for ErrorProducer {
fn before(&self, _: &mut Request) -> IronResult<()> {
Err(IronError::new(StringError("Error".to_string()), status::BadRequest))
}
}
fn main() {
// Handler is attached here.
let mut chain = Chain::new(ErrorHandler);
// Link our error maker.
chain.link_before(ErrorProducer);
Iron::new(chain).http("localhost:3000").unwrap();
}