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
//! Util for working with hyper and tower

use futures::{try_ready, Async, Future, Poll};
use hyper::client::connect::Connect;
use tower_service::Service;

pub use hyper::client::connect::{Destination, HttpConnector};

/// A bridge between `hyper::client::connect::Connect` types
/// and `tower_util::MakeConnection`.
///
/// # Example
///
/// ```
/// # use tower_hyper::util::Connector;
/// # use tower_hyper::client::{Connect, Builder};
/// # use hyper::client::HttpConnector;
/// # use tokio_executor::DefaultExecutor;
/// let connector = Connector::new(HttpConnector::new(1));
/// let mut hyper = Connect::new(connector);
/// # let hyper: Connect<hyper::client::connect::Destination, Vec<u8>, Connector<HttpConnector>, DefaultExecutor> = hyper;
/// ```
#[derive(Debug)]
pub struct Connector<C> {
    inner: C,
}

/// The future that resolves to the eventual inner transport
/// as built by `hyper::client::connect::Connect`.
#[derive(Debug)]
pub struct ConnectorFuture<C>
where
    C: Connect,
{
    inner: C::Future,
}

impl<C> Connector<C>
where
    C: Connect,
{
    /// Construct a new connector from a `hyper::client::connect::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))
    }
}