use crate::interfaces::any_factory::{AnyFactory, AnyThreadsafeFactory}; use crate::interfaces::factory::IThreadsafeFactory; use crate::ptr::TransientPtr; pub struct ThreadsafeCastableFactory where Args: 'static, ReturnInterface: 'static + ?Sized, { func: &'static (dyn Fn> + Send + Sync), } impl ThreadsafeCastableFactory where Args: 'static, ReturnInterface: 'static + ?Sized, { pub fn new( func: &'static (dyn Fn> + Send + Sync), ) -> Self { Self { func } } } impl IThreadsafeFactory for ThreadsafeCastableFactory where Args: 'static, ReturnInterface: 'static + ?Sized, { } impl Fn for ThreadsafeCastableFactory where Args: 'static, ReturnInterface: 'static + ?Sized, { extern "rust-call" fn call(&self, args: Args) -> Self::Output { self.func.call(args) } } impl FnMut for ThreadsafeCastableFactory where Args: 'static, ReturnInterface: 'static + ?Sized, { extern "rust-call" fn call_mut(&mut self, args: Args) -> Self::Output { self.call(args) } } impl FnOnce for ThreadsafeCastableFactory where Args: 'static, ReturnInterface: 'static + ?Sized, { type Output = TransientPtr; extern "rust-call" fn call_once(self, args: Args) -> Self::Output { self.call(args) } } impl AnyFactory for ThreadsafeCastableFactory where Args: 'static, ReturnInterface: 'static + ?Sized, { } impl AnyThreadsafeFactory for ThreadsafeCastableFactory where Args: 'static, ReturnInterface: 'static + ?Sized, { } #[cfg(test)] mod tests { use super::*; #[derive(Debug, PartialEq, Eq)] struct Bacon { heal_amount: u32, } #[test] fn can_call() { let castable_factory = ThreadsafeCastableFactory::new(&|heal_amount| { TransientPtr::new(Bacon { heal_amount }) }); let output = castable_factory.call((27,)); assert_eq!(output, TransientPtr::new(Bacon { heal_amount: 27 })); } #[test] fn can_call_mut() { let mut castable_factory = ThreadsafeCastableFactory::new(&|heal_amount| { TransientPtr::new(Bacon { heal_amount }) }); let output = castable_factory.call_mut((1092,)); assert_eq!(output, TransientPtr::new(Bacon { heal_amount: 1092 })); } #[test] fn can_call_once() { let castable_factory = ThreadsafeCastableFactory::new(&|heal_amount| { TransientPtr::new(Bacon { heal_amount }) }); let output = castable_factory.call_once((547,)); assert_eq!(output, TransientPtr::new(Bacon { heal_amount: 547 })); } }