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
use futures::{try_ready, Async, Future, Poll};
use hyper::client::connect::Connect;
use tower_service::Service;
pub use hyper::client::connect::{Destination, HttpConnector};
#[derive(Debug)]
pub struct Connector<C> {
inner: C,
}
#[derive(Debug)]
pub struct ConnectorFuture<C>
where
C: Connect,
{
inner: C::Future,
}
impl<C> Connector<C>
where
C: Connect,
{
pub fn new(inner: C) -> Self {
Connector { inner }
}
}
impl<C> Service<Destination> for Connector<C>
where
C: Connect,
{
type Response = C::Transport;
type Error = C::Error;
type Future = ConnectorFuture<C>;
fn poll_ready(&mut self) -> Poll<(), Self::Error> {
Ok(().into())
}
fn call(&mut self, target: Destination) -> Self::Future {
let fut = self.inner.connect(target);
ConnectorFuture { inner: fut }
}
}
impl<C> Future for ConnectorFuture<C>
where
C: Connect,
{
type Item = C::Transport;
type Error = C::Error;
fn poll(&mut self) -> Poll<Self::Item, Self::Error> {
let (transport, _) = try_ready!(self.inner.poll());
Ok(Async::Ready(transport))
}
}