rcpp_framework/main.cpp

72 lines
1.2 KiB
C++
Raw Normal View History

2020-11-24 15:41:18 +01:00
#include <iostream>
2020-11-25 00:20:41 +01:00
#include <string>
2020-11-24 15:41:18 +01:00
2020-11-25 13:28:34 +01:00
#include "core/application.h"
#include "core/file_cache.h"
#include "core/http_server.h"
2020-11-24 15:41:18 +01:00
2020-11-25 00:20:41 +01:00
#include "rdn_application.h"
2020-11-24 15:41:18 +01:00
#include "modules/message_page/message_page.h"
#include "core/database_manager.h"
#if MYSQL_PRESENT
#include "database/mysql/mysql_database.h"
#endif
#if PGSQL_PRESENT
#include "database/postgres/pgsql_database.h"
#endif
#if SQLITE_PRESENT
#include "database/sqlite/sqlite3_database.h"
#endif
2020-11-25 00:20:41 +01:00
#define MAIN_CLASS RDNApplication
2020-11-24 15:41:18 +01:00
2020-11-25 00:20:41 +01:00
int main(int argc, char **argv) {
2020-11-24 15:41:18 +01:00
#if MYSQL_PRESENT
MysqlDatabase::_register();
#endif
#if PGSQL_PRESENT
PGSQLDatabase::_register();
#endif
#if SQLITE_PRESENT
SQLite3Database::_register();
#endif
FileCache *file_cache = new FileCache(true);
file_cache->wwwroot = "./www";
file_cache->wwwroot_refresh_cache();
DatabaseManager *dbm = new DatabaseManager();
//dbm->create_database("mysql");
Application *app = new MAIN_CLASS();
2020-11-24 15:41:18 +01:00
app->setup_routes();
app->setup_middleware();
2020-11-24 15:41:18 +01:00
2020-11-25 00:20:41 +01:00
HTTPServer *server = new HTTPServer();
2020-11-24 15:41:18 +01:00
MessagePage *mp = new MessagePage();
printf("%s\n", mp->get_class().c_str());
2020-11-25 00:20:41 +01:00
server->port = 8080;
server->initialize();
server->main_loop();
2020-11-24 15:41:18 +01:00
2020-11-25 00:20:41 +01:00
delete server;
delete app;
delete dbm;
delete file_cache;
delete mp;
2020-11-24 15:41:18 +01:00
2020-11-25 00:20:41 +01:00
return 0;
}