diff --git a/ntex-service/Cargo.toml b/ntex-service/Cargo.toml index 1cbf71e0..4ed29b17 100644 --- a/ntex-service/Cargo.toml +++ b/ntex-service/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex-service" -version = "0.3.2" +version = "0.3.1" authors = ["ntex contributors "] description = "ntex service" keywords = ["network", "framework", "async", "futures"] @@ -20,4 +20,4 @@ pin-project-lite = "0.2.6" [dev-dependencies] ntex = { version = "0.5", features = ["tokio"] } -ntex-util = "0.1.13" +ntex-util = "0.1.5" diff --git a/ntex-service/src/and_then.rs b/ntex-service/src/and_then.rs index b248187a..a9643257 100644 --- a/ntex-service/src/and_then.rs +++ b/ntex-service/src/and_then.rs @@ -126,20 +126,27 @@ where } /// `.and_then()` service factory combinator -pub struct AndThenFactory { +pub struct AndThenFactory { inner: Rc<(A, B)>, + _t: PhantomData, } -impl AndThenFactory { +impl AndThenFactory +where + A: ServiceFactory, + B: ServiceFactory, + Cfg: Clone, +{ /// Create new `AndThenFactory` combinator - pub fn new(a: A, b: B) -> Self { + pub(crate) fn new(a: A, b: B) -> Self { Self { inner: Rc::new((a, b)), + _t: PhantomData, } } } -impl ServiceFactory for AndThenFactory +impl ServiceFactory for AndThenFactory where A: ServiceFactory, B: ServiceFactory, @@ -150,27 +157,28 @@ where type Service = AndThen; type InitError = A::InitError; - type Future = AndThenFactoryResponse; + type Future = AndThenServiceFactoryResponse; fn new_service(&self, cfg: Cfg) -> Self::Future { let inner = &*self.inner; - AndThenFactoryResponse::new( + AndThenServiceFactoryResponse::new( inner.0.new_service(cfg.clone()), inner.1.new_service(cfg), ) } } -impl Clone for AndThenFactory { +impl Clone for AndThenFactory { fn clone(&self) -> Self { Self { inner: self.inner.clone(), + _t: PhantomData, } } } pin_project_lite::pin_project! { - pub struct AndThenFactoryResponse + pub struct AndThenServiceFactoryResponse where A: ServiceFactory, B: ServiceFactory, @@ -185,13 +193,13 @@ pin_project_lite::pin_project! { } } -impl AndThenFactoryResponse +impl AndThenServiceFactoryResponse where A: ServiceFactory, B: ServiceFactory, { fn new(fut_a: A::Future, fut_b: B::Future) -> Self { - AndThenFactoryResponse { + AndThenServiceFactoryResponse { fut_a, fut_b, a: None, @@ -200,7 +208,7 @@ where } } -impl Future for AndThenFactoryResponse +impl Future for AndThenServiceFactoryResponse where A: ServiceFactory, B: ServiceFactory, diff --git a/ntex-service/src/lib.rs b/ntex-service/src/lib.rs index f44a9d45..a649e1cd 100644 --- a/ntex-service/src/lib.rs +++ b/ntex-service/src/lib.rs @@ -135,7 +135,7 @@ pub trait Service { /// /// Note that this function consumes the receiving service and returns a /// wrapped version of it. - fn map_err(self, f: F) -> crate::dev::MapErr + fn map_err(self, f: F) -> crate::dev::MapErr where Self: Sized, F: Fn(Self::Error) -> E, @@ -185,17 +185,23 @@ pub trait ServiceFactory { #[inline] /// Map this service's error to a different error, returning a new service. - fn map_err(self, f: F) -> crate::map_err::MapErrServiceFactory + fn map_err( + self, + f: F, + ) -> crate::map_err::MapErrServiceFactory where Self: Sized, F: Fn(Self::Error) -> E + Clone, { - crate::map_err::MapErrServiceFactory::new(self, f) + crate::map_err::MapErrServiceFactory::<_, _, Cfg, _, _>::new(self, f) } #[inline] /// Map this factory's init error to a different error, returning a new service. - fn map_init_err(self, f: F) -> crate::map_init_err::MapInitErr + fn map_init_err( + self, + f: F, + ) -> crate::map_init_err::MapInitErr where Self: Sized, F: Fn(Self::InitError) -> E + Clone, diff --git a/ntex-service/src/map_err.rs b/ntex-service/src/map_err.rs index 07ed063e..b581013e 100644 --- a/ntex-service/src/map_err.rs +++ b/ntex-service/src/map_err.rs @@ -6,15 +6,19 @@ use super::{Service, ServiceFactory}; /// error. /// /// This is created by the `ServiceExt::map_err` method. -pub struct MapErr { +pub struct MapErr { service: A, f: F, - _t: PhantomData, + _t: PhantomData E>, } -impl MapErr { +impl MapErr { /// Create new `MapErr` combinator - pub(crate) fn new(service: A, f: F) -> Self { + pub(crate) fn new(service: A, f: F) -> Self + where + A: Service, + F: Fn(A::Error) -> E, + { Self { service, f, @@ -23,7 +27,7 @@ impl MapErr { } } -impl Clone for MapErr +impl Clone for MapErr where A: Clone, F: Clone, @@ -38,7 +42,7 @@ where } } -impl Service for MapErr +impl Service for MapErr where A: Service, F: Fn(A::Error) -> E + Clone, @@ -102,13 +106,21 @@ where /// service's error. /// /// This is created by the `NewServiceExt::map_err` method. -pub struct MapErrServiceFactory { +pub struct MapErrServiceFactory +where + A: ServiceFactory, + F: Fn(A::Error) -> E + Clone, +{ a: A, f: F, - e: PhantomData<(C, E)>, + e: PhantomData E>, } -impl MapErrServiceFactory { +impl MapErrServiceFactory +where + A: ServiceFactory, + F: Fn(A::Error) -> E + Clone, +{ /// Create new `MapErr` new service instance pub(crate) fn new(a: A, f: F) -> Self { Self { @@ -119,10 +131,10 @@ impl MapErrServiceFactory { } } -impl Clone for MapErrServiceFactory +impl Clone for MapErrServiceFactory where - A: Clone, - F: Clone, + A: ServiceFactory + Clone, + F: Fn(A::Error) -> E + Clone, { fn clone(&self) -> Self { Self { @@ -133,7 +145,7 @@ where } } -impl ServiceFactory for MapErrServiceFactory +impl ServiceFactory for MapErrServiceFactory where A: ServiceFactory, F: Fn(A::Error) -> E + Clone, @@ -141,7 +153,7 @@ where type Response = A::Response; type Error = E; - type Service = MapErr; + type Service = MapErr; type InitError = A::InitError; type Future = MapErrServiceFuture; @@ -178,7 +190,7 @@ where A: ServiceFactory, F: Fn(A::Error) -> E + Clone, { - type Output = Result, A::InitError>; + type Output = Result, A::InitError>; fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll { let this = self.project(); diff --git a/ntex-service/src/map_init_err.rs b/ntex-service/src/map_init_err.rs index 167b7c64..f37b57f6 100644 --- a/ntex-service/src/map_init_err.rs +++ b/ntex-service/src/map_init_err.rs @@ -3,13 +3,17 @@ use std::{future::Future, marker::PhantomData, pin::Pin, task::Context, task::Po use super::ServiceFactory; /// `MapInitErr` service combinator -pub struct MapInitErr { +pub struct MapInitErr { a: A, f: F, - e: PhantomData, + e: PhantomData E>, } -impl MapInitErr { +impl MapInitErr +where + A: ServiceFactory, + F: Fn(A::InitError) -> E, +{ /// Create new `MapInitErr` combinator pub(crate) fn new(a: A, f: F) -> Self { Self { @@ -20,7 +24,7 @@ impl MapInitErr { } } -impl Clone for MapInitErr +impl Clone for MapInitErr where A: Clone, F: Clone, @@ -34,7 +38,7 @@ where } } -impl ServiceFactory for MapInitErr +impl ServiceFactory for MapInitErr where A: ServiceFactory, F: Fn(A::InitError) -> E + Clone, @@ -44,7 +48,7 @@ where type Service = A::Service; type InitError = E; - type Future = MapInitErrFuture; + type Future = MapInitErrFuture; fn new_service(&self, cfg: C) -> Self::Future { MapInitErrFuture { @@ -55,23 +59,23 @@ where } pin_project_lite::pin_project! { - pub struct MapInitErrFuture + pub struct MapInitErrFuture where - F: Fn(Err) -> E, - Fut: Future>, + A: ServiceFactory, + F: Fn(A::InitError) -> E, { f: F, #[pin] - fut: Fut, + fut: A::Future, } } -impl Future for MapInitErrFuture +impl Future for MapInitErrFuture where - F: Fn(Err) -> E, - Fut: Future>, + A: ServiceFactory, + F: Fn(A::InitError) -> E, { - type Output = Result; + type Output = Result; fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll { let this = self.project(); diff --git a/ntex-service/src/pipeline.rs b/ntex-service/src/pipeline.rs index b9154bb6..5b3d3248 100644 --- a/ntex-service/src/pipeline.rs +++ b/ntex-service/src/pipeline.rs @@ -105,7 +105,7 @@ impl, R> Pipeline { /// /// Note that this function consumes the receiving service and returns a /// wrapped version of it. - pub fn map_err(self, f: F) -> Pipeline, R> + pub fn map_err(self, f: F) -> Pipeline, R> where Self: Sized, F: Fn(T::Error) -> E, @@ -158,7 +158,10 @@ pub struct PipelineFactory { impl, R, C> PipelineFactory { /// Call another service after call to this one has resolved successfully. - pub fn and_then(self, factory: F) -> PipelineFactory, R, C> + pub fn and_then( + self, + factory: F, + ) -> PipelineFactory, R, C> where Self: Sized, C: Clone, @@ -228,7 +231,7 @@ impl, R, C> PipelineFactory { pub fn map_err( self, f: F, - ) -> PipelineFactory, R, C> + ) -> PipelineFactory, R, C> where Self: Sized, F: Fn(T::Error) -> E + Clone, @@ -240,7 +243,10 @@ impl, R, C> PipelineFactory { } /// Map this factory's init error to a different error, returning a new service. - pub fn map_init_err(self, f: F) -> PipelineFactory, R, C> + pub fn map_init_err( + self, + f: F, + ) -> PipelineFactory, R, C> where Self: Sized, F: Fn(T::InitError) -> E + Clone,