aboutsummaryrefslogtreecommitdiff
path: root/src/castable_factory/mod.rs
blob: 196dc140a971bd6f06a45fa94edc387131707239 (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
use std::any::{type_name, Any};
use std::fmt::Debug;

use crate::any_factory::AnyFactory;
use crate::ptr::TransientPtr;

#[cfg(feature = "async")]
pub mod threadsafe;

pub struct CastableFactory<ReturnInterface, DIContainerT>
where
    ReturnInterface: 'static + ?Sized,
    DIContainerT: 'static,
{
    func: &'static dyn Fn(&DIContainerT) -> TransientPtr<ReturnInterface>,
}

impl<ReturnInterface, DIContainerT> CastableFactory<ReturnInterface, DIContainerT>
where
    ReturnInterface: 'static + ?Sized,
{
    pub fn new(
        func: &'static dyn Fn(&DIContainerT) -> TransientPtr<ReturnInterface>,
    ) -> Self
    {
        Self { func }
    }

    pub fn call(&self, di_container: &DIContainerT) -> TransientPtr<ReturnInterface>
    {
        (self.func)(di_container)
    }
}

impl<ReturnInterface, DIContainerT> AnyFactory
    for CastableFactory<ReturnInterface, DIContainerT>
where
    ReturnInterface: 'static + ?Sized,
    DIContainerT: 'static,
{
    fn as_any(&self) -> &dyn Any
    {
        self
    }
}

impl<ReturnInterface, DIContainerT> Debug
    for CastableFactory<ReturnInterface, DIContainerT>
where
    ReturnInterface: 'static + ?Sized,
{
    #[cfg(not(tarpaulin_include))]
    fn fmt(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result
    {
        let ret = type_name::<TransientPtr<ReturnInterface>>();

        formatter.write_fmt(format_args!(
            "CastableFactory (&DIContainer) -> {ret} {{ ... }}"
        ))
    }
}

#[cfg(test)]
mod tests
{
    use super::*;
    use crate::di_container::blocking::MockDIContainer;

    #[derive(Debug, PartialEq, Eq)]
    struct Bacon
    {
        heal_amount: u32,
    }

    #[test]
    fn can_call()
    {
        let castable_factory = CastableFactory::new(&|_: &MockDIContainer| {
            TransientPtr::new(Bacon { heal_amount: 27 })
        });

        let mock_di_container = MockDIContainer::new();

        let output = castable_factory.call(&mock_di_container);

        assert_eq!(output, TransientPtr::new(Bacon { heal_amount: 27 }));
    }
}