aboutsummaryrefslogtreecommitdiff
path: root/src/compiler.c
blob: b222c2ea631cf93c7f8546ad17cabc0004e5bca4 (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
#include <stdbool.h>
#include <string.h>
#include <unistd.h>
#include <ctype.h>
#include <stdlib.h>
#include <regex.h>
#include <errno.h>

#include <ct/compiler.h>
#include <ct/string.h>
#include <ct/debug.h>
#include <ct/path.h>
#include <ct/res.h>

const char *import_regex =
"^[[:space:]]*(pub[[:space:]]+)?"
"import[[:space:]]+"
"([[:alnum:]/.]+)"
"[[:space:]]*;"
"[[:space:]]*$";

const char *define_regex =
"^[[:space:]]*(pub[[:space:]]+)?"
"define[[:space:]]+"
"([[:alnum:]]+)[[:space:]]*"
"\\((.*)\\)"
"[[:space:]]*"
"\\{(.*)\\}"
"[[:space:]]*$";

regex_t import_re;
regex_t define_re;

/* this could maybe be moved to a utility file or something */
static char *get_regerror(int errcode, regex_t *compiled)
{
	size_t len = regerror(errcode, compiled, NULL, 0);
	char *buf = malloc(len);
	regerror(errcode, compiled, buf, len);
	return buf;
}

static int read_element(FILE *f, struct string *element)
{
	if (feof(f))
		return -1;

	str_clear(element);

	char c = fgetc(f);
	str_append(element, c);
	if (!isalnum(c))
		return 0;

	while ((c = fgetc(f))) {
		if (isalnum(c)) {
			str_append(element, c);
		} else {
			ungetc(c, f);
			break;
		}
	}

	return 0;
}

static struct string *read_block(FILE *f, size_t *lines)
{
	size_t depth = 0;
	bool maybe_statement = true;
	struct string *block = new_string(NULL);
	if (!block)
		return NULL;

	struct string *elem = new_string(NULL);
	if (!elem) {
		destroy_string(block);
		return NULL;
	}

	size_t newlines = 0;
	while (1) {
		if (read_element(f, elem)) {
			destroy_string(elem);
			destroy_string(block);
			return NULL;
		}

		if (maybe_statement && str_compare(elem, ";")) {
			str_add(block, elem);
			break;
		}

		if (str_compare(elem, "{")) {
			maybe_statement = false;
			depth += 1;
		}

		if (str_compare(elem, "}"))
			depth -= 1;

		str_add(block, elem);

		if (str_compare(elem, "\n"))
			newlines++;

		if (!maybe_statement && depth == 0)
			break;
	}

	if (lines)
		*lines += newlines;

	destroy_string(elem);
	return block;
}

static bool detect_pub(struct string *block, regmatch_t rm)
{
	const char *start = block->buf + rm.rm_so;
	const size_t len = rm.rm_eo - rm.rm_so;
	const size_t min = len < 3 ? len : 3;
	return strncmp(start, "pub", min);
}

static char *extract_match(struct string *block, regmatch_t rm)
{
	const char *start = block->buf + rm.rm_so;
	const size_t len = rm.rm_eo - rm.rm_so;
	char *match = strndup(start, len);
	if (!match)
		error("couldn't extract match: %s\n", strerror(errno));

	return match;
}

static bool detect_import(struct string *block, bool *pub, char **file)
{
	int ret = 0;
	const size_t captures = 3;
	regmatch_t rm[captures];
	ret = regexec(&import_re, block->buf, captures, rm, 0);

	switch (ret) {
	case REG_ESPACE: error("import regex ran out of memory: %s\n",
					 strerror(errno));
			 /* fallthrough */
	case REG_NOMATCH: return false;
	}

	*pub = detect_pub(block, rm[1]);
	*file = extract_match(block, rm[2]);
	return true;
}

static bool detect_define(struct string *block, bool *pub,
		char **name, char **args, char **content)
{
	int ret = 0;
	const size_t captures = 5;
	regmatch_t rm[captures];
	ret = regexec(&define_re, block->buf, captures, rm, 0);

	switch (ret) {
	case REG_ESPACE: error("define regex ran out of memory: %s\n",
					 strerror(errno));
			 /* fallthrough */
	case REG_NOMATCH: return false;
	}

	*pub = detect_pub(block, rm[1]);
	*name = extract_match(block, rm[2]);
	*args = extract_match(block, rm[3]);
	*content = extract_match(block, rm[4]);
	return true;
}

static void process_file(const char *file);

static int process(const char *file)
{
	FILE *f = fopen(file, "r");
	if (!f) {
		error("failed opening %s: %s\n", file, strerror(errno));
		return -1;
	}

	size_t lines = 1, prev_lines = 1;
	struct string *block;
	while ((block = read_block(f, &lines))) {
		debug("block: (%zu - %zu, %zu)\n%s\n", prev_lines, lines,
				lines - prev_lines, block->buf);
		prev_lines = lines + 1;

		bool pub = false;
		char *file = NULL;
		if (detect_import(block, &pub, &file)) {
			debug("detected %s import block for file (%s)\n",
					pub ? "public" : "private",
					file);
			process_file(file);
			free(file);
			goto next;
		}

		char *name = NULL, *args = NULL, *content = NULL;
		if (detect_define(block, &pub, &name, &args, &content)) {
			debug("detected %s define block %s (%s) {%s}\n",
					pub ? "public" : "private",
					name, args, content);
			free(name);
			free(args);
			free(content);
			goto next;
		}

		/* with each block,
		 * A) Detect if it is an import block and what kind,
		 * in which case process the file that it refers to.
		 *
		 * B) Detect if it is a macro block and what kind, in which case
		 * parse it and add it to the macro subsystem.
		 *
		 * C) Run the preprocessor on the block.
		 *
		 * D) Actually lex/parse/generate AST for the block.
		 *
		 * E) Run semantic checks on the block.
		 *
		 * With all of these parts checked, I'm pretty sure we can
		 * directly generate code for each block. Possibly something
		 * like one C file per CT file, will have to look into what
		 * might be easiest. Also, some internal duplicate checking, so
		 * that we don't accidentally generate the same generic function
		 * in two different files or something like that.
		 *
		 * Same duplicate checking could be useful for the interpreted
		 * approach.
		 *
		 * Step D) could potentially be done on request, maybe fitting
		 * for the interpreted approach, I guess it depends on how fast the
		 * lexing/parsing/AST generation for each block is. Semantic
		 * checking is what I suspect will be the slowest part.
		 *
		 * Oh yeah, need some way to push result of some lower file
		 * processing upwards. And probably detecting a main block as
		 * well?
		 */
next:
		destroy_string(block);
	}

	fclose(f);
	return 0;
}

void process_file(const char *file)
{
	struct res *r = res_create();

	const char *base = ct_basename(file);
	res_add(r, (void *)base);
	if (!base)
		goto out;

	const char *dir = ct_dirname(file);
	res_add(r, (void *)dir);
	if (!dir)
		goto out;

	const char *cwd = ct_cwdname();
	res_add(r, (void *)cwd);
	if (!cwd)
		goto out;

	debug("(cwd:%s)(dir:%s)(base:%s)\n", cwd, dir, base);

	if (*dir != 0 && chdir(dir)) {
		error("couldn't change to directory %s: %s\n", dir, strerror(errno));
		goto out;
	}

	if (process(base))
		goto out;

	if (chdir(cwd)) {
		error("couldn't change back to directory %s: %s\n", cwd, strerror(errno));
		goto out;
	}

out:
	res_destroy(r);
}

void compile(const char *file) {
	int err = 0;
	if ((err = regcomp(&import_re, import_regex, REG_EXTENDED)) != 0) {
		char *err_str = get_regerror(err, &import_re);
		error("failed compiling import regex: %s\n", err_str);
		free(err_str);
		goto out;
	}

	if ((err = regcomp(&define_re, define_regex, REG_EXTENDED)) != 0) {
		char *err_str = get_regerror(err, &define_re);
		error("failed compiling define regex: %s\n", err_str);
		free(err_str);
		goto define_out;
	}

	process_file(file);

	regfree(&define_re);
define_out:
	regfree(&import_re);
out:
}