aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
blob: db4b890b6809b39c3cbf5beae5f96fcbfbfe466e (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
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
#include <assert.h>
#include <ctype.h>
#include <errno.h>
#include <stdarg.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/param.h>

/**
 * Definitions
 */

#define TOKENS_MAX 4096

/**
 * Structures/enums
 */

enum token_type {
	UNKNOWN,

	TYPE,
	TYPEDELIM,
	PARAM,

	IDENT,
	OPERATOR,

	LPAREN,
	RPAREN,
	EQUAL,

	NEWLINE,
	EOL,
	END,
};

struct token {
	enum token_type type;
	size_t start, end;
};

struct ctx {
	size_t line;
	size_t column;
	const char *path;

	char *raw;
	char *data;
	size_t size;

	size_t token_count;
	struct token *tokens;
};

/**
 * Contexts
 */

static 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;
}

static 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);
}

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

/**
 * Logging
 */

static void context_print(FILE *fd, struct ctx *ctx)
{
	const char *data = ctx->data ? ctx->data : ctx->raw;

	// Find line, column
	size_t line = 0, column = 0, index = 0;
	for (; index < ctx->size; index++) {
		char cur = data[index];

		column++;

		if (line == ctx->line && column == ctx->column)
			break;

		if (cur == '\n') {
			line++;
			column = 0;
			continue;
		} else if (cur == '\0') {
			fprintf(stderr, "Invalid context!");
			context_destroy(ctx);
			exit(1);
			break;
		}
	}

	if (++index >= ctx->size)
		return; // Couldn't find context, idc?

	fprintf(fd, "\x1B[1;36m%s:%ld:%ld:\x1B[0m '", ctx->path, ctx->line + 1, ctx->column + 1);

	// Print line context
	size_t start = ctx->column > 5 ? index - 5 : index;
	size_t end = ctx->size - index > 5 ? index + 5 : index + 1;
	for (size_t i = start; i < end; i++) {
		if (i == index) {
			fprintf(fd, "\x1B[1;32m%c\x1B[0m", data[i]);
		} else {
			fprintf(fd, "%c", data[i]);
		}
	}
	fprintf(fd, "': ");
}

static __attribute__((noreturn)) void errln(struct ctx *ctx, const char *fmt, ...)
{
	context_print(stderr, ctx);

	fprintf(stderr, "\x1B[1;31m");
	va_list ap;
	va_start(ap, fmt);
	vfprintf(stderr, fmt, ap);
	fprintf(stderr, "\n");
	va_end(ap);
	fprintf(stderr, "\x1B[0m");

	context_destroy(ctx);
	exit(1);
}

static __attribute__((noreturn)) void err(const char *fmt, ...)
{
	fprintf(stderr, "\x1B[1;31m");
	va_list ap;
	va_start(ap, fmt);
	vfprintf(stderr, fmt, ap);
	fprintf(stderr, "\n");
	va_end(ap);
	fprintf(stderr, "\x1B[0m");

	exit(1);
}

/**
 * Preprocessor
 */

static void preprocess_erase(struct ctx *ctx, size_t start)
{
	assert(ctx->raw[start] == '#');

	for (size_t i = start; i < ctx->size; i++) {
		char cur = ctx->raw[i];
		if (cur == '\n' || cur == '\0')
			break;

		ctx->raw[i] = ' '; // Spaces get skipped by tokenizer anyways
	}
}

static void preprocess(struct ctx *ctx)
{
	for (size_t i = 0; i < ctx->size; i++) {
		const char cur = ctx->raw[i];

		ctx->column++;

		if (cur == '\n') {
			ctx->line++;
			ctx->column = 0;
			continue;
		} else if (cur == '\0') {
			break;
		} else if (cur == '#' && ctx->column == 1) {
			if (strncmp(ctx->raw + i + 1, "inc ", MIN(4, ctx->size - i)) == 0) {
				// TODO: Add include features
			} else {
				errln(ctx, "Invalid preprocessing directive");
			}
			preprocess_erase(ctx, i);
		}
	}

	ctx->data = ctx->raw;
	ctx->line = 0;
	ctx->column = 0;
}

/**
 * Tokenizer
 */

static char next_non_alnum(struct ctx *ctx, size_t start)
{
	for (size_t i = start; i < ctx->size; i++)
		if (!isalnum(ctx->data[i]))
			return ctx->data[i];

	errln(ctx, "Unexpected end of buffer");
}

static bool peek_to_is_alnum(struct ctx *ctx, size_t start, char ch)
{
	for (size_t i = start; i < ctx->size; i++) {
		char cur = ctx->data[i];

		if (cur == ch || cur == ';' || cur == ')')
			return true;

		if (!isalnum(cur))
			return false;
	}

	errln(ctx, "Unexpected end of buffer");
}

static size_t peek_alnum_to(struct ctx *ctx, size_t start, char ch)
{
	for (size_t i = start; i < ctx->size; i++) {
		char cur = ctx->data[i];

		if (cur == ch || cur == ';' || cur == ')')
			return i;

		if (!isalnum(cur))
			errln(ctx, "'%c' is not alpha-numeric", cur);
	}

	errln(ctx, "Unexpected end of buffer");
}

static size_t peek_special_to(struct ctx *ctx, size_t start, char ch)
{
	for (size_t i = start; i < ctx->size; i++) {
		char cur = ctx->data[i];

		if (cur == ch || cur == ';' || cur == ')')
			return i;

		if (isalnum(cur) || cur < '!' || cur > '~')
			errln(ctx, "'%c' is not special", cur);
	}

	errln(ctx, "Unexpected end of buffer");
}

static size_t peek_to(struct ctx *ctx, size_t start, char ch)
{
	for (size_t i = start; i < ctx->size; i++) {
		char cur = ctx->data[i];

		if (cur == ch || cur == ';' || cur == ')')
			return i;
	}

	errln(ctx, "Unexpected end of buffer");
}

static void token_add(struct ctx *ctx, enum token_type type, size_t start, size_t end)
{
	struct token token = { 0 };
	token.type = type;
	token.start = start;
	token.end = end;

	assert(++ctx->token_count < TOKENS_MAX);
	ctx->tokens[ctx->token_count] = token;

	if (type == NEWLINE) {
		ctx->line++;
		ctx->column = 0;
	} else {
		ctx->column += end - start;
	}
}

static void token_print(struct ctx *ctx, struct token *token)
{
	assert(token->type != UNKNOWN);

	printf("[token type=%d] '", token->type);
	if (token->type == NEWLINE || token->type == END) {
		printf("' (Unprintable)\n");
		return;
	}

	for (size_t i = token->start; i < token->end; i++)
		printf("%c", ctx->data[i]);
	printf("'\n");
}

static void tokens_print(struct ctx *ctx)
{
	for (size_t i = 1; i < ctx->token_count; i++)
		token_print(ctx, &ctx->tokens[i]);
}

static void tokenize(struct ctx *ctx)
{
	for (size_t i = 0; i < ctx->size; i++) {
		const char cur = ctx->data[i];

		switch (cur) {
		case '\0':
			token_add(ctx, END, i, i + 1);
			return;
		case '\n':
			token_add(ctx, NEWLINE, i, i + 1);
			continue;
		case ';':
			token_add(ctx, EOL, i, i + 1);
			continue;
		case '(':
			token_add(ctx, LPAREN, i, i + 1);
			continue;
		case ')':
			token_add(ctx, RPAREN, i, i + 1);
			continue;
		case '=':
			token_add(ctx, EQUAL, i, i + 1);
			continue;
		case ' ':
			ctx->column++;
			continue;
		default:
			break;
		}

		if (next_non_alnum(ctx, i) == ':') { // Type with param identifier
			size_t start_param = peek_alnum_to(ctx, i, ':') + 1;
			size_t end_param;
			if (peek_to_is_alnum(ctx, start_param, ' ')) {
				end_param = peek_alnum_to(ctx, start_param, ' ');
			} else { // Unnamed identifier ('_')
				end_param = peek_to(ctx, start_param, ' ');
				if (end_param - start_param != 1 || ctx->data[start_param] != '_')
					errln(ctx, "Invalid param identifier");
			}

			token_add(ctx, TYPE, i, start_param - 1);
			token_add(ctx, TYPEDELIM, start_param - 1, start_param);
			token_add(ctx, PARAM, start_param, end_param);

			i = end_param - 1;
			continue;
		}

		if (peek_to_is_alnum(ctx, i, ' ')) { // General identifier
			size_t end_ident = peek_alnum_to(ctx, i, ' ');
			token_add(ctx, IDENT, i, end_ident);
			i = end_ident - 1;
		} else { // Special/custom operator
			size_t end_operator = peek_special_to(ctx, i, ' ');
			token_add(ctx, OPERATOR, i, end_operator);
			i = end_operator - 1;
		}
	}

	context_rewind(ctx);
}

/**
 * Linter
 */

static void lint(struct ctx *ctx)
{
	// Lint parens
	int parens = 0;
	for (size_t i = 1; i < ctx->token_count; i++) {
		struct token *token = &ctx->tokens[i];
		if (token->type == LPAREN)
			parens++;
		else if (token->type == RPAREN)
			parens--;
	}

	if (parens != 0)
		errln(ctx, "Invalid parens balance");
}

/**
 * Main
 */

int main(int argc, char *argv[])
{
	if (argc < 2)
		err("Not enough arguments!");

	struct ctx *ctx = context_create(argv[1]);
	preprocess(ctx);
	tokenize(ctx);
	lint(ctx);
	tokens_print(ctx);

	context_destroy(ctx);

	return 0;
}