#![allow(clippy::missing_panics_doc)]
use std::any::{Any, TypeId};
use std::sync::{Arc, atomic::AtomicUsize, atomic::Ordering};
use std::{cell::RefCell, collections::HashMap, fmt, future::Future, pin::Pin, thread};
use async_channel::{Receiver, Sender, unbounded};
use crate::Handle;
use crate::system::{FnExec, Id, System, SystemCommand};
thread_local!(
static ADDR: RefCell<Option<Arbiter>> = const { RefCell::new(None) };
static STORAGE: RefCell<HashMap<TypeId, Box<dyn Any>>> = RefCell::new(HashMap::new());
);
pub(super) static COUNT: AtomicUsize = AtomicUsize::new(0);
pub(super) enum ArbiterCommand {
Stop,
Execute(Pin<Box<dyn Future<Output = ()> + Send>>),
ExecuteFn(Box<dyn FnExec>),
}
pub struct Arbiter {
id: usize,
pub(crate) sys_id: usize,
name: Arc<String>,
pub(crate) hnd: Option<Handle>,
pub(crate) sender: Sender<ArbiterCommand>,
thread_handle: Option<thread::JoinHandle<()>>,
}
impl fmt::Debug for Arbiter {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "Arbiter({:?})", self.name.as_ref())
}
}
impl Default for Arbiter {
fn default() -> Arbiter {
Arbiter::new()
}
}
impl Clone for Arbiter {
fn clone(&self) -> Self {
Self {
id: self.id,
sys_id: self.sys_id,
name: self.name.clone(),
sender: self.sender.clone(),
hnd: self.hnd.clone(),
thread_handle: None,
}
}
}
impl Arbiter {
#[allow(clippy::borrowed_box)]
pub(super) fn new_system(sys_id: usize, name: String) -> (Self, ArbiterController) {
let (tx, rx) = unbounded();
let arb = Arbiter::with_sender(sys_id, 0, Arc::new(name), tx);
ADDR.with(|cell| *cell.borrow_mut() = Some(arb.clone()));
STORAGE.with(|cell| cell.borrow_mut().clear());
(arb, ArbiterController { rx, stop: None })
}
pub(super) fn dummy() -> Self {
Arbiter {
id: 0,
hnd: None,
name: String::new().into(),
sys_id: 0,
sender: unbounded().0,
thread_handle: None,
}
}
pub fn current() -> Arbiter {
ADDR.with(|cell| match *cell.borrow() {
Some(ref addr) => addr.clone(),
None => panic!("Arbiter is not running"),
})
}
pub(crate) fn set_current(&self) {
ADDR.with(|cell| {
*cell.borrow_mut() = Some(self.clone());
});
}
pub fn stop(&self) {
let _ = self.sender.try_send(ArbiterCommand::Stop);
}
pub fn new() -> Arbiter {
let id = COUNT.load(Ordering::Relaxed) + 1;
Arbiter::with_name(format!("{}:arb:{}", System::current().name(), id))
}
pub fn with_name(name: String) -> Arbiter {
let id = COUNT.fetch_add(1, Ordering::Relaxed);
let sys = System::current();
let name2 = Arc::new(name.clone());
let config = sys.config();
let (arb_tx, arb_rx) = unbounded();
let arb_tx2 = arb_tx.clone();
let builder = if sys.config().stack_size > 0 {
thread::Builder::new()
.name(name)
.stack_size(sys.config().stack_size)
} else {
thread::Builder::new().name(name)
};
let name = name2.clone();
let sys_id = sys.id();
let (arb_hnd_tx, arb_hnd_rx) = oneshot::channel();
let handle = builder
.spawn(move || {
log::info!("Starting {name2:?} arbiter");
let (stop, stop_rx) = oneshot::channel();
STORAGE.with(|cell| cell.borrow_mut().clear());
System::set_current(sys.clone());
crate::driver::block_on(config.runner.as_ref(), async move {
let arb = Arbiter::with_sender(sys_id.0, id, name2, arb_tx);
arb_hnd_tx
.send(arb.hnd.clone())
.expect("Controller thread has gone");
crate::spawn(
ArbiterController {
stop: Some(stop),
rx: arb_rx,
}
.run(),
);
ADDR.with(|cell| *cell.borrow_mut() = Some(arb.clone()));
let _ = sys
.sys()
.try_send(SystemCommand::RegisterArbiter(Id(id), arb));
let _ = stop_rx.await;
});
let _ = System::current()
.sys()
.try_send(SystemCommand::UnregisterArbiter(Id(id)));
STORAGE.with(|cell| cell.borrow_mut().clear());
})
.unwrap_or_else(|err| {
panic!("Cannot spawn an arbiter's thread {:?}: {:?}", &name, err)
});
let hnd = arb_hnd_rx.recv().expect("Could not start new arbiter");
Arbiter {
id,
hnd,
name,
sys_id: sys_id.0,
sender: arb_tx2,
thread_handle: Some(handle),
}
}
fn with_sender(
sys_id: usize,
id: usize,
name: Arc<String>,
sender: Sender<ArbiterCommand>,
) -> Self {
#[cfg(feature = "tokio")]
let hnd = { Handle::new(sender.clone()) };
#[cfg(feature = "compio")]
let hnd = { Handle::new(sender.clone()) };
#[cfg(all(not(feature = "compio"), not(feature = "tokio")))]
let hnd = { Handle::current() };
Self {
id,
sys_id,
name,
sender,
hnd: Some(hnd),
thread_handle: None,
}
}
pub fn id(&self) -> Id {
Id(self.id)
}
pub fn name(&self) -> &str {
self.name.as_ref()
}
#[inline]
pub fn handle(&self) -> &Handle {
self.hnd.as_ref().unwrap()
}
#[doc(hidden)]
#[deprecated(since = "3.8.0", note = "use `ntex_rt::spawn()`")]
pub fn spawn<F>(&self, future: F)
where
F: Future<Output = ()> + Send + 'static,
{
let _ = self
.sender
.try_send(ArbiterCommand::Execute(Box::pin(future)));
}
#[doc(hidden)]
#[deprecated(since = "3.8.0", note = "use `ntex_rt::Handle::spawn()`")]
pub fn spawn_with<F, R, O>(
&self,
f: F,
) -> impl Future<Output = Result<O, oneshot::RecvError>> + Send + 'static
where
F: FnOnce() -> R + Send + 'static,
R: Future<Output = O> + 'static,
O: Send + 'static,
{
let (tx, rx) = oneshot::async_channel();
let _ = self
.sender
.try_send(ArbiterCommand::ExecuteFn(Box::new(move || {
crate::spawn(async move {
let _ = tx.send(f().await);
});
})));
rx
}
#[doc(hidden)]
#[deprecated(since = "3.8.0", note = "use `ntex_rt::Handle::spawn()`")]
pub fn exec<F, R>(
&self,
f: F,
) -> impl Future<Output = Result<R, oneshot::RecvError>> + Send + 'static
where
F: FnOnce() -> R + Send + 'static,
R: Send + 'static,
{
let (tx, rx) = oneshot::async_channel();
let _ = self
.sender
.try_send(ArbiterCommand::ExecuteFn(Box::new(move || {
let _ = tx.send(f());
})));
rx
}
#[doc(hidden)]
#[deprecated(since = "3.8.0", note = "use `ntex_rt::Handle::spawn()`")]
pub fn exec_fn<F>(&self, f: F)
where
F: FnOnce() + Send + 'static,
{
let _ = self
.sender
.try_send(ArbiterCommand::ExecuteFn(Box::new(move || {
f();
})));
}
#[doc(hidden)]
#[deprecated(since = "3.8.0", note = "use `ntex_rt::set_item()`")]
pub fn set_item<T: 'static>(item: T) {
set_item(item);
}
#[doc(hidden)]
#[deprecated(since = "3.8.0", note = "use `ntex_rt::get_item()`")]
pub fn contains_item<T: 'static>() -> bool {
STORAGE.with(move |cell| cell.borrow().get(&TypeId::of::<T>()).is_some())
}
#[doc(hidden)]
#[deprecated(since = "3.8.0", note = "use `ntex_rt::get_item()`")]
pub fn get_item<T: 'static, F, R>(f: F) -> R
where
F: FnOnce(&T) -> R,
{
STORAGE.with(move |cell| {
let mut st = cell.borrow_mut();
let item = st
.get_mut(&TypeId::of::<T>())
.and_then(|boxed| (&mut **boxed as &mut (dyn Any + 'static)).downcast_mut())
.unwrap();
f(item)
})
}
pub fn get_value<T, F>(f: F) -> T
where
T: Clone + 'static,
F: FnOnce() -> T,
{
STORAGE.with(move |cell| {
let mut st = cell.borrow_mut();
if let Some(boxed) = st.get(&TypeId::of::<T>())
&& let Some(val) = (&**boxed as &(dyn Any + 'static)).downcast_ref::<T>()
{
return val.clone();
}
let val = f();
st.insert(TypeId::of::<T>(), Box::new(val.clone()));
val
})
}
pub fn join(&mut self) -> thread::Result<()> {
if let Some(thread_handle) = self.thread_handle.take() {
thread_handle.join()
} else {
Ok(())
}
}
}
impl Eq for Arbiter {}
impl PartialEq for Arbiter {
fn eq(&self, other: &Self) -> bool {
self.id == other.id && self.sys_id == other.sys_id
}
}
pub(crate) struct ArbiterController {
stop: Option<oneshot::Sender<i32>>,
rx: Receiver<ArbiterCommand>,
}
impl Drop for ArbiterController {
fn drop(&mut self) {
if thread::panicking() {
if System::current().stop_on_panic() {
eprintln!("Panic in Arbiter thread, shutting down system.");
System::current().stop_with_code(1);
} else {
eprintln!("Panic in Arbiter thread.");
}
}
}
}
impl ArbiterController {
pub(super) async fn run(mut self) {
loop {
match self.rx.recv().await {
Ok(ArbiterCommand::Stop) => {
if let Some(stop) = self.stop.take() {
let _ = stop.send(0);
}
break;
}
Ok(ArbiterCommand::Execute(fut)) => {
crate::spawn(fut);
}
Ok(ArbiterCommand::ExecuteFn(f)) => {
f.call_box();
}
Err(_) => break,
}
}
}
}
pub fn set_item<T: 'static>(item: T) {
STORAGE.with(move |cell| cell.borrow_mut().insert(TypeId::of::<T>(), Box::new(item)));
}
pub fn get_item<T: Clone + 'static>() -> Option<T> {
STORAGE.with(move |cell| {
cell.borrow()
.get(&TypeId::of::<T>())
.and_then(|boxed| boxed.downcast_ref())
.cloned()
})
}