2024-04-12 15:28:20 +00:00
|
|
|
#include <stdlib.h>
|
2024-04-12 15:24:12 +00:00
|
|
|
#include <sys/log.h>
|
2024-02-04 15:23:32 +00:00
|
|
|
#include <yacc/parser.tab.h>
|
|
|
|
|
2024-04-12 15:24:12 +00:00
|
|
|
#define LOG_LEVEL LOG_LEVEL_DEBUG
|
|
|
|
|
2024-04-22 10:53:48 +00:00
|
|
|
extern FILE* yyin;
|
|
|
|
|
2024-04-12 15:29:39 +00:00
|
|
|
/**
|
|
|
|
* @brief Log a debug message to inform about beginning exit procedures
|
|
|
|
*
|
|
|
|
*/
|
2024-04-12 15:28:20 +00:00
|
|
|
void notify_exit(void)
|
|
|
|
{
|
|
|
|
DEBUG("Exiting gemstone...");
|
|
|
|
}
|
|
|
|
|
2024-04-12 15:29:39 +00:00
|
|
|
/**
|
|
|
|
* @brief Run compiler setup here
|
|
|
|
*
|
|
|
|
*/
|
2024-04-12 15:24:12 +00:00
|
|
|
void setup(void)
|
|
|
|
{
|
2024-04-12 15:29:39 +00:00
|
|
|
// setup preample
|
|
|
|
|
2024-04-12 15:24:12 +00:00
|
|
|
log_init();
|
|
|
|
DEBUG("starting gemstone...");
|
|
|
|
|
2024-04-12 15:28:20 +00:00
|
|
|
#if LOG_LEVEL <= LOG_LEVEL_DEBUG
|
|
|
|
atexit(¬ify_exit);
|
|
|
|
#endif
|
|
|
|
|
2024-04-12 15:29:39 +00:00
|
|
|
// actual setup
|
|
|
|
|
2024-04-12 15:24:12 +00:00
|
|
|
DEBUG("finished starting up gemstone...");
|
|
|
|
}
|
|
|
|
|
2024-04-12 16:20:18 +00:00
|
|
|
int main(void) {
|
2024-04-12 15:24:12 +00:00
|
|
|
setup();
|
2024-04-21 20:48:29 +00:00
|
|
|
|
|
|
|
FILE* input = fopen("program.gem", "r");
|
|
|
|
|
2024-04-22 10:57:49 +00:00
|
|
|
if (NULL == input)
|
2024-04-22 09:51:27 +00:00
|
|
|
{
|
2024-04-22 10:53:48 +00:00
|
|
|
ERROR("File couldn't be opened!");
|
2024-04-22 09:51:27 +00:00
|
|
|
}
|
|
|
|
|
2024-04-21 20:48:29 +00:00
|
|
|
yyin = input;
|
2024-04-12 15:24:12 +00:00
|
|
|
|
2024-02-04 15:23:32 +00:00
|
|
|
yyparse();
|
2024-04-22 10:53:48 +00:00
|
|
|
|
2024-04-22 10:57:49 +00:00
|
|
|
atexit(input);
|
2024-02-04 15:23:32 +00:00
|
|
|
return 0;
|
2024-04-12 16:20:18 +00:00
|
|
|
}
|