aboutsummaryrefslogtreecommitdiffstats
path: root/src/mds-kbdc/make-tree.c
blob: f5bdf559bb3a77f31efbdb4cac0026f038c0d1f4 (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
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
/**
 * mds — A micro-display server
 * Copyright © 2014, 2015, 2016, 2017  Mattias Andrée (maandree@kth.se)
 * 
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
#include "make-tree.h"

#include "paths.h"

#include <limits.h>
#include <stdlib.h>
#include <libgen.h>
#include <errno.h>
#include <unistd.h>
#include <string.h>
#include <stdio.h>


#ifndef DEBUG
# define DEBUG_PROC(statements)
#else
# define DEBUG_PROC(statements) statements
#endif


/**
 * Print the current keyword stack, this is intended to
 * as a compiler debugging feature and should be used from
 * inside `DEBUG_PROC`
 */
#define PRINT_STACK\
	do {\
		size_t i = stack_ptr;\
		fprintf(stderr, "stack {\n");\
		while (i--)\
			fprintf(stderr, "  %s\n", keyword_stack[i]);\
		fprintf(stderr, "}\n");\
	} while (0)


/**
 * Check whether a value is inside a closed range
 * 
 * @param   LOWER:¿T?  The lower bound, inclusive
 * @param   VALUE:¿T?  The value to test
 * @param   UPPER:¿T?  The upper bound, inclusive
 * @return  :int       1 if `LOWER` ≤ `VALUE` ≤ `UPPER`, otherwise 0
 */
#define in_range(LOWER, VALUE, UPPER)\
	((LOWER) <= (VALUE) && (VALUE) <= (UPPER))


/**
 * Check whether a character is a valid callable name character, forward slash is accepted
 * 
 * @param   C:char  The character
 * @return  :int    Zero if `C` is a valid callable name character or a forward slash, otherwise 0
 */
#define is_name_char(C)\
	(in_range('a', C, 'z') || in_range('A', C, 'Z') || strchr("0123456789_/", C))


/**
 * Pointer to the beginning of the current line
 */
#define LINE\
	(result->source_code->lines[line_i])


/**
 * Update the tip of the stack to point to the address
 * of the current stack's tip's `next`-member
 */
#define NEXT\
	tree_stack[stack_ptr] = &(tree_stack[stack_ptr][0]->next)


/**
 * Add an error to the error list
 * 
 * @param  ERROR_IS_IN_FILE:int           Whether the error is in the layout code
 * @param  SEVERITY:identifier            * in `MDS_KBDC_PARSE_ERROR_*` to indicate severity
 * @param  ...:const char*, ...           Error description format string and arguments
 * @scope  error:mds_kbdc_parse_error_t*  Variable where the new error will be stored
 */
#define NEW_ERROR(ERROR_IS_IN_FILE, SEVERITY, ...)\
	NEW_ERROR_(result, SEVERITY, ERROR_IS_IN_FILE, line_i,\
	           (size_t)(line - LINE), (size_t)(end - LINE), 1, __VA_ARGS__)


/**
 * Create a new node
 * 
 * @param  LOWERCASE:identifier  The keyword, for the node type, in lower case
 * @param  UPPERCASE:identifier  The keyword, for the node type, in upper case
 */
#define NEW_NODE(LOWERCASE, UPPERCASE)\
	mds_kbdc_tree_##LOWERCASE##_t *node;\
	fail_if (xcalloc(node, 1, mds_kbdc_tree_##LOWERCASE##_t));\
	node->type = MDS_KBDC_TREE_TYPE_##UPPERCASE;\
	node->loc_line  = line_i;\
	node->loc_start = (size_t)(line - LINE);\
	node->loc_end   = (size_t)(end  - LINE)


/**
 * Create a new node named `subnode`
 * 
 * @param  LOWERCASE:identifier  The keyword, for the node type, in lower case
 * @param  UPPERCASE:identifier  The keyword, for the node type, in upper case
 */
#define NEW_SUBNODE(LOWERCASE, UPPERCASE)\
	mds_kbdc_tree_##LOWERCASE##_t *subnode;\
	fail_if (xcalloc(subnode, 1, mds_kbdc_tree_##LOWERCASE##_t));\
	subnode->type = MDS_KBDC_TREE_TYPE_##UPPERCASE;\
	subnode->loc_line  = line_i;\
	subnode->loc_start = (size_t)(line - LINE);\
	subnode->loc_end   = (size_t)(end  - LINE)


/**
 * Update the tip of the tree stack with the current node
 * and change the pointer at the tip to the pointer to the
 * current node's down pointer
 * 
 * This is what should be done when a branch node has
 * been created and should be added to the result tree
 * 
 * @param  KEYWORD:const char*  The keyword for the current node's type
 */
#define BRANCH(KEYWORD)\
	(*(tree_stack[stack_ptr]) = (mds_kbdc_tree_t *)node,\
	 tree_stack[stack_ptr + 1] = &(node->inner),\
	 keyword_stack[stack_ptr++] = KEYWORD)


/**
 * Update the tip of the tree stack with the current node
 * and change the pointer at the tip to the pointer to the
 * current node's next pointer
 * 
 * This is what should be done when a leaf node has been
 * created and should be added to the result tree
 */
#define LEAF\
	(*(tree_stack[stack_ptr]) = (mds_kbdc_tree_t*)node,\
	 NEXT)


/**
 * Skip all blank spaces
 * 
 * @param  var:const char*  The variable
 */
#define SKIP_SPACES(var)\
	while (*var && *var == ' ')\
		var++


/**
 * Check that there are no tokens after a keyword
 * 
 * @param  KEYWORD:const char*  The keyword
 */
#define NO_PARAMETERS(KEYWORD)\
	fail_if (no_parameters(KEYWORD))


/**
 * Take next parameter, which should be a name of a callable,
 * and store it in the current node
 * 
 * @param  var:identifier  The name of the member variable, for the current
 *                         node, where the parameter should be stored
 */
#define NAMES_1(var)\
	fail_if (names_1(&node->var))


/**
 * Suppress the next `line = STREND(line)`
 */
#define NO_JUMP\
	(*end = prev_end_char,\
	 end = line,\
	 prev_end_char = *end,\
	 *end = '\0')


/**
 * Check whether a character ends a strings, whilst not being being a quote
 * 
 * @param  c:char  The character
 */
#define IS_END(c)\
	strchr(" >}])", c)


/**
 * Take next parameter, which should be a string or numeral,
 * and store it in the current node
 * 
 * @param  var:identifier  The name of the member variable, for the current
 *                         node, where the parameter should be stored
 */
#define CHARS(var)\
	fail_if (chars(&node->var))


/**
 * Test that there are no more parameters
 */
#define END\
	do {\
		SKIP_SPACES(line);\
		if (*line) {\
			NEW_ERROR(1, ERROR, "too many parameters");\
			error->end = strlen(LINE);\
		}\
	} while (0)


/**
 * Test that the next parameter is in quotes
 */
#define QUOTES\
	fail_if (quotes())


/**
 * Check that there is exactly one parameter, that it is in
 * quotes, and add it to the current node
 * 
 * @param  var:identifier  The name of the member variable, for the current
 *                         node, where the parameter should be stored
 */
#define QUOTES_1(var)\
	do {\
		QUOTES;\
		CHARS(var);\
		END;\
	} while (0)


/**
 * Check that the next word is a specific keyword
 * 
 * @param  KEYWORD:const char*  The keyword
 */
#define TEST_FOR_KEYWORD(KEYWORD)\
	fail_if (test_for_keyword(KEYWORD))


/**
 * Take next parameter, which should be a key combination or strings,
 * and store it in the current node
 * 
 * @param  var:identifier  The name of the member variable, for the current
 *                         node, where the parameter should be stored
 */
#define KEYS(var)\
	fail_if (keys(&node->var))


/**
 * Take next parameter, which should be a key combination,
 * and store it in the current node
 * 
 * @param  var:identifier  The name of the member variable, for the current
 *                         node, where the parameter should be stored
 */
#define PURE_KEYS(var)\
	fail_if (pure_keys(&node->var))



/**
 * Parse a sequence in a mapping
 * 
 * @param  mapseq:int  Whether this is a mapping sequence, otherwise
 *                     it is treated as macro call arguments
 */
#define SEQUENCE(mapseq)\
	do /* for(;;) */ {\
		*end = prev_end_char;\
		SKIP_SPACES(line);\
		if (!*line || *line == (mapseq ? ':' : ')'))\
			break;\
		fail_if (sequence(mapseq, stack_orig));\
	} while (1)


/**
 * Check that the scopes created in `SEQUENCE` has all been popped
 */
#define SEQUENCE_FULLY_POPPED\
	fail_if (sequence_fully_popped(stack_orig))


/**
 * Create new leaf and update the stack accordingly
 * 
 * @param  LOWERCASE:identifier  The keyword, for the node type, in lower case
 * @param  UPPERCASE:identifier  The keyword, for the node type, in upper case
 * @param  PARSE:expression      Statement, without final semicolon, to retrieve members
 */
#define MAKE_LEAF(LOWERCASE, UPPERCASE, PARSE)\
	do {\
		NEW_NODE(LOWERCASE, UPPERCASE);\
		PARSE;\
		LEAF;\
	} while (0)


/**
 * Create new branch and update the stack accordingly
 * 
 * @param  LOWERCASE:identifier  The keyword, for the node type, in lower case
 * @param  UPPERCASE:identifier  The keyword, for the node type, in upper case
 * @param  PARSE:expression      Statement, without final semicolon, to retrieve members
 */
#define MAKE_BRANCH(LOWERCASE, UPPERCASE, PARSE)\
	do {\
		NEW_NODE(LOWERCASE, UPPERCASE);\
		PARSE;\
		BRANCH(#LOWERCASE);\
	} while (0)



/**
 * Variable whether the latest created error is stored
 */
static mds_kbdc_parse_error_t *error;

/**
 * Output parameter for the parsing result
 */
static mds_kbdc_parsed_t *restrict result;

/**
 * The head of the parsing-stack
 */
static size_t stack_ptr;

/**
 * The keyword portion of the parsing-stack
 */
static const char **restrict keyword_stack;

/**
 * The tree portion of the parsing-stack
 */
static mds_kbdc_tree_t ***restrict tree_stack;

/**
 * The index of the currently parsed line
 */
static size_t line_i = 0;

/**
 * Whether an array is currently being parsed
 */
static int in_array;

/**
 * The beginning of what has not get been parsed
 * on the current line
 */
static char *line = NULL;

/**
 * The end of what has been parsed on the current line
 */
static char *end = NULL;

/**
 * The previous value of `*end`
 */
static char prev_end_char;

/**
 * Pointer to the first non-whitespace character
 * on the current line
 */
static char *original;

/**
 * Whether it has been identified that the
 * current line has too few parameters
 */
static int too_few;



/***  Pre-parsing procedures.  ***/


/**
 * Get the pathname name of the parsed file
 * 
 * @param   filename  The filename of the parsed file
 * @return            The value the caller should return, or 1 if the caller should not return, -1 on error
 */
static int
get_pathname(const char *restrict filename)
{
	char *cwd = NULL;
	int saved_errno;

	/* Get a non-relative pathname for the file, relative filenames
	 * can be misleading as the program can have changed working
	 * directory to be able to resolve filenames. */
	result->pathname = abspath(filename);
	if (!result->pathname) {
		fail_if (errno != ENOENT);
		saved_errno = errno;
		fail_if (!(cwd = curpath()));
		fail_if (xstrdup(result->pathname, filename));
		NEW_ERROR_(result, ERROR, 0, 0, 0, 0, 1, "no such file or directory in ‘%s’", cwd);
		free(cwd);
		return 0;
	}

	/* Check that the file exists and can be read. */
	if (access(result->pathname, R_OK) < 0) {
		saved_errno = errno;
		NEW_ERROR_(result, ERROR, 0, 0, 0, 0, 0, NULL);
		fail_if (xstrdup(error->description, strerror(saved_errno)));
		return 0;
	}

	return 1;
fail:
	saved_errno = errno;
	free(cwd);
	return errno = saved_errno, -1;
}


/**
 * Allocate stacks needed to parse the tree
 * 
 * @return  Zero on success, -1 on error
 */
static int
allocate_stacks(void)
{
	size_t max_line_length = 0, cur_line_length, line_n;

	/* The maximum line-length is needed because lines can have there own stacking,
	 * like sequence mapping lines, additionally, let statements can have one array. */
	for (line_i = 0, line_n = result->source_code->line_count; line_i < line_n; line_i++) {
		cur_line_length = strlen(LINE);
		if (max_line_length < cur_line_length)
			max_line_length = cur_line_length;
	}

	fail_if (xmalloc(keyword_stack, line_n + max_line_length, const char*));
	fail_if (xmalloc(tree_stack, line_n + max_line_length + 1, mds_kbdc_tree_t**));

	return 0;
fail:
	return -1;
}


/**
 * Read the file and simplify it a bit
 * 
 * @return  Zero on success, -1 on error
 */
static int
read_source_code(void)
{
	/* Read the file and simplify it a bit. */
	fail_if (read_source_lines(result->pathname, result->source_code) < 0);

	return 0;
fail:
	return -1;
}



/***  Post-parsing procedures.  ***/


/**
 * Check that a the file did not end prematurely by checking
 * that the stack has been fully popped
 * 
 * @return  Zero on success, -1 on error
 */
static int
check_for_premature_end_of_file(void)
{
	/* Check that all scopes have been popped. */
	if (stack_ptr) {
		while (stack_ptr && !keyword_stack[stack_ptr - 1])
			stack_ptr--;
		if (stack_ptr) {
			NEW_ERROR(0, ERROR, "premature end of file");
			while (stack_ptr--) {
				if (!keyword_stack[stack_ptr])
					continue;
				line_i = tree_stack[stack_ptr][0]->loc_line;
				line = LINE + tree_stack[stack_ptr][0]->loc_start;
				end  = LINE + tree_stack[stack_ptr][0]->loc_end;
				if (!strcmp(keyword_stack[stack_ptr], "}"))
					NEW_ERROR(1, NOTE, "missing associated ‘%s’", keyword_stack[stack_ptr]);
				else
					NEW_ERROR(1, NOTE, "missing associated ‘end %s’", keyword_stack[stack_ptr]);
			}
		}
	}

	return 0;
fail:
	return -1;
}


/**
 * Check whether the parsed file did not contain any code
 * and generate a warning if that is the case, comments
 * and whitespace is ignored
 * 
 * @return  Zero on success, -1 on error
 */
static int
check_whether_file_is_empty(void)
{
	/* Warn about empty files. */
	if (!result->tree && !result->errors_ptr)
		NEW_ERROR(0, WARNING, "file is empty");

	return 0;
fail:
	return -1;
}



/***  Parsing subprocedures.  ***/


/**
 * Check that there are no tokens after a keyword
 * 
 * @param   keyword  The keyword
 * @return           Zero on success, -1 on error
 */
static int
no_parameters(const char *restrict keyword)
{
	line = STREND(line);
	*end = prev_end_char, prev_end_char = '\0';
	SKIP_SPACES(line);
	if (*line) {
		end = STREND(line);
		NEW_ERROR(1, ERROR, "extra token after ‘%s’", keyword);
	}

	return 0;
fail:
	return -1;
}



/**
 * Take next parameter, which should be a name of a callable,
 * and store it in the current node
 * 
 * @param   var  Address of the member variable, for the current
 *               node, where the parameter should be stored
 * @return       Zero on success, -1 on error
 */
static int
names_1(char **restrict var)
{
	char *name_end;
	char *test;
	int stray_char = 0;
	char *end_end;

	line = STREND(line);
	*end = prev_end_char, prev_end_char = '\0';
	SKIP_SPACES(line);
	if (!*line) {
		line = original, end = STREND(line);
		NEW_ERROR(1, ERROR, "a name is expected");
	} else {
		name_end = line;
		while (*name_end && is_name_char(*name_end))
			name_end++;
		if (*name_end && (*name_end != ' ')) {
			end_end = name_end + 1;
			while ((*end_end & 0xC0) == 0x80)
				end_end++;
			prev_end_char = *end_end, *end_end = '\0';
			NEW_ERROR(1, ERROR, "stray ‘%s’ character", name_end);
			error->start = (size_t)(name_end - LINE);
			error->end   = (size_t)(end_end  - LINE);
			*end_end = prev_end_char;
			stray_char = 1;
		}
		test = name_end;
		SKIP_SPACES(test);
		if (*test && !stray_char) {
			NEW_ERROR(1, ERROR, "too many parameters");
			error->start = (size_t)(test - LINE);
			error->end   = strlen(LINE);
		}
		end = name_end;
		prev_end_char = *end;
		*end = '\0';
		fail_if (xstrdup(*var, line));
	}

	return 0;
fail:
	return -1;
}


/**
 * Take next parameter, which should be a string or numeral,
 * and store it in the current node
 * 
 * @param   var  Address of the member variable, for the current
 *               node, where the parameter should be stored
 * @return       Zero on success, -1 on error
 */
static int
chars(char **restrict var)
{
	char *arg_end, *call_end, c;
	int escape, quote;
	if (too_few)
		return 0;
	line = STREND(line);
	*end = prev_end_char, prev_end_char = '\0';
	SKIP_SPACES(line);
	if (!*line) {
		line = original, end = STREND(line);
		NEW_ERROR(1, ERROR, "too few parameters");
		line = end, too_few = 1;
	} else {
		arg_end = line;
		call_end = arg_end;
		escape = quote = 0;
		while (*arg_end) {
			c = *arg_end++;
			if (escape) {
				escape = 0;
			} else if (arg_end <= call_end) { ;
			} else if (c == '\\') {
				escape = 1;
				call_end = arg_end + get_end_of_call(arg_end, 0, strlen(arg_end));
			} else if (quote) {
				quote = c != '"';
			} else if (IS_END(c)) {
				arg_end--;
				break;
			} else {
				quote = c == '"';
			}
		}
		prev_end_char = *arg_end, *arg_end = '\0', end = arg_end;
		fail_if (xstrdup(*var, line));
		line = end;
	}

	return 0;
fail:
	return -1;
}


/**
 * Test that the next parameter is in quotes
 * 
 * @return  Zero on success, -1 on error
 */
static int
quotes(void)
{
	char *line_ = line, *arg_end;
	line = STREND(line);
	*end = prev_end_char;
	SKIP_SPACES(line);
	if (*line && *line != '"') {
		arg_end = line;
		SKIP_SPACES(arg_end);
		NEW_ERROR(1, ERROR, "parameter must be in quotes");
		error->end = (size_t)(arg_end - LINE);
	}
	*end = '\0';
	line = line_;

	return 0;
fail:
	return -1;
}


/**
 * Check whether the currently line has unparsed parameters
 * 
 * @return  Whether the currently line has unparsed parameters, -1 on error
 */
static int
have_more_parameters(void)
{
	if (too_few)
		return 0;
	line = STREND(line);
	*end = prev_end_char, prev_end_char = '\0';
	SKIP_SPACES(line);
	if (!*line) {
		line = original, end = STREND(line);
		NEW_ERROR(1, ERROR, "too few parameters");
		line = end, too_few = 1;
		return 0;
	}
	return 1;
fail:
	return -1;
}


/**
 * Check that the next word is a specific keyword
 * 
 * @param   keyword  The keyword
 * @return           Zero on success, -1 on error
 */
static int
test_for_keyword(const char *restrict keyword)
{
	int ok, r = have_more_parameters();
	fail_if (r < 0);
	if (!r)
		return 0;

	ok = (strstr(line, keyword) == line);
	line += strlen(keyword);
	ok = ok && (!*line || *line == ' ');
	if (ok) {
		end = line;
		prev_end_char = *end;
		*end = '\0';
		return 0;
	}
	line -= strlen(keyword);
	end = line;
	SKIP_SPACES(end);
	prev_end_char = *end, *end = '\0';
	NEW_ERROR(1, ERROR, "expecting keyword ‘%s’", keyword);
	error->end = error->start + 1;

	return 0;
fail:
	return -1;
}


/**
 * Take next parameter, which should be a key combination or strings,
 * and store it in the current node
 * 
 * @param   var  Address of the member variable, for the current
 *               node, where the parameter should be stored
 * @return       Zero on success, -1 on error
 */
static int
keys(mds_kbdc_tree_t **restrict var)
{
	char *arg_end, *call_end, c;
	int r, escape = 0, quote = 0, triangle;
	r = have_more_parameters();
	fail_if (r < 0);
	if (!r)
		return 0;

	arg_end = line;
	call_end = arg_end;
	triangle = *arg_end == '<';
	while (*arg_end) {
		c = *arg_end++;
		if (escape) {
			escape = 0;
		} else if (arg_end <= call_end) { ;
		} else if (c == '\\') {
			escape = 1;
			call_end = arg_end + get_end_of_call(arg_end, 0, strlen(arg_end));
		} else if (quote) {
			quote = c != '"';
		} else if (c == '\"') {
			quote = 1;
		} else if (c == '>') {
			triangle = 0;
		} else if (IS_END(c) && !triangle) {
			arg_end--;
			break;
		}
	}
	prev_end_char = *arg_end, *arg_end = '\0', end = arg_end;
	if (*line == '<') {
		NEW_SUBNODE(keys, KEYS);
		*var = (mds_kbdc_tree_t *)subnode;
		fail_if (xstrdup(subnode->keys, line));
	} else {
		NEW_SUBNODE(string, STRING);
		*var = (mds_kbdc_tree_t *)subnode;
		fail_if (xstrdup(subnode->string, line));
	}
	line = end;

	return 0;
fail:
	return -1;
}



/**
 * Take next parameter, which should be a key combination,
 * and store it in the current node
 * 
 * @param   var  Address of the member variable, for the current
 *               node, where the parameter should be stored
 * @return       Zero on success, -1 on error
 */
static int
pure_keys(char **restrict var)
{
	char *arg_end, *call_end, c;
	int r, escape = 0, quote = 0, triangle;
	r = have_more_parameters();
	fail_if (r < 0);
	if (!r)
		return 0;

	arg_end = line;
	call_end = arg_end;
	triangle = *arg_end == '<';
	while (*arg_end) {
		c = *arg_end++;
		if (escape) {
			escape = 0;
		} else if (arg_end <= call_end) { ;
		} else if (c == '\\') {
			escape = 1;
			call_end = arg_end + get_end_of_call(arg_end, 0, strlen(arg_end));
		} else if (quote) {
			quote = c != '"';
		} else if (c == '\"') {
			quote = 1;
		} else if (c == '>') {
			triangle = 0;
		} else if (IS_END(c) && !triangle) {
			arg_end--;
			break;
		}
	}
	prev_end_char = *arg_end, *arg_end = '\0';
	fail_if (xstrdup(*var, line));
	end = arg_end, line = end;

	return 0;
fail:
	return -1;
}


/**
 * Parse an element of a sequence in a mapping
 * 
 * @param   mapseq      Whether this is a mapping sequence, otherwise
 *                      it is treated as macro call arguments
 * @param   stack_orig  The size of the stack when `SEQUENCE` was called
 * @return              Zero on success, -1 on error
 */
static int
sequence(int mapseq, size_t stack_orig)
{
	if (mapseq && *line == '(') {
		NEW_NODE(unordered, UNORDERED);
		node->loc_end = node->loc_start + 1;
		BRANCH(")");
		line++;
	} else if (*line == '[') {
		NEW_NODE(alternation, ALTERNATION);
		node->loc_end = node->loc_start + 1;
		BRANCH("]");
		line++;
	} else if (*line == '.') {
		NEW_NODE(nothing, NOTHING);
		node->loc_end = node->loc_start + 1;
		LEAF;
		line++;
	} else if (strchr("])", *line)) {
		end = line + 1;
		prev_end_char = *end, *end = '\0';
		if (stack_ptr == stack_orig) {
			NEW_ERROR(1, ERROR, "runaway ‘%s’", line);
		} else {
			stack_ptr--;
			if (strcmp(line, keyword_stack[stack_ptr]))
				NEW_ERROR(1, ERROR, "expected ‘%s’ but got ‘%s’", keyword_stack[stack_ptr], line);
			NEXT;
		}
		*end = prev_end_char;
		line++;
	} else if (*line == '<') {
		NEW_NODE(keys, KEYS);
		NO_JUMP;
		PURE_KEYS(keys);
		LEAF;
		node->loc_end = (size_t)(line - LINE);
	} else {
		NEW_NODE(string, STRING);
		NO_JUMP;
		CHARS(string);
		LEAF;	
		node->loc_end = (size_t)(line - LINE);
	}

	return 0;
 fail:
	return -1;
}


/**
 * Check that the scopes created in `SEQUENCE` has all been popped
 * 
 * @param  stack_orig  The size of the stack when `SEQUENCE` was called
 */
static int
sequence_fully_popped(size_t stack_orig)
{
	if (stack_ptr == stack_orig)
		return 0;
	end = line + 1;
	NEW_ERROR(1, ERROR, "premature end of sequence");
	while (stack_ptr > stack_orig) {
		stack_ptr--;
		NEW_ERROR(1, NOTE, "missing associated ‘%s’", keyword_stack[stack_ptr]);
		error->start = tree_stack[stack_ptr][0]->loc_start;
		error->end   = tree_stack[stack_ptr][0]->loc_end;
	}

	return 0;
fail:
	return -1;
}



/***  Parsing procedures.  ***/


/**
 * Parse an else- or else if-statement
 * 
 * @return  Zero on success, -1 on error, 1 if the caller should go to `redo`
 */
static int
parse_else(void)
{
	size_t i;
	if (!stack_ptr) {
		NEW_ERROR(1, ERROR, "runaway ‘else’ statement");
		return 0;
	}
	line = STREND(line);
	*end = prev_end_char, prev_end_char = '\0';
	end = STREND(line);
	SKIP_SPACES(line);
	i = stack_ptr - 1;
	while (!keyword_stack[i])
		i--;
	if (strcmp(keyword_stack[i], "if")) {
		stack_ptr--;
		line = original, end = STREND(line);
		NEW_ERROR(1, ERROR, "runaway ‘else’ statement");
	} else if (!*line) {
		/* else */
		mds_kbdc_tree_if_t *supernode = &tree_stack[stack_ptr - 1][0]->if_;
		if (supernode->otherwise) {
			line = strstr(LINE, "else");
			end = line + 4, prev_end_char = *end;
			NEW_ERROR(1, ERROR, "multiple ‘else’ statements");
			mds_kbdc_tree_free(supernode->otherwise);
			supernode->otherwise = NULL;
		}
		tree_stack[stack_ptr] = &supernode->otherwise;
	} else if (strstr(line, "if") == line && (line[2] == ' ' || !line[2])) {
		/* else if */
		mds_kbdc_tree_if_t *supernode = &tree_stack[stack_ptr - 1][0]->if_;
		NEW_NODE(if, IF);
		node->loc_end = node->loc_start + 2;
		end = line += 2, prev_end_char = *end, *end = '\0';
		CHARS(condition);
		END;
		tree_stack[stack_ptr] = &(supernode->otherwise);
		BRANCH(NULL);
	} else {
		NEW_ERROR(1, ERROR, "expecting nothing or ‘if’");
		stack_ptr--;
	}

	return 0;
fail:
	return -1;
}


/**
 * Parse a for-statement
 * 
 * @return  Zero on success, -1 on error, 1 if the caller should go to `redo`
 */
static int
parse_for(void)
{
	NEW_NODE(for, FOR);
	CHARS(first);
	TEST_FOR_KEYWORD("to");
	CHARS(last);
	TEST_FOR_KEYWORD("as");
	CHARS(variable);
	END;
	BRANCH("for");

	return 0;
fail:
	return -1;
}


/**
 * Parse a let-statement
 * 
 * @return  Zero on success, -1 on error, 1 if the caller should go to `redo`
 */
static int
parse_let(void)
{
	NEW_NODE(let, LET);
	CHARS(variable);
	TEST_FOR_KEYWORD(":");
	*end = prev_end_char;
	SKIP_SPACES(line);
	if (*line == '{')
#define inner value
		BRANCH(NULL);
#undef inner
	else
		LEAF;
	if (!*line) {
		line = original, end = STREND(line), prev_end_char = '\0';
		NEW_ERROR(1, ERROR, "too few parameters");
	} else if (*line != '{') {
#define node subnode
		NEW_NODE(string, STRING);
		NO_JUMP;
		CHARS(string);
		node->loc_end = (size_t)(end - LINE);
#undef node
		node->value = (mds_kbdc_tree_t*)subnode;
		END;
	} else {
#define node subnode
#define inner elements
		NEW_NODE(array, ARRAY);
		BRANCH("}");
		node->loc_end = node->loc_start + 1;
#undef inner
#undef node
		in_array = 1;
		line++;
		return 1;
	}

	return 0;
fail:
	return -1;
}


/**
 * Parse an end-statement
 * 
 * @return  Zero on success, -1 on error, 1 if the caller should go to `redo`
 */
static int
parse_end(void)
{
	if (!stack_ptr) {
		NEW_ERROR(1, ERROR, "runaway ‘end’ statement");
		return 0;
	}
	line = STREND(line);
	*end = prev_end_char, prev_end_char = '\0';
	SKIP_SPACES(line);
	while (!keyword_stack[--stack_ptr]);
	if (!*line) {
		line = original, end = STREND(line);
		NEW_ERROR(1, ERROR, "expecting a keyword after ‘end’");
	} else if (strcmp(line, keyword_stack[stack_ptr])) {
		NEW_ERROR(1, ERROR, "expected ‘%s’ but got ‘%s’", keyword_stack[stack_ptr], line);
	}
	NEXT;

	return 0;
fail:
	return -1;
}


/**
 * Parse a mapping- or value-statement
 * 
 * @return  Zero on success, -1 on error, 1 if the caller should go to `redo`
 */
static int
parse_map(void)
{
	size_t stack_orig = stack_ptr + 1;
	char *colon;
#define node supernode
#define inner sequence
	NEW_NODE(map, MAP);
	node->loc_end = node->loc_start;
	BRANCH(":");
#undef inner
#undef node
	SEQUENCE(1);
	SEQUENCE_FULLY_POPPED;
#define node supernode
#define inner result
	stack_ptr--;
	*end = prev_end_char;
	supernode->loc_end = (size_t)(end - LINE);
	SKIP_SPACES(line);
	if (colon = line, *line++ != ':') {
		LEAF;
		prev_end_char = *end;
		return 0; /* Not an error in functions, or if \set is access, even indirectly. */
	}
	BRANCH(":");
#undef inner
#undef node
	SEQUENCE(1);
	SEQUENCE_FULLY_POPPED;
	stack_ptr--;
	*end = prev_end_char;
	supernode->loc_end = (size_t)(end - LINE);
	SKIP_SPACES(line);
#define node supernode
	LEAF;
#undef node
	if (!supernode->result) {
		NEW_ERROR(1, ERROR, "output missing");
		error->start = (size_t)(colon - LINE);
		error->end = error->start + 1;
	}
	if (!*line)
		return prev_end_char = *end, 0;
	end = STREND(line), prev_end_char = *end;
	NEW_ERROR(1, ERROR, "too many parameters");

	return 0;
fail:
	return -1;
}


/**
 * Parse a macro call
 * 
 * @return  Zero on success, -1 on error, 1 if the caller should go to `redo`
 */
static int
parse_macro_call(void)
{
	char *old_end = end;
	char old_prev_end_char = prev_end_char;
	size_t stack_orig = stack_ptr + 1;
	*end = prev_end_char;
	end = strchrnul(line, '(');
	prev_end_char = *end, *end = '\0';
	if (prev_end_char) {
#define node supernode
#define inner arguments
		NEW_NODE(macro_call, MACRO_CALL);
		old_end = end, old_prev_end_char = prev_end_char;
		NO_JUMP;
		*old_end = '\0';
		CHARS(name);
		BRANCH(NULL);
		end = old_end, prev_end_char = old_prev_end_char;
		line++;
#undef inner
#undef node
		SEQUENCE(0);
		SEQUENCE_FULLY_POPPED;
#define node supernode
		if (*line == ')') {
			line++;
			SKIP_SPACES(line);
			if (*line) {
				NEW_ERROR(1, ERROR, "extra token after macro call");
				error->end = strlen(LINE);
			}
		} else {
			NEW_ERROR(1, ERROR, "missing ‘)’");
			error->start = (size_t)(strchr(LINE, '(') - LINE);
			error->end   = error->start + 1;
		}
		stack_ptr--;
		NEXT;
		return 0;
#undef node
	}
	*old_end = '\0';
	end = old_end;
	prev_end_char = old_prev_end_char;
	if (strchr("}", *line))
		NEW_ERROR(1, ERROR, "runaway ‘%c’", *line);
	else
		NEW_ERROR(1, ERROR, "invalid syntax ‘%s’", line);

	return 0;
fail:
	return -1;
}


/**
 * Parse a line of an array
 * 
 * @return  Zero on success, -1 on error, 1 if the caller should go to `redo`
 */
static int
parse_array_elements(void)
{
	for (;;) {
		SKIP_SPACES(line);
		if (!*line) {
			return 0;
		} else if (*line == '}') {
			line++;
			end = STREND(line);
			END;
			line = end, prev_end_char = '\0';
			goto done;
		} else {
			NEW_NODE(string, STRING);
			if (strchr("[]()<>{}", *line)) {
				mds_kbdc_tree_free((mds_kbdc_tree_t*)node);
				NEW_ERROR(1, ERROR, "x-stray ‘%c’", *line);
				error->end = error->start + 1;
				goto done;
			}
			NO_JUMP;
			CHARS(string);
			LEAF;
			node->loc_end = (size_t)(end - LINE);
			*end = prev_end_char;
			line = end;
		}
	}

fail:
	return -1;

done:
	in_array = 0;
	stack_ptr -= 2;
	NEXT;
	return 0;
}


/**
 * Parse a line
 * 
 * @return  Zero on success, -1 on error
 */
static int
parse_line(void)
{
#define p(function)\
	do {\
		fail_if ((r = function()) < 0);\
		if (r > 0)\
			goto redo;\
	} while (0)

	int r;

redo:
	if      (in_array)                     p (parse_array_elements);
	else if (!strcmp(line, "have_chars"))  MAKE_LEAF(assumption_have_chars, ASSUMPTION_HAVE_CHARS, QUOTES_1(chars));
	else if (!strcmp(line, "have_range"))  MAKE_LEAF(assumption_have_range, ASSUMPTION_HAVE_RANGE, CHARS(first); CHARS(last); END);
	else if (!strcmp(line, "have"))        MAKE_LEAF(assumption_have, ASSUMPTION_HAVE, KEYS(data); END);
	else if (!strcmp(line, "information")) MAKE_BRANCH(information, INFORMATION, NO_PARAMETERS("information"));
	else if (!strcmp(line, "assumption"))  MAKE_BRANCH(assumption, ASSUMPTION, NO_PARAMETERS("assumption"));
	else if (!strcmp(line, "return"))      MAKE_LEAF(return, RETURN, NO_PARAMETERS("return"));
	else if (!strcmp(line, "continue"))    MAKE_LEAF(continue, CONTINUE, NO_PARAMETERS("continue"));
	else if (!strcmp(line, "break"))       MAKE_LEAF(break, BREAK, NO_PARAMETERS("break"));
	else if (!strcmp(line, "language"))    MAKE_LEAF(information_language, INFORMATION_LANGUAGE, QUOTES_1(data));
	else if (!strcmp(line, "country"))     MAKE_LEAF(information_country, INFORMATION_COUNTRY, QUOTES_1(data));
	else if (!strcmp(line, "variant"))     MAKE_LEAF(information_variant, INFORMATION_VARIANT, QUOTES_1(data));
	else if (!strcmp(line, "include"))     MAKE_LEAF(include, INCLUDE, QUOTES_1(filename));
	else if (!strcmp(line, "function"))    MAKE_BRANCH(function, FUNCTION, NAMES_1(name));
	else if (!strcmp(line, "macro"))       MAKE_BRANCH(macro, MACRO, NAMES_1(name));
	else if (!strcmp(line, "if"))          MAKE_BRANCH(if, IF, CHARS(condition); END);
	else if (!strcmp(line, "else"))              p (parse_else);
	else if (!strcmp(line, "for"))               p (parse_for);
	else if (!strcmp(line, "let"))               p (parse_let);
	else if (!strcmp(line, "end"))               p (parse_end);
	else if (strchr("\\\"<([0123456789", *line)) p (parse_map);
	else                                         p (parse_macro_call);

	*end = prev_end_char;

	return 0;
fail:
	return -1;
#undef p
}



/***  Parsing root-procedure.  ***/


/**
 * Parse a file into a syntax tree
 * 
 * @param   filename   The filename of the file to parse
 * @param   result_    Output parameter for the parsing result
 * @return             -1 if an error occursed that cannot be stored in `result`, zero otherwise
 */
int
parse_to_tree(const char *restrict filename, mds_kbdc_parsed_t *restrict result_)
{
	size_t line_n;
	int r, saved_errno;


	/* Prepare parsing. */
	result = result_;
	stack_ptr = 0;
	keyword_stack = NULL;
	tree_stack = NULL;
	in_array = 0;

	fail_if (xmalloc(result->source_code, 1, mds_kbdc_source_code_t));
	mds_kbdc_source_code_initialise(result->source_code);

	fail_if ((r = get_pathname(filename)) < 0);
	if (!r)
		return 0;

	fail_if (read_source_code());
	fail_if (allocate_stacks());


	/* Create a node-slot for the tree root. */
	*tree_stack = &(result->tree);

	/* Parse the file. */
	for (line_i = 0, line_n = result->source_code->line_count; line_i < line_n; line_i++) {
		line = LINE;
		SKIP_SPACES(line);
		if ((end = strchrnul(line, ' ')) == line)
			continue;
		prev_end_char = *end, *end = '\0';
		original = line;
		too_few = 0;

		parse_line();
	}


	/* Check parsing state. */
	fail_if (check_for_premature_end_of_file());
	fail_if (check_whether_file_is_empty());

	/* Clean up. */
	free(keyword_stack);
	free(tree_stack);
	return 0;

fail:
	saved_errno = errno;
	free(keyword_stack);
	free(tree_stack);
	return errno = saved_errno, -1;
}



#undef MAKE_BRANCH
#undef MAKE_LEAF
#undef SEQUENCE_FULLY_POPPED
#undef SEQUENCE
#undef PURE_KEYS
#undef KEYS
#undef TEST_FOR_KEYWORD
#undef QUOTES_1
#undef QUOTES
#undef END
#undef CHARS
#undef IS_END
#undef NO_JUMP
#undef NAMES_1
#undef NO_PARAMETERS
#undef SKIP_SPACES
#undef LEAF
#undef BRANCH
#undef NEW_NODE
#undef NEW_ERROR
#undef NEXT
#undef LINE
#undef is_name_char
#undef in_range
#undef PRINT_STACK
#undef DEBUG_PROC