diff --git a/Cargo.toml b/Cargo.toml index abc4bf39..06c3e044 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,4 +1,5 @@ [workspace] +resolver = "2" members = [ "ntex", "ntex-bytes", diff --git a/ntex-service/CHANGES.md b/ntex-service/CHANGES.md index 19a4879b..eb9b10b4 100644 --- a/ntex-service/CHANGES.md +++ b/ntex-service/CHANGES.md @@ -1,5 +1,9 @@ # Changes +## [1.2.7] - 2023-09-19 + +* Use From for apply_fn util + ## [1.2.6] - 2023-09-11 * Add fmt::Debug impls diff --git a/ntex-service/Cargo.toml b/ntex-service/Cargo.toml index be793070..84b832e3 100644 --- a/ntex-service/Cargo.toml +++ b/ntex-service/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex-service" -version = "1.2.6" +version = "1.2.7" authors = ["ntex contributors "] description = "ntex service" keywords = ["network", "framework", "async", "futures"] diff --git a/ntex-service/src/apply.rs b/ntex-service/src/apply.rs index 5eb2c787..fa8bdf17 100644 --- a/ntex-service/src/apply.rs +++ b/ntex-service/src/apply.rs @@ -10,10 +10,11 @@ pub fn apply_fn( f: F, ) -> Apply where - T: Service, + T: Service, F: Fn(In, Pipeline) -> R, R: Future>, U: IntoService, + Err: From, { Apply::new(service.into_service(), f) } @@ -24,10 +25,11 @@ pub fn apply_fn_factory( f: F, ) -> ApplyFactory where - T: ServiceFactory, + T: ServiceFactory, F: Fn(In, Pipeline) -> R + Clone, R: Future>, U: IntoServiceFactory, + Err: From, { ApplyFactory::new(service.into_factory(), f) } @@ -35,18 +37,19 @@ where /// `Apply` service combinator pub struct Apply where - T: Service, + T: Service, { service: Pipeline, f: F, - r: marker::PhantomData (In, Out, R)>, + r: marker::PhantomData (In, Out, R, Err)>, } impl Apply where - T: Service, + T: Service, F: Fn(In, Pipeline) -> R, R: Future>, + Err: From, { pub(crate) fn new(service: T, f: F) -> Self { Apply { @@ -59,9 +62,10 @@ where impl Clone for Apply where - T: Service + Clone, + T: Service + Clone, F: Fn(In, Pipeline) -> R + Clone, R: Future>, + Err: From, { fn clone(&self) -> Self { Apply { @@ -74,7 +78,7 @@ where impl fmt::Debug for Apply where - T: Service + fmt::Debug, + T: Service + fmt::Debug, { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { f.debug_struct("Apply") @@ -86,9 +90,10 @@ where impl Service for Apply where - T: Service, + T: Service, F: Fn(In, Pipeline) -> R, R: Future>, + Err: From, { type Response = Out; type Error = Err; @@ -106,7 +111,7 @@ where /// `apply()` service factory pub struct ApplyFactory where - T: ServiceFactory, + T: ServiceFactory, F: Fn(In, Pipeline) -> R + Clone, R: Future>, { @@ -117,9 +122,10 @@ where impl ApplyFactory where - T: ServiceFactory, + T: ServiceFactory, F: Fn(In, Pipeline) -> R + Clone, R: Future>, + Err: From, { /// Create new `ApplyNewService` new service instance pub(crate) fn new(service: T, f: F) -> Self { @@ -134,9 +140,10 @@ where impl Clone for ApplyFactory where - T: ServiceFactory + Clone, + T: ServiceFactory + Clone, F: Fn(In, Pipeline) -> R + Clone, R: Future>, + Err: From, { fn clone(&self) -> Self { Self { @@ -150,9 +157,10 @@ where impl fmt::Debug for ApplyFactory where - T: ServiceFactory + fmt::Debug, + T: ServiceFactory + fmt::Debug, F: Fn(In, Pipeline) -> R + Clone, R: Future>, + Err: From, { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { f.debug_struct("ApplyFactory") @@ -165,9 +173,10 @@ where impl ServiceFactory for ApplyFactory where - T: ServiceFactory, + T: ServiceFactory, F: Fn(In, Pipeline) -> R + Clone, - for<'r> R: Future> + 'r, + R: Future>, + Err: From, { type Response = Out; type Error = Err; @@ -189,12 +198,13 @@ where pin_project_lite::pin_project! { pub struct ApplyFactoryResponse<'f, T, Req, Cfg, F, R, In, Out, Err> where - T: ServiceFactory, + T: ServiceFactory, T: 'f, F: Fn(In, Pipeline) -> R, T::Service: 'f, R: Future>, Cfg: 'f, + Err: From, { #[pin] fut: T::Future<'f>, @@ -206,9 +216,10 @@ pin_project_lite::pin_project! { impl<'f, T, Req, Cfg, F, R, In, Out, Err> Future for ApplyFactoryResponse<'f, T, Req, Cfg, F, R, In, Out, Err> where - T: ServiceFactory, + T: ServiceFactory, F: Fn(In, Pipeline) -> R, R: Future>, + Err: From, { type Output = Result, T::InitError>; @@ -248,6 +259,15 @@ mod tests { } } + #[derive(Copy, Clone, Debug, PartialEq, Eq)] + struct Err; + + impl From<()> for Err { + fn from(_: ()) -> Self { + Err + } + } + #[ntex::test] async fn test_call() { let srv = chain( @@ -259,7 +279,10 @@ mod tests { ) .pipeline(); - assert_eq!(lazy(|cx| srv.poll_ready(cx)).await, Poll::Ready(Ok(()))); + assert_eq!( + lazy(|cx| srv.poll_ready(cx)).await, + Poll::Ready(Ok::<_, Err>(())) + ); let res = lazy(|cx| srv.poll_shutdown(cx)).await; assert_eq!(res, Poll::Ready(())); @@ -278,7 +301,10 @@ mod tests { .clone() .pipeline(); - assert_eq!(lazy(|cx| srv.poll_ready(cx)).await, Poll::Ready(Ok(()))); + assert_eq!( + lazy(|cx| srv.poll_ready(cx)).await, + Poll::Ready(Ok::<_, Err>(())) + ); let res = lazy(|cx| srv.poll_shutdown(cx)).await; assert_eq!(res, Poll::Ready(())); @@ -303,7 +329,10 @@ mod tests { let srv = new_srv.pipeline(&()).await.unwrap(); - assert_eq!(lazy(|cx| srv.poll_ready(cx)).await, Poll::Ready(Ok(()))); + assert_eq!( + lazy(|cx| srv.poll_ready(cx)).await, + Poll::Ready(Ok::<_, Err>(())) + ); let res = srv.call("srv").await; assert!(res.is_ok()); @@ -322,7 +351,10 @@ mod tests { let srv = new_srv.pipeline(&()).await.unwrap(); - assert_eq!(lazy(|cx| srv.poll_ready(cx)).await, Poll::Ready(Ok(()))); + assert_eq!( + lazy(|cx| srv.poll_ready(cx)).await, + Poll::Ready(Ok::<_, Err>(())) + ); let res = srv.call("srv").await; assert!(res.is_ok()); diff --git a/ntex-service/src/chain.rs b/ntex-service/src/chain.rs index 568df75a..ba373d77 100644 --- a/ntex-service/src/chain.rs +++ b/ntex-service/src/chain.rs @@ -130,7 +130,8 @@ impl, Req> ServiceChain { where F: Fn(In, Pipeline) -> R, R: Future>, - Svc: Service, + Svc: Service, + Err: From, { ServiceChain { service: Apply::new(self.service, f), @@ -227,7 +228,8 @@ impl, Req, C> ServiceChainFactory { where F: Fn(In, Pipeline) -> R + Clone, R: Future>, - T: ServiceFactory, + T: ServiceFactory, + Err: From, { ServiceChainFactory { factory: ApplyFactory::new(self.factory, f),