From c1e682c25c24be3174d44ceb95b0537c38299d0c Mon Sep 17 00:00:00 2001 From: HampusM Date: Mon, 12 Sep 2022 20:22:13 +0200 Subject: feat!: allow factories access to DI container BREAKING CHANGE: Factory types should now be written with the Fn trait instead of the IFactory trait and the to_factory & to_default_factory methods of BindingBuilder now expect a function returning a factory function --- examples/basic/bootstrap.rs | 3 --- examples/factory/bootstrap.rs | 11 ++++------- examples/factory/interfaces/user.rs | 4 ++-- examples/generics/bootstrap.rs | 3 --- examples/unbound/bootstrap.rs | 3 --- examples/with-3rd-party/bootstrap.rs | 5 +---- 6 files changed, 7 insertions(+), 22 deletions(-) (limited to 'examples') diff --git a/examples/basic/bootstrap.rs b/examples/basic/bootstrap.rs index 30f6df3..2c45676 100644 --- a/examples/basic/bootstrap.rs +++ b/examples/basic/bootstrap.rs @@ -3,12 +3,9 @@ use std::rc::Rc; use syrette::DIContainer; -// Concrete implementations use crate::animals::cat::Cat; use crate::animals::dog::Dog; use crate::animals::human::Human; -// -// Interfaces use crate::interfaces::cat::ICat; use crate::interfaces::dog::IDog; use crate::interfaces::human::IHuman; diff --git a/examples/factory/bootstrap.rs b/examples/factory/bootstrap.rs index 19fad81..f8bef6e 100644 --- a/examples/factory/bootstrap.rs +++ b/examples/factory/bootstrap.rs @@ -4,11 +4,8 @@ use std::rc::Rc; use syrette::ptr::TransientPtr; use syrette::DIContainer; -// Interfaces use crate::interfaces::user::{IUser, IUserFactory}; use crate::interfaces::user_manager::IUserManager; -// -// Concrete implementations use crate::user::User; use crate::user_manager::UserManager; @@ -20,14 +17,14 @@ pub fn bootstrap() -> Result, Box> .bind::() .to::()?; - di_container.bind::().to_factory( - &|name, date_of_birth, password| { + di_container.bind::().to_factory(&|_| { + Box::new(move |name, date_of_birth, password| { let user: TransientPtr = TransientPtr::new(User::new(name, date_of_birth, password)); user - }, - )?; + }) + })?; Ok(di_container) } diff --git a/examples/factory/interfaces/user.rs b/examples/factory/interfaces/user.rs index 70cd632..aafd0cb 100644 --- a/examples/factory/interfaces/user.rs +++ b/examples/factory/interfaces/user.rs @@ -1,5 +1,5 @@ use syrette::factory; -use syrette::interfaces::factory::IFactory; +use syrette::ptr::TransientPtr; pub trait IUser { @@ -10,4 +10,4 @@ pub trait IUser #[factory] pub type IUserFactory = - dyn IFactory<(&'static str, &'static str, &'static str), dyn IUser>; + dyn Fn(&'static str, &'static str, &'static str) -> TransientPtr; diff --git a/examples/generics/bootstrap.rs b/examples/generics/bootstrap.rs index 752a39b..98d03db 100644 --- a/examples/generics/bootstrap.rs +++ b/examples/generics/bootstrap.rs @@ -2,10 +2,7 @@ use std::rc::Rc; use syrette::{di_container_bind, DIContainer}; -// Interfaces use crate::interfaces::printer::IPrinter; -// -// Implementations use crate::printer::Printer; pub fn bootstrap() -> Rc diff --git a/examples/unbound/bootstrap.rs b/examples/unbound/bootstrap.rs index 8df6678..04643dc 100644 --- a/examples/unbound/bootstrap.rs +++ b/examples/unbound/bootstrap.rs @@ -3,12 +3,9 @@ use std::rc::Rc; use anyhow::Result; use syrette::DIContainer; -// Concrete implementations use crate::animal_store::AnimalStore; use crate::animals::dog::Dog; use crate::animals::human::Human; -// -// Interfaces use crate::interfaces::animal_store::IAnimalStore; use crate::interfaces::dog::IDog; use crate::interfaces::human::IHuman; diff --git a/examples/with-3rd-party/bootstrap.rs b/examples/with-3rd-party/bootstrap.rs index a4bd84a..c5512c4 100644 --- a/examples/with-3rd-party/bootstrap.rs +++ b/examples/with-3rd-party/bootstrap.rs @@ -5,10 +5,7 @@ use syrette::ptr::TransientPtr; use syrette::{declare_default_factory, DIContainer}; use third_party_lib::Shuriken; -// Interfaces use crate::interfaces::ninja::INinja; -// -// Concrete implementations use crate::ninja::Ninja; declare_default_factory!(Shuriken); @@ -21,7 +18,7 @@ pub fn bootstrap() -> Result, Box> di_container .bind::() - .to_default_factory(&|| TransientPtr::new(Shuriken::new()))?; + .to_default_factory(&|_| TransientPtr::new(Shuriken::new()))?; Ok(di_container) } -- cgit v1.2.3-18-g5258