-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnode_injector.cpp
101 lines (85 loc) · 3.42 KB
/
node_injector.cpp
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
/**
* Copyright Quadrivium LLC
* All Rights Reserved
* SPDX-License-Identifier: Apache-2.0
*/
#define BOOST_DI_CFG_DIAGNOSTICS_LEVEL 2
#define BOOST_DI_CFG_CTOR_LIMIT_SIZE 32
#include "injector/node_injector.hpp"
#include <boost/di.hpp>
#include <boost/di/extension/scopes/shared.hpp>
#include "app/configuration.hpp"
#include "app/impl/application_impl.hpp"
#include "app/impl/state_manager_impl.hpp"
#include "app/impl/watchdog.hpp"
#include "clock/impl/clock_impl.hpp"
#include "injector/bind_by_lambda.hpp"
#include "log/logger.hpp"
#include "metrics/impl/exposer_impl.hpp"
#include "metrics/impl/prometheus/handler_impl.hpp"
namespace {
namespace di = boost::di;
namespace fs = std::filesystem;
using namespace jam; // NOLINT
template <typename C>
auto useConfig(C c) {
return boost::di::bind<std::decay_t<C>>().to(
std::move(c))[boost::di::override];
}
using injector::bind_by_lambda;
template <typename... Ts>
auto makeApplicationInjector(std::shared_ptr<log::LoggingSystem> logsys,
std::shared_ptr<app::Configuration> config,
Ts &&...args) {
// clang-format off
return di::make_injector(
di::bind<app::StateManager>.to<app::StateManagerImpl>(),
di::bind<app::Application>.to<app::ApplicationImpl>(),
di::bind<clock::SystemClock>.to<clock::SystemClockImpl>(),
di::bind<clock::SteadyClock>.to<clock::SteadyClockImpl>(),
di::bind<Watchdog>. to<Watchdog>(),
di::bind<app::Configuration>.to(config),
di::bind<log::LoggingSystem>.to(logsys),
di::bind<metrics::Handler>.to<metrics::PrometheusHandler>(),
di::bind<metrics::Exposer>.to<metrics::ExposerImpl>(),
di::bind<metrics::Exposer::Configuration>.to([](const auto &injector) {
return metrics::Exposer::Configuration{
{boost::asio::ip::address_v4::from_string("127.0.0.1"), 7777}
// injector
// .template create<app::Configuration const &>()
// .openmetricsHttpEndpoint()
};
}),
// user-defined overrides...
std::forward<decltype(args)>(args)...);
// clang-format on
}
template <typename... Ts>
auto makeNodeInjector(std::shared_ptr<log::LoggingSystem> logsys,
std::shared_ptr<app::Configuration> config,
Ts &&...args) {
return di::make_injector<boost::di::extension::shared_config>(
makeApplicationInjector(std::move(logsys), std::move(config)),
// user-defined overrides...
std::forward<decltype(args)>(args)...);
}
} // namespace
namespace jam::injector {
class NodeInjectorImpl {
public:
using Injector =
decltype(makeNodeInjector(std::shared_ptr<log::LoggingSystem>(),
std::shared_ptr<app::Configuration>()));
explicit NodeInjectorImpl(Injector injector)
: injector_{std::move(injector)} {}
Injector injector_;
};
NodeInjector::NodeInjector(std::shared_ptr<log::LoggingSystem> logsys,
std::shared_ptr<app::Configuration> config)
: pimpl_{std::make_unique<NodeInjectorImpl>(
makeNodeInjector(std::move(logsys), std::move(config)))} {}
std::shared_ptr<app::Application> NodeInjector::injectApplication() {
return pimpl_->injector_
.template create<std::shared_ptr<app::Application>>();
}
} // namespace jam::injector