use std::cell::RefCell; use std::rc::Rc; use futures::{Async, Future, Poll}; use tower_service::{NewService, Service}; use super::IntoNewService; /// `AndThen` service combinator pub struct AndThen { a: A, b: Rc>, } impl AndThen where A: Service, B: Service, { /// Create new `AndThen` combinator pub fn new(a: A, b: B) -> Self { Self { a, b: Rc::new(RefCell::new(b)), } } } impl Clone for AndThen where A: Service + Clone, B: Service, { fn clone(&self) -> Self { AndThen { a: self.a.clone(), b: self.b.clone(), } } } impl Service for AndThen where A: Service, B: Service, { type Request = A::Request; type Response = B::Response; type Error = A::Error; type Future = AndThenFuture; fn poll_ready(&mut self) -> Poll<(), Self::Error> { match self.a.poll_ready() { Ok(Async::Ready(_)) => self.b.borrow_mut().poll_ready().map_err(|e| e.into()), Ok(Async::NotReady) => Ok(Async::NotReady), Err(err) => Err(err), } } fn call(&mut self, req: Self::Request) -> Self::Future { AndThenFuture::new(self.a.call(req), self.b.clone()) } } pub struct AndThenFuture where A: Service, B: Service, { b: Rc>, fut_b: Option, fut_a: A::Future, } impl AndThenFuture where A: Service, B: Service, { fn new(fut_a: A::Future, b: Rc>) -> Self { AndThenFuture { b, fut_a, fut_b: None, } } } impl Future for AndThenFuture where A: Service, B: Service, B::Error: Into, { type Item = B::Response; type Error = A::Error; fn poll(&mut self) -> Poll { if let Some(ref mut fut) = self.fut_b { return fut.poll().map_err(|e| e.into()); } match self.fut_a.poll() { Ok(Async::Ready(resp)) => { self.fut_b = Some(self.b.borrow_mut().call(resp)); self.poll() } Ok(Async::NotReady) => Ok(Async::NotReady), Err(err) => Err(err), } } } /// `AndThenNewService` new service combinator pub struct AndThenNewService { a: A, b: B, } impl AndThenNewService where A: NewService, B: NewService, { /// Create new `AndThen` combinator pub fn new>(a: A, f: F) -> Self { Self { a, b: f.into_new_service(), } } } impl NewService for AndThenNewService where A: NewService, B: NewService, { type Request = A::Request; type Response = B::Response; type Error = A::Error; type Service = AndThen; type InitError = A::InitError; type Future = AndThenNewServiceFuture; fn new_service(&self) -> Self::Future { AndThenNewServiceFuture::new(self.a.new_service(), self.b.new_service()) } } impl Clone for AndThenNewService where A: NewService + Clone, B: NewService + Clone, { fn clone(&self) -> Self { Self { a: self.a.clone(), b: self.b.clone(), } } } pub struct AndThenNewServiceFuture where A: NewService, B: NewService, { fut_b: B::Future, fut_a: A::Future, a: Option, b: Option, } impl AndThenNewServiceFuture where A: NewService, B: NewService, { fn new(fut_a: A::Future, fut_b: B::Future) -> Self { AndThenNewServiceFuture { fut_a, fut_b, a: None, b: None, } } } impl Future for AndThenNewServiceFuture where A: NewService, B: NewService, { type Item = AndThen; type Error = A::InitError; fn poll(&mut self) -> Poll { if self.a.is_none() { if let Async::Ready(service) = self.fut_a.poll()? { self.a = Some(service); } } if self.b.is_none() { 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) } } }