aboutsummaryrefslogtreecommitdiff
path: root/examples/async/bootstrap.rs
blob: 07e1bf8889a56d32c8367bbea31e0afb73de1c94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
use syrette::ptr::TransientPtr;
use syrette::AsyncDIContainer;

use crate::animals::cat::Cat;
use crate::animals::dog::Dog;
use crate::animals::human::Human;
use crate::food::Food;
use crate::interfaces::cat::ICat;
use crate::interfaces::dog::IDog;
use crate::interfaces::food::{IFood, IFoodFactory};
use crate::interfaces::human::IHuman;

pub async fn bootstrap() -> Result<AsyncDIContainer, anyhow::Error>
{
    let mut di_container = AsyncDIContainer::new();

    di_container
        .bind::<dyn IDog>()
        .to::<Dog>()?
        .in_singleton_scope()
        .await?;

    di_container.bind::<dyn ICat>().to_default_factory(&|_| {
        Box::new(|| {
            let cat: TransientPtr<dyn ICat> = TransientPtr::new(Cat::new());

            cat
        })
    })?;

    di_container.bind::<dyn IHuman>().to::<Human>()?;

    di_container.bind::<IFoodFactory>().to_factory(&|_| {
        Box::new(|| {
            let food: Box<dyn IFood> = Box::new(Food::new());

            food
        })
    })?;

    Ok(di_container)
}