Files
obf/main.c
Aryadev Chavali e5cba43a0e New module for parser functions
Same principle as main->lib (previous commit).
2023-09-02 16:14:49 +01:00

77 lines
1.3 KiB
C

/* main.c
* Created: 2023-09-02
* Author: Aryadev Chavali
* Description: Entrypoint of compiler
*/
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "./lib.h"
#include "./parser.h"
#define MEMORY_DEFAULT 30000
typedef struct
{
size_t dp;
uint8_t memory[MEMORY_DEFAULT];
} machine_t;
int main(int argc, char *argv[])
{
if (argc == 1)
{
fprintf(
stderr,
"Usage: %s [FILE]...\nReads FILES sequentially on the same machine\n",
argv[0]);
return 1;
}
char *filepath, *file_data;
buffer_t *buffer;
struct PResult res;
for (int i = 1; i < argc; ++i)
{
filepath = argv[i];
FILE *handle = fopen(filepath, "r");
if (!handle)
{
fprintf(stderr, "ERROR: Could not open \"%s\"\n", filepath);
goto error;
}
file_data = fread_all(handle);
fclose(handle);
buffer = buffer_init_str(filepath, file_data, strlen(file_data));
res = parse_buffer(buffer);
if (res.nodes == NULL)
{
fputs("Exiting early...\n", stderr);
goto error;
}
char *str = ast_to_str(res.nodes, res.size);
printf("%s=>%s\n", filepath, str);
free(str);
free(res.nodes);
free(buffer);
free(file_data);
}
return 0;
error:
if (buffer)
free(buffer);
if (res.nodes)
free(res.nodes);
return 1;
}