//! Scope configurator for a binding for types inside of a [`IDIContainer`]. //! //! [`IDIContainer`]: crate::di_container::blocking::IDIContainer use std::marker::PhantomData; use std::rc::Rc; use crate::dependency_history::IDependencyHistory; use crate::di_container::blocking::binding::when_configurator::BindingWhenConfigurator; use crate::di_container::blocking::IDIContainer; use crate::errors::di_container::BindingScopeConfiguratorError; use crate::interfaces::injectable::Injectable; use crate::provider::blocking::{SingletonProvider, TransientTypeProvider}; use crate::ptr::SingletonPtr; /// Scope configurator for a binding for type 'Interface' inside a [`IDIContainer`]. /// /// [`IDIContainer`]: crate::di_container::blocking::IDIContainer pub struct BindingScopeConfigurator< Interface, Implementation, DIContainerType, DependencyHistoryType, > where Interface: 'static + ?Sized, Implementation: Injectable, DIContainerType: IDIContainer, DependencyHistoryType: IDependencyHistory, { di_container: Rc, dependency_history_factory: fn() -> DependencyHistoryType, interface_phantom: PhantomData, implementation_phantom: PhantomData, } impl BindingScopeConfigurator< Interface, Implementation, DIContainerType, DependencyHistoryType, > where Interface: 'static + ?Sized, Implementation: Injectable, DIContainerType: IDIContainer, DependencyHistoryType: IDependencyHistory + 'static, { pub(crate) fn new( di_container: Rc, dependency_history_factory: fn() -> DependencyHistoryType, ) -> Self { Self { di_container, dependency_history_factory, interface_phantom: PhantomData, implementation_phantom: PhantomData, } } /// Configures the binding to be in a transient scope. /// /// This is the default. #[allow(clippy::must_use_candidate)] pub fn in_transient_scope( &self, ) -> BindingWhenConfigurator { self.di_container.set_binding::( None, Box::new(TransientTypeProvider::< Implementation, DIContainerType, DependencyHistoryType, >::new()), ); BindingWhenConfigurator::new(self.di_container.clone()) } /// Configures the binding to be in a singleton scope. /// /// # Errors /// Will return Err if resolving the implementation fails. pub fn in_singleton_scope( &self, ) -> Result< BindingWhenConfigurator, BindingScopeConfiguratorError, > { let singleton: SingletonPtr = SingletonPtr::from( Implementation::resolve( &self.di_container, (self.dependency_history_factory)(), ) .map_err(BindingScopeConfiguratorError::SingletonResolveFailed)?, ); self.di_container .set_binding::(None, Box::new(SingletonProvider::new(singleton))); Ok(BindingWhenConfigurator::new(self.di_container.clone())) } } #[cfg(test)] mod tests { use super::*; use crate::test_utils::{mocks, subjects}; #[test] fn in_transient_scope_works() { let mut di_container_mock = mocks::blocking_di_container::MockDIContainer::new(); di_container_mock .expect_set_binding::() .withf(|name, _provider| name.is_none()) .return_once(|_name, _provider| ()) .once(); let binding_scope_configurator = BindingScopeConfigurator::< dyn subjects::IUserManager, subjects::UserManager, mocks::blocking_di_container::MockDIContainer, mocks::MockDependencyHistory, >::new( Rc::new(di_container_mock), mocks::MockDependencyHistory::new, ); binding_scope_configurator.in_transient_scope(); } #[test] fn in_singleton_scope_works() { let mut di_container_mock = mocks::blocking_di_container::MockDIContainer::new(); di_container_mock .expect_set_binding::() .withf(|name, _provider| name.is_none()) .return_once(|_name, _provider| ()) .once(); let binding_scope_configurator = BindingScopeConfigurator::< dyn subjects::IUserManager, subjects::UserManager, mocks::blocking_di_container::MockDIContainer, mocks::MockDependencyHistory, >::new( Rc::new(di_container_mock), mocks::MockDependencyHistory::new, ); assert!(matches!( binding_scope_configurator.in_singleton_scope(), Ok(_) )); } }