blob: 25732231e314d312f35b95280eee3b9979bd8944 (
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
|
#pragma once
#include "container.hpp"
#include "function_wrapper.hpp"
#include "object_wrapper.hpp"
#include <iostream>
template <class Interface>
BindingBuilder<Interface>::BindingBuilder(Container *container) noexcept
: _container(container)
{
}
template <class Interface>
template <class ObjectImpl, class>
void BindingBuilder<Interface>::to() noexcept
{
_container->bindings.emplace(
ObjectType<Interface>(),
std::dynamic_pointer_cast<IGenericWrapper>(
std::make_shared<ObjectWrapper<Interface, ObjectImpl>>(*_container)));
}
template <class Interface>
void BindingBuilder<Interface>::to_factory(Interface func) noexcept
{
_container->bindings.emplace(ObjectType<Interface>(),
std::dynamic_pointer_cast<IGenericWrapper>(
std::make_shared<FunctionWrapper<Interface>>(func)));
}
template <class Interface>
auto Container::bind() noexcept -> BindingBuilder<Interface>
{
return BindingBuilder<Interface>(this);
}
template <class Interface, class>
auto Container::get() const noexcept -> std::shared_ptr<Interface>
{
ObjectType<Interface> interface_type;
if (bindings.count(interface_type) == 0)
{
std::cerr
<< "Error: Tried to get a item from the container using unbound interface '"
<< interface_type.name() << "'" << std::endl;
exit(EXIT_FAILURE);
}
auto wrapper = std::dynamic_pointer_cast<IWrapper<std::shared_ptr<Interface>>>(
bindings.at(interface_type));
return wrapper->get();
}
template <typename Interface, typename>
auto Container::get() const noexcept -> Interface
{
auto wrapper = std::dynamic_pointer_cast<IWrapper<Interface>>(
bindings.at(ObjectType<Interface>()));
return wrapper->get();
}
|