mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-06 06:17:40 +03:00
Use tokio Handle if available (#339)
This commit is contained in:
parent
395cf694e5
commit
9bd05487de
5 changed files with 44 additions and 12 deletions
|
@ -1,5 +1,9 @@
|
||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
|
## [0.4.13] - 2024-04-04
|
||||||
|
|
||||||
|
* Use tokio Handle if available
|
||||||
|
|
||||||
## [0.4.12] - 2024-03-25
|
## [0.4.12] - 2024-03-25
|
||||||
|
|
||||||
* Relax Arbiter::exec() generic param
|
* Relax Arbiter::exec() generic param
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ntex-rt"
|
name = "ntex-rt"
|
||||||
version = "0.4.12"
|
version = "0.4.13"
|
||||||
authors = ["ntex contributors <team@ntex.rs>"]
|
authors = ["ntex contributors <team@ntex.rs>"]
|
||||||
description = "ntex runtime"
|
description = "ntex runtime"
|
||||||
keywords = ["network", "framework", "async", "futures"]
|
keywords = ["network", "framework", "async", "futures"]
|
||||||
|
@ -28,7 +28,7 @@ tokio = ["tok-io"]
|
||||||
async-std = ["async_std/unstable"]
|
async-std = ["async_std/unstable"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
async-channel = "2.1"
|
async-channel = "2"
|
||||||
futures-core = "0.3"
|
futures-core = "0.3"
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
oneshot = "0.1"
|
oneshot = "0.1"
|
||||||
|
|
|
@ -135,6 +135,29 @@ impl SystemRunner {
|
||||||
Err(_) => unreachable!(),
|
Err(_) => unreachable!(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(feature = "tokio")]
|
||||||
|
/// Execute a future and wait for result.
|
||||||
|
pub async fn run_local<F, R>(self, fut: F) -> R
|
||||||
|
where
|
||||||
|
F: Future<Output = R> + 'static,
|
||||||
|
R: 'static,
|
||||||
|
{
|
||||||
|
let SystemRunner {
|
||||||
|
arb,
|
||||||
|
arb_controller,
|
||||||
|
..
|
||||||
|
} = self;
|
||||||
|
|
||||||
|
// run loop
|
||||||
|
tok_io::task::LocalSet::new()
|
||||||
|
.run_until(async move {
|
||||||
|
let _ = crate::spawn(arb);
|
||||||
|
let _ = crate::spawn(arb_controller);
|
||||||
|
fut.await
|
||||||
|
})
|
||||||
|
.await
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct BlockResult<T>(Rc<RefCell<Option<T>>>);
|
pub struct BlockResult<T>(Rc<RefCell<Option<T>>>);
|
||||||
|
@ -159,7 +182,7 @@ where
|
||||||
{
|
{
|
||||||
let result = Rc::new(RefCell::new(None));
|
let result = Rc::new(RefCell::new(None));
|
||||||
let result_inner = result.clone();
|
let result_inner = result.clone();
|
||||||
crate::block_on(Box::pin(async move {
|
crate::block_on(async move {
|
||||||
let _ = crate::spawn(arb);
|
let _ = crate::spawn(arb);
|
||||||
let _ = crate::spawn(arb_controller);
|
let _ = crate::spawn(arb_controller);
|
||||||
if let Err(e) = f() {
|
if let Err(e) = f() {
|
||||||
|
@ -168,7 +191,7 @@ where
|
||||||
let r = fut.await;
|
let r = fut.await;
|
||||||
*result_inner.borrow_mut() = Some(Ok(r));
|
*result_inner.borrow_mut() = Some(Ok(r));
|
||||||
}
|
}
|
||||||
}));
|
});
|
||||||
BlockResult(result)
|
BlockResult(result)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -163,17 +163,22 @@ mod glommio {
|
||||||
#[cfg(feature = "tokio")]
|
#[cfg(feature = "tokio")]
|
||||||
mod tokio {
|
mod tokio {
|
||||||
use std::future::{poll_fn, Future};
|
use std::future::{poll_fn, Future};
|
||||||
|
use tok_io::runtime::Handle;
|
||||||
pub use tok_io::task::{spawn_blocking, JoinError, JoinHandle};
|
pub use tok_io::task::{spawn_blocking, JoinError, JoinHandle};
|
||||||
|
|
||||||
/// Runs the provided future, blocking the current thread until the future
|
/// Runs the provided future, blocking the current thread until the future
|
||||||
/// completes.
|
/// completes.
|
||||||
pub fn block_on<F: Future<Output = ()>>(fut: F) {
|
pub fn block_on<F: Future<Output = ()>>(fut: F) {
|
||||||
let rt = tok_io::runtime::Builder::new_current_thread()
|
if let Ok(hnd) = Handle::try_current() {
|
||||||
.enable_all()
|
hnd.block_on(tok_io::task::LocalSet::new().run_until(fut));
|
||||||
// .unhandled_panic(tok_io::runtime::UnhandledPanic::ShutdownRuntime)
|
} else {
|
||||||
.build()
|
let rt = tok_io::runtime::Builder::new_current_thread()
|
||||||
.unwrap();
|
.enable_all()
|
||||||
tok_io::task::LocalSet::new().block_on(&rt, fut);
|
//.unhandled_panic(tok_io::runtime::UnhandledPanic::ShutdownRuntime)
|
||||||
|
.build()
|
||||||
|
.unwrap();
|
||||||
|
tok_io::task::LocalSet::new().block_on(&rt, fut);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Spawn a future on the current thread. This does not create a new Arbiter
|
/// Spawn a future on the current thread. This does not create a new Arbiter
|
||||||
|
|
|
@ -19,10 +19,10 @@ path = "src/lib.rs"
|
||||||
ntex-bytes = "0.1.24"
|
ntex-bytes = "0.1.24"
|
||||||
ntex-net = "1.0"
|
ntex-net = "1.0"
|
||||||
ntex-service = "2.0"
|
ntex-service = "2.0"
|
||||||
ntex-rt = "0.4.12"
|
ntex-rt = "0.4.13"
|
||||||
ntex-util = "1.0"
|
ntex-util = "1.0"
|
||||||
|
|
||||||
async-channel = "2.2"
|
async-channel = "2"
|
||||||
async-broadcast = "0.7"
|
async-broadcast = "0.7"
|
||||||
polling = "3.3"
|
polling = "3.3"
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue