aboutsummaryrefslogtreecommitdiff
path: root/src/context.c
blob: c0898d8028c0f0f86573b1e5273b8e054a2e18e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#include <context.h>
#include <lib.h>
#include <tokenize.h>

struct ctx *context_create(const char *path)
{
	struct ctx *ctx = calloc(1, sizeof(*ctx));
	ctx->tokens = calloc(TOKENS_MAX, sizeof(*ctx->tokens));
	ctx->path = path; // TODO: strdup?

	FILE *file = fopen(path, "r");
	assert(file);

	// Find size of file
	fseek(file, 0, SEEK_END);
	ctx->size = ftell(file);
	rewind(file);
	assert(ctx->size);

	ctx->raw = malloc(ctx->size + 1);
	assert(ctx->raw);
	fread(ctx->raw, 1, ctx->size, file);
	fclose(file);

	ctx->raw[ctx->size] = 0;

	return ctx;
}

void context_destroy(struct ctx *ctx)
{
	if (!ctx)
		return;

	if (ctx->raw)
		free(ctx->raw);

	if (ctx->data && ctx->data != ctx->raw)
		free(ctx->data);

	if (ctx->tokens)
		free(ctx->tokens);

	free(ctx);
}

void context_rewind(struct ctx *ctx)
{
	ctx->line = 0;
	ctx->column = 0;
}