rcpp_framework/rcpp_framework.cpp

142 lines
2.9 KiB
C++

#include "rcpp_framework.h"
#include "core/error_macros.h"
#if DATABASES_ENABLED
#include "database/database_manager.h"
#include "database_backends/db_init.h"
#endif
#if WEB_ENABLED
#include "web/file_cache.h"
#include "web/http/session_manager.h"
#endif
#include "platform/platform_initializer.h"
// Backends
#include "crypto_backends/hash_hashlib/setup.h"
void RCPPFramework::create() {
new RCPPFramework();
}
void RCPPFramework::destroy() {
delete _instance;
}
void RCPPFramework::create_and_init() {
new RCPPFramework();
RCPPFramework::get_singleton()->initialize();
}
void RCPPFramework::create_and_init(int argc, char **argv, char **envp) {
new RCPPFramework();
RCPPFramework::get_singleton()->initialize();
RCPPFramework::get_singleton()->setup_args(argc, argv, envp);
}
void RCPPFramework::initialize() {
if (_initialized) {
RLOG_ERR("RCPPFramework: has already beed initialized!");
return;
}
_initialized = true;
_do_initialize();
}
void RCPPFramework::initialize(int argc, char **argv, char **envp) {
initialize();
setup_args(argc, argv, envp);
}
void RCPPFramework::setup_args(int argc, char **argv, char **envp) {
// Don't use the error macros here, they might not work before initialization
if (!_initialized) {
printf("ERROR! RCPPFramework::set_args: You have to call initialize() first!\n");
return;
}
PlatformInitializer::arg_setup(argc, argv, envp);
}
void RCPPFramework::uninitialize() {
delete _instance;
}
void RCPPFramework::manage_object(Object *obj) {
_managed_objects.push_back(obj);
}
RCPPFramework::RCPPFramework() {
_instance = this;
_initialized = false;
#if DATABASES_ENABLED
allocate_database_manager_singleton = true;
#endif
#if WEB_ENABLED
allocate_session_manager_singleton = true;
allocate_file_cache_singleton = true;
#endif
}
RCPPFramework::~RCPPFramework() {
// delete in reverse order added
for (int i = _managed_objects.size() - 1; i >= 0; --i) {
delete _managed_objects[i];
}
_managed_objects.clear();
_instance = nullptr;
}
RCPPFramework *RCPPFramework::get_singleton() {
return _instance;
}
RCPPFramework *RCPPFramework::_instance = nullptr;
void RCPPFramework::_do_initialize() {
#if DATABASES_ENABLED
initialize_database_backends();
#endif
backend_hash_hashlib_install_providers();
PlatformInitializer::allocate_all();
#if DATABASES_ENABLED
if (allocate_database_manager_singleton) {
DatabaseManager *dbm = new DatabaseManager();
manage_object(dbm);
}
#endif
#if WEB_ENABLED
if (allocate_session_manager_singleton) {
::SessionManager *session_manager = new ::SessionManager();
manage_object(session_manager);
}
if (allocate_file_cache_singleton) {
FileCache *file_cache = new FileCache(true);
manage_object(file_cache);
if (www_root != "") {
file_cache->wwwroot = www_root;
file_cache->wwwroot_refresh_cache();
}
}
#endif
}
void RCPPFramework::_do_uninitialize() {
PlatformInitializer::free_all();
}