use futures::{Future, Poll};
use tower_service::Service;
use std::fmt;
pub struct BoxService<T, U, E> {
inner: Box<dyn Service<T, Response = U, Error = E, Future = BoxFuture<U, E>> + Send>,
}
type BoxFuture<T, E> = Box<dyn Future<Item = T, Error = E> + Send>;
#[derive(Debug)]
struct Boxed<S> {
inner: S,
}
impl<T, U, E> BoxService<T, U, E> {
pub fn new<S>(inner: S) -> Self
where
S: Service<T, Response = U, Error = E> + Send + 'static,
S::Future: Send + 'static,
{
let inner = Box::new(Boxed { inner });
BoxService { inner }
}
}
impl<T, U, E> Service<T> for BoxService<T, U, E> {
type Response = U;
type Error = E;
type Future = BoxFuture<U, E>;
fn poll_ready(&mut self) -> Poll<(), E> {
self.inner.poll_ready()
}
fn call(&mut self, request: T) -> BoxFuture<U, E> {
self.inner.call(request)
}
}
impl<T, U, E> fmt::Debug for BoxService<T, U, E>
where
T: fmt::Debug,
U: fmt::Debug,
E: fmt::Debug,
{
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
fmt.debug_struct("BoxService").finish()
}
}
impl<S, Request> Service<Request> for Boxed<S>
where
S: Service<Request> + 'static,
S::Future: Send + 'static,
{
type Response = S::Response;
type Error = S::Error;
type Future = Box<dyn Future<Item = S::Response, Error = S::Error> + Send>;
fn poll_ready(&mut self) -> Poll<(), Self::Error> {
self.inner.poll_ready()
}
fn call(&mut self, request: Request) -> Self::Future {
Box::new(self.inner.call(request))
}
}