// Copyright (c) 2023, Marvin Borner // SPDX-License-Identifier: MIT #include #include #include #include #include #include #include #include #include #include #include static char *read_file(FILE *f) { fseek(f, 0, SEEK_END); long fsize = ftell(f); fseek(f, 0, SEEK_SET); char *string = malloc(fsize + 1); if (!string) fatal("out of memory!\n"); int ret = fread(string, fsize, 1, f); if (ret != 1) { free(string); fatal("can't read file: %s\n", strerror(errno)); } string[fsize] = 0; return string; } static char *read_path(const char *path) { debug("reading from %s\n", path); FILE *f = fopen(path, "rb"); if (!f) fatal("can't open file %s: %s\n", path, strerror(errno)); char *string = read_file(f); fclose(f); return string; } int main(int argc, char *argv[]) { #ifdef DEBUG debug_enable(1); #endif if (argc != 2) fatal("usage: %s \n", argc ? argv[0] : "calm"); char *term = read_path(argv[1]); map_initialize(); schedule_initialize(); char *orig_term = term; parse_blc(&term, 1); free(orig_term); schedule_sync_priorities(); debug("reducing...\n"); schedule(); map_dump(map_all_terms(), 0); map_destroy(map_all_terms()); schedule_destroy(); return 0; }