use std::sync::Arc;
use parking_lot::Mutex;
use crate::{
functions::macros::impl_function_debug_display,
macros::{
impl_arc_conversions,
impl_closure_trait,
impl_common_name_methods,
impl_common_new_methods,
},
tasks::runnable_with::{
BoxRunnableWith,
RcRunnableWith,
RunnableWith,
},
};
type ArcRunnableWithFn<T, E> = Arc<Mutex<dyn FnMut(&mut T) -> Result<(), E> + Send>>;
pub struct ArcRunnableWith<T, E> {
pub(super) function: ArcRunnableWithFn<T, E>,
pub(super) name: Option<String>,
}
impl<T, E> Clone for ArcRunnableWith<T, E> {
#[inline]
fn clone(&self) -> Self {
Self {
function: Arc::clone(&self.function),
name: self.name.clone(),
}
}
}
impl<T, E> ArcRunnableWith<T, E> {
impl_common_new_methods!(
(FnMut(&mut T) -> Result<(), E> + Send + 'static),
|function| Arc::new(Mutex::new(function)),
"runnable-with"
);
impl_common_name_methods!("runnable-with");
}
impl<T, E> RunnableWith<T, E> for ArcRunnableWith<T, E> {
#[inline]
fn run_with(&mut self, input: &mut T) -> Result<(), E> {
(self.function.lock())(input)
}
impl_arc_conversions!(
ArcRunnableWith<T, E>,
BoxRunnableWith,
RcRunnableWith,
FnMut(input: &mut T) -> Result<(), E>
);
}
impl_closure_trait!(
RunnableWith<T, E>,
run_with,
FnMut(input: &mut T) -> Result<(), E>
);
impl_function_debug_display!(BoxRunnableWith<T, E>);
impl_function_debug_display!(RcRunnableWith<T, E>);
impl_function_debug_display!(ArcRunnableWith<T, E>);