mod kill_switch;
pub mod manager;
mod name;
pub use self::{manager::Manager, name::Name};
use self::kill_switch::KillSwitch;
use crate::{FrameworkError, FrameworkErrorKind::ThreadError};
use std::{io, sync::Arc, thread};
pub type JoinHandle = thread::JoinHandle<()>;
#[derive(Debug)]
pub struct Thread {
name: Name,
kill_switch: Arc<KillSwitch>,
handle: JoinHandle,
}
impl Thread {
pub fn spawn<F>(name: Name, f: F) -> Result<Self, FrameworkError>
where
F: FnOnce() + Send + 'static,
{
let kill_switch = Arc::new(KillSwitch::new());
let handle = spawn_thread(name.clone(), Arc::clone(&kill_switch), f)?;
Ok(Self {
name,
kill_switch,
handle,
})
}
pub fn name(&self) -> &Name {
&self.name
}
pub fn request_termination(&self) {
self.kill_switch.throw();
}
pub fn join(self) -> Result<(), FrameworkError> {
self.request_termination();
self.handle
.join()
.map_err(|e| format_err!(ThreadError, "{:?}", e))?;
Ok(())
}
}
pub fn should_terminate() -> bool {
kill_switch::is_thrown()
}
fn spawn_thread<F>(name: Name, kill_switch: Arc<KillSwitch>, f: F) -> Result<JoinHandle, io::Error>
where
F: FnOnce() + Send + 'static,
{
thread::Builder::new().name(name.into()).spawn(move || {
kill_switch::set(kill_switch);
f()
})
}