use std::marker; use futures::{future, future::FutureResult, Async, Future, IntoFuture, Poll}; use tower_service::Service; use service::{AndThen, FnService, MapErr}; /// Creates new `Service` values. /// /// Acts as a service factory. This is useful for cases where new `Service` /// values must be produced. One case is a TCP servier listener. The listner /// accepts new TCP streams, obtains a new `Service` value using the /// `NewConfigurableService` trait, and uses that new `Service` value to /// process inbound requests on that new TCP stream. pub trait NewConfigurableService { /// Requests handled by the service type Request; /// Responses given by the service type Response; /// Errors produced by the service type Error; /// The `Service` value created by this factory type Service: Service< Request = Self::Request, Response = Self::Response, Error = Self::Error, >; /// Errors produced while building a service. type InitError; /// The future of the `Service` instance. type Future: Future; /// Create and return a new service value asynchronously. fn new_service(&self, C) -> Self::Future; fn and_then(self, new_service: F) -> AndThenNewConfigurableService where Self: Sized, F: IntoNewConfigurableService, B: NewConfigurableService< C, Request = Self::Response, Error = Self::Error, InitError = Self::InitError, >, { AndThenNewConfigurableService::new(self, new_service) } fn map_err(self, f: F) -> MapErrNewConfigurableService where Self: Sized, F: Fn(Self::Error) -> E, { MapErrNewConfigurableService::new(self, f) } fn map_init_err(self, f: F) -> MapInitErr where Self: Sized, F: Fn(Self::InitError) -> E, { MapInitErr::new(self, f) } } /// Trait for types that can be converted to a Service pub trait IntoNewConfigurableService where T: NewConfigurableService, { /// Create service fn into_new_service(self) -> T; } impl IntoNewConfigurableService for T where T: NewConfigurableService, { fn into_new_service(self) -> T { self } } pub struct Fn2NewConfigurableService where S: Service, F: Fn(Cfg) -> Fut, Fut: IntoFuture, { f: F, err: marker::PhantomData, cfg: marker::PhantomData, fut: marker::PhantomData, s: marker::PhantomData, } impl Fn2NewConfigurableService where S: Service, F: Fn(Cfg) -> Fut + 'static, Fut: IntoFuture, { fn new(f: F) -> Self { Fn2NewConfigurableService { f, err: marker::PhantomData, cfg: marker::PhantomData, fut: marker::PhantomData, s: marker::PhantomData, } } } impl IntoNewConfigurableService, Cfg> for F where S: Service, F: Fn(Cfg) -> Fut + 'static, Fut: IntoFuture, { fn into_new_service(self) -> Fn2NewConfigurableService { Fn2NewConfigurableService::new(self) } } impl Clone for Fn2NewConfigurableService where S: Service, F: Fn(Cfg) -> Fut + Clone + 'static, Fut: IntoFuture, { fn clone(&self) -> Self { Self::new(self.f.clone()) } } impl NewConfigurableService for Fn2NewConfigurableService where S: Service, F: Fn(Cfg) -> Fut, Fut: IntoFuture, { type Request = S::Request; type Response = S::Response; type Error = S::Error; type Service = S; type InitError = Err; type Future = Fut::Future; fn new_service(&self, cfg: Cfg) -> Self::Future { (self.f)(cfg).into_future() } } pub struct FnNewConfigurableService where F: Fn(Req) -> Fut, Fut: IntoFuture, { f: F, req: marker::PhantomData, resp: marker::PhantomData, err: marker::PhantomData, ierr: marker::PhantomData, cfg: marker::PhantomData, } impl FnNewConfigurableService where F: Fn(Req) -> Fut + Clone, Fut: IntoFuture, { fn new(f: F) -> Self { FnNewConfigurableService { f, req: marker::PhantomData, resp: marker::PhantomData, err: marker::PhantomData, ierr: marker::PhantomData, cfg: marker::PhantomData, } } } impl NewConfigurableService for FnNewConfigurableService where F: Fn(Req) -> Fut + Clone, Fut: IntoFuture, { type Request = Req; type Response = Resp; type Error = Err; type Service = FnService; type InitError = IErr; type Future = FutureResult; fn new_service(&self, _: Cfg) -> Self::Future { future::ok(FnService::new(self.f.clone())) } } impl IntoNewConfigurableService, Cfg> for F where F: Fn(Req) -> Fut + Clone + 'static, Fut: IntoFuture, { fn into_new_service(self) -> FnNewConfigurableService { FnNewConfigurableService::new(self) } } impl Clone for FnNewConfigurableService where F: Fn(Req) -> Fut + Clone, Fut: IntoFuture, { fn clone(&self) -> Self { Self::new(self.f.clone()) } } /// `AndThenNewConfigurableService` new service combinator pub struct AndThenNewConfigurableService where A: NewConfigurableService, B: NewConfigurableService, { a: A, b: B, c: marker::PhantomData, } impl AndThenNewConfigurableService where A: NewConfigurableService, B: NewConfigurableService, { /// Create new `AndThen` combinator pub fn new>(a: A, f: F) -> Self { Self { a, b: f.into_new_service(), c: marker::PhantomData, } } } impl NewConfigurableService for AndThenNewConfigurableService where A: NewConfigurableService, B: NewConfigurableService< C, Request = A::Response, Error = A::Error, InitError = A::InitError, >, C: Clone, { type Request = A::Request; type Response = B::Response; type Error = A::Error; type Service = AndThen; type InitError = A::InitError; type Future = AndThenNewConfigurableServiceFuture; fn new_service(&self, cfg: C) -> Self::Future { AndThenNewConfigurableServiceFuture::new( self.a.new_service(cfg.clone()), self.b.new_service(cfg), ) } } impl Clone for AndThenNewConfigurableService where A: NewConfigurableService + Clone, B: NewConfigurableService< C, Request = A::Response, Error = A::Error, InitError = A::InitError, > + Clone, { fn clone(&self) -> Self { Self { a: self.a.clone(), b: self.b.clone(), c: marker::PhantomData, } } } pub struct AndThenNewConfigurableServiceFuture where A: NewConfigurableService, B: NewConfigurableService, { fut_b: B::Future, fut_a: A::Future, a: Option, b: Option, c: marker::PhantomData, } impl AndThenNewConfigurableServiceFuture where A: NewConfigurableService, B: NewConfigurableService, { fn new(fut_a: A::Future, fut_b: B::Future) -> Self { AndThenNewConfigurableServiceFuture { fut_a, fut_b, a: None, b: None, c: marker::PhantomData, } } } impl Future for AndThenNewConfigurableServiceFuture where A: NewConfigurableService, B: NewConfigurableService< C, Request = A::Response, Error = A::Error, InitError = A::InitError, >, { type Item = AndThen; type Error = A::InitError; fn poll(&mut self) -> Poll { if let Async::Ready(service) = self.fut_a.poll()? { self.a = Some(service); } if let Async::Ready(service) = self.fut_b.poll().map_err(|e| e.into())? { self.b = Some(service); } if self.a.is_some() && self.b.is_some() { Ok(Async::Ready(AndThen::new( self.a.take().unwrap(), self.b.take().unwrap(), ))) } else { Ok(Async::NotReady) } } } /// `MapErrNewService` new service combinator pub struct MapErrNewConfigurableService where A: NewConfigurableService, { a: A, f: F, e: marker::PhantomData, c: marker::PhantomData, } impl MapErrNewConfigurableService where A: NewConfigurableService, F: Fn(A::Error) -> E, { /// Create new `MapErr` new service instance pub fn new(a: A, f: F) -> Self { Self { a, f, e: marker::PhantomData, c: marker::PhantomData, } } } impl Clone for MapErrNewConfigurableService where A: NewConfigurableService + Clone, F: Fn(A::Error) -> E + Clone, { fn clone(&self) -> Self { Self { a: self.a.clone(), f: self.f.clone(), e: marker::PhantomData, c: marker::PhantomData, } } } impl NewConfigurableService for MapErrNewConfigurableService where A: NewConfigurableService + Clone, F: Fn(A::Error) -> E + Clone, { type Request = A::Request; type Response = A::Response; type Error = E; type Service = MapErr; type InitError = A::InitError; type Future = MapErrNewConfigurableServiceFuture; fn new_service(&self, cfg: C) -> Self::Future { MapErrNewConfigurableServiceFuture::new(self.a.new_service(cfg), self.f.clone()) } } pub struct MapErrNewConfigurableServiceFuture where A: NewConfigurableService, F: Fn(A::Error) -> E, { fut: A::Future, f: F, } impl MapErrNewConfigurableServiceFuture where A: NewConfigurableService, F: Fn(A::Error) -> E, { fn new(fut: A::Future, f: F) -> Self { MapErrNewConfigurableServiceFuture { f, fut } } } impl Future for MapErrNewConfigurableServiceFuture where A: NewConfigurableService, F: Fn(A::Error) -> E + Clone, { type Item = MapErr; type Error = A::InitError; fn poll(&mut self) -> Poll { if let Async::Ready(service) = self.fut.poll()? { Ok(Async::Ready(MapErr::new(service, self.f.clone()))) } else { Ok(Async::NotReady) } } } /// `MapInitErr` service combinator pub struct MapInitErr where A: NewConfigurableService, { a: A, f: F, e: marker::PhantomData, c: marker::PhantomData, } impl MapInitErr where A: NewConfigurableService, F: Fn(A::InitError) -> E, { /// Create new `MapInitErr` combinator pub fn new(a: A, f: F) -> Self { Self { a, f, e: marker::PhantomData, c: marker::PhantomData, } } } impl Clone for MapInitErr where A: NewConfigurableService + Clone, F: Fn(A::InitError) -> E + Clone, { fn clone(&self) -> Self { Self { a: self.a.clone(), f: self.f.clone(), e: marker::PhantomData, c: marker::PhantomData, } } } impl NewConfigurableService for MapInitErr where A: NewConfigurableService, F: Fn(A::InitError) -> E + Clone, { type Request = A::Request; type Response = A::Response; type Error = A::Error; type Service = A::Service; type InitError = E; type Future = MapInitErrFuture; fn new_service(&self, cfg: C) -> Self::Future { MapInitErrFuture::new(self.a.new_service(cfg), self.f.clone()) } } pub struct MapInitErrFuture where A: NewConfigurableService, F: Fn(A::InitError) -> E, { f: F, fut: A::Future, } impl MapInitErrFuture where A: NewConfigurableService, F: Fn(A::InitError) -> E, { fn new(fut: A::Future, f: F) -> Self { MapInitErrFuture { f, fut } } } impl Future for MapInitErrFuture where A: NewConfigurableService, F: Fn(A::InitError) -> E, { type Item = A::Service; type Error = E; fn poll(&mut self) -> Poll { self.fut.poll().map_err(&self.f) } }