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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
mod body;
pub use self::body::ResponseBody;
pub(crate) use self::body::ResponseBodyKind;
pub type Output = ::http::Response<ResponseBody>;
use futures::{Async, Future, Poll};
use http::header::HeaderValue;
use http::{header, Response, StatusCode};
use error::Error;
use input::{self, Input};
pub trait Responder {
fn respond_to(self, input: &mut Input) -> Result<Output, Error>;
}
impl Responder for () {
fn respond_to(self, _: &mut Input) -> Result<Output, Error> {
let mut response = Response::new(Default::default());
*response.status_mut() = StatusCode::NO_CONTENT;
Ok(response)
}
}
impl<T> Responder for Option<T>
where
T: Responder,
{
fn respond_to(self, input: &mut Input) -> Result<Output, Error> {
self.ok_or_else(Error::not_found)?.respond_to(input)
}
}
impl<T> Responder for Result<T, Error>
where
T: Responder,
{
fn respond_to(self, input: &mut Input) -> Result<Output, Error> {
self?.respond_to(input)
}
}
impl<T> Responder for Response<T>
where
T: Into<ResponseBody>,
{
#[inline]
fn respond_to(self, _: &mut Input) -> Result<Output, Error> {
Ok(self.map(Into::into))
}
}
impl Responder for &'static str {
#[inline]
fn respond_to(self, _: &mut Input) -> Result<Output, Error> {
Ok(text_response(self))
}
}
impl Responder for String {
#[inline]
fn respond_to(self, _: &mut Input) -> Result<Output, Error> {
Ok(text_response(self))
}
}
fn text_response<T: Into<ResponseBody>>(body: T) -> Output {
let mut response = Response::new(body.into());
response.headers_mut().insert(
header::CONTENT_TYPE,
HeaderValue::from_static("text/plain; charset=utf-8"),
);
response
}
pub trait AsyncResponder: Send + 'static + sealed::Sealed {
type Output: Responder;
fn poll_respond_to(&mut self, input: &mut Input) -> Poll<Output, Error>;
}
impl<F> AsyncResponder for F
where
F: Future + Send + 'static,
F::Item: Responder,
Error: From<F::Error>,
{
type Output = F::Item;
fn poll_respond_to(&mut self, input: &mut Input) -> Poll<Output, Error> {
let x = try_ready!(input::with_set_current(input, || Future::poll(self)));
x.respond_to(input).map(Async::Ready)
}
}
mod sealed {
use futures::Future;
use super::Responder;
use error::Error;
pub trait Sealed {}
impl<F> Sealed for F
where
F: Future + Send + 'static,
F::Item: Responder,
Error: From<F::Error>,
{
}
}