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
|
#define _GNU_SOURCE
#include <engine.h>
#include <filehandler.h>
#include <lexer.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include "../config.h"
void
ingest(char **buffer)
{
key_match_t *match;
while (true) {
match = find_next_key(*buffer);
if (match == NULL)
break;
directive_t *directive = find_directive(*buffer, match);
if (directive == NULL)
break;
if (directive->type == INCLUDE) {
char *operand = (char *) directive->operands;
char *partial_path;
asprintf(&partial_path, "%s/%s/%s", DIRECTORY, PARTIALS, operand);
FILE *f = fopen(partial_path, "r");
unsigned int size = fsize(f);
char *partial_content = fcontent(f, size);
char *temp_buffer;
asprintf(&temp_buffer, "%s", *buffer);
free(*buffer);
asprintf(buffer,
"%.*s%s%s\n",
match->offset,
temp_buffer,
partial_content,
temp_buffer + match->offset + match->length);
free(temp_buffer);
}
free(directive);
free(match);
}
}
|