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
|
/*
* 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.
*
*/
%{
#include <string.h>
#include "tokens.h"
#include "engine.h"
int plexreal_column = 0;
int plex_column = 0;
int plex_lineno = 1;
int pyyclength = 0;
int pyycsize = 0;
char *yypcomment = NULL;
static void gobble_string(char c);
static int identifier(void);
static void no_match(void);
static int longstring(int);
static void count(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); \
} \
} \
}
%}
%%
[\n\r] { count();plex_lineno++; return TOKEN_NEWLINE; }
[ \t\v\f] { count(); }
^[ \r\t]*"#".*\n { count();plex_lineno++; }
"#".* { count(); }
and {count(); return TOKEN_AND; }
assert {count(); return TOKEN_ASSERT; }
break {count(); return TOKEN_BREAK; }
class {count(); return TOKEN_CLASS; }
continue {count(); return TOKEN_CONTINUE; }
def {count(); return TOKEN_DEF; }
del {count(); return TOKEN_DEL; }
elif {count(); return TOKEN_ELIF; }
else {count(); return TOKEN_ELSE; }
except {count(); return TOKEN_EXCEPT; }
exec {count(); return TOKEN_EXEC; }
finally {count(); return TOKEN_FINALLY; }
for {count(); return TOKEN_FOR; }
from {count(); return TOKEN_FROM; }
global {count(); return TOKEN_GLOBAL; }
if {count(); return TOKEN_IF; }
import {count(); return TOKEN_IMPORT; }
in {count(); return TOKEN_IN; }
is {count(); return TOKEN_IS; }
lambda {count(); return TOKEN_LAMBDA; }
not {count(); return TOKEN_NOT; }
or {count(); return TOKEN_OR; }
pass {count(); return TOKEN_PASS; }
print {count(); return TOKEN_PRINT; }
raise {count(); return TOKEN_RAISE; }
return {count(); return TOKEN_RETURN; }
try {count(); return TOKEN_TRY; }
while {count(); return TOKEN_WHILE; }
("\'") { count();gobble_string('\''); return TOKEN_SSTRING_LITERAL; }
("\"") { count();gobble_string('"'); return TOKEN_SSTRING_LITERAL; }
\"\"\" {count();return longstring('\"');}
\'\'\' {count();return longstring('\'');}
0[xX][a-fA-F0-9]+(l|L)* {count(); return TOKEN_HEX_CONST; }
0[0-9]+(l|L)* {count(); return TOKEN_OCT_CONST; }
[0-9]+(l|L)* {count(); return TOKEN_DEC_CONST; }
[0-9]+[Ee][+-]?[0-9]+ {count(); return TOKEN_FLOAT_CONST; }
[0-9]*"."[0-9]+([Ee][+-]?[0-9]+)? {count(); return TOKEN_FLOAT_CONST; }
[0-9]+"."[0-9]*([Ee][+-]?[0-9]+)? {count(); return TOKEN_FLOAT_CONST; }
[1-9][0-9]*(j|J) {count(); return TOKEN_IMAG_CONST; }
[0-9]+[Ee][+-]?[0-9]+(j|J) {count(); return TOKEN_IMAG_CONST; }
[0-9]*"."[0-9]+([Ee][+-]?[0-9]+)?(j|J) {count(); return TOKEN_IMAG_CONST; }
[0-9]+"."[0-9]*([Ee][+-]?[0-9]+)?(j|J) {count(); return TOKEN_IMAG_CONST; }
[a-zA-Z_]([a-zA-Z_]|[0-9]|\$|[\r])* {count(); return identifier(); }
">>=" {count(); return TOKEN_RIGHT_ASSIGN; }
"<<=" {count(); return TOKEN_LEFT_ASSIGN; }
"**=" {count(); return TOKEN_EXP_ASSIGN; }
"+=" {count(); return TOKEN_ADD_ASSIGN; }
"-=" {count(); return TOKEN_SUB_ASSIGN; }
"*=" {count(); return TOKEN_MUL_ASSIGN; }
"/=" {count(); return TOKEN_DIV_ASSIGN; }
"%=" {count(); return TOKEN_MOD_ASSIGN; }
"&=" {count(); return TOKEN_AND_ASSIGN; }
"|=" {count(); return TOKEN_OR_ASSIGN; }
"^=" {count(); return TOKEN_XOR_ASSIGN; }
">>" {count(); return TOKEN_RIGHT_OP; }
"<<" {count(); return TOKEN_LEFT_OP; }
"**" {count(); return TOKEN_EXP_OP; }
"<=" {count(); return TOKEN_LE_OP; }
">=" {count(); return TOKEN_GE_OP; }
"==" {count(); return TOKEN_EQ_OP; }
"!=" {count(); return TOKEN_NE_OP; }
"<>" {count(); return TOKEN_NE_OP; }
"&" {count(); return '&'; }
"~" {count(); return '~'; }
"-" {count(); return '-'; }
"+" {count(); return '+'; }
"*" {count(); return '*'; }
"/" {count(); return '/'; }
"%" {count(); return '%'; }
"<" {count(); return '<'; }
">" {count(); return '>'; }
"^" {count(); return '^'; }
"|" {count(); return '|'; }
"(" {count(); return '('; }
")" {count(); return ')'; }
"[" {count(); return '['; }
"]" {count(); return ']'; }
"{" {count(); return '{'; }
"}" {count(); return '}'; }
"," {count(); return ','; }
":" {count(); return ':'; }
"." {count(); return '.'; }
"`" {count(); return '`'; }
"=" {count(); return '='; }
";" {count(); return ';'; }
. { count();no_match(); }
%%
int yywrap(void)
{
return 1;
}
static void
count()
{
int i;
if (plexreal_column != 0)
{
plex_column = plexreal_column+1;
}
for (i = 0; yytext[i] != '\0'; i++)
{
if (yytext[i] == '\n')
{
plexreal_column = 0;
plex_column = 0;
} else if (yytext[i] == '\t') {
plexreal_column += 8 - (plexreal_column % 8);
}else {
plexreal_column++;
}
}
}
static
void gobble_string(char which)
{
int bslash = 0;
char c;
while ((c = input()) && c != -1)
{
plexreal_column++;
switch(c) {
case '\\':
if (!bslash)
bslash = 1;
else
bslash = 0;
break;
case '\n':
plexreal_column = 0;
plex_column = 0;
plex_lineno++;
bslash = 0;
break;
default:
if (c == which && !bslash) {
return;
}
bslash = 0;
break;
}
}
}
static
void no_match(void)
{
fprintf(stderr, "%s:%d: warning: bad token `%s'\n", current_file, plex_lineno, yytext);
}
static
int identifier(void)
{
char * c;
while ((c = strchr(yytext, '\r')) != (char *)NULL)
{
memmove(c, c + 1, strlen(c));
plex_column = 0;
plexreal_column = 0;
plex_lineno++;
}
return TOKEN_IDENTIFIER;
}
static
int longstring(int q)
{
char c;
int quotes = 0;
int backtick = 0;
while ((c = input()) && c != -1)
{
plexreal_column++ ;
if (c != q)
quotes = 0;
if (c == '\\') {
backtick = 1;
continue;
}
if (c == q)
{
if (backtick)
{
quotes = 0;
backtick = 0;
} else {
quotes++;
}
}
backtick = 0;
if (quotes == 3)
{
return TOKEN_LSTRING_LITERAL;
}
if (c == '\n' || c == '\r')
{
plexreal_column = 0;
plex_column = 0;
plex_lineno++;
}
}
return TOKEN_LSTRING_LITERAL;
}
|