-
Notifications
You must be signed in to change notification settings - Fork 0
/
ppproc.c
432 lines (398 loc) · 10.6 KB
/
ppproc.c
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
/* ppproc.c: Copyright (C) 2011 by Brian Raiter <breadbox@muppetlabs.com>
* License GPLv2+: GNU GPL version 2 or later.
* This is free software; you are free to change and redistribute it.
* There is NO WARRANTY, to the extent permitted by law.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "gen.h"
#include "error.h"
#include "symset.h"
#include "clexer.h"
#include "exptree.h"
#include "ppproc.h"
/* Maximum nesting level of #if statements.
*/
#define STACK_SIZE 1024
/* State flags tracking the current state of ppproc.
*/
#define F_If 0x0001 /* inside a #if section */
#define F_Else 0x0002 /* inside a #else section */
#define F_Elif 0x0004 /* inside a #elif section */
#define F_Ours 0x0010 /* guarded by user-specified symbol */
#define F_Copy 0x0020 /* section is passed to output */
#define F_IfModify 0x0040 /* modified #if expression */
#define F_ElseModify 0x0080 /* modified #elif expression */
/* Return codes for the seqif() function.
*/
enum status
{
statError, statDefined, statUndefined, statPartDefined, statUnaffected
};
/* The partial preprocessor.
*/
struct ppproc {
struct clexer *cl; /* the lexer */
struct symset *defs; /* list of defined symbols */
struct symset *undefs; /* list of undefined symbols */
char *line; /* the current line of input */
int linealloc; /* memory allocated for line */
int copy; /* true if input is going to output */
int absorb; /* true if input is being suppressed */
int endline; /* false if line has no '\n' at end */
int level; /* current nesting level */
int stack[STACK_SIZE]; /* state flags for each level */
};
/* Allocates a partial preprocessor object.
*/
struct ppproc *initppproc(struct symset *defs, struct symset *undefs)
{
struct ppproc *ppp;
ppp = allocate(sizeof *ppp);
ppp->cl = initclexer();
ppp->defs = defs;
ppp->undefs = undefs;
ppp->linealloc = 128;
ppp->line = allocate(ppp->linealloc);
return ppp;
}
/* Deallocates the partial preprocessor object.
*/
void freeppproc(struct ppproc *ppp)
{
freeclexer(ppp->cl);
deallocate(ppp->line);
deallocate(ppp);
}
/* Set the state appropriate for the beginning of a file.
*/
static void beginfile(struct ppproc *ppp)
{
ppp->level = -1;
ppp->copy = TRUE;
ppp->absorb = FALSE;
}
/* Mark the ppproc as having reached the end of the current file.
*/
static void endfile(struct ppproc *ppp)
{
endstream(ppp->cl);
if (ppp->level != -1)
error(errOpenIf);
ppp->line[0] = '\0';
}
/* Partially preprocesses a #if expression. ifexp points to the text
* immediately following the #if. The function seeks to the end of the
* expression and evaluates it. The return value points to the text
* immediately following the expression. If the expression has a
* defined state, status receives either statDefined or statUndefined.
* If the expression's contents are disjoint from the defined and
* undefined symbols, status receives statUnaffected. Otherwise the
* expression is in a partial state, in which case status receives
* statPartDefined, and the original string is modified so as to
* remove the parts of the expression that have a defined state.
*/
static char const *seqif(struct ppproc *ppp, char *ifexp, enum status *status)
{
struct exptree *tree;
char const *ret;
char *str;
int defined, n;
tree = initexptree();
*status = statUnaffected;
n = geterrormark();
ret = parseexptree(tree, ppp->cl, ifexp);
if (errorsincemark(n)) {
*status = statError;
goto quit;
}
n = 0;
if (ppp->defs)
n += markdefined(tree, ppp->defs, TRUE);
if (ppp->undefs)
n += markdefined(tree, ppp->undefs, FALSE);
if (n) {
*status = evaltree(tree, &defined) ? statDefined : statUndefined;
if (!defined) {
*status = statPartDefined;
str = allocate(strlen(ifexp) + 1);
n = unparseevaluated(tree, str);
strcpy(str + n, ifexp + getexplength(tree));
strcpy(ifexp, str);
deallocate(str);
}
}
quit:
freeexptree(tree);
return ret;
}
/* Partially preprocesses the current line of input. If the input
* contains a preprocessor statement, the state of ppproc is updated
* to reflect the current section, and if necessary the line of input
* will be altered for output.
*/
static void seq(struct ppproc *ppp)
{
char const *input;
char const *cmd;
enum status status;
int incomment;
enum ppcmd id;
int size, n;
incomment = ccommentp(ppp->cl);
ppp->absorb = FALSE;
input = examinechar(ppp->cl, ppp->line);
while (!preproclinep(ppp->cl)) {
if (endoflinep(ppp->cl))
return;
input = nextchar(ppp->cl, input);
}
cmd = skipwhite(ppp->cl, nextchar(ppp->cl, input));
input = getpreprocessorcmd(ppp->cl, cmd, &id);
switch (id) {
case cmdIfdef:
case cmdIfndef:
if (ppp->level + 1 >= sizearray(ppp->stack)) {
error(errIfsTooDeep);
break;
}
++ppp->level;
ppp->stack[ppp->level] = ppp->copy ? F_Copy : 0;
if (!ppp->copy) {
input = restofline(ppp->cl, input);
break;
}
size = getidentifierlength(input);
if (!size) {
error(errEmptyIf);
break;
}
if (ppp->defs && findsymbolinset(ppp->defs, input, NULL))
n = statDefined;
else if (ppp->undefs && findsymbolinset(ppp->undefs, input, NULL))
n = statUndefined;
else
n = statUnaffected;
input = skipwhite(ppp->cl, nextchars(ppp->cl, input, size));
if (!endoflinep(ppp->cl)) {
error(errSyntax);
break;
}
if (n != statUnaffected) {
ppp->absorb = TRUE;
ppp->stack[ppp->level] |= F_Ours;
ppp->copy = n == (id == cmdIfdef ? statDefined : statUndefined);
}
break;
case cmdIf:
if (ppp->level + 1 >= sizearray(ppp->stack)) {
error(errIfsTooDeep);
break;
}
++ppp->level;
ppp->stack[ppp->level] = F_If | (ppp->copy ? F_Copy : 0);
if (!ppp->copy) {
input = restofline(ppp->cl, input);
break;
}
input = seqif(ppp, (char*)input, &status);
if (status == statError)
break;
input = skipwhite(ppp->cl, input);
if (!endoflinep(ppp->cl)) {
error(errIfSyntax);
break;
}
if (status == statDefined || status == statUndefined) {
ppp->absorb = TRUE;
ppp->stack[ppp->level] |= F_Ours;
ppp->copy = status == statDefined;
}
break;
case cmdElse:
if (ppp->level < 0 || (ppp->stack[ppp->level] & F_Else)) {
error(errDanglingElse);
break;
}
ppp->stack[ppp->level] |= F_Else;
if (!endoflinep(ppp->cl)) {
error(errSyntax);
break;
}
if (ppp->stack[ppp->level] & F_Ours) {
ppp->copy = !ppp->copy;
ppp->absorb = TRUE;
n = ppp->level;
while (ppp->stack[n] & F_Elif) {
if (ppp->stack[n] & F_ElseModify) {
ppp->absorb = TRUE;
break;
}
--n;
if (!(ppp->stack[n] & F_Ours))
ppp->absorb = FALSE;
}
}
break;
case cmdElif:
if (ppp->level < 0 || !(ppp->stack[ppp->level] & F_If)
|| (ppp->stack[ppp->level] & F_Else)) {
error(errDanglingElse);
break;
} else if (ppp->level + 1 >= sizearray(ppp->stack)) {
error(errIfsTooDeep);
break;
}
ppp->stack[ppp->level] |= F_Else;
if (ppp->stack[ppp->level] & F_Ours)
ppp->copy = !ppp->copy;
++ppp->level;
ppp->stack[ppp->level] = F_If | F_Elif | (ppp->copy ? F_Copy : 0);
if (!ppp->copy) {
input = restofline(ppp->cl, input);
break;
}
input = seqif(ppp, (char*)input, &status);
if (status == statError)
break;
input = skipwhite(ppp->cl, input);
if (!endoflinep(ppp->cl)) {
error(errIfSyntax);
break;
}
if (status == statUndefined) {
ppp->copy = FALSE;
ppp->absorb = TRUE;
ppp->stack[ppp->level] |= F_Ours;
} else if (status == statDefined) {
ppp->absorb = TRUE;
n = ppp->level;
while (ppp->stack[n] & F_Elif) {
--n;
if (!(ppp->stack[n] & F_Ours)) {
strcpy((char*)cmd, "else");
ppp->stack[ppp->level] |= F_ElseModify;
ppp->absorb = FALSE;
break;
}
}
ppp->stack[ppp->level] |= F_Ours;
} else {
n = ppp->level;
while (ppp->stack[n] & F_Elif) {
--n;
if (!(ppp->stack[n] & F_Ours)) {
n = -1;
break;
}
}
if (n >= 0) {
memmove((char*)cmd, cmd + 2, strlen(cmd + 2) + 1);
ppp->stack[ppp->level] |= F_IfModify;
}
}
break;
case cmdEndif:
if (ppp->level < 0) {
error(errDanglingEnd);
break;
}
if (!endoflinep(ppp->cl)) {
error(errSyntax);
break;
}
ppp->absorb = TRUE;
for ( ; ppp->stack[ppp->level] & F_Elif ; --ppp->level) {
if (ppp->stack[ppp->level] & (F_IfModify | F_ElseModify))
ppp->absorb = FALSE;
}
if (ppp->absorb)
ppp->absorb = ppp->stack[ppp->level] & F_Ours;
ppp->copy = ppp->stack[ppp->level] & F_Copy;
--ppp->level;
break;
default:
input = restofline(ppp->cl, input);
break;
}
if (ppp->absorb && incomment != ccommentp(ppp->cl))
error(errBrokenComment);
}
/* Reads in one line of source code and run it through the partial
* preprocessor. The return value is zero if the file has reached the
* end or if the file can't be read.
*/
static int readline(struct ppproc *ppp, FILE *infile)
{
int size;
int prev, ch;
ch = fgetc(infile);
if (ch == EOF)
return 0;
prev = EOF;
for (size = 0 ; ch != EOF ; ++size) {
if (ch == '\n' && prev != '\\')
break;
if (size + 1 == ppp->linealloc) {
ppp->linealloc *= 2;
ppp->line = reallocate(ppp->line, ppp->linealloc);
}
ppp->line[size] = ch;
prev = ch;
ch = fgetc(infile);
}
if (ferror(infile)) {
error(errFileIO);
return 0;
}
ppp->endline = ch != EOF;
ppp->line[size] = '\0';
seq(ppp);
nextline(ppp->cl, NULL);
return 1;
}
/* Outputs the partially preprocessed line to the output file,
* assuming anything is left to be output. The return value is false
* if an error occurs.
*/
static int writeline(struct ppproc *ppp, FILE *outfile)
{
size_t size;
if (!ppp->line)
return 1;
if (!ppp->copy || ppp->absorb)
return 1;
size = strlen(ppp->line);
if (size) {
if (fwrite(ppp->line, size, 1, outfile) != 1) {
seterrorfile(NULL);
error(errFileIO);
return 0;
}
}
if (ppp->endline)
fputc('\n', outfile);
ppp->endline = FALSE;
return 1;
}
/* Increments the line number count, checking for embedded line break
* characters.
*/
static void advanceline(char const *line)
{
char const *p;
for (p = line - 1 ; p ; p = strchr(p + 1, '\n'))
nexterrorline();
}
/* Partially preprocesses the contents of infile to outfile.
*/
void partialpreprocess(struct ppproc *ppp, void *infile, void *outfile)
{
beginfile(ppp);
seterrorline(1);
while (readline(ppp, infile) && writeline(ppp, outfile))
advanceline(ppp->line);
seterrorline(0);
endfile(ppp);
}