aboutsummaryrefslogtreecommitdiff
path: root/src/context.c
diff options
context:
space:
mode:
authorMarvin Borner2022-02-16 20:44:26 +0100
committerMarvin Borner2022-02-16 20:44:26 +0100
commit5cc450b6e8554f5d982f444b9026447971c94024 (patch)
tree7602f936718bc051b6901580b815cf7f53732f5e /src/context.c
parent51c4defc436c0d119941eb6d5b953d27b5b8e6f7 (diff)
Huh
Diffstat (limited to 'src/context.c')
-rw-r--r--src/context.c18
1 files changed, 14 insertions, 4 deletions
diff --git a/src/context.c b/src/context.c
index be93db0..756c38e 100644
--- a/src/context.c
+++ b/src/context.c
@@ -4,6 +4,8 @@
#include <string.h>
#include <context.h>
+#include <log.h>
+#include <preprocess.h>
#include <tokenize.h>
#include <treeify.h>
@@ -55,6 +57,13 @@ void context_destroy(struct ctx *ctx)
free(ctx);
}
+char context_getch(struct ctx *ctx, size_t i)
+{
+ if (i >= ctx->size || !ctx->data[i])
+ errln(&ctx->location, "Unexpected end of buffer");
+ return ctx->data[i];
+}
+
#define CONTEXT_COUNT 3
void context_print(FILE *fd, struct ctx_location *location)
{
@@ -63,25 +72,26 @@ void context_print(FILE *fd, struct ctx_location *location)
for (size_t line = 0, index = 0; line < end_line;) {
if (line < start_line) {
- if (location->data[index++] == '\n')
+ if (location->data[index] == '\n' || location->data[index] == MACRO_NEWLINE)
line++;
+ index++;
continue;
}
const char *end = strchr(location->data + index, '\n') + 1;
- assert(end);
+ assert(end > location->data);
size_t length = end - (location->data + index) - 1;
if (location->line == line) {
int pointer_length = location->column + 9;
char *pointer = malloc(pointer_length); // Literally a pointer
fprintf(fd,
- "\x1B[1;32m%6lu | %.*s\x1B[1;31m%c\x1B[1;32m%.*s\n\x1B[1;31m%.*s%c\x1B[0m\n",
+ "\x1B[1;32m%6lu | %.*s\x1B[1;31m%c\x1B[1;32m%.*s\n\x1B[1;31m%.*s%s\x1B[0m\n",
line + 1, (int)location->column, location->data + index,
*(location->data + index + location->column),
(int)(length - location->column - 1),
location->data + index + location->column + 1, pointer_length,
- (char *)memset(pointer, '~', pointer_length), '^');
+ (char *)memset(pointer, '~', pointer_length), "^ (around here)");
free(pointer);
} else {
fprintf(fd, "%6lu | %.*s\n", line + 1, (int)length, location->data + index);