2018-12-10 04:55:40 +01:00
|
|
|
use std::cell::RefCell;
|
2019-03-06 19:24:58 +01:00
|
|
|
use std::io;
|
2018-12-10 04:55:40 +01:00
|
|
|
|
|
|
|
use futures::sync::mpsc::UnboundedSender;
|
|
|
|
|
|
|
|
use crate::arbiter::{Arbiter, SystemCommand};
|
|
|
|
use crate::builder::{Builder, SystemRunner};
|
|
|
|
|
|
|
|
/// System is a runtime manager.
|
|
|
|
#[derive(Clone, Debug)]
|
|
|
|
pub struct System {
|
|
|
|
sys: UnboundedSender<SystemCommand>,
|
|
|
|
arbiter: Arbiter,
|
|
|
|
stop_on_panic: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
thread_local!(
|
|
|
|
static CURRENT: RefCell<Option<System>> = RefCell::new(None);
|
|
|
|
);
|
|
|
|
|
|
|
|
impl System {
|
|
|
|
/// Constructs new system and sets it as current
|
|
|
|
pub(crate) fn construct(
|
|
|
|
sys: UnboundedSender<SystemCommand>,
|
|
|
|
arbiter: Arbiter,
|
|
|
|
stop_on_panic: bool,
|
|
|
|
) -> Self {
|
|
|
|
let sys = System {
|
|
|
|
sys,
|
|
|
|
arbiter,
|
|
|
|
stop_on_panic,
|
|
|
|
};
|
|
|
|
System::set_current(sys.clone());
|
|
|
|
sys
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Build a new system with a customized tokio runtime.
|
|
|
|
///
|
|
|
|
/// This allows to customize the runtime. See struct level docs on
|
|
|
|
/// `Builder` for more information.
|
|
|
|
pub fn builder() -> Builder {
|
|
|
|
Builder::new()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(clippy::new_ret_no_self)]
|
|
|
|
/// Create new system.
|
|
|
|
///
|
|
|
|
/// This method panics if it can not create tokio runtime
|
|
|
|
pub fn new<T: Into<String>>(name: T) -> SystemRunner {
|
|
|
|
Self::builder().name(name).build()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Get current running system.
|
|
|
|
pub fn current() -> System {
|
|
|
|
CURRENT.with(|cell| match *cell.borrow() {
|
|
|
|
Some(ref sys) => sys.clone(),
|
|
|
|
None => panic!("System is not running"),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Set current running system.
|
2018-12-10 05:30:04 +01:00
|
|
|
pub(crate) fn is_set() -> bool {
|
2018-12-10 04:55:40 +01:00
|
|
|
CURRENT.with(|cell| cell.borrow().is_some())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Set current running system.
|
|
|
|
#[doc(hidden)]
|
|
|
|
pub fn set_current(sys: System) {
|
|
|
|
CURRENT.with(|s| {
|
|
|
|
*s.borrow_mut() = Some(sys);
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Execute function with system reference.
|
|
|
|
pub fn with_current<F, R>(f: F) -> R
|
|
|
|
where
|
|
|
|
F: FnOnce(&System) -> R,
|
|
|
|
{
|
|
|
|
CURRENT.with(|cell| match *cell.borrow() {
|
|
|
|
Some(ref sys) => f(sys),
|
|
|
|
None => panic!("System is not running"),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Stop the system
|
|
|
|
pub fn stop(&self) {
|
|
|
|
self.stop_with_code(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Stop the system with a particular exit code.
|
|
|
|
pub fn stop_with_code(&self, code: i32) {
|
|
|
|
let _ = self.sys.unbounded_send(SystemCommand::Exit(code));
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn sys(&self) -> &UnboundedSender<SystemCommand> {
|
|
|
|
&self.sys
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Return status of 'stop_on_panic' option which controls whether the System is stopped when an
|
|
|
|
/// uncaught panic is thrown from a worker thread.
|
|
|
|
pub fn stop_on_panic(&self) -> bool {
|
|
|
|
self.stop_on_panic
|
|
|
|
}
|
|
|
|
|
|
|
|
/// System arbiter
|
|
|
|
pub fn arbiter(&self) -> &Arbiter {
|
|
|
|
&self.arbiter
|
|
|
|
}
|
|
|
|
|
|
|
|
/// This function will start tokio runtime and will finish once the
|
|
|
|
/// `System::stop()` message get called.
|
|
|
|
/// Function `f` get called within tokio runtime context.
|
2019-03-06 19:24:58 +01:00
|
|
|
pub fn run<F>(f: F) -> io::Result<()>
|
2018-12-10 04:55:40 +01:00
|
|
|
where
|
|
|
|
F: FnOnce() + 'static,
|
|
|
|
{
|
|
|
|
Self::builder().run(f)
|
|
|
|
}
|
|
|
|
}
|