rcpp_framework/main.cpp

53 lines
911 B
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"
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
printf("mysql present\n");
#endif
#if PGSQL_PRESENT
printf("pgsql present\n");
#endif
#if SQLITE_PRESENT
printf("sqlite present\n");
#endif
FileCache *file_cache = new FileCache(true);
file_cache->wwwroot = "./www";
file_cache->wwwroot_refresh_cache();
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 file_cache;
delete mp;
2020-11-24 15:41:18 +01:00
2020-11-25 00:20:41 +01:00
return 0;
}