-
Notifications
You must be signed in to change notification settings - Fork 30
/
php-lex.l
415 lines (358 loc) · 13.1 KB
/
php-lex.l
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
/*
* Copyright (c) 2001-2002 Secure Software, Inc
*
* 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 2
* 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, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*/
%x IN_PHP_SCRIPT
%x IN_PHP_OCOMMENT
%option stack
%{
#include <string.h>
#include "tokens.h"
#include "engine.h"
int phplexreal_column = 0;
int phplex_column = 0;
int phplex_lineno = 1;
int yyphplength = 0;
int yyphpsize = 0;
char *yyphpcomment = NULL;
static void count(void);
static int identifier(void);
static void reset_comment(void);
static int cstyle_comment(void);
static void no_match(void);
static void gobble_string(char c);
static void scan_yytext(void);
#define YY_INPUT(buf, result, max_size) \
if (((result = fread(buf, 1, max_size, yyin)) == 0) && ferror(yyin)) { \
YY_FATAL_ERROR("input in flex scanner failed"); \
} else { \
if (result) { \
char *c, *end = (buf) + result - 1; \
for (c = (buf); c < end; c++) { \
if (*c == '\r') *c = ' '; \
if (*c == '\\' && *(c + 1) == '\n') { \
memmove(c + 1, c + 2, end - c); \
result--; \
end--; \
*c = '\r'; \
} \
} \
if (*end == '\r') *end = ' '; \
if (*end == '\\') { \
result--; \
fseek(yyin, -1, SEEK_CUR); \
} \
} \
}
%}
LNUM [0-9]+
DNUM ([0-9]*[\.][0-9]+)|([0-9]+[\.][0-9]*)
EXPONENT_DNUM (({LNUM}|{DNUM})[eE][+-]?{LNUM})
HNUM "0x"[0-9a-fA-F]+
LABEL [a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*
WHITESPACE [ \n\r\t]+
TABS_AND_SPACES [ \t]*
TOKENS [;:,.\[\]()|^&+-/*=%!~$<>?@]
NEWLINE ("\r"|"\n"|"\r\n")
%%
<INITIAL>"<?"|"<script"{WHITESPACE}+"language"{WHITESPACE}*"="{WHITESPACE}*("php"|"\"php\""|"\'php\'"){WHITESPACE}*">" {
BEGIN(IN_PHP_SCRIPT);
scan_yytext();
count();
return TOKEN_PHP_IN_SCRIPT;
}
<INITIAL>"<%="|"<?=" {
BEGIN(IN_PHP_SCRIPT);
count();
return TOKEN_PHP_IN_SCRIPT;
}
<INITIAL>"<%" {
BEGIN(IN_PHP_SCRIPT);
count();
return TOKEN_PHP_IN_SCRIPT;
}
<INITIAL>"<?php"([ \t]|{NEWLINE}) {
BEGIN(IN_PHP_SCRIPT);
scan_yytext();
count();
return TOKEN_PHP_IN_SCRIPT;
}
<IN_PHP_SCRIPT,IN_PHP_OCOMMENT>("?>"|"</script"{WHITESPACE}*">"){NEWLINE}? {
BEGIN(INITIAL);
scan_yytext();
count();
return TOKEN_PHP_IN_SCRIPT;
}
<IN_PHP_SCRIPT,IN_PHP_OCOMMENT>"%>"{NEWLINE}? {
BEGIN(INITIAL);
scan_yytext();
count();
return TOKEN_PHP_IN_SCRIPT;
}
<IN_PHP_SCRIPT>"#"|"//" {
BEGIN(IN_PHP_OCOMMENT);
count();
return TOKEN_COMMENT;
}
<IN_PHP_SCRIPT>"/*" {count();return cstyle_comment();}
<IN_PHP_SCRIPT>"$" {count();return '$';}
<IN_PHP_SCRIPT>"old_function" {count();return TOKEN_FUNCTION;}
<IN_PHP_SCRIPT>"function"|"cfunction" {count();return TOKEN_FUNCTION;}
<IN_PHP_SCRIPT>"const" {count();return TOKEN_CONST;}
<IN_PHP_SCRIPT>"return" {count();return TOKEN_RETURN;}
<IN_PHP_SCRIPT>"if" {count();return TOKEN_IF;}
<IN_PHP_SCRIPT>"elseif" {count();return TOKEN_ELSEIF;}
<IN_PHP_SCRIPT>"else" {count();return TOKEN_ELSE;}
<IN_PHP_SCRIPT>"while" {count();return TOKEN_WHILE;}
<IN_PHP_SCRIPT>"endwhile" {count();return TOKEN_ENDWHILE;}
<IN_PHP_SCRIPT>"do" {count();return TOKEN_DO;}
<IN_PHP_SCRIPT>"for" {count();return TOKEN_FOR;}
<IN_PHP_SCRIPT>"endfor" {count();return TOKEN_ENDFOR;}
<IN_PHP_SCRIPT>"foreach" {count();return TOKEN_FOREACH;}
<IN_PHP_SCRIPT>"endforeach" {count();return TOKEN_ENDFOREACH;}
<IN_PHP_SCRIPT>"declare" {count();return TOKEN_DECLARE;}
<IN_PHP_SCRIPT>"enddeclare" {count();return TOKEN_ENDDECLARE;}
<IN_PHP_SCRIPT>"as" {count();return TOKEN_AS;}
<IN_PHP_SCRIPT>"switch" {count();return TOKEN_SWITCH;}
<IN_PHP_SCRIPT>"endswitch" {count();return TOKEN_ENDSWITCH;}
<IN_PHP_SCRIPT>"case" {count();return TOKEN_CASE;}
<IN_PHP_SCRIPT>"default" {count();return TOKEN_DEFAULT;}
<IN_PHP_SCRIPT>"break" {count();return TOKEN_BREAK;}
<IN_PHP_SCRIPT>"continue" {count();return TOKEN_CONTINUE;}
<IN_PHP_SCRIPT>"print" {count();return TOKEN_PRINT;}
<IN_PHP_SCRIPT>"class" {count();return TOKEN_CLASS;}
<IN_PHP_SCRIPT>"extends" {count();return TOKEN_EXTENDS;}
<IN_PHP_SCRIPT>"var" {count();return TOKEN_VAR;}
<IN_PHP_SCRIPT>"=>" {count();return TOKEN_DOUBLE_ARROW;}
<IN_PHP_SCRIPT>"++" {count();return TOKEN_INC_OP;}
<IN_PHP_SCRIPT>"--" {count();return TOKEN_DEC_OP;}
<IN_PHP_SCRIPT>"===" {count();return TOKEN_T_EQUAL;}
<IN_PHP_SCRIPT>"!==" {count();return TOKEN_T_NOTEQUAL;}
<IN_PHP_SCRIPT>"==" {count();return TOKEN_EQ_OP;}
<IN_PHP_SCRIPT>"!="|"<>" {count();return TOKEN_NE_OP;}
<IN_PHP_SCRIPT>"<=" {count();return TOKEN_LE_OP;}
<IN_PHP_SCRIPT>">=" {count();return TOKEN_GE_OP;}
<IN_PHP_SCRIPT>"+=" {count();return TOKEN_ADD_ASSIGN;}
<IN_PHP_SCRIPT>"-=" {count();return TOKEN_SUB_ASSIGN;}
<IN_PHP_SCRIPT>"*=" {count();return TOKEN_MUL_ASSIGN;}
<IN_PHP_SCRIPT>"/=" {count();return TOKEN_DIV_ASSIGN;}
<IN_PHP_SCRIPT>".=" {count();return TOKEN_CONCAT_ASSIGN;}
<IN_PHP_SCRIPT>"%=" {count();return TOKEN_MOD_ASSIGN;}
<IN_PHP_SCRIPT>"<<=" {count();return TOKEN_LEFT_ASSIGN;}
<IN_PHP_SCRIPT>">>=" {count();return TOKEN_RIGHT_ASSIGN;}
<IN_PHP_SCRIPT>"&=" {count();return TOKEN_AND_ASSIGN;}
<IN_PHP_SCRIPT>"|=" {count();return TOKEN_OR_ASSIGN;}
<IN_PHP_SCRIPT>"^=" {count();return TOKEN_XOR_ASSIGN;}
<IN_PHP_SCRIPT>"||" {count();return TOKEN_OR_OP;}
<IN_PHP_SCRIPT>"&&" {count();return TOKEN_AND_OP;}
<IN_PHP_SCRIPT>"OR" {count();return TOKEN_OR_OP;}
<IN_PHP_SCRIPT>"AND" {count();return TOKEN_AND_OP;}
<IN_PHP_SCRIPT>"XOR" {count();return TOKEN_XOR_OP;}
<IN_PHP_SCRIPT>"<<" {count();return TOKEN_LEFT_OP;}
<IN_PHP_SCRIPT>">>" {count();return TOKEN_RIGHT_OP;}
<IN_PHP_SCRIPT>{HNUM} {count();return TOKEN_HEX_CONST;}
<IN_PHP_SCRIPT>{DNUM} {count();return TOKEN_DEC_CONST;}
<IN_PHP_SCRIPT>{LNUM} {count();return TOKEN_DEC_CONST;}
<IN_PHP_SCRIPT>{EXPONENT_DNUM} {count();return TOKEN_DEC_CONST;}
<IN_PHP_SCRIPT>{LABEL} {count();return identifier();}
<IN_PHP_SCRIPT>";" { count();return ';'; }
<IN_PHP_SCRIPT>"{" { count();return '{'; }
<IN_PHP_SCRIPT>"}" { count();return '}'; }
<IN_PHP_SCRIPT>"," { count();return ','; }
<IN_PHP_SCRIPT>":" { count();return ':'; }
<IN_PHP_SCRIPT>"=" { count();return '='; }
<IN_PHP_SCRIPT>"(" { count();return '('; }
<IN_PHP_SCRIPT>")" { count();return ')'; }
<IN_PHP_SCRIPT>"[" { count();return '['; }
<IN_PHP_SCRIPT>"]" { count();return ']'; }
<IN_PHP_SCRIPT>"." { count();return '.'; }
<IN_PHP_SCRIPT>"&" { count();return '&'; }
<IN_PHP_SCRIPT>"!" { count();return '!'; }
<IN_PHP_SCRIPT>"~" { count();return '~'; }
<IN_PHP_SCRIPT>"-" { count();return '-'; }
<IN_PHP_SCRIPT>"+" { count();return '+'; }
<IN_PHP_SCRIPT>"*" { count();return '*'; }
<IN_PHP_SCRIPT>"/" { count();return '/'; }
<IN_PHP_SCRIPT>"%" { count();return '%'; }
<IN_PHP_SCRIPT>"<" { count();return '<'; }
<IN_PHP_SCRIPT>"`" { count();return '`'; }
<IN_PHP_SCRIPT>">" { count();return '>'; }
<IN_PHP_SCRIPT>"^" { count();return '^'; }
<IN_PHP_SCRIPT>"@" {count();return '@'; }
<IN_PHP_SCRIPT>"|" { count();return '|'; }
<IN_PHP_SCRIPT>"?" { count();return '?'; }
<IN_PHP_SCRIPT>("\"") { count();gobble_string('"'); return TOKEN_STRING_CONST; }
<IN_PHP_SCRIPT>("'") { count();gobble_string('\''); return TOKEN_STRING_CONST; }
<*>[ \t\v\f] { /* eat white space */ }
<IN_PHP_OCOMMENT>[\n\r] { BEGIN(IN_PHP_SCRIPT); count();phplex_lineno++; }
<INITIAL,IN_PHP_SCRIPT>[\n\r] { count();phplex_lineno++; }
<IN_PHP_OCOMMENT>. { count();/* eat it! */}
<IN_PHP_SCRIPT>. { count();no_match(); }
<INITIAL>. { count();/* it's just HTML, we don't care */}
%%
int yywrap(void)
{
return 1;
}
static void
count()
{
int i;
if (phplexreal_column != 0)
{
phplex_column = phplexreal_column+1;
}
for (i = 0; yytext[i] != '\0'; i++)
{
if (yytext[i] == '\n')
{
phplexreal_column = 0;
phplex_column = 0;
} else if (yytext[i] == '\t') {
phplexreal_column += 8 - (phplexreal_column % 8);
}else {
phplexreal_column++;
}
}
}
static
void gobble_string(char which)
{
int bslash = 0;
char c;
while ((c = input()) && c != -1)
{
phplexreal_column++;
switch(c) {
case '\\':
if (!bslash)
bslash = 1;
else
bslash = 0;
break;
case '\n':
phplexreal_column = 0;
phplex_column = 0;
phplex_lineno++;
bslash = 0;
break;
default:
if (c == which && !bslash) {
return;
}
bslash = 0;
break;
}
}
}
static
void scan_yytext(void)
{
char *tmp;
tmp = yytext;
while(*tmp) {
if(*tmp == '\n' || *tmp == '\r')
{
phplexreal_column = 0;
phplex_column = 0;
phplex_lineno++;
}
tmp++;
}
}
static
int identifier(void)
{
char * c;
while ((c = strchr(yytext, '\r')) != (char *)NULL)
{
memmove(c, c + 1, strlen(c));
phplexreal_column = 0;
phplex_column = 0;
phplex_lineno++;
}
return TOKEN_IDENTIFIER;
}
static
void no_match(void)
{
fprintf(stderr, "%s:%d: warning: bad token `%s'\n", current_file, phplex_lineno, yytext);
}
static
void accumulate_comment(char *data, int length)
{
int need;
char * text = yyphpcomment;
need = yyphplength + length + 1;
need = (need + 127) / 128 * 128;
if (need > yyphpsize)
{
text = (char *)(yyphpsize ? realloc(yyphpcomment, need) : malloc(need));
if (text == (char *)NULL)
return;
yyphpsize = need;
yyphpcomment = text;
}
memcpy(yyphpcomment + yyphplength, data, length);
yyphplength += length;
*(yyphpcomment + yyphplength) = '\0';
}
static
void reset_comment(void)
{
if (yyphpcomment != (char *)NULL)
*yyphpcomment = '\0';
yyphplength = 0;
}
static
int cstyle_comment(void)
{
char c;
reset_comment();
while ((c = input()) && c != -1)
{
phplexreal_column++;
accumulate_comment(&c, 1);
if (c == '\n' || c == '\r')
{
phplexreal_column = 0;
phplex_column = 0;
phplex_lineno++;
}
while (c == '*')
{
phplexreal_column++;
if (!(c = input()) || c == -1) {
return TOKEN_COMMENT;
}
if (c == '\n' || c == '\r')
{
phplexreal_column = 0;
phplex_column = 0;
phplex_lineno++;
}
if (c == '/') {
return TOKEN_COMMENT;
} else
{
char tmp[2] = { '*', c };
accumulate_comment(tmp, sizeof(tmp));
}
}
}
return TOKEN_COMMENT;
}