gemstone/src/main.c

72 lines
1.1 KiB
C
Raw Normal View History

#include <stdlib.h>
#include <sys/log.h>
2024-02-04 15:23:32 +00:00
#include <yacc/parser.tab.h>
#define LOG_LEVEL LOG_LEVEL_DEBUG
2024-04-12 15:29:39 +00:00
/**
* @brief Log a debug message to inform about beginning exit procedures
*
*/
void notify_exit(void)
{
DEBUG("Exiting gemstone...");
}
2024-04-23 13:27:11 +00:00
/**
* @brief Closes File after compiling.
*
*/
void close_file(char file_to_close)
{
fclose(file_to_close);
}
2024-04-12 15:29:39 +00:00
/**
* @brief Run compiler setup here
*
*/
void setup(void)
{
2024-04-12 15:29:39 +00:00
// setup preample
log_init();
DEBUG("starting gemstone...");
#if LOG_LEVEL <= LOG_LEVEL_DEBUG
atexit(&notify_exit);
#endif
2024-04-12 15:29:39 +00:00
// actual setup
DEBUG("finished starting up gemstone...");
2024-04-23 13:27:11 +00:00
atexit(close_file(filename));
}
int main(int argc, char *argv[]) {
setup();
// Check for file input as argument
if (2 != argc)
{
2024-04-23 13:27:11 +00:00
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!");
}
2024-02-04 15:23:32 +00:00
yyparse();
2024-02-04 15:23:32 +00:00
return 0;
}