use std::sync::Arc;
use parking_lot::Mutex;
use crate::{
macros::{
impl_common_name_methods,
impl_common_new_methods,
},
suppliers::{
macros::impl_supplier_debug_display,
supplier::Supplier,
},
tasks::runnable::Runnable,
};
#[must_use = "callback wrappers do nothing unless stored or invoked"]
pub struct ArcRunnable<E> {
pub(super) function: Arc<Mutex<dyn FnMut() -> Result<(), E> + Send>>,
pub(super) metadata: crate::internal::CallbackMetadata,
}
impl<E> Clone for ArcRunnable<E> {
#[inline]
fn clone(&self) -> Self {
Self {
function: Arc::clone(&self.function),
metadata: self.metadata.clone(),
}
}
}
impl<E> ArcRunnable<E> {
impl_common_new_methods!(
semantic_mut(Runnable<E> + Send + 'static),
|source| move || source.run(),
|function| Arc::new(Mutex::new(function)),
"runnable"
);
#[inline]
pub fn from_supplier<S>(supplier: S) -> Self
where
S: Supplier<Result<(), E>> + Send + 'static,
{
Self::new(move || supplier.get())
}
impl_common_name_methods!("runnable");
}
impl<E> Runnable<E> for ArcRunnable<E> {
#[inline]
fn run(&mut self) -> Result<(), E> {
let mut function = self.function.lock();
function()
}
}
impl_supplier_debug_display!(ArcRunnable<E>);