-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathAppComponent.hpp
58 lines (40 loc) · 1.66 KB
/
AppComponent.hpp
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
#ifndef AppComponent_hpp
#define AppComponent_hpp
#include "dto/ConfigDto.hpp"
#include "oatpp/parser/json/mapping/ObjectMapper.hpp"
#include "oatpp/core/macro/component.hpp"
#include "oatpp/core/base/CommandLineArguments.hpp"
#include <cstdlib>
class AppComponent {
private:
oatpp::base::CommandLineArguments m_cmdArgs;
public:
AppComponent(const oatpp::base::CommandLineArguments& cmdArgs)
: m_cmdArgs(cmdArgs)
{}
public:
/**
* This should be configured through config-server ex. Consul
*/
OATPP_CREATE_COMPONENT(oatpp::Object<ConfigDto>, config)([this] {
const char* configPath = CONFIG_PATH;
auto objectMapper = oatpp::parser::json::mapping::ObjectMapper::createShared();
oatpp::String configText = oatpp::String::loadFromFile(configPath);
if (configText) {
auto profiles = objectMapper->readFromString<oatpp::Fields<oatpp::Object<ConfigDto>>>(configText);
const char *profileArg = std::getenv("CONFIG_PROFILE"); // first read from env variable
if (profileArg == nullptr) {
profileArg = m_cmdArgs.getNamedArgumentValue("--profile", "dev"); // if no env varioable get from command line
}
OATPP_LOGD("Server", "Loading configuration profile '%s'", profileArg);
auto profile = profiles.getValueByKey(profileArg, nullptr);
if(!profile) {
throw std::runtime_error("No configuration profile found. Server won't run.");
}
return profile;
}
OATPP_LOGE("AppComponent", "Can't load configuration file at path '%s'", configPath);
throw std::runtime_error("[AppComponent]: Can't load configuration file");
}());
};
#endif /* AppComponent_hpp */