blob: ff0291afff41992e93aa176f3f1ad067c52807ab (
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
52
53
54
55
56
57
58
59
60
61
|
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <context.h>
#include <tokenize.h>
#include <treeify.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;
ctx->tree.head = tree_create();
ctx->tree.current = NULL;
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);
if (ctx->tree.head)
tree_destroy(ctx->tree.head);
free(ctx);
}
void context_rewind(struct ctx *ctx)
{
ctx->line = 0;
ctx->column = 0;
}
|