mod kill_switch;
mod manager;
mod name;
pub use self::{manager::Manager, name::Name};
use self::kill_switch::KillSwitch;
use crate::error::{FrameworkError, FrameworkErrorKind::ThreadError};
use std::{io, sync::Arc, thread};
#[derive(Debug)]
pub struct Thread<T = ()>
where
T: Send + 'static,
{
name: Name,
kill_switch: Arc<KillSwitch>,
handle: thread::JoinHandle<T>,
}
impl<T> Thread<T>
where
T: Send + 'static,
{
pub fn spawn<F>(name: Name, f: F) -> Result<Self, FrameworkError>
where
F: FnOnce() -> T,
F: Send + 'static,
{
let kill_switch = Arc::new(KillSwitch::new());
let handle = spawn_thread(name.to_string(), 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| err!(ThreadError, "{:?}", e))?;
Ok(())
}
}
pub fn should_terminate() -> bool {
kill_switch::is_thrown()
}
fn spawn_thread<F, T>(
name: String,
kill_switch: Arc<KillSwitch>,
f: F,
) -> Result<thread::JoinHandle<T>, io::Error>
where
F: FnOnce() -> T,
F: Send + 'static,
T: Send + 'static,
{
thread::Builder::new().name(name).spawn(move || {
kill_switch::set(kill_switch);
f()
})
}