2021-12-22 00:22:23 +09:00
|
|
|
use std::ffi::c_void;
|
|
|
|
use std::future::Future;
|
|
|
|
use std::ptr;
|
|
|
|
use std::sync::atomic::{AtomicUsize, Ordering};
|
|
|
|
|
2022-06-25 12:19:45 +09:00
|
|
|
use once_cell::sync::Lazy;
|
2021-12-22 00:22:23 +09:00
|
|
|
use tokio::{
|
|
|
|
runtime::Handle,
|
|
|
|
sync::mpsc::{self, error::TrySendError},
|
|
|
|
};
|
2021-10-20 01:02:47 +09:00
|
|
|
|
2022-10-03 14:00:48 +09:00
|
|
|
use crate::{check_status, sys, JsDeferred, JsUnknown, NapiValue, Result};
|
2021-10-20 01:02:47 +09:00
|
|
|
|
2022-06-25 12:19:45 +09:00
|
|
|
pub(crate) static RT: Lazy<(Handle, mpsc::Sender<()>)> = Lazy::new(|| {
|
|
|
|
let runtime = tokio::runtime::Runtime::new();
|
|
|
|
let (sender, mut receiver) = mpsc::channel::<()>(1);
|
|
|
|
runtime
|
|
|
|
.map(|rt| {
|
|
|
|
let h = rt.handle();
|
|
|
|
let handle = h.clone();
|
|
|
|
handle.spawn(async move {
|
|
|
|
if receiver.recv().await.is_some() {
|
|
|
|
rt.shutdown_background();
|
|
|
|
}
|
|
|
|
});
|
2021-12-22 00:22:23 +09:00
|
|
|
|
2022-06-25 12:19:45 +09:00
|
|
|
(handle, sender)
|
|
|
|
})
|
|
|
|
.expect("Create tokio runtime failed")
|
|
|
|
});
|
2021-12-22 00:22:23 +09:00
|
|
|
|
|
|
|
pub(crate) static TOKIO_RT_REF_COUNT: AtomicUsize = AtomicUsize::new(0);
|
2021-10-20 01:02:47 +09:00
|
|
|
|
|
|
|
#[doc(hidden)]
|
|
|
|
#[inline(never)]
|
2022-02-17 02:02:10 +09:00
|
|
|
pub unsafe extern "C" fn shutdown_tokio_rt(arg: *mut c_void) {
|
2022-03-05 15:14:32 +09:00
|
|
|
if TOKIO_RT_REF_COUNT.fetch_sub(1, Ordering::SeqCst) == 0 {
|
2021-12-22 00:22:23 +09:00
|
|
|
let sender = &RT.1;
|
|
|
|
if let Err(e) = sender.clone().try_send(()) {
|
|
|
|
match e {
|
|
|
|
TrySendError::Closed(_) => {}
|
|
|
|
TrySendError::Full(_) => {
|
|
|
|
panic!("Send shutdown signal to tokio runtime failed, queue is full");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-02-16 23:27:14 +09:00
|
|
|
|
|
|
|
unsafe {
|
|
|
|
let env: sys::napi_env = arg as *mut sys::napi_env__;
|
|
|
|
sys::napi_remove_env_cleanup_hook(env, Some(shutdown_tokio_rt), arg);
|
|
|
|
}
|
2021-10-20 01:02:47 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn spawn<F>(fut: F)
|
|
|
|
where
|
|
|
|
F: 'static + Send + Future<Output = ()>,
|
|
|
|
{
|
|
|
|
RT.0.spawn(fut);
|
|
|
|
}
|
|
|
|
|
2022-08-04 01:12:35 +09:00
|
|
|
// This function's signature must be kept in sync with the one in lib.rs, otherwise napi
|
|
|
|
// will fail to compile with the `tokio_rt` feature.
|
|
|
|
|
|
|
|
/// If the feature `tokio_rt` has been enabled this will enter the runtime context and
|
|
|
|
/// then call the provided closure. Otherwise it will just call the provided closure.
|
|
|
|
pub fn within_runtime_if_available<F: FnOnce() -> T, T>(f: F) -> T {
|
|
|
|
let _rt_guard = RT.0.enter();
|
|
|
|
f()
|
|
|
|
}
|
|
|
|
|
2022-03-05 22:29:57 +09:00
|
|
|
#[allow(clippy::not_unsafe_ptr_arg_deref)]
|
2021-10-20 01:02:47 +09:00
|
|
|
pub fn execute_tokio_future<
|
|
|
|
Data: 'static + Send,
|
|
|
|
Fut: 'static + Send + Future<Output = Result<Data>>,
|
|
|
|
Resolver: 'static + Send + Sync + FnOnce(sys::napi_env, Data) -> Result<sys::napi_value>,
|
|
|
|
>(
|
|
|
|
env: sys::napi_env,
|
|
|
|
fut: Fut,
|
|
|
|
resolver: Resolver,
|
|
|
|
) -> Result<sys::napi_value> {
|
|
|
|
let mut promise = ptr::null_mut();
|
|
|
|
let mut deferred = ptr::null_mut();
|
|
|
|
|
|
|
|
check_status!(unsafe { sys::napi_create_promise(env, &mut deferred, &mut promise) })?;
|
|
|
|
|
2022-10-03 14:00:48 +09:00
|
|
|
let (deferred, promise) = JsDeferred::new(env)?;
|
2021-10-20 01:02:47 +09:00
|
|
|
|
2022-10-03 14:00:48 +09:00
|
|
|
spawn(async move {
|
|
|
|
match fut.await {
|
|
|
|
Ok(v) => deferred.resolve(|env| {
|
|
|
|
resolver(env.raw(), v).map(|v| unsafe { JsUnknown::from_raw_unchecked(env.raw(), v) })
|
|
|
|
}),
|
|
|
|
Err(e) => deferred.reject(e),
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
Ok(promise.0.value)
|
2021-10-20 01:02:47 +09:00
|
|
|
}
|