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
|
/* See LICENSE file for copyright and license details. */
#include "common.h"
void
push_mode(struct parser_context *ctx, enum tokeniser_mode mode)
{
struct mode_stack *new = emalloc(sizeof(*new));
new->mode = mode;
new->she_is_comment = 1;
new->previous = ctx->mode_stack;
ctx->mode_stack = new;
}
void
pop_mode(struct parser_context *ctx)
{
struct mode_stack *old = ctx->mode_stack;
ctx->mode_stack = ctx->mode_stack->previous;
free(old);
}
size_t
parse_preparsed(struct parser_context *ctx, char *code, size_t code_len)
{
#define IS_SYMBOL(C) ((C) == '<' || (C) == '>' || (C) == '&' || (C) == '|' ||\
(C) == '(' || (C) == ')' || (C) == ';' || (C) == '-')
size_t bytes_read = 0;
size_t token_len;
for (; bytes_read < code_len; bytes_read += token_len, code = &code[token_len]) {
switch (ctx->mode_stack->mode) {
case NORMAL_MODE:
if (*code == '#' && ctx->mode_stack->she_is_comment) {
token_len = 1;
push_mode(ctx, COMMENT_MODE);
} else if (*code == '\n') {
token_len = 1;
ctx->mode_stack->she_is_comment = 1;
push_whitespace(ctx, 0);
push_semicolon(ctx, 1);
ctx->tokeniser_line_number += 1;
if (ctx->here_documents_first)
push_mode(ctx, HERE_DOCUMENT_MODE);
} else if (isspace(*code)) {
ctx->mode_stack->she_is_comment = 1;
push_whitespace(ctx, 0);
for (token_len = 1; token_len < code_len - bytes_read; token_len += 1)
if (!isspace(code[token_len]) || code[token_len] == '\n')
break;
} else if (*code == ')' && ctx->mode_stack->previous) {
token_len = 1;
ctx->mode_stack->she_is_comment = 1;
pop_mode(ctx);
push_leave(ctx);
} else if (IS_SYMBOL(*code)) {
ctx->mode_stack->she_is_comment = 1;
for (token_len = 1; token_len < code_len - bytes_read; token_len += 1)
if (!IS_SYMBOL(code[token_len]))
goto symbol_end;
if (!ctx->end_of_file_reached)
goto need_more;
symbol_end:
token_len = push_symbol(ctx, code, token_len);
} else if (*code == '\\') {
ctx->mode_stack->she_is_comment = 0;
backslash_mode:
if (code_len - bytes_read < 2)
goto need_more;
token_len = 2;
push_quoted(ctx, &code[1], 1);
} else if (*code == '\'') {
ctx->mode_stack->she_is_comment = 0;
sqoute_mode:
for (token_len = 1; token_len < code_len - bytes_read; token_len += 1)
if (code[token_len] == '\'')
goto squote_end;
goto need_more;
squote_end:
token_len += 1;
push_quoted(ctx, &code[1], token_len - 2);
} else if (*code == '"') {
ctx->mode_stack->she_is_comment = 0;
dquote_mode:
token_len = 1;
push_mode(ctx, DQ_QUOTE_MODE);
push_enter(ctx, QUOTE_EXPRESSION);
} else if (*code == '`') {
ctx->mode_stack->she_is_comment = 0;
bquote_mode:
token_len = 1;
push_mode(ctx, BQ_QUOTE_MODE);
push_enter(ctx, BACKQUOTE_EXPRESSION);
} else if (*code == '$') {
ctx->mode_stack->she_is_comment = 0;
dollar_mode:
if (code_len - bytes_read < 2) {
if (ctx->end_of_file_reached) {
token_len = 1;
push_unquoted(ctx, code, 1);
} else {
goto need_more;
}
} else if (code[1] == '(') {
if (code_len - bytes_read < 3) {
goto need_more;
} else if (code[2] == '(') {
token_len = 3;
push_mode(ctx, RRB_QUOTE_MODE);
push_enter(ctx, ARITHMETIC_EXPRESSION);
} else {
token_len = 2;
push_mode(ctx, NORMAL_MODE);
push_enter(ctx, SUBSHELL_SUBSTITUTION);
}
} else if (code[1] == '[') {
token_len = 2;
push_mode(ctx, SB_QUOTE_MODE);
push_enter(ctx, ARITHMETIC_EXPRESSION);
} else if (code[1] == '{') {
token_len = 2;
push_mode(ctx, CB_QUOTE_MODE);
push_enter(ctx, VARIABLE_SUBSTITUTION);
} else if (code[1] == '\'') {
for (token_len = 2; token_len < code_len - bytes_read; token_len += 1) {
if (code[token_len] == '\\') {
if (token_len + 1 == code_len - bytes_read) {
token_len += 1;
} else {
goto need_more;
}
} else if (code[token_len] == '\'') {
goto dollar_squote_end;
}
}
dollar_squote_end:
token_len += 1;
push_escaped(ctx, &code[2], token_len - 3);
} else {
token_len = 1;
push_unquoted(ctx, code, 1);
}
} else {
ctx->mode_stack->she_is_comment = 0;
for (token_len = 1; token_len < code_len - bytes_read; token_len += 1) {
if (isspace(code[token_len]) || IS_SYMBOL(code[token_len]) ||
code[token_len] == '\'' || code[token_len] == '"' ||
code[token_len] == '\\' || code[token_len] == '$' ||
code[token_len] == '`')
break;
}
push_unquoted(ctx, code, token_len);
}
break;
case COMMENT_MODE:
if (*code == '\n') {
token_len = 0; /* do not consume */
pop_mode(ctx);
} else {
for (token_len = 1; token_len < code_len - bytes_read; token_len += 1)
if (code[token_len] == '\n')
break;
}
break;
case HERE_DOCUMENT_MODE:
/* TODO read until terminator, remove all <tab> (including on the
* line of the terminator) if <<- and then if terminator was
* unquoted, parse in " "-mode but accept " */
break;
case BQ_QUOTE_MODE:
if (*code == '\\') {
if (code_len - bytes_read < 2) {
goto need_more;
} else {
token_len = 2;
push_unquoted(ctx, code, 2);
}
} else if (*code == '`') {
token_len = 1;
pop_mode(ctx);
push_leave(ctx);
} else if (*code == '\n') {
token_len = 1;
ctx->tokeniser_line_number += 1;
push_unquoted(ctx, code, 1);
} else {
for (token_len = 1; token_len < code_len - bytes_read; token_len += 1)
if (code[token_len] == '\n' || code[token_len] == '\\' || code[token_len] == '`')
break;
push_unquoted(ctx, code, token_len);
}
break;
case DQ_QUOTE_MODE:
if (*code == '"') {
token_len = 1;
pop_mode(ctx);
push_leave(ctx);
} else {
goto common_quote_mode;
}
break;
case RRB_QUOTE_MODE:
if (*code == ')') {
if (code_len - bytes_read < 2) {
goto need_more;
} else if (code[1] == ')') {
token_len = 2;
pop_mode(ctx);
push_leave(ctx);
} else {
goto common_quote_mode;
}
} else {
goto common_quote_mode;
}
break;
case RB_QUOTE_MODE:
if (*code == ')') {
token_len = 1;
pop_mode(ctx);
push_leave(ctx);
} else {
goto common_quote_mode;
}
break;
case SB_QUOTE_MODE:
if (*code == ']') {
token_len = 1;
pop_mode(ctx);
push_leave(ctx);
} else {
goto common_quote_mode;
}
break;
common_quote_mode:
if (*code == '(' && ctx->mode_stack->mode != DQ_QUOTE_MODE) {
if (code_len - bytes_read < 2) {
goto need_more;
} else if (code[1] == '(') {
token_len = 2;
push_mode(ctx, RRB_QUOTE_MODE);
push_enter(ctx, ARITHMETIC_EXPRESSION);
} else {
token_len = 1;
push_mode(ctx, RB_QUOTE_MODE);
push_enter(ctx, ARITHMETIC_EXPRESSION);
}
} else if (*code == '$') {
if (code_len - bytes_read < 2) {
if (ctx->end_of_file_reached) {
token_len = 1;
push_unquoted(ctx, code, 1);
} else {
goto need_more;
}
} else if (code[1] == '(') {
if (code_len - bytes_read < 3) {
goto need_more;
} else if (code[2] == '(') {
token_len = 3;
push_mode(ctx, RRB_QUOTE_MODE);
push_enter(ctx, ARITHMETIC_EXPRESSION);
} else {
token_len = 2;
push_mode(ctx, NORMAL_MODE);
push_enter(ctx, SUBSHELL_SUBSTITUTION);
}
} else if (code[1] == '[') {
token_len = 2;
push_mode(ctx, SB_QUOTE_MODE);
push_enter(ctx, ARITHMETIC_EXPRESSION);
} else if (code[1] == '{') {
token_len = 2;
push_mode(ctx, CB_QUOTE_MODE);
push_enter(ctx, VARIABLE_SUBSTITUTION);
} else {
token_len = 1;
push_unquoted(ctx, code, 1);
}
} else if (*code == '\\') {
if (code_len - bytes_read < 2) {
if (ctx->end_of_file_reached) {
token_len = 1;
push_unquoted(ctx, code, 1);
} else {
goto need_more;
}
} else if (code[1] == '$' || code[1] == '`' || code[1] == '"' || code[1] == '\\') {
token_len = 1;
push_quoted(ctx, &code[1], 1);
} else {
token_len = 1;
push_unquoted(ctx, code, 1);
}
} else if (*code == '`') {
goto bquote_mode;
} else if (*code == '\n') {
token_len = 1;
ctx->tokeniser_line_number += 1;
push_unquoted(ctx, code, 1);
} else {
for (token_len = 1; token_len < code_len - bytes_read; token_len += 1) {
if (code[token_len] == '"' || code[token_len] == ')' ||
code[token_len] == ']' || code[token_len] == '(' ||
code[token_len] == '$' || code[token_len] == '\\' ||
code[token_len] == '`' || code[token_len] == '\n')
break;
}
push_unquoted(ctx, code, token_len);
}
break;
case CB_QUOTE_MODE:
if (*code == '}') {
token_len = 1;
pop_mode(ctx);
push_leave(ctx);
} else if (*code == '\\') {
goto backslash_mode;
} else if (*code == '\'') {
goto sqoute_mode;
} else if (*code == '"') {
goto dquote_mode;
} else if (*code == '`') {
goto bquote_mode;
} else if (*code == '$') {
goto dollar_mode;
} else if (*code == '\n') {
token_len = 1;
ctx->tokeniser_line_number += 1;
push_unquoted(ctx, code, 1);
} else {
for (token_len = 1; token_len < code_len - bytes_read; token_len += 1) {
if (code[token_len] == '}' || code[token_len] == '\\' ||
code[token_len] == '\'' || code[token_len] == '"' ||
code[token_len] == '`' || code[token_len] == '$' ||
code[token_len] == '\n')
break;
}
push_unquoted(ctx, code, token_len);
}
break;
default:
abort();
}
if (ctx->line_continuations) {
ctx->tokeniser_line_number += ctx->line_continuations;
ctx->line_continuations = 0;
}
}
if (bytes_read == code_len && ctx->end_of_file_reached)
push_end_of_file(ctx);
need_more:
return bytes_read;
#undef IS_SYMBOL
}
|