76 lines
1.1 KiB
C
76 lines
1.1 KiB
C
#include <ast/ast.h>
|
|
#include <stdlib.h>
|
|
#include <sys/log.h>
|
|
#include <yacc/parser.tab.h>
|
|
#include <sys/col.h>
|
|
#include <lex/util.h>
|
|
|
|
#define LOG_LEVEL LOG_LEVEL_DEBUG
|
|
|
|
/**
|
|
* @brief Log a debug message to inform about beginning exit procedures
|
|
*
|
|
*/
|
|
void notify_exit(void) { DEBUG("Exiting gemstone..."); }
|
|
|
|
/**
|
|
* @brief Closes File after compiling.
|
|
*
|
|
*/
|
|
|
|
void close_file(void) {
|
|
if (NULL != yyin) {
|
|
fclose(yyin);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @brief Run compiler setup here
|
|
*
|
|
*/
|
|
void setup(void) {
|
|
// setup preample
|
|
|
|
log_init();
|
|
DEBUG("starting gemstone...");
|
|
|
|
#if LOG_LEVEL <= LOG_LEVEL_DEBUG
|
|
atexit(¬ify_exit);
|
|
#endif
|
|
|
|
// actual setup
|
|
AST_init();
|
|
|
|
col_init();
|
|
|
|
lex_init();
|
|
|
|
DEBUG("finished starting up gemstone...");
|
|
}
|
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
setup();
|
|
atexit(close_file);
|
|
|
|
// Check for file input as argument
|
|
if (2 != argc) {
|
|
INFO("Usage: %s <filename>\n", argv[0]);
|
|
PANIC("No File could be found");
|
|
}
|
|
|
|
// filename as first argument
|
|
char *filename = argv[1];
|
|
|
|
FILE *file = fopen(filename, "r");
|
|
|
|
if (NULL == file) {
|
|
PANIC("File couldn't be opened!");
|
|
}
|
|
yyin = file;
|
|
|
|
yyparse();
|
|
|
|
return 0;
|
|
}
|