tower-hyper 0.1.1

A hyper based tower transport layer.
Documentation
//! 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))
    }
}