mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 13:27:39 +03:00
wip
This commit is contained in:
parent
8502e834c7
commit
9e11822869
5 changed files with 42 additions and 7 deletions
|
@ -9,7 +9,7 @@
|
||||||
[](https://blog.rust-lang.org/2023/12/28/Rust-1.75.0.html)
|
[](https://blog.rust-lang.org/2023/12/28/Rust-1.75.0.html)
|
||||||

|

|
||||||
[](https://codecov.io/gh/ntex-rs/ntex)
|
[](https://codecov.io/gh/ntex-rs/ntex)
|
||||||
[](https://discord.gg/zBNyhVRz)
|
[](https://discord.com/channels/919288597826387979/919288597826387982)
|
||||||
|
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -54,6 +54,8 @@ trait ServiceObj<Req> {
|
||||||
waiters: &'a WaitersRef,
|
waiters: &'a WaitersRef,
|
||||||
) -> BoxFuture<'a, (), Self::Error>;
|
) -> BoxFuture<'a, (), Self::Error>;
|
||||||
|
|
||||||
|
fn not_ready(&self) -> BoxFuture<'_, (), Self::Error>;
|
||||||
|
|
||||||
fn call<'a>(
|
fn call<'a>(
|
||||||
&'a self,
|
&'a self,
|
||||||
req: Req,
|
req: Req,
|
||||||
|
@ -81,6 +83,11 @@ where
|
||||||
Box::pin(async move { ServiceCtx::<'a, S>::new(idx, waiters).ready(self).await })
|
Box::pin(async move { ServiceCtx::<'a, S>::new(idx, waiters).ready(self).await })
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[inline]
|
||||||
|
fn not_ready(&self) -> BoxFuture<'_, (), Self::Error> {
|
||||||
|
Box::pin(crate::Service::not_ready(self))
|
||||||
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
fn shutdown<'a>(&'a self) -> Pin<Box<dyn Future<Output = ()> + 'a>> {
|
fn shutdown<'a>(&'a self) -> Pin<Box<dyn Future<Output = ()> + 'a>> {
|
||||||
Box::pin(crate::Service::shutdown(self))
|
Box::pin(crate::Service::shutdown(self))
|
||||||
|
@ -151,6 +158,11 @@ where
|
||||||
self.0.ready(idx, waiters).await
|
self.0.ready(idx, waiters).await
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[inline]
|
||||||
|
async fn not_ready(&self) -> Result<(), Self::Error> {
|
||||||
|
self.0.not_ready().await
|
||||||
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
async fn shutdown(&self) {
|
async fn shutdown(&self) {
|
||||||
self.0.shutdown().await
|
self.0.shutdown().await
|
||||||
|
|
|
@ -168,16 +168,16 @@ impl<'a, S> ServiceCtx<'a, S> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a, S> Copy for ServiceCtx<'a, S> {}
|
impl<S> Copy for ServiceCtx<'_, S> {}
|
||||||
|
|
||||||
impl<'a, S> Clone for ServiceCtx<'a, S> {
|
impl<S> Clone for ServiceCtx<'_, S> {
|
||||||
#[inline]
|
#[inline]
|
||||||
fn clone(&self) -> Self {
|
fn clone(&self) -> Self {
|
||||||
*self
|
*self
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a, S> fmt::Debug for ServiceCtx<'a, S> {
|
impl<S> fmt::Debug for ServiceCtx<'_, S> {
|
||||||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||||
f.debug_struct("ServiceCtx")
|
f.debug_struct("ServiceCtx")
|
||||||
.field("idx", &self.idx)
|
.field("idx", &self.idx)
|
||||||
|
@ -192,7 +192,7 @@ struct ReadyCall<'a, S: ?Sized, F: Future> {
|
||||||
ctx: ServiceCtx<'a, S>,
|
ctx: ServiceCtx<'a, S>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a, S: ?Sized, F: Future> Drop for ReadyCall<'a, S, F> {
|
impl<S: ?Sized, F: Future> Drop for ReadyCall<'_, S, F> {
|
||||||
fn drop(&mut self) {
|
fn drop(&mut self) {
|
||||||
if !self.completed && self.ctx.waiters.cur.get() == self.ctx.idx {
|
if !self.completed && self.ctx.waiters.cur.get() == self.ctx.idx {
|
||||||
self.ctx.waiters.notify();
|
self.ctx.waiters.notify();
|
||||||
|
@ -200,9 +200,9 @@ impl<'a, S: ?Sized, F: Future> Drop for ReadyCall<'a, S, F> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a, S: ?Sized, F: Future> Unpin for ReadyCall<'a, S, F> {}
|
impl<S: ?Sized, F: Future> Unpin for ReadyCall<'_, S, F> {}
|
||||||
|
|
||||||
impl<'a, S: ?Sized, F: Future> Future for ReadyCall<'a, S, F> {
|
impl<S: ?Sized, F: Future> Future for ReadyCall<'_, S, F> {
|
||||||
type Output = F::Output;
|
type Output = F::Output;
|
||||||
|
|
||||||
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
|
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
|
||||||
|
|
|
@ -252,6 +252,11 @@ where
|
||||||
ctx.ready(&**self).await
|
ctx.ready(&**self).await
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[inline]
|
||||||
|
async fn not_ready(&self) -> Result<(), S::Error> {
|
||||||
|
(**self).not_ready().await
|
||||||
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
async fn shutdown(&self) {
|
async fn shutdown(&self) {
|
||||||
(**self).shutdown().await
|
(**self).shutdown().await
|
||||||
|
@ -279,6 +284,11 @@ where
|
||||||
ctx.ready(&**self).await
|
ctx.ready(&**self).await
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[inline]
|
||||||
|
async fn not_ready(&self) -> Result<(), S::Error> {
|
||||||
|
(**self).not_ready().await
|
||||||
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
async fn shutdown(&self) {
|
async fn shutdown(&self) {
|
||||||
(**self).shutdown().await
|
(**self).shutdown().await
|
||||||
|
|
|
@ -11,6 +11,14 @@ macro_rules! forward_ready {
|
||||||
.await
|
.await
|
||||||
.map_err(::core::convert::Into::into)
|
.map_err(::core::convert::Into::into)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[inline]
|
||||||
|
async fn not_ready(&self) -> Result<(), Self::Error> {
|
||||||
|
self.$field
|
||||||
|
.not_ready()
|
||||||
|
.await
|
||||||
|
.map_err(::core::convert::Into::into)
|
||||||
|
}
|
||||||
};
|
};
|
||||||
($field:ident, $err:expr) => {
|
($field:ident, $err:expr) => {
|
||||||
#[inline]
|
#[inline]
|
||||||
|
@ -20,6 +28,11 @@ macro_rules! forward_ready {
|
||||||
) -> Result<(), Self::Error> {
|
) -> Result<(), Self::Error> {
|
||||||
ctx.ready(&self.$field).await.map_err($err)
|
ctx.ready(&self.$field).await.map_err($err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[inline]
|
||||||
|
async fn not_ready(&self) -> Result<(), Self::Error> {
|
||||||
|
self.$field.not_ready().await.map_err($err)
|
||||||
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue