1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-11-28 08:42:40 +01:00
actix-net/src/service/apply.rs

204 lines
4.7 KiB
Rust
Raw Normal View History

use std::marker::PhantomData;
2018-08-31 21:51:26 +02:00
use futures::{Async, Future, IntoFuture, Poll};
2018-09-11 18:30:22 +02:00
use super::{IntoNewService, NewService, Service};
2018-08-31 21:51:26 +02:00
/// `Apply` service combinator
pub struct Apply<T, F, R, Req> {
service: T,
f: F,
2018-09-07 03:03:01 +02:00
r: PhantomData<(Req, R)>,
}
2018-08-31 21:51:26 +02:00
impl<T, F, R, Req> Apply<T, F, R, Req>
where
T: Service,
2018-08-31 21:51:26 +02:00
T::Error: Into<<R::Future as Future>::Error>,
F: Fn(Req, &mut T) -> R,
2018-08-31 21:51:26 +02:00
R: IntoFuture,
{
/// Create new `Apply` combinator
2018-09-18 00:53:41 +02:00
pub fn new(service: T, f: F) -> Self {
Self {
service,
f,
r: PhantomData,
}
}
}
impl<T, F, R, Req> Clone for Apply<T, F, R, Req>
where
T: Service + Clone,
T::Error: Into<<R::Future as Future>::Error>,
F: Fn(Req, &mut T) -> R + Clone,
R: IntoFuture,
{
fn clone(&self) -> Self {
Apply {
service: self.service.clone(),
f: self.f.clone(),
r: PhantomData,
}
}
}
2018-08-31 21:51:26 +02:00
impl<T, F, R, Req> Service for Apply<T, F, R, Req>
where
T: Service,
2018-08-31 21:51:26 +02:00
T::Error: Into<<R::Future as Future>::Error>,
F: Fn(Req, &mut T) -> R,
2018-08-31 21:51:26 +02:00
R: IntoFuture,
{
type Request = Req;
2018-08-31 21:51:26 +02:00
type Response = <R::Future as Future>::Item;
type Error = <R::Future as Future>::Error;
type Future = R::Future;
fn poll_ready(&mut self) -> Poll<(), Self::Error> {
self.service.poll_ready().map_err(|e| e.into())
}
fn call(&mut self, req: Self::Request) -> Self::Future {
2018-08-31 21:51:26 +02:00
(self.f)(req, &mut self.service).into_future()
}
}
2018-08-31 02:54:59 +02:00
/// `ApplyNewService` new service combinator
2018-08-31 21:51:26 +02:00
pub struct ApplyNewService<T, F, R, Req> {
service: T,
f: F,
2018-08-31 21:51:26 +02:00
r: PhantomData<Fn(Req) -> R>,
}
2018-08-31 21:51:26 +02:00
impl<T, F, R, Req> ApplyNewService<T, F, R, Req>
where
T: NewService,
F: Fn(Req, &mut T::Service) -> R,
2018-08-31 21:51:26 +02:00
R: IntoFuture,
{
2018-08-31 02:54:59 +02:00
/// Create new `ApplyNewService` new service instance
2018-09-18 00:53:41 +02:00
pub fn new<F1: IntoNewService<T>>(service: F1, f: F) -> Self {
Self {
f,
service: service.into_new_service(),
r: PhantomData,
}
}
}
2018-08-31 21:51:26 +02:00
impl<T, F, R, Req> Clone for ApplyNewService<T, F, R, Req>
where
T: NewService + Clone,
F: Fn(Req, &mut T::Service) -> R + Clone,
2018-08-31 21:51:26 +02:00
R: IntoFuture,
{
fn clone(&self) -> Self {
Self {
service: self.service.clone(),
f: self.f.clone(),
r: PhantomData,
}
}
}
2018-08-31 21:51:26 +02:00
impl<T, F, R, Req> NewService for ApplyNewService<T, F, R, Req>
where
T: NewService,
2018-08-31 21:51:26 +02:00
T::Error: Into<<R::Future as Future>::Error>,
F: Fn(Req, &mut T::Service) -> R + Clone,
2018-08-31 21:51:26 +02:00
R: IntoFuture,
{
type Request = Req;
2018-08-31 21:51:26 +02:00
type Response = <R::Future as Future>::Item;
type Error = <R::Future as Future>::Error;
type Service = Apply<T::Service, F, R, Req>;
type InitError = T::InitError;
2018-08-31 21:51:26 +02:00
type Future = ApplyNewServiceFuture<T, F, R, Req>;
fn new_service(&self) -> Self::Future {
2018-08-31 02:54:59 +02:00
ApplyNewServiceFuture::new(self.service.new_service(), self.f.clone())
}
}
2018-08-31 21:51:26 +02:00
pub struct ApplyNewServiceFuture<T, F, R, Req>
where
T: NewService,
F: Fn(Req, &mut T::Service) -> R,
2018-08-31 21:51:26 +02:00
R: IntoFuture,
{
fut: T::Future,
f: Option<F>,
2018-08-31 21:51:26 +02:00
r: PhantomData<Fn(Req) -> R>,
}
2018-08-31 21:51:26 +02:00
impl<T, F, R, Req> ApplyNewServiceFuture<T, F, R, Req>
where
T: NewService,
F: Fn(Req, &mut T::Service) -> R,
2018-08-31 21:51:26 +02:00
R: IntoFuture,
{
fn new(fut: T::Future, f: F) -> Self {
2018-08-31 02:54:59 +02:00
ApplyNewServiceFuture {
f: Some(f),
fut,
r: PhantomData,
}
}
}
2018-08-31 21:51:26 +02:00
impl<T, F, R, Req> Future for ApplyNewServiceFuture<T, F, R, Req>
where
T: NewService,
2018-08-31 21:51:26 +02:00
T::Error: Into<<R::Future as Future>::Error>,
F: Fn(Req, &mut T::Service) -> R,
2018-08-31 21:51:26 +02:00
R: IntoFuture,
{
2018-08-31 21:51:26 +02:00
type Item = Apply<T::Service, F, R, Req>;
type Error = T::InitError;
fn poll(&mut self) -> Poll<Self::Item, Self::Error> {
if let Async::Ready(service) = self.fut.poll()? {
2018-09-18 00:53:41 +02:00
Ok(Async::Ready(Apply::new(service, self.f.take().unwrap())))
} else {
Ok(Async::NotReady)
}
}
}
2018-09-12 22:34:53 +02:00
#[cfg(test)]
mod tests {
use futures::future::{ok, FutureResult};
use futures::{Async, Future, Poll};
use service::{Service, ServiceExt};
#[derive(Clone)]
struct Srv;
impl Service for Srv {
type Request = ();
type Response = ();
type Error = ();
type Future = FutureResult<(), ()>;
fn poll_ready(&mut self) -> Poll<(), Self::Error> {
Ok(Async::Ready(()))
}
fn call(&mut self, _: ()) -> Self::Future {
ok(())
}
}
#[test]
fn test_call() {
let mut srv =
Srv.apply(|req: &'static str, srv| srv.call(()).map(move |res| (req, res)));
let res = srv.call("srv").poll();
assert!(res.is_ok());
assert_eq!(res.unwrap(), Async::Ready(("srv", ())));
}
}