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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
use futures::{self, Async, Future, Poll, Stream};
use futures::future::{Either, Select2};
use hyper::Client as HyperClient;
use hyper::client::FutureResponse as HyperFutureResponse;
use hyper::{Request as HyperRequest, Response as HyperResponse};
use hyper::Error as HyperError;
use hyper::header::Headers as HyperHeaders;
use hyper::StatusCode;
use hyper::client::HttpConnector;
use hyper_tls::HttpsConnector;
use tokio_core::reactor::{Handle, Timeout};
use std::io::Error as IoError;
use std::error::Error;
use std::fmt;
use std::time::Duration;
pub struct HttpResponse {
pub status: StatusCode,
pub body: Box<Stream<Item = Vec<u8>, Error = HttpDispatchError> + Send>,
pub headers: HyperHeaders,
}
pub struct BufferedHttpResponse {
pub status: StatusCode,
pub body: Vec<u8>,
pub headers: HyperHeaders,
}
pub struct BufferedHttpResponseFuture {
status: StatusCode,
headers: HyperHeaders,
future: futures::stream::Concat2<Box<Stream<Item = Vec<u8>, Error = HttpDispatchError> + Send>>,
}
impl Future for BufferedHttpResponseFuture {
type Item = BufferedHttpResponse;
type Error = HttpDispatchError;
fn poll(&mut self) -> Poll<Self::Item, Self::Error> {
self.future.poll().map(|async| {
async.map(|body| BufferedHttpResponse {
status: self.status,
headers: self.headers.clone(),
body: body,
})
})
}
}
impl HttpResponse {
pub fn buffer(self) -> BufferedHttpResponseFuture {
BufferedHttpResponseFuture {
status: self.status,
headers: self.headers,
future: self.body.concat2(),
}
}
fn from_hyper(hyper_response: HyperResponse) -> HttpResponse {
HttpResponse {
status: hyper_response.status(),
headers: hyper_response.headers().to_owned(),
body: Box::new(
hyper_response
.body()
.from_err()
.map(|chunk| chunk.as_ref().to_vec()),
),
}
}
}
#[derive(Debug, PartialEq)]
pub struct HttpDispatchError {
message: String,
}
impl Error for HttpDispatchError {
fn description(&self) -> &str {
&self.message
}
}
impl fmt::Display for HttpDispatchError {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{}", self.message)
}
}
impl From<HyperError> for HttpDispatchError {
fn from(err: HyperError) -> HttpDispatchError {
HttpDispatchError {
message: err.description().to_string(),
}
}
}
impl From<IoError> for HttpDispatchError {
fn from(err: IoError) -> HttpDispatchError {
HttpDispatchError {
message: err.description().to_string(),
}
}
}
#[derive(Debug, PartialEq)]
pub struct TlsError {
message: String,
}
impl Error for TlsError {
fn description(&self) -> &str {
&self.message
}
}
impl fmt::Display for TlsError {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{}", self.message)
}
}
pub struct HttpClientFuture(ClientFutureInner);
enum ClientFutureInner {
HyperWithTimeout(Select2<HyperFutureResponse, Timeout>),
Error(String),
}
impl Future for HttpClientFuture {
type Item = HttpResponse;
type Error = HttpDispatchError;
fn poll(&mut self) -> Poll<Self::Item, Self::Error> {
match self.0 {
ClientFutureInner::Error(ref message) => Err(HttpDispatchError {
message: message.clone(),
}),
ClientFutureInner::HyperWithTimeout(ref mut select_future) => match select_future.poll() {
Err(Either::A((hyper_err, _))) => Err(hyper_err.into()),
Err(Either::B((io_err, _))) => Err(io_err.into()),
Ok(Async::NotReady) => Ok(Async::NotReady),
Ok(Async::Ready(Either::A((hyper_res, _)))) => Ok(Async::Ready(HttpResponse::from_hyper(hyper_res))),
Ok(Async::Ready(Either::B(((), _)))) => Err(HttpDispatchError {
message: "Request timed out".into(),
}),
},
}
}
}
pub struct HttpsClient {
inner: HyperClient<HttpsConnector<HttpConnector>>,
handle: Handle,
}
impl HttpsClient {
pub fn new(handle: &Handle) -> Result<HttpsClient, TlsError> {
let connector = match HttpsConnector::new(4, handle) {
Ok(connector) => connector,
Err(tls_error) => {
return Err(TlsError {
message: format!("Couldn't create NativeTlsClient: {}", tls_error),
})
}
};
let inner = HyperClient::configure().connector(connector).build(handle);
Ok(HttpsClient {
inner: inner,
handle: handle.clone(),
})
}
}
pub struct HttpClient {
inner: HyperClient<HttpConnector>,
handle: Handle,
}
impl HttpClient {
pub fn new(handle: &Handle) -> Result<HttpClient, ()> {
let inner = HyperClient::configure().build(handle);
Ok(HttpClient {
inner: inner,
handle: handle.clone(),
})
}
}
pub trait DispatchRequest {
type Future: Future<Item = HttpResponse, Error = HttpDispatchError> + 'static;
fn dispatch(&self, request: HyperRequest, timeout: Option<Duration>) -> Self::Future;
}
impl DispatchRequest for HttpsClient {
type Future = HttpClientFuture;
fn dispatch(&self, hyper_request: HyperRequest, timeout: Option<Duration>) -> Self::Future {
let inner = match Timeout::new(timeout.unwrap_or(Duration::new(5, 0)), &self.handle) {
Err(err) => ClientFutureInner::Error(format!("Error creating timeout future {}", err)),
Ok(timeout_future) => {
let future = self.inner.request(hyper_request).select2(timeout_future);
ClientFutureInner::HyperWithTimeout(future)
}
};
HttpClientFuture(inner)
}
}
impl DispatchRequest for HttpClient {
type Future = HttpClientFuture;
fn dispatch(&self, hyper_request: HyperRequest, timeout: Option<Duration>) -> Self::Future {
let inner = match Timeout::new(timeout.unwrap_or(Duration::new(5, 0)), &self.handle) {
Err(err) => ClientFutureInner::Error(format!("Error creating timeout future {}", err)),
Ok(timeout_future) => {
let future = self.inner.request(hyper_request).select2(timeout_future);
ClientFutureInner::HyperWithTimeout(future)
}
};
HttpClientFuture(inner)
}
}