Add ContainerCall future (#213)

* Add Container::static_call(), returns future that is suitable for spawning into runtime

* Remove unsafe from h1 dispatcher

* Make call_nowait public

* Update MSRV
This commit is contained in:
Nikolay Kim 2023-06-21 10:21:43 +06:00 committed by GitHub
parent 50528b11ff
commit ea14e8f0f4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
15 changed files with 267 additions and 176 deletions

View file

@ -8,7 +8,7 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
version: version:
- 1.65.0 # MSRV - 1.66.0 # MSRV
- stable - stable
- nightly - nightly

View file

@ -6,7 +6,7 @@
[![build status](https://github.com/ntex-rs/ntex/workflows/CI%20%28Linux%29/badge.svg?branch=master&event=push)](https://github.com/ntex-rs/ntex/actions?query=workflow%3A"CI+(Linux)") [![build status](https://github.com/ntex-rs/ntex/workflows/CI%20%28Linux%29/badge.svg?branch=master&event=push)](https://github.com/ntex-rs/ntex/actions?query=workflow%3A"CI+(Linux)")
[![crates.io](https://img.shields.io/crates/v/ntex.svg)](https://crates.io/crates/ntex) [![crates.io](https://img.shields.io/crates/v/ntex.svg)](https://crates.io/crates/ntex)
[![Documentation](https://img.shields.io/docsrs/ntex/latest)](https://docs.rs/ntex) [![Documentation](https://img.shields.io/docsrs/ntex/latest)](https://docs.rs/ntex)
[![Version](https://img.shields.io/badge/rustc-1.65+-lightgray.svg)](https://blog.rust-lang.org/2022/11/03/Rust-1.65.0.html) [![Version](https://img.shields.io/badge/rustc-1.66+-lightgray.svg)](https://blog.rust-lang.org/2022/12/15/Rust-1.66.0.html)
![License](https://img.shields.io/crates/l/ntex.svg) ![License](https://img.shields.io/crates/l/ntex.svg)
[![codecov](https://codecov.io/gh/ntex-rs/ntex/branch/master/graph/badge.svg)](https://codecov.io/gh/ntex-rs/ntex) [![codecov](https://codecov.io/gh/ntex-rs/ntex/branch/master/graph/badge.svg)](https://codecov.io/gh/ntex-rs/ntex)
[![Chat on Discord](https://img.shields.io/discord/919288597826387979?label=chat&logo=discord)](https://discord.gg/zBNyhVRz) [![Chat on Discord](https://img.shields.io/discord/919288597826387979?label=chat&logo=discord)](https://discord.gg/zBNyhVRz)
@ -29,7 +29,7 @@ Starting ntex v0.5 async runtime must be selected as a feature. Available option
```toml ```toml
[dependencies] [dependencies]
ntex = { version = "0.6", features = ["glommio"] } ntex = { version = "0.7", features = ["tokio"] }
``` ```
## Documentation & community resources ## Documentation & community resources

View file

@ -1,5 +1,9 @@
# Changes # Changes
## [0.3.0-beta.3] - 2023-06-21
* Use static ContainerCall for dispatcher
## [0.3.0-beta.0] - 2023-06-16 ## [0.3.0-beta.0] - 2023-06-16
* Migrate to ntex-service 1.2 * Migrate to ntex-service 1.2

View file

@ -1,6 +1,6 @@
[package] [package]
name = "ntex-io" name = "ntex-io"
version = "0.3.0-beta.1" version = "0.3.0-beta.2"
authors = ["ntex contributors <team@ntex.rs>"] authors = ["ntex contributors <team@ntex.rs>"]
description = "Utilities for encoding and decoding frames" description = "Utilities for encoding and decoding frames"
keywords = ["network", "framework", "async", "futures"] keywords = ["network", "framework", "async", "futures"]
@ -19,7 +19,7 @@ path = "src/lib.rs"
ntex-codec = "0.6.2" ntex-codec = "0.6.2"
ntex-bytes = "0.1.19" ntex-bytes = "0.1.19"
ntex-util = "0.3.0-beta.1" ntex-util = "0.3.0-beta.1"
ntex-service = "1.2.0-beta.1" ntex-service = "1.2.0-beta.3"
bitflags = "1.3" bitflags = "1.3"
log = "0.4" log = "0.4"

View file

@ -250,8 +250,9 @@ where
// call service // call service
let shared = slf.shared.clone(); let shared = slf.shared.clone();
shared.inflight.set(shared.inflight.get() + 1); shared.inflight.set(shared.inflight.get() + 1);
let fut = shared.service.container_call(item).into_static();
spawn(async move { spawn(async move {
let result = shared.service.call(item).await; let result = fut.await;
shared.handle_result(result, &shared.io); shared.handle_result(result, &shared.io);
}); });
} }
@ -275,8 +276,9 @@ where
// call service // call service
let shared = slf.shared.clone(); let shared = slf.shared.clone();
shared.inflight.set(shared.inflight.get() + 1); shared.inflight.set(shared.inflight.get() + 1);
let fut = shared.service.container_call(item).into_static();
spawn(async move { spawn(async move {
let result = shared.service.call(item).await; let result = fut.await;
shared.handle_result(result, &shared.io); shared.handle_result(result, &shared.io);
}); });
} }

View file

@ -1,5 +1,11 @@
# Changes # Changes
## [1.2.0-beta.3] - 2023-06-21
* Add custom ContainerCall future
* Allow to turn ContainerCall to static
## [1.2.0-beta.2] - 2023-06-19 ## [1.2.0-beta.2] - 2023-06-19
* Remove Deref for Container<T> * Remove Deref for Container<T>

View file

@ -1,6 +1,6 @@
[package] [package]
name = "ntex-service" name = "ntex-service"
version = "1.2.0-beta.2" version = "1.2.0-beta.3"
authors = ["ntex contributors <team@ntex.rs>"] authors = ["ntex contributors <team@ntex.rs>"]
description = "ntex service" description = "ntex service"
keywords = ["network", "framework", "async", "futures"] keywords = ["network", "framework", "async", "futures"]
@ -20,5 +20,5 @@ pin-project-lite = "0.2.6"
slab = "0.4" slab = "0.4"
[dev-dependencies] [dev-dependencies]
ntex = { version = "0.7.0-beta.0", features = ["tokio"] } ntex = { version = "0.7.0-beta.1", features = ["tokio"] }
ntex-util = "0.3.0-beta.0" ntex-util = "0.3.0-beta.1"

View file

@ -1,7 +1,7 @@
#![allow(clippy::type_complexity)] #![allow(clippy::type_complexity)]
use std::{future::Future, marker, pin::Pin, rc::Rc, task, task::Poll}; use std::{future::Future, marker, pin::Pin, task, task::Poll};
use super::ctx::{ServiceCall, ServiceCtx, Waiters}; use super::ctx::{Container, ServiceCtx};
use super::{IntoService, IntoServiceFactory, Service, ServiceFactory}; use super::{IntoService, IntoServiceFactory, Service, ServiceFactory};
/// Apply transform function to a service. /// Apply transform function to a service.
@ -11,11 +11,15 @@ pub fn apply_fn<T, Req, F, R, In, Out, Err, U>(
) -> Apply<T, Req, F, R, In, Out, Err> ) -> Apply<T, Req, F, R, In, Out, Err>
where where
T: Service<Req, Error = Err>, T: Service<Req, Error = Err>,
for<'r> F: Fn(In, ApplyService<T>) -> R, F: Fn(In, Container<T>) -> R,
R: Future<Output = Result<Out, Err>>, R: Future<Output = Result<Out, Err>>,
U: IntoService<T, Req>, U: IntoService<T, Req>,
{ {
Apply::new(service.into_service(), f) Apply {
f,
service: Container::new(service.into_service()),
r: marker::PhantomData,
}
} }
/// Service factory that produces `apply_fn` service. /// Service factory that produces `apply_fn` service.
@ -25,7 +29,7 @@ pub fn apply_fn_factory<T, Req, Cfg, F, R, In, Out, Err, U>(
) -> ApplyFactory<T, Req, Cfg, F, R, In, Out, Err> ) -> ApplyFactory<T, Req, Cfg, F, R, In, Out, Err>
where where
T: ServiceFactory<Req, Cfg, Error = Err>, T: ServiceFactory<Req, Cfg, Error = Err>,
F: Fn(In, ApplyService<T::Service>) -> R + Clone, F: Fn(In, Container<T::Service>) -> R + Clone,
R: Future<Output = Result<Out, Err>>, R: Future<Output = Result<Out, Err>>,
U: IntoServiceFactory<T, Req, Cfg>, U: IntoServiceFactory<T, Req, Cfg>,
{ {
@ -37,31 +41,15 @@ pub struct Apply<T, Req, F, R, In, Out, Err>
where where
T: Service<Req, Error = Err>, T: Service<Req, Error = Err>,
{ {
service: Rc<T>, service: Container<T>,
f: F, f: F,
r: marker::PhantomData<fn(Req) -> (In, Out, R)>, r: marker::PhantomData<fn(Req) -> (In, Out, R)>,
} }
impl<T, Req, F, R, In, Out, Err> Apply<T, Req, F, R, In, Out, Err>
where
T: Service<Req, Error = Err>,
F: Fn(In, ApplyService<T>) -> R,
R: Future<Output = Result<Out, Err>>,
{
/// Create new `Apply` combinator
fn new(service: T, f: F) -> Self {
Self {
f,
service: Rc::new(service),
r: marker::PhantomData,
}
}
}
impl<T, Req, F, R, In, Out, Err> Clone for Apply<T, Req, F, R, In, Out, Err> impl<T, Req, F, R, In, Out, Err> Clone for Apply<T, Req, F, R, In, Out, Err>
where where
T: Service<Req, Error = Err> + Clone, T: Service<Req, Error = Err> + Clone,
F: Fn(In, ApplyService<T>) -> R + Clone, F: Fn(In, Container<T>) -> R + Clone,
R: Future<Output = Result<Out, Err>>, R: Future<Output = Result<Out, Err>>,
{ {
fn clone(&self) -> Self { fn clone(&self) -> Self {
@ -73,24 +61,10 @@ where
} }
} }
pub struct ApplyService<S> {
svc: Rc<S>,
waiters: Waiters,
}
impl<S> ApplyService<S> {
pub fn call<R>(&self, req: R) -> ServiceCall<'_, S, R>
where
S: Service<R>,
{
ServiceCtx::<S>::new(&self.waiters).call(&self.svc, req)
}
}
impl<T, Req, F, R, In, Out, Err> Service<In> for Apply<T, Req, F, R, In, Out, Err> impl<T, Req, F, R, In, Out, Err> Service<In> for Apply<T, Req, F, R, In, Out, Err>
where where
T: Service<Req, Error = Err>, T: Service<Req, Error = Err>,
F: Fn(In, ApplyService<T>) -> R, F: Fn(In, Container<T>) -> R,
R: Future<Output = Result<Out, Err>>, R: Future<Output = Result<Out, Err>>,
{ {
type Response = Out; type Response = Out;
@ -101,12 +75,8 @@ where
crate::forward_poll_shutdown!(service); crate::forward_poll_shutdown!(service);
#[inline] #[inline]
fn call<'a>(&'a self, req: In, ctx: ServiceCtx<'a, Self>) -> Self::Future<'a> { fn call<'a>(&'a self, req: In, _: ServiceCtx<'a, Self>) -> Self::Future<'a> {
let svc = ApplyService { (self.f)(req, self.service.clone())
svc: self.service.clone(),
waiters: ctx.waiters().clone(),
};
(self.f)(req, svc)
} }
} }
@ -114,7 +84,7 @@ where
pub struct ApplyFactory<T, Req, Cfg, F, R, In, Out, Err> pub struct ApplyFactory<T, Req, Cfg, F, R, In, Out, Err>
where where
T: ServiceFactory<Req, Cfg, Error = Err>, T: ServiceFactory<Req, Cfg, Error = Err>,
F: Fn(In, ApplyService<T::Service>) -> R + Clone, F: Fn(In, Container<T::Service>) -> R + Clone,
R: Future<Output = Result<Out, Err>>, R: Future<Output = Result<Out, Err>>,
{ {
service: T, service: T,
@ -125,7 +95,7 @@ where
impl<T, Req, Cfg, F, R, In, Out, Err> ApplyFactory<T, Req, Cfg, F, R, In, Out, Err> impl<T, Req, Cfg, F, R, In, Out, Err> ApplyFactory<T, Req, Cfg, F, R, In, Out, Err>
where where
T: ServiceFactory<Req, Cfg, Error = Err>, T: ServiceFactory<Req, Cfg, Error = Err>,
F: Fn(In, ApplyService<T::Service>) -> R + Clone, F: Fn(In, Container<T::Service>) -> R + Clone,
R: Future<Output = Result<Out, Err>>, R: Future<Output = Result<Out, Err>>,
{ {
/// Create new `ApplyNewService` new service instance /// Create new `ApplyNewService` new service instance
@ -142,7 +112,7 @@ impl<T, Req, Cfg, F, R, In, Out, Err> Clone
for ApplyFactory<T, Req, Cfg, F, R, In, Out, Err> for ApplyFactory<T, Req, Cfg, F, R, In, Out, Err>
where where
T: ServiceFactory<Req, Cfg, Error = Err> + Clone, T: ServiceFactory<Req, Cfg, Error = Err> + Clone,
F: Fn(In, ApplyService<T::Service>) -> R + Clone, F: Fn(In, Container<T::Service>) -> R + Clone,
R: Future<Output = Result<Out, Err>>, R: Future<Output = Result<Out, Err>>,
{ {
fn clone(&self) -> Self { fn clone(&self) -> Self {
@ -158,7 +128,7 @@ impl<T, Req, Cfg, F, R, In, Out, Err> ServiceFactory<In, Cfg>
for ApplyFactory<T, Req, Cfg, F, R, In, Out, Err> for ApplyFactory<T, Req, Cfg, F, R, In, Out, Err>
where where
T: ServiceFactory<Req, Cfg, Error = Err>, T: ServiceFactory<Req, Cfg, Error = Err>,
F: Fn(In, ApplyService<T::Service>) -> R + Clone, F: Fn(In, Container<T::Service>) -> R + Clone,
for<'r> R: Future<Output = Result<Out, Err>> + 'r, for<'r> R: Future<Output = Result<Out, Err>> + 'r,
{ {
type Response = Out; type Response = Out;
@ -183,7 +153,7 @@ pin_project_lite::pin_project! {
where where
T: ServiceFactory<Req, Cfg, Error = Err>, T: ServiceFactory<Req, Cfg, Error = Err>,
T: 'f, T: 'f,
F: Fn(In, ApplyService<T::Service>) -> R, F: Fn(In, Container<T::Service>) -> R,
T::Service: 'f, T::Service: 'f,
R: Future<Output = Result<Out, Err>>, R: Future<Output = Result<Out, Err>>,
Cfg: 'f, Cfg: 'f,
@ -199,7 +169,7 @@ impl<'f, T, Req, Cfg, F, R, In, Out, Err> Future
for ApplyFactoryResponse<'f, T, Req, Cfg, F, R, In, Out, Err> for ApplyFactoryResponse<'f, T, Req, Cfg, F, R, In, Out, Err>
where where
T: ServiceFactory<Req, Cfg, Error = Err>, T: ServiceFactory<Req, Cfg, Error = Err>,
F: Fn(In, ApplyService<T::Service>) -> R, F: Fn(In, Container<T::Service>) -> R,
R: Future<Output = Result<Out, Err>>, R: Future<Output = Result<Out, Err>>,
{ {
type Output = Result<Apply<T::Service, Req, F, R, In, Out, Err>, T::InitError>; type Output = Result<Apply<T::Service, Req, F, R, In, Out, Err>, T::InitError>;
@ -208,7 +178,11 @@ where
let this = self.project(); let this = self.project();
if let Poll::Ready(svc) = this.fut.poll(cx)? { if let Poll::Ready(svc) = this.fut.poll(cx)? {
Poll::Ready(Ok(Apply::new(svc, this.f.take().unwrap()))) Poll::Ready(Ok(Apply {
service: svc.into(),
f: this.f.take().unwrap(),
r: marker::PhantomData,
}))
} else { } else {
Poll::Pending Poll::Pending
} }
@ -239,8 +213,8 @@ mod tests {
#[ntex::test] #[ntex::test]
async fn test_call() { async fn test_call() {
let srv = pipeline( let srv = pipeline(
apply_fn(Srv, |req: &'static str, srv| async move { apply_fn(Srv, |req: &'static str, svc| async move {
srv.call(()).await.unwrap(); svc.call(()).await.unwrap();
Ok((req, ())) Ok((req, ()))
}) })
.clone(), .clone(),

View file

@ -1,6 +1,6 @@
use std::{future::Future, pin::Pin, task::Context, task::Poll}; use std::{future::Future, pin::Pin, task::Context, task::Poll};
use crate::ctx::{ServiceCtx, Waiters}; use crate::ctx::{ServiceCtx, WaitersRef};
pub type BoxFuture<'a, I, E> = Pin<Box<dyn Future<Output = Result<I, E>> + 'a>>; pub type BoxFuture<'a, I, E> = Pin<Box<dyn Future<Output = Result<I, E>> + 'a>>;
@ -43,7 +43,8 @@ trait ServiceObj<Req> {
fn call<'a>( fn call<'a>(
&'a self, &'a self,
req: Req, req: Req,
waiters: &'a Waiters, idx: usize,
waiters: &'a WaitersRef,
) -> BoxFuture<'a, Self::Response, Self::Error>; ) -> BoxFuture<'a, Self::Response, Self::Error>;
} }
@ -69,9 +70,10 @@ where
fn call<'a>( fn call<'a>(
&'a self, &'a self,
req: Req, req: Req,
waiters: &'a Waiters, idx: usize,
waiters: &'a WaitersRef,
) -> BoxFuture<'a, Self::Response, Self::Error> { ) -> BoxFuture<'a, Self::Response, Self::Error> {
Box::pin(ServiceCtx::<'a, S>::new(waiters).call_nowait(self, req)) Box::pin(ServiceCtx::<'a, S>::new(idx, waiters).call_nowait(self, req))
} }
} }
@ -132,7 +134,8 @@ where
#[inline] #[inline]
fn call<'a>(&'a self, req: Req, ctx: ServiceCtx<'a, Self>) -> Self::Future<'a> { fn call<'a>(&'a self, req: Req, ctx: ServiceCtx<'a, Self>) -> Self::Future<'a> {
self.0.call(req, ctx.waiters()) let (idx, waiters) = ctx.inner();
self.0.call(req, idx, waiters)
} }
} }

View file

@ -11,19 +11,35 @@ pub struct Container<S> {
} }
pub struct ServiceCtx<'a, S: ?Sized> { pub struct ServiceCtx<'a, S: ?Sized> {
waiters: &'a Waiters, idx: usize,
waiters: &'a WaitersRef,
_t: marker::PhantomData<Rc<S>>, _t: marker::PhantomData<Rc<S>>,
} }
pub(crate) struct WaitersRef(UnsafeCell<slab::Slab<Option<task::Waker>>>);
pub(crate) struct Waiters { pub(crate) struct Waiters {
index: usize, index: usize,
waiters: Rc<UnsafeCell<slab::Slab<Option<task::Waker>>>>, waiters: Rc<WaitersRef>,
} }
impl Waiters { impl WaitersRef {
#[allow(clippy::mut_from_ref)] #[allow(clippy::mut_from_ref)]
fn get(&self) -> &mut slab::Slab<Option<task::Waker>> { fn get(&self) -> &mut slab::Slab<Option<task::Waker>> {
unsafe { &mut *self.waiters.as_ref().get() } unsafe { &mut *self.0.get() }
}
fn insert(&self) -> usize {
self.get().insert(None)
}
fn remove(&self, idx: usize) {
self.notify();
self.get().remove(idx);
}
fn register(&self, idx: usize, cx: &mut task::Context<'_>) {
self.get()[idx] = Some(cx.waker().clone());
} }
fn notify(&self) { fn notify(&self) {
@ -33,16 +49,22 @@ impl Waiters {
} }
} }
} }
}
impl Waiters {
fn register(&self, cx: &mut task::Context<'_>) { fn register(&self, cx: &mut task::Context<'_>) {
self.get()[self.index] = Some(cx.waker().clone()); self.waiters.register(self.index, cx)
}
fn notify(&self) {
self.waiters.notify()
} }
} }
impl Clone for Waiters { impl Clone for Waiters {
fn clone(&self) -> Self { fn clone(&self) -> Self {
Waiters { Waiters {
index: self.get().insert(None), index: self.waiters.insert(),
waiters: self.waiters.clone(), waiters: self.waiters.clone(),
} }
} }
@ -51,8 +73,7 @@ impl Clone for Waiters {
impl Drop for Waiters { impl Drop for Waiters {
#[inline] #[inline]
fn drop(&mut self) { fn drop(&mut self) {
self.get().remove(self.index); self.waiters.remove(self.index);
self.notify();
} }
} }
@ -66,7 +87,7 @@ impl<S> Container<S> {
svc: Rc::new(svc), svc: Rc::new(svc),
waiters: Waiters { waiters: Waiters {
index, index,
waiters: Rc::new(UnsafeCell::new(waiters)), waiters: Rc::new(WaitersRef(UnsafeCell::new(waiters))),
}, },
} }
} }
@ -101,18 +122,46 @@ impl<S> Container<S> {
} }
#[inline] #[inline]
/// Process the request and return the response asynchronously. /// Call service and create future object that resolves to service result.
///
/// Note, this call does not check service readiness.
pub fn call<'a, R>(&'a self, req: R) -> ServiceCall<'a, S, R> pub fn call<'a, R>(&'a self, req: R) -> ServiceCall<'a, S, R>
where where
S: Service<R>, S: Service<R>,
{ {
let ctx = ServiceCtx::<'a, S> { let ctx = ServiceCtx::<'a, S> {
waiters: &self.waiters, idx: self.waiters.index,
waiters: self.waiters.waiters.as_ref(),
_t: marker::PhantomData, _t: marker::PhantomData,
}; };
ctx.call(self.svc.as_ref(), req) ctx.call(self.svc.as_ref(), req)
} }
#[inline]
/// Call service and create future object that resolves to service result.
///
/// Note, this call does not check service readiness.
pub fn container_call<R>(&self, req: R) -> ContainerCall<'_, S, R>
where
S: Service<R>,
{
let container = self.clone();
let svc_call = container.svc.call(
req,
ServiceCtx {
idx: container.waiters.index,
waiters: container.waiters.waiters.as_ref(),
_t: marker::PhantomData,
},
);
// SAFETY: `svc_call` has same lifetime same as lifetime of `container.svc`
// Container::svc is heap allocated(Rc<S>), we keep it alive until
// `svc_call` get resolved to result
let fut = unsafe { std::mem::transmute(svc_call) };
ContainerCall { fut, container }
}
pub(crate) fn create<F: ServiceFactory<R, C>, R, C>( pub(crate) fn create<F: ServiceFactory<R, C>, R, C>(
f: &F, f: &F,
cfg: C, cfg: C,
@ -128,6 +177,13 @@ impl<S> Container<S> {
} }
} }
impl<S> From<S> for Container<S> {
#[inline]
fn from(svc: S) -> Self {
Container::new(svc)
}
}
impl<S> Clone for Container<S> { impl<S> Clone for Container<S> {
#[inline] #[inline]
fn clone(&self) -> Self { fn clone(&self) -> Self {
@ -138,38 +194,17 @@ impl<S> Clone for Container<S> {
} }
} }
impl<S> From<S> for Container<S> {
#[inline]
fn from(svc: S) -> Self {
Container::new(svc)
}
}
impl<'a, S: ?Sized> ServiceCtx<'a, S> { impl<'a, S: ?Sized> ServiceCtx<'a, S> {
pub(crate) fn new(waiters: &'a Waiters) -> Self { pub(crate) fn new(idx: usize, waiters: &'a WaitersRef) -> Self {
Self { Self {
idx,
waiters, waiters,
_t: marker::PhantomData, _t: marker::PhantomData,
} }
} }
pub(crate) fn waiters(self) -> &'a Waiters { pub(crate) fn inner(self) -> (usize, &'a WaitersRef) {
self.waiters (self.idx, self.waiters)
}
/// Call service, do not check service readiness
pub(crate) fn call_nowait<T, R>(&self, svc: &'a T, req: R) -> T::Future<'a>
where
T: Service<R> + ?Sized,
R: 'a,
{
svc.call(
req,
ServiceCtx {
waiters: self.waiters,
_t: marker::PhantomData,
},
)
} }
#[inline] #[inline]
@ -183,10 +218,29 @@ impl<'a, S: ?Sized> ServiceCtx<'a, S> {
state: ServiceCallState::Ready { state: ServiceCallState::Ready {
svc, svc,
req: Some(req), req: Some(req),
idx: self.idx,
waiters: self.waiters, waiters: self.waiters,
}, },
} }
} }
#[doc(hidden)]
#[inline]
/// Call service, do not check service readiness
pub fn call_nowait<T, R>(&self, svc: &'a T, req: R) -> T::Future<'a>
where
T: Service<R> + ?Sized,
R: 'a,
{
svc.call(
req,
ServiceCtx {
idx: self.idx,
waiters: self.waiters,
_t: marker::PhantomData,
},
)
}
} }
impl<'a, S: ?Sized> Copy for ServiceCtx<'a, S> {} impl<'a, S: ?Sized> Copy for ServiceCtx<'a, S> {}
@ -195,6 +249,7 @@ impl<'a, S: ?Sized> Clone for ServiceCtx<'a, S> {
#[inline] #[inline]
fn clone(&self) -> Self { fn clone(&self) -> Self {
Self { Self {
idx: self.idx,
waiters: self.waiters, waiters: self.waiters,
_t: marker::PhantomData, _t: marker::PhantomData,
} }
@ -203,54 +258,108 @@ impl<'a, S: ?Sized> Clone for ServiceCtx<'a, S> {
pin_project_lite::pin_project! { pin_project_lite::pin_project! {
#[must_use = "futures do nothing unless polled"] #[must_use = "futures do nothing unless polled"]
pub struct ServiceCall<'a, T, Req> pub struct ContainerCall<'f, S, R>
where where
T: Service<Req>, S: Service<R>,
T: 'a, S: 'f,
T: ?Sized, R: 'f,
{
#[pin]
fut: S::Future<'f>,
container: Container<S>,
}
}
impl<'f, S, R> ContainerCall<'f, S, R>
where
S: Service<R> + 'f,
R: 'f,
{
#[inline]
/// Call service and create future object that resolves to service result.
///
/// Returned future is suitable for spawning into a async runtime.
/// Note, this call does not check service readiness.
pub fn into_static(self) -> ContainerCall<'static, S, R> {
let svc_call = self.fut;
let container = self.container;
// SAFETY: `svc_call` has same lifetime same as lifetime of `container.svc`
// Container::svc is heap allocated(Rc<S>), we keep it alive until
// `svc_call` get resolved to result
let fut = unsafe { std::mem::transmute(svc_call) };
ContainerCall { fut, container }
}
}
impl<'f, S, R> Future for ContainerCall<'f, S, R>
where
S: Service<R>,
{
type Output = Result<S::Response, S::Error>;
#[inline]
fn poll(self: Pin<&mut Self>, cx: &mut task::Context<'_>) -> Poll<Self::Output> {
self.project().fut.poll(cx)
}
}
pin_project_lite::pin_project! {
#[must_use = "futures do nothing unless polled"]
pub struct ServiceCall<'a, S, Req>
where
S: Service<Req>,
S: 'a,
S: ?Sized,
Req: 'a, Req: 'a,
{ {
#[pin] #[pin]
state: ServiceCallState<'a, T, Req>, state: ServiceCallState<'a, S, Req>,
} }
} }
pin_project_lite::pin_project! { pin_project_lite::pin_project! {
#[project = ServiceCallStateProject] #[project = ServiceCallStateProject]
enum ServiceCallState<'a, T, Req> enum ServiceCallState<'a, S, Req>
where where
T: Service<Req>, S: Service<Req>,
T: 'a, S: 'a,
T: ?Sized, S: ?Sized,
Req: 'a, Req: 'a,
{ {
Ready { req: Option<Req>, Ready { req: Option<Req>,
svc: &'a T, svc: &'a S,
waiters: &'a Waiters, idx: usize,
waiters: &'a WaitersRef,
}, },
Call { #[pin] fut: T::Future<'a> }, Call { #[pin] fut: S::Future<'a> },
Empty, Empty,
} }
} }
impl<'a, T, Req> Future for ServiceCall<'a, T, Req> impl<'a, S, Req> Future for ServiceCall<'a, S, Req>
where where
T: Service<Req> + ?Sized, S: Service<Req> + ?Sized,
{ {
type Output = Result<T::Response, T::Error>; type Output = Result<S::Response, S::Error>;
fn poll(mut self: Pin<&mut Self>, cx: &mut task::Context<'_>) -> Poll<Self::Output> { fn poll(mut self: Pin<&mut Self>, cx: &mut task::Context<'_>) -> Poll<Self::Output> {
let mut this = self.as_mut().project(); let mut this = self.as_mut().project();
match this.state.as_mut().project() { match this.state.as_mut().project() {
ServiceCallStateProject::Ready { req, svc, waiters } => { ServiceCallStateProject::Ready {
match svc.poll_ready(cx)? { req,
svc,
idx,
waiters,
} => match svc.poll_ready(cx)? {
Poll::Ready(()) => { Poll::Ready(()) => {
waiters.notify(); waiters.notify();
let fut = svc.call( let fut = svc.call(
req.take().unwrap(), req.take().unwrap(),
ServiceCtx { ServiceCtx {
idx: *idx,
waiters, waiters,
_t: marker::PhantomData, _t: marker::PhantomData,
}, },
@ -259,11 +368,10 @@ where
self.poll(cx) self.poll(cx)
} }
Poll::Pending => { Poll::Pending => {
waiters.register(cx); waiters.register(*idx, cx);
Poll::Pending Poll::Pending
} }
} },
}
ServiceCallStateProject::Call { fut } => fut.poll(cx).map(|r| { ServiceCallStateProject::Call { fut } => fut.poll(cx).map(|r| {
this.state.set(ServiceCallState::Empty); this.state.set(ServiceCallState::Empty);
r r
@ -304,7 +412,8 @@ where
#[cfg(test)] #[cfg(test)]
mod tests { mod tests {
use ntex_util::{channel::condition, future::lazy, future::Ready, time}; use ntex_util::future::{lazy, poll_fn, Ready};
use ntex_util::{channel::condition, time};
use std::{cell::Cell, cell::RefCell, rc::Rc, task::Context, task::Poll}; use std::{cell::Cell, cell::RefCell, rc::Rc, task::Context, task::Poll};
use super::*; use super::*;
@ -369,7 +478,8 @@ mod tests {
let data1 = data.clone(); let data1 = data.clone();
ntex::rt::spawn(async move { ntex::rt::spawn(async move {
let i = srv1.call("srv1").await.unwrap(); let _ = poll_fn(|cx| srv1.poll_ready(cx)).await;
let i = srv1.container_call("srv1").await.unwrap();
data1.borrow_mut().push(i); data1.borrow_mut().push(i);
}); });

View file

@ -22,7 +22,7 @@ mod pipeline;
mod then; mod then;
pub use self::apply::{apply_fn, apply_fn_factory}; pub use self::apply::{apply_fn, apply_fn_factory};
pub use self::ctx::{Container, ContainerFactory, ServiceCall, ServiceCtx}; pub use self::ctx::{Container, ContainerCall, ContainerFactory, ServiceCall, ServiceCtx};
pub use self::fn_service::{fn_factory, fn_factory_with_config, fn_service}; pub use self::fn_service::{fn_factory, fn_factory_with_config, fn_service};
pub use self::fn_shutdown::fn_shutdown; pub use self::fn_shutdown::fn_shutdown;
pub use self::map_config::{map_config, unit_config}; pub use self::map_config::{map_config, unit_config};

View file

@ -1,5 +1,9 @@
# Changes # Changes
## [0.7.0-beta.2] - 2023-06-21
* Remove unsafe from h1 dispatcher
## [0.7.0-beta.1] - 2023-06-19 ## [0.7.0-beta.1] - 2023-06-19
* Rename Ctx to ServiceCtx * Rename Ctx to ServiceCtx

View file

@ -1,6 +1,6 @@
[package] [package]
name = "ntex" name = "ntex"
version = "0.7.0-beta.1" version = "0.7.0-beta.2"
authors = ["ntex contributors <team@ntex.rs>"] authors = ["ntex contributors <team@ntex.rs>"]
description = "Framework for composable network services" description = "Framework for composable network services"
readme = "README.md" readme = "README.md"
@ -52,13 +52,13 @@ ntex-codec = "0.6.2"
ntex-connect = "0.3.0-beta.1" ntex-connect = "0.3.0-beta.1"
ntex-http = "0.1.9" ntex-http = "0.1.9"
ntex-router = "0.5.1" ntex-router = "0.5.1"
ntex-service = "1.2.0-beta.2" ntex-service = "1.2.0-beta.3"
ntex-macros = "0.1.3" ntex-macros = "0.1.3"
ntex-util = "0.3.0-beta.1" ntex-util = "0.3.0-beta.1"
ntex-bytes = "0.1.19" ntex-bytes = "0.1.19"
ntex-h2 = "0.3.0-beta.1" ntex-h2 = "0.3.0-beta.2"
ntex-rt = "0.4.9" ntex-rt = "0.4.9"
ntex-io = "0.3.0-beta.1" ntex-io = "0.3.0-beta.2"
ntex-tls = "0.3.0-beta.1" ntex-tls = "0.3.0-beta.1"
ntex-tokio = { version = "0.3.0-beta.0", optional = true } ntex-tokio = { version = "0.3.0-beta.0", optional = true }
ntex-glommio = { version = "0.3.0-beta.0", optional = true } ntex-glommio = { version = "0.3.0-beta.0", optional = true }

View file

@ -382,7 +382,7 @@ impl Future for ReadBody {
Poll::Ready(Err(PayloadError::Incomplete(Some( Poll::Ready(Err(PayloadError::Incomplete(Some(
std::io::Error::new( std::io::Error::new(
std::io::ErrorKind::TimedOut, std::io::ErrorKind::TimedOut,
"Operation timed our", "Operation timed out",
), ),
)))) ))))
} else { } else {

View file

@ -1,9 +1,9 @@
//! Framed transport dispatcher //! Framed transport dispatcher
use std::task::{Context, Poll}; use std::task::{Context, Poll};
use std::{cell::RefCell, error::Error, future::Future, io, marker, mem, pin::Pin, rc::Rc}; use std::{cell::RefCell, error::Error, future::Future, io, marker, pin::Pin, rc::Rc};
use crate::io::{Filter, Io, IoBoxed, IoRef, IoStatusUpdate, RecvError}; use crate::io::{Filter, Io, IoBoxed, IoRef, IoStatusUpdate, RecvError};
use crate::service::{Container, Service, ServiceCall}; use crate::service::{Container, ContainerCall, Service};
use crate::util::{ready, Bytes}; use crate::util::{ready, Bytes};
use crate::http; use crate::http;
@ -78,10 +78,10 @@ pin_project_lite::pin_project! {
where S: 'static, X: 'static where S: 'static, X: 'static
{ {
None, None,
Service { #[pin] fut: ServiceCall<'static, S, Request> }, Service { #[pin] fut: ContainerCall<'static, S, Request> },
ServiceUpgrade { #[pin] fut: ServiceCall<'static, S, Request> }, ServiceUpgrade { #[pin] fut: ContainerCall<'static, S, Request> },
Expect { #[pin] fut: ServiceCall<'static, X, Request> }, Expect { #[pin] fut: ContainerCall<'static, X, Request> },
Filter { fut: ServiceCall<'static, OnRequest, (Request, IoRef)> } Filter { fut: ContainerCall<'static, OnRequest, (Request, IoRef)> }
} }
} }
@ -478,32 +478,23 @@ where
fn service_call(&self, req: Request) -> CallState<S, X> { fn service_call(&self, req: Request) -> CallState<S, X> {
// Handle normal requests // Handle normal requests
let fut = self.config.service.call(req); CallState::Service {
let st = CallState::Service { fut: self.config.service.container_call(req).into_static(),
fut: unsafe { mem::transmute_copy(&fut) }, }
};
mem::forget(fut);
st
} }
fn service_filter(&self, req: Request, f: &Container<OnRequest>) -> CallState<S, X> { fn service_filter(&self, req: Request, f: &Container<OnRequest>) -> CallState<S, X> {
// Handle filter fut // Handle filter fut
let fut = f.call((req, self.io.get_ref())); CallState::Filter {
let st = CallState::Filter { fut: f.container_call((req, self.io.get_ref())).into_static(),
fut: unsafe { mem::transmute_copy(&fut) }, }
};
mem::forget(fut);
st
} }
fn service_expect(&self, req: Request) -> CallState<S, X> { fn service_expect(&self, req: Request) -> CallState<S, X> {
// Handle normal requests with EXPECT: 100-Continue` header // Handle normal requests with EXPECT: 100-Continue` header
let fut = self.config.expect.call(req); CallState::Expect {
let st = CallState::Expect { fut: self.config.expect.container_call(req).into_static(),
fut: unsafe { mem::transmute_copy(&fut) }, }
};
mem::forget(fut);
st
} }
fn service_upgrade(&mut self, mut req: Request) -> CallState<S, X> { fn service_upgrade(&mut self, mut req: Request) -> CallState<S, X> {
@ -514,12 +505,9 @@ where
RefCell::new(Some(Box::new((io, self.codec.clone())))), RefCell::new(Some(Box::new((io, self.codec.clone())))),
))); )));
// Handle upgrade requests // Handle upgrade requests
let fut = self.config.service.call(req); CallState::ServiceUpgrade {
let st = CallState::ServiceUpgrade { fut: self.config.service.container_call(req).into_static(),
fut: unsafe { mem::transmute_copy(&fut) }, }
};
mem::forget(fut);
st
} }
fn read_request( fn read_request(