From 710a45813e4c9bbc916d876ed111c4b5969cb4e4 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Wed, 28 Oct 2009 21:09:25 -0400 Subject: Search in the same path as the current file for #includes. --- dimension/main.c | 1 + dimension/tokenize.c | 35 +++++++++++++++++++++++++++-------- 2 files changed, 28 insertions(+), 8 deletions(-) (limited to 'dimension') diff --git a/dimension/main.c b/dimension/main.c index e15180f..76c5ff6 100644 --- a/dimension/main.c +++ b/dimension/main.c @@ -100,6 +100,7 @@ main(int argc, char **argv) { /* Tokenize the input file */ tokens = dmnsn_tokenize(input, input_file); if (!tokens) { + fclose(input_file); dmnsn_error(DMNSN_SEVERITY_HIGH, "Error tokenizing input file."); } diff --git a/dimension/tokenize.c b/dimension/tokenize.c index 83ae0aa..4e3244a 100644 --- a/dimension/tokenize.c +++ b/dimension/tokenize.c @@ -24,6 +24,7 @@ #include #include #include +#include static void dmnsn_diagnostic(const char *filename, unsigned int line, unsigned int col, @@ -394,29 +395,48 @@ dmnsn_tokenize(const char *filename, FILE *file) "Expected string after #include"); goto bailout; } - - FILE *included = fopen(token.value, "r"); - if (!included) { + + /* Search in same directory as current file */ + char *filename_copy = strdup(filename); + char *localdir = dirname(filename_copy); + char *local_include = malloc(strlen(localdir) + + strlen(token.value) + + 2); + strcpy(local_include, localdir); + strcat(local_include, "/"); + strcat(local_include, token.value); + free(filename_copy); + free(token.value); + + /* Try to open the included file */ + FILE *include = fopen(local_include, "r"); + if (!include) { dmnsn_diagnostic(filename, line, col, "Couldn't open included file \"%s\"", - token.value); + local_include); + free(local_include); goto bailout; } - dmnsn_array *included_tokens = dmnsn_tokenize(token.value, included); + /* Parse it recursively */ + dmnsn_array *included_tokens = dmnsn_tokenize(local_include, include); if (!included_tokens) { dmnsn_diagnostic(filename, line, col, "Error tokenizing included file \"%s\"", - token.value); + local_include); + free(local_include); goto bailout; } + fclose(include); + free(local_include); + + /* Append the tokens from the included file */ unsigned int i; for (i = 0; i < dmnsn_array_size(included_tokens); ++i) { dmnsn_array_push(tokens, dmnsn_array_at(included_tokens, i)); } - free(token.value); dmnsn_delete_array(included_tokens); continue; } @@ -446,7 +466,6 @@ dmnsn_tokenize(const char *filename, FILE *file) break; } - token.filename = malloc(strlen(filename) + 1); token.filename = strdup(filename); dmnsn_array_push(tokens, &token); } -- cgit v1.2.3