107 lines
2.1 KiB
C
107 lines
2.1 KiB
C
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include <time.h>
|
|
|
|
#include <mongoose.h>
|
|
#include <router.h>
|
|
#include <logger.h>
|
|
#include <config.h>
|
|
#include <database.h>
|
|
#include <handlers.h>
|
|
#include <enums.h>
|
|
#include <helpers.h>
|
|
#include <confini.h>
|
|
#include <models/controller.h>
|
|
|
|
static struct mg_mgr mgr;
|
|
|
|
static void
|
|
terminate(int signum)
|
|
{
|
|
LOG_INFO("terminating controller (%d)\n", signum);
|
|
|
|
mg_mgr_free(&mgr);
|
|
|
|
sqlite3_close(global_database);
|
|
|
|
free(global_config.database);
|
|
|
|
router_free();
|
|
|
|
exit(signum);
|
|
}
|
|
|
|
/**
|
|
* @brief The main function
|
|
*
|
|
* @param argc UNUSED
|
|
* @param argv UNUSED
|
|
*
|
|
* @return Statuscode to indicate success (0) or failure (!0)
|
|
*/
|
|
int
|
|
main(int argc, const char** argv)
|
|
{
|
|
signal(SIGINT, terminate);
|
|
signal(SIGABRT, terminate);
|
|
signal(SIGTERM, terminate);
|
|
|
|
|
|
/******************** LOAD CONFIG ********************/
|
|
|
|
global_config.file = "core.ini";
|
|
global_config.log_level = LOG_LEVEL_INFO;
|
|
|
|
helper_parse_cli(argc, argv, &global_config);
|
|
|
|
FILE * const ini_file = fopen(global_config.file, "rb");
|
|
if(ini_file == NULL)
|
|
{
|
|
LOG_FATAL("config file '%s' was not found\n", global_config.file);
|
|
exit(1);
|
|
}
|
|
if(load_ini_file( ini_file, INI_DEFAULT_FORMAT, NULL, config_load, &global_config))
|
|
{
|
|
LOG_FATAL("unable to parse ini file\n");
|
|
exit(1);
|
|
}
|
|
|
|
fclose(ini_file);
|
|
|
|
|
|
/******************** SETUP DATABASE ********************/
|
|
|
|
int rc = sqlite3_open(global_config.database, &global_database);
|
|
|
|
if(rc) {
|
|
LOG_FATAL("can't open database: %s\n", sqlite3_errmsg(global_database));
|
|
return 1;
|
|
}
|
|
|
|
if(database_migrate())
|
|
{
|
|
terminate(1);
|
|
}
|
|
|
|
|
|
/******************** INIT ROUTER ********************/
|
|
|
|
router_init();
|
|
|
|
|
|
/******************** START MAIN LOOP ********************/
|
|
|
|
struct mg_connection *c;
|
|
|
|
mg_mgr_init(&mgr, NULL);
|
|
c = mg_bind(&mgr, global_config.server_port, handler_connection);
|
|
mg_set_protocol_http_websocket(c);
|
|
|
|
for (;;)
|
|
{
|
|
mg_mgr_poll(&mgr, 1000);
|
|
}
|
|
|
|
terminate(0);
|
|
}
|