use std::rc::Rc; use std::sync::Arc; use futures::{Async, Future, IntoFuture, Poll}; use crate::transform_err::{TransformFromErr, TransformMapInitErr}; use crate::{IntoNewService, NewService, Service}; /// `Transform` service factory. /// /// Transform factory creates service that wraps other services. /// `Config` is a service factory configuration type. pub trait Transform { /// Requests handled by the service. type Request; /// Responses given by the service. type Response; /// Errors produced by the service. type Error; /// The `TransformService` value created by this factory type Transform: Service< Request = Self::Request, Response = Self::Response, Error = Self::Error, >; /// Errors produced while building a service. type InitError; /// The future response value. type Future: Future; /// Create and return a new service value asynchronously. fn new_transform(&self, service: S) -> Self::Future; /// Map this service's factory error to a different error, /// returning a new transform service factory. fn map_init_err(self, f: F) -> TransformMapInitErr where Self: Sized, F: Fn(Self::InitError) -> E, { TransformMapInitErr::new(self, f) } /// Map this service's init error to any error implementing `From` for /// this service`s `Error`. /// /// Note that this function consumes the receiving transform and returns a /// wrapped version of it. fn from_err(self) -> TransformFromErr where Self: Sized, E: From, { TransformFromErr::new(self) } // /// Map this service's init error to service's init error // /// if it is implementing `Into` to this service`s `InitError`. // /// // /// Note that this function consumes the receiving transform and returns a // /// wrapped version of it. // fn into_err(self) -> TransformIntoErr // where // Self: Sized, // Self::InitError: From, // { // TransformFromErr::new(self) // } } impl Transform for Rc where T: Transform, { type Request = T::Request; type Response = T::Response; type Error = T::Error; type InitError = T::InitError; type Transform = T::Transform; type Future = T::Future; fn new_transform(&self, service: S) -> T::Future { self.as_ref().new_transform(service) } } impl Transform for Arc where T: Transform, { type Request = T::Request; type Response = T::Response; type Error = T::Error; type InitError = T::InitError; type Transform = T::Transform; type Future = T::Future; fn new_transform(&self, service: S) -> T::Future { self.as_ref().new_transform(service) } } /// Trait for types that can be converted to a *transform service* pub trait IntoTransform where T: Transform, { /// Convert to a `TransformService` fn into_transform(self) -> T; } impl IntoTransform for T where T: Transform, { fn into_transform(self) -> T { self } } /// Apply transform to service factory. Function returns /// services factory that in initialization creates /// service and applies transform to this service. pub fn apply_transform( t: F, service: U, ) -> impl NewService< C, Request = T::Request, Response = T::Response, Error = T::Error, Service = T::Transform, InitError = S::InitError, > + Clone where S: NewService, T: Transform, F: IntoTransform, U: IntoNewService, { ApplyTransform::new(t.into_transform(), service.into_new_service()) } /// `Apply` transform to new service pub struct ApplyTransform { s: Rc, t: Rc, _t: std::marker::PhantomData, } impl ApplyTransform where S: NewService, T: Transform, { /// Create new `ApplyTransform` new service instance pub fn new>(t: F, service: S) -> Self { Self { s: Rc::new(service), t: Rc::new(t.into_transform()), _t: std::marker::PhantomData, } } } impl Clone for ApplyTransform { fn clone(&self) -> Self { ApplyTransform { s: self.s.clone(), t: self.t.clone(), _t: std::marker::PhantomData, } } } impl NewService for ApplyTransform where S: NewService, T: Transform, { type Request = T::Request; type Response = T::Response; type Error = T::Error; type Service = T::Transform; type InitError = T::InitError; type Future = ApplyTransformFuture; fn new_service(&self, cfg: &C) -> Self::Future { ApplyTransformFuture { t_cell: self.t.clone(), fut_a: self.s.new_service(cfg).into_future(), fut_t: None, } } } pub struct ApplyTransformFuture where S: NewService, T: Transform, { fut_a: S::Future, fut_t: Option<::Future>, t_cell: Rc, } impl Future for ApplyTransformFuture where S: NewService, T: Transform, { type Item = T::Transform; type Error = T::InitError; fn poll(&mut self) -> Poll { if self.fut_t.is_none() { if let Async::Ready(service) = self.fut_a.poll()? { self.fut_t = Some(self.t_cell.new_transform(service).into_future()); } } if let Some(ref mut fut) = self.fut_t { fut.poll() } else { Ok(Async::NotReady) } } }