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
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
//! Create a container with the builder pattern.

use crate::container::ServiceContainer;
use crate::getters::Shared;
use crate::internal_helpers::{OwnedCtor, SharedCtor, SharedPtr, TypeErasedService};
use crate::service_traits::{IOwned, IShared};
use fnv::FnvHashMap;
use std::any::TypeId;

/// Create a container with the builder pattern.
pub struct ContainerBuilder {
    /// The services in the container.
    services: FnvHashMap<TypeId, TypeErasedService>,
}

impl ContainerBuilder {
    /// Creates a new ContainerBuilder.
    pub fn new() -> Self {
        Self {
            services: FnvHashMap::default(),
        }
    }

    /// Creates a new ContainerBuilder with the specified capacity.
    pub fn with_capacity(capacity: usize) -> Self {
        ContainerBuilder {
            services: FnvHashMap::with_capacity_and_hasher(capacity, Default::default()),
        }
    }

    /// Returns the inner hashmap for testing purposes.
    #[cfg(test)]
    #[allow(unused)]
    fn inner(&self) -> &FnvHashMap<TypeId, TypeErasedService> {
        &self.services
    }

    /// Returns an entry in the service container.
    fn entry(&mut self, key: TypeId) -> &mut TypeErasedService {
        self.services.entry(key).or_default()
    }

    /// Inserts a shared instance.
    pub fn with_shared<S: 'static + ?Sized + IShared>(mut self, shared: Shared<S>) -> Self {
        self.entry(TypeId::of::<S>()).shared_ptr = Some(SharedPtr::new(shared.into_inner()));
        self
    }

    /// Sets a custom constructor for a shared instance.
    pub fn with_shared_constructor<S: 'static + ?Sized + IShared>(
        mut self,
        ctor: SharedCtor<S>,
    ) -> Self {
        self.entry(TypeId::of::<S>()).shared_ctor = Some(unsafe { std::mem::transmute(ctor) });
        self
    }

    /// Sets a custom constructor for an owned instance.
    pub fn with_owned_constructor<S: 'static + ?Sized + IOwned>(
        mut self,
        ctor: OwnedCtor<S>,
    ) -> Self {
        self.entry(TypeId::of::<S>()).owned_ctor = Some(unsafe { std::mem::transmute(ctor) });
        self
    }

    /// Sets custom contructors for an owned and shared intance.
    pub fn with_constructors<S: 'static + ?Sized + IOwned + IShared>(
        mut self,
        owned: OwnedCtor<S>,
        shared: SharedCtor<S>,
    ) -> Self {
        let mut entry = self.entry(TypeId::of::<S>());
        entry.shared_ctor = Some(unsafe { std::mem::transmute(shared) });
        entry.owned_ctor = Some(unsafe { std::mem::transmute(owned) });
        self
    }

    /// Builds the container.
    pub fn build(self) -> ServiceContainer {
        ServiceContainer::new_built(self.services)
    }
}

///////////////////////////////////////////////////////////////////////////////
// Tests
///////////////////////////////////////////////////////////////////////////////

#[cfg(test)]
mod tests {
    use super::*;
    use crate::Access;
    use crate::Resolver;
    use std::rc::Rc;

    #[test]
    fn new() {
        let ctn = ContainerBuilder::new();
        assert_eq!(ctn.inner().capacity(), 0);
    }

    #[test]
    fn with_capacity() {
        let ctn = ContainerBuilder::with_capacity(50);
        assert!(ctn.inner().capacity() >= 50);

        let ctn = ContainerBuilder::with_capacity(1350);
        assert!(ctn.inner().capacity() >= 1350);

        let ctn = ContainerBuilder::with_capacity(24);
        assert!(ctn.inner().capacity() >= 24);
    }

    #[test]
    fn entry() {
        let mut ctn = ContainerBuilder::new();
        let entry = ctn.entry(TypeId::of::<()>());

        assert!(entry.shared_ptr.is_none());
        assert!(entry.shared_ctor.is_none());
        assert!(entry.owned_ctor.is_none());
    }

    #[test]
    fn with_shared() {
        let mut ctn = ContainerBuilder::new();

        let shared = Shared::<u32>::new(Rc::new(Access::new(100)));
        let shared_clone = shared.clone();
        ctn = ctn.with_shared(shared);

        assert_eq!(ctn.inner().len(), 1);

        let entry = ctn.entry(TypeId::of::<u32>());

        assert_eq!(
            Rc::as_ptr(shared_clone.inner()) as *const (),
            entry.shared_ptr.as_ref().unwrap().ptr.as_ptr() as *const ()
        );
    }

    #[test]
    fn with_shared_constructor() {
        let mut ctn = ContainerBuilder::new();

        fn ctor(_: Resolver) -> Result<Rc<Access<u32>>, ()> {
            Ok(Rc::new(Access::new(456)))
        }

        ctn = ctn.with_shared_constructor::<u32>(ctor);

        assert_eq!(ctn.inner().len(), 1);

        let entry = ctn.entry(TypeId::of::<u32>());

        assert_eq!(
            ctor as *const (),
            *entry.shared_ctor.as_ref().unwrap() as *const ()
        );
    }

    #[test]
    fn with_owned_constructor() {
        let mut ctn = ContainerBuilder::new();

        fn ctor(_: Resolver, _: ()) -> Result<u32, ()> {
            Ok(456)
        }

        ctn = ctn.with_owned_constructor::<u32>(ctor);

        assert_eq!(ctn.inner().len(), 1);

        let entry = ctn.entry(TypeId::of::<u32>());

        assert_eq!(
            ctor as *const (),
            *entry.owned_ctor.as_ref().unwrap() as *const ()
        );
    }

    #[test]
    fn with_constructors() {
        let mut ctn = ContainerBuilder::new();

        fn shared_ctor(_: Resolver) -> Result<Rc<Access<u32>>, ()> {
            Ok(Rc::new(Access::new(456)))
        }

        fn owned_ctor(_: Resolver, _: ()) -> Result<u32, ()> {
            Ok(456)
        }

        ctn = ctn.with_constructors::<u32>(owned_ctor, shared_ctor);

        assert_eq!(ctn.inner().len(), 1);

        let entry = ctn.entry(TypeId::of::<u32>());

        assert_eq!(
            shared_ctor as *const (),
            *entry.shared_ctor.as_ref().unwrap() as *const ()
        );

        assert_eq!(
            owned_ctor as *const (),
            *entry.owned_ctor.as_ref().unwrap() as *const ()
        );
    }
}