2018-10-03 06:47:50 +02:00
|
|
|
use futures::{Async, Future, Poll};
|
|
|
|
|
|
|
|
use super::{IntoNewService, NewService, Service};
|
2018-10-03 07:18:07 +02:00
|
|
|
use cell::Cell;
|
2018-10-03 06:47:50 +02:00
|
|
|
|
|
|
|
/// Service for the `then` combinator, chaining a computation onto the end of
|
|
|
|
/// another service.
|
|
|
|
///
|
|
|
|
/// This is created by the `ServiceExt::then` method.
|
|
|
|
pub struct Then<A, B> {
|
|
|
|
a: A,
|
2018-10-03 07:18:07 +02:00
|
|
|
b: Cell<B>,
|
2018-10-03 06:47:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<A, B> Then<A, B>
|
|
|
|
where
|
|
|
|
A: Service,
|
|
|
|
B: Service<Request = Result<A::Response, A::Error>, Error = A::Error>,
|
|
|
|
{
|
|
|
|
/// Create new `Then` combinator
|
|
|
|
pub fn new(a: A, b: B) -> Then<A, B> {
|
2018-10-03 07:18:07 +02:00
|
|
|
Then { a, b: Cell::new(b) }
|
2018-10-03 06:47:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<A, B> Clone for Then<A, B>
|
|
|
|
where
|
|
|
|
A: Service + Clone,
|
|
|
|
B: Service<Request = Result<A::Response, A::Error>, Error = A::Error>,
|
|
|
|
{
|
|
|
|
fn clone(&self) -> Self {
|
|
|
|
Then {
|
|
|
|
a: self.a.clone(),
|
|
|
|
b: self.b.clone(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<A, B> Service for Then<A, B>
|
|
|
|
where
|
|
|
|
A: Service,
|
|
|
|
B: Service<Request = Result<A::Response, A::Error>, Error = A::Error>,
|
|
|
|
{
|
|
|
|
type Request = A::Request;
|
|
|
|
type Response = B::Response;
|
|
|
|
type Error = B::Error;
|
|
|
|
type Future = ThenFuture<A, B>;
|
|
|
|
|
|
|
|
fn poll_ready(&mut self) -> Poll<(), Self::Error> {
|
|
|
|
let _ = try_ready!(self.a.poll_ready());
|
|
|
|
self.b.borrow_mut().poll_ready()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn call(&mut self, req: Self::Request) -> Self::Future {
|
|
|
|
ThenFuture::new(self.a.call(req), self.b.clone())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct ThenFuture<A, B>
|
|
|
|
where
|
|
|
|
A: Service,
|
|
|
|
B: Service<Request = Result<A::Response, A::Error>>,
|
|
|
|
{
|
2018-10-03 07:18:07 +02:00
|
|
|
b: Cell<B>,
|
2018-10-03 06:47:50 +02:00
|
|
|
fut_b: Option<B::Future>,
|
|
|
|
fut_a: A::Future,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<A, B> ThenFuture<A, B>
|
|
|
|
where
|
|
|
|
A: Service,
|
|
|
|
B: Service<Request = Result<A::Response, A::Error>>,
|
|
|
|
{
|
2018-10-03 07:18:07 +02:00
|
|
|
fn new(fut_a: A::Future, b: Cell<B>) -> Self {
|
2018-10-03 06:47:50 +02:00
|
|
|
ThenFuture {
|
|
|
|
b,
|
|
|
|
fut_a,
|
|
|
|
fut_b: None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<A, B> Future for ThenFuture<A, B>
|
|
|
|
where
|
|
|
|
A: Service,
|
|
|
|
B: Service<Request = Result<A::Response, A::Error>>,
|
|
|
|
{
|
|
|
|
type Item = B::Response;
|
|
|
|
type Error = B::Error;
|
|
|
|
|
|
|
|
fn poll(&mut self) -> Poll<Self::Item, Self::Error> {
|
|
|
|
if let Some(ref mut fut) = self.fut_b {
|
|
|
|
return fut.poll();
|
|
|
|
}
|
|
|
|
|
|
|
|
match self.fut_a.poll() {
|
|
|
|
Ok(Async::Ready(resp)) => {
|
|
|
|
self.fut_b = Some(self.b.borrow_mut().call(Ok(resp)));
|
|
|
|
self.poll()
|
|
|
|
}
|
|
|
|
Err(err) => {
|
|
|
|
self.fut_b = Some(self.b.borrow_mut().call(Err(err)));
|
|
|
|
self.poll()
|
|
|
|
}
|
|
|
|
Ok(Async::NotReady) => Ok(Async::NotReady),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// `ThenNewService` new service combinator
|
|
|
|
pub struct ThenNewService<A, B> {
|
|
|
|
a: A,
|
|
|
|
b: B,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<A, B> ThenNewService<A, B>
|
|
|
|
where
|
|
|
|
A: NewService,
|
|
|
|
B: NewService,
|
|
|
|
{
|
|
|
|
/// Create new `AndThen` combinator
|
|
|
|
pub fn new<F: IntoNewService<B>>(a: A, f: F) -> Self {
|
|
|
|
Self {
|
|
|
|
a,
|
|
|
|
b: f.into_new_service(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<A, B> NewService for ThenNewService<A, B>
|
|
|
|
where
|
|
|
|
A: NewService,
|
|
|
|
B: NewService<
|
|
|
|
Request = Result<A::Response, A::Error>,
|
|
|
|
Error = A::Error,
|
|
|
|
InitError = A::InitError,
|
|
|
|
>,
|
|
|
|
{
|
|
|
|
type Request = A::Request;
|
|
|
|
type Response = B::Response;
|
|
|
|
type Error = A::Error;
|
|
|
|
type Service = Then<A::Service, B::Service>;
|
|
|
|
|
|
|
|
type InitError = A::InitError;
|
|
|
|
type Future = ThenNewServiceFuture<A, B>;
|
|
|
|
|
|
|
|
fn new_service(&self) -> Self::Future {
|
|
|
|
ThenNewServiceFuture::new(self.a.new_service(), self.b.new_service())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<A, B> Clone for ThenNewService<A, B>
|
|
|
|
where
|
|
|
|
A: NewService + Clone,
|
|
|
|
B: NewService<
|
|
|
|
Request = Result<A::Response, A::Error>,
|
|
|
|
Error = A::Error,
|
|
|
|
InitError = A::InitError,
|
|
|
|
> + Clone,
|
|
|
|
{
|
|
|
|
fn clone(&self) -> Self {
|
|
|
|
Self {
|
|
|
|
a: self.a.clone(),
|
|
|
|
b: self.b.clone(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct ThenNewServiceFuture<A, B>
|
|
|
|
where
|
|
|
|
A: NewService,
|
|
|
|
B: NewService,
|
|
|
|
{
|
|
|
|
fut_b: B::Future,
|
|
|
|
fut_a: A::Future,
|
|
|
|
a: Option<A::Service>,
|
|
|
|
b: Option<B::Service>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<A, B> ThenNewServiceFuture<A, B>
|
|
|
|
where
|
|
|
|
A: NewService,
|
|
|
|
B: NewService,
|
|
|
|
{
|
|
|
|
fn new(fut_a: A::Future, fut_b: B::Future) -> Self {
|
|
|
|
ThenNewServiceFuture {
|
|
|
|
fut_a,
|
|
|
|
fut_b,
|
|
|
|
a: None,
|
|
|
|
b: None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<A, B> Future for ThenNewServiceFuture<A, B>
|
|
|
|
where
|
|
|
|
A: NewService,
|
|
|
|
B: NewService<
|
|
|
|
Request = Result<A::Response, A::Error>,
|
|
|
|
Error = A::Error,
|
|
|
|
InitError = A::InitError,
|
|
|
|
>,
|
|
|
|
{
|
|
|
|
type Item = Then<A::Service, B::Service>;
|
|
|
|
type Error = A::InitError;
|
|
|
|
|
|
|
|
fn poll(&mut self) -> Poll<Self::Item, Self::Error> {
|
|
|
|
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()? {
|
|
|
|
self.b = Some(service);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if self.a.is_some() && self.b.is_some() {
|
|
|
|
Ok(Async::Ready(Then::new(
|
|
|
|
self.a.take().unwrap(),
|
|
|
|
self.b.take().unwrap(),
|
|
|
|
)))
|
|
|
|
} else {
|
|
|
|
Ok(Async::NotReady)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use futures::future::{err, ok, FutureResult};
|
|
|
|
use futures::{Async, Poll};
|
|
|
|
use std::cell::Cell;
|
|
|
|
use std::rc::Rc;
|
|
|
|
|
|
|
|
use super::*;
|
|
|
|
use service::{NewServiceExt, ServiceExt};
|
|
|
|
|
2018-10-03 07:18:07 +02:00
|
|
|
#[derive(Clone)]
|
2018-10-03 06:47:50 +02:00
|
|
|
struct Srv1(Rc<Cell<usize>>);
|
|
|
|
impl Service for Srv1 {
|
|
|
|
type Request = Result<&'static str, &'static str>;
|
|
|
|
type Response = &'static str;
|
|
|
|
type Error = ();
|
|
|
|
type Future = FutureResult<Self::Response, Self::Error>;
|
|
|
|
|
|
|
|
fn poll_ready(&mut self) -> Poll<(), Self::Error> {
|
|
|
|
self.0.set(self.0.get() + 1);
|
|
|
|
Ok(Async::Ready(()))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn call(&mut self, req: Self::Request) -> Self::Future {
|
|
|
|
match req {
|
|
|
|
Ok(msg) => ok(msg),
|
|
|
|
Err(_) => err(()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Srv2(Rc<Cell<usize>>);
|
|
|
|
|
|
|
|
impl Service for Srv2 {
|
|
|
|
type Request = Result<&'static str, ()>;
|
|
|
|
type Response = (&'static str, &'static str);
|
|
|
|
type Error = ();
|
|
|
|
type Future = FutureResult<Self::Response, ()>;
|
|
|
|
|
|
|
|
fn poll_ready(&mut self) -> Poll<(), Self::Error> {
|
|
|
|
self.0.set(self.0.get() + 1);
|
|
|
|
Ok(Async::Ready(()))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn call(&mut self, req: Self::Request) -> Self::Future {
|
|
|
|
match req {
|
|
|
|
Ok(msg) => ok((msg, "ok")),
|
|
|
|
Err(()) => ok(("srv2", "err")),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_poll_ready() {
|
|
|
|
let cnt = Rc::new(Cell::new(0));
|
|
|
|
let mut srv = Srv1(cnt.clone()).then(Srv2(cnt.clone()));
|
|
|
|
let res = srv.poll_ready();
|
|
|
|
assert!(res.is_ok());
|
|
|
|
assert_eq!(res.unwrap(), Async::Ready(()));
|
|
|
|
assert_eq!(cnt.get(), 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_call() {
|
|
|
|
let cnt = Rc::new(Cell::new(0));
|
2018-10-03 07:18:07 +02:00
|
|
|
let mut srv = Srv1(cnt.clone()).then(Srv2(cnt)).clone();
|
2018-10-03 06:47:50 +02:00
|
|
|
|
|
|
|
let res = srv.call(Ok("srv1")).poll();
|
|
|
|
assert!(res.is_ok());
|
|
|
|
assert_eq!(res.unwrap(), Async::Ready(("srv1", "ok")));
|
|
|
|
|
|
|
|
let res = srv.call(Err("srv")).poll();
|
|
|
|
assert!(res.is_ok());
|
|
|
|
assert_eq!(res.unwrap(), Async::Ready(("srv2", "err")));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_new_service() {
|
|
|
|
let cnt = Rc::new(Cell::new(0));
|
|
|
|
let cnt2 = cnt.clone();
|
|
|
|
let blank = move || Ok::<_, ()>(Srv1(cnt2.clone()));
|
|
|
|
let new_srv = blank.into_new_service().then(move || Ok(Srv2(cnt.clone())));
|
2018-10-03 07:18:07 +02:00
|
|
|
if let Async::Ready(mut srv) = new_srv.clone().new_service().poll().unwrap() {
|
2018-10-03 06:47:50 +02:00
|
|
|
let res = srv.call(Ok("srv1")).poll();
|
|
|
|
assert!(res.is_ok());
|
|
|
|
assert_eq!(res.unwrap(), Async::Ready(("srv1", "ok")));
|
|
|
|
|
|
|
|
let res = srv.call(Err("srv")).poll();
|
|
|
|
assert!(res.is_ok());
|
|
|
|
assert_eq!(res.unwrap(), Async::Ready(("srv2", "err")));
|
|
|
|
} else {
|
|
|
|
panic!()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|