From d87d9b21392ba7da75a4730cd50fa7a6fe9707d5 Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Thu, 29 Aug 2024 19:55:43 +0500 Subject: [PATCH] No runtime compatibility (#409) --- ntex-rt/CHANGES.md | 4 ++ ntex-rt/Cargo.toml | 2 +- ntex-rt/src/lib.rs | 92 ++++++++++++++++++++++++++++------------------ ntex/Cargo.toml | 2 +- 4 files changed, 62 insertions(+), 38 deletions(-) diff --git a/ntex-rt/CHANGES.md b/ntex-rt/CHANGES.md index 967ae179..dedccfb1 100644 --- a/ntex-rt/CHANGES.md +++ b/ntex-rt/CHANGES.md @@ -1,5 +1,9 @@ # Changes +## [0.4.15] - 2024-08-30 + +* No runtime compatibility + ## [0.4.14] - 2024-08-29 * Add `compio` runtime support diff --git a/ntex-rt/Cargo.toml b/ntex-rt/Cargo.toml index e8a72a0b..b9a3bb53 100644 --- a/ntex-rt/Cargo.toml +++ b/ntex-rt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex-rt" -version = "0.4.14" +version = "0.4.15" authors = ["ntex contributors "] description = "ntex runtime" keywords = ["network", "framework", "async", "futures"] diff --git a/ntex-rt/src/lib.rs b/ntex-rt/src/lib.rs index ee74235f..4c371b31 100644 --- a/ntex-rt/src/lib.rs +++ b/ntex-rt/src/lib.rs @@ -214,6 +214,16 @@ mod compio { fut: Option>, } + impl JoinHandle { + pub fn is_finished(&self) -> bool { + if let Some(hnd) = &self.fut { + hnd.is_finished() + } else { + true + } + } + } + impl Drop for JoinHandle { fn drop(&mut self) { self.fut.take().unwrap().detach(); @@ -473,39 +483,58 @@ pub use self::glommio::*; ))] pub use self::compio::*; -/// Runs the provided future, blocking the current thread until the future -/// completes. +#[allow(dead_code)] #[cfg(all( not(feature = "tokio"), not(feature = "async-std"), not(feature = "compio"), not(feature = "glommio") ))] -pub fn block_on>(_: F) { - panic!("async runtime is not configured"); -} +mod no_rt { + use std::task::{Context, Poll}; + use std::{fmt, future::Future, marker::PhantomData, pin::Pin}; -#[cfg(all( - not(feature = "tokio"), - not(feature = "async-std"), - not(feature = "compio"), - not(feature = "glommio") -))] -pub fn spawn(_: F) -> std::pin::Pin>> -where - F: std::future::Future + 'static, -{ - unimplemented!() -} + /// Runs the provided future, blocking the current thread until the future + /// completes. + pub fn block_on>(_: F) { + panic!("async runtime is not configured"); + } -#[cfg(all( - not(feature = "tokio"), - not(feature = "async-std"), - not(feature = "compio"), - not(feature = "glommio") -))] -mod spawn_blocking_stub { - use std::fmt; + pub fn spawn(_: F) -> JoinHandle + where + F: Future + 'static, + { + unimplemented!() + } + + pub fn spawn_blocking(_: F) -> JoinHandle + where + F: FnOnce() -> T + Send + Sync + 'static, + T: Send + 'static, + { + unimplemented!() + } + + /// Blocking operation completion future. It resolves with results + /// of blocking function execution. + #[allow(clippy::type_complexity)] + pub struct JoinHandle { + t: PhantomData, + } + + impl JoinHandle { + pub fn is_finished(&self) -> bool { + true + } + } + + impl Future for JoinHandle { + type Output = Result; + + fn poll(self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll { + todo!() + } + } #[derive(Debug, Copy, Clone)] pub struct JoinError; @@ -517,21 +546,12 @@ mod spawn_blocking_stub { } impl std::error::Error for JoinError {} - - pub fn spawn_blocking( - _: F, - ) -> std::pin::Pin>>> - where - F: FnOnce() -> T + Send + 'static, - T: Send + 'static, - { - unimplemented!() - } } + #[cfg(all( not(feature = "tokio"), not(feature = "async-std"), not(feature = "compio"), not(feature = "glommio") ))] -pub use self::spawn_blocking_stub::*; +pub use self::no_rt::*; diff --git a/ntex/Cargo.toml b/ntex/Cargo.toml index accddd34..7d9eef5d 100644 --- a/ntex/Cargo.toml +++ b/ntex/Cargo.toml @@ -67,7 +67,7 @@ ntex-util = "2" ntex-bytes = "0.1.27" ntex-server = "2.3" ntex-h2 = "1.1" -ntex-rt = "0.4.14" +ntex-rt = "0.4.15" ntex-io = "2.3" ntex-net = "2.1" ntex-tls = "2.1"