mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 21:37:58 +03:00
Add callback for task spawning
This commit is contained in:
parent
f5a7f97c9f
commit
925b757565
4 changed files with 70 additions and 7 deletions
|
@ -1,5 +1,9 @@
|
||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
|
## [0.4.7] - 2023-01-03
|
||||||
|
|
||||||
|
* Add callback for task spawning
|
||||||
|
|
||||||
## [0.4.6] - 2022-09-20
|
## [0.4.6] - 2022-09-20
|
||||||
|
|
||||||
* Add System::block_on() helper method
|
* Add System::block_on() helper method
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ntex-rt"
|
name = "ntex-rt"
|
||||||
version = "0.4.6"
|
version = "0.4.7"
|
||||||
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"]
|
||||||
|
@ -29,7 +29,7 @@ async-std = ["async_std/unstable"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
async-oneshot = "0.5.0"
|
async-oneshot = "0.5.0"
|
||||||
async-channel = "1.6.1"
|
async-channel = "1.8.0"
|
||||||
futures-core = "0.3"
|
futures-core = "0.3"
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
//! A runtime implementation that runs everything on the current thread.
|
//! A runtime implementation that runs everything on the current thread.
|
||||||
|
use std::{cell::RefCell, ptr};
|
||||||
|
|
||||||
mod arbiter;
|
mod arbiter;
|
||||||
mod builder;
|
mod builder;
|
||||||
mod system;
|
mod system;
|
||||||
|
@ -7,6 +9,34 @@ pub use self::arbiter::Arbiter;
|
||||||
pub use self::builder::{Builder, SystemRunner};
|
pub use self::builder::{Builder, SystemRunner};
|
||||||
pub use self::system::System;
|
pub use self::system::System;
|
||||||
|
|
||||||
|
thread_local! {
|
||||||
|
static CB: RefCell<(TBefore, TSpawn, TAfter)> = RefCell::new((
|
||||||
|
Box::new(|| {None}), Box::new(|_| {ptr::null()}), Box::new(|_| {}))
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
type TBefore = Box<dyn Fn() -> Option<*const ()>>;
|
||||||
|
type TSpawn = Box<dyn Fn(*const ()) -> *const ()>;
|
||||||
|
type TAfter = Box<dyn Fn(*const ())>;
|
||||||
|
|
||||||
|
pub unsafe fn spawn_cbs<FBefore, FSpawn, FAfter>(
|
||||||
|
before: FBefore,
|
||||||
|
before_spawn: FSpawn,
|
||||||
|
after_spawn: FAfter,
|
||||||
|
) where
|
||||||
|
FBefore: Fn() -> Option<*const ()> + 'static,
|
||||||
|
FSpawn: Fn(*const ()) -> *const () + 'static,
|
||||||
|
FAfter: Fn(*const ()) + 'static,
|
||||||
|
{
|
||||||
|
CB.with(|cb| {
|
||||||
|
*cb.borrow_mut() = (
|
||||||
|
Box::new(before),
|
||||||
|
Box::new(before_spawn),
|
||||||
|
Box::new(after_spawn),
|
||||||
|
);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
#[allow(dead_code)]
|
#[allow(dead_code)]
|
||||||
#[cfg(all(feature = "glommio", target_os = "linux"))]
|
#[cfg(all(feature = "glommio", target_os = "linux"))]
|
||||||
mod glommio {
|
mod glommio {
|
||||||
|
@ -39,11 +69,20 @@ mod glommio {
|
||||||
F: Future + 'static,
|
F: Future + 'static,
|
||||||
F::Output: 'static,
|
F::Output: 'static,
|
||||||
{
|
{
|
||||||
|
let ptr = crate::CB.with(|cb| (&cb.borrow().0)());
|
||||||
JoinHandle {
|
JoinHandle {
|
||||||
fut: Either::Left(
|
fut: Either::Left(
|
||||||
glomm_io::spawn_local(async move {
|
glomm_io::spawn_local(async move {
|
||||||
glomm_io::executor().yield_now().await;
|
if let Some(ptr) = ptr {
|
||||||
f.await
|
let new_ptr = crate::CB.with(|cb| (&cb.borrow().1)(ptr));
|
||||||
|
glomm_io::executor().yield_now().await;
|
||||||
|
let res = f.await;
|
||||||
|
crate::CB.with(|cb| (&cb.borrow().2)(new_ptr));
|
||||||
|
res
|
||||||
|
} else {
|
||||||
|
glomm_io::executor().yield_now().await;
|
||||||
|
f.await
|
||||||
|
}
|
||||||
})
|
})
|
||||||
.detach(),
|
.detach(),
|
||||||
),
|
),
|
||||||
|
@ -131,7 +170,17 @@ mod tokio {
|
||||||
where
|
where
|
||||||
F: Future + 'static,
|
F: Future + 'static,
|
||||||
{
|
{
|
||||||
tok_io::task::spawn_local(f)
|
let ptr = crate::CB.with(|cb| (&cb.borrow().0)());
|
||||||
|
tok_io::task::spawn_local(async move {
|
||||||
|
if let Some(ptr) = ptr {
|
||||||
|
let new_ptr = crate::CB.with(|cb| (&cb.borrow().1)(ptr));
|
||||||
|
let res = f.await;
|
||||||
|
crate::CB.with(|cb| (&cb.borrow().2)(new_ptr));
|
||||||
|
res
|
||||||
|
} else {
|
||||||
|
f.await
|
||||||
|
}
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Executes a future on the current thread. This does not create a new Arbiter
|
/// Executes a future on the current thread. This does not create a new Arbiter
|
||||||
|
@ -175,8 +224,18 @@ mod asyncstd {
|
||||||
where
|
where
|
||||||
F: Future + 'static,
|
F: Future + 'static,
|
||||||
{
|
{
|
||||||
|
let ptr = crate::CB.with(|cb| (&cb.borrow().0)());
|
||||||
JoinHandle {
|
JoinHandle {
|
||||||
fut: async_std::task::spawn_local(f),
|
fut: async_std::task::spawn_local(async move {
|
||||||
|
if let Some(ptr) = ptr {
|
||||||
|
let new_ptr = crate::CB.with(|cb| (&cb.borrow().1)(ptr));
|
||||||
|
let res = f.await;
|
||||||
|
crate::CB.with(|cb| (&cb.borrow().2)(new_ptr));
|
||||||
|
res
|
||||||
|
} else {
|
||||||
|
f.await
|
||||||
|
}
|
||||||
|
}),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -57,7 +57,7 @@ ntex-macros = "0.1.3"
|
||||||
ntex-util = "0.2.0-beta.0"
|
ntex-util = "0.2.0-beta.0"
|
||||||
ntex-bytes = "0.1.18"
|
ntex-bytes = "0.1.18"
|
||||||
ntex-h2 = "0.2.0-beta.0"
|
ntex-h2 = "0.2.0-beta.0"
|
||||||
ntex-rt = "0.4.6"
|
ntex-rt = "0.4.7"
|
||||||
ntex-io = "0.2.0-beta.0"
|
ntex-io = "0.2.0-beta.0"
|
||||||
ntex-tls = "0.2.0-beta.0"
|
ntex-tls = "0.2.0-beta.0"
|
||||||
ntex-tokio = { version = "0.2.0-beta.0", optional = true }
|
ntex-tokio = { version = "0.2.0-beta.0", optional = true }
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue