3 Routines for compiling Flash2 AVM2 ABC Actionscript
5 Extension module for the rfxswf library.
6 Part of the swftools package.
8 Copyright (c) 2008 Matthias Kramm <kramm@quiss.org>
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
31 #include "tokenizer.h"
34 static void countlines(char*text, int len) {
46 static int verbose = 1;
47 static void dbg(const char*format, ...)
54 va_start(arglist, format);
55 vsprintf(buf, format, arglist);
58 while(l && buf[l-1]=='\n') {
62 printf("(tokenizer) ");
67 void syntaxerror(const char*format, ...)
74 va_start(arglist, format);
75 vsprintf(buf, format, arglist);
77 fprintf(stderr, "%s:%d:%d: error: %s\n", current_filename_short, current_line, current_column, buf);
81 void warning(const char*format, ...)
88 va_start(arglist, format);
89 vsprintf(buf, format, arglist);
91 fprintf(stderr, "%s:%d:%d: warning: %s\n", current_filename_short, current_line, current_column, buf);
96 #ifndef YY_CURRENT_BUFFER
97 #define YY_CURRENT_BUFFER yy_current_buffer
100 void handleInclude(char*text, int len, char quotes)
104 char*p1 = strchr(text, '"');
105 char*p2 = strrchr(text, '"');
106 if(!p1 || !p2 || p1==p2) {
107 syntaxerror("Invalid include in line %d\n", current_line);
110 filename = strdup(p1+1);
114 while(!strchr(" \n\r\t", text[i1])) i1++;
116 while(strchr(" \n\r\t", text[i1])) i1++;
117 while(strchr(" \n\r\t", text[i2-1])) i2--;
118 if(i2!=len) text[i2]=0;
119 filename = strdup(&text[i1]);
122 char*fullfilename = enter_file(filename, YY_CURRENT_BUFFER);
123 yyin = fopen(fullfilename, "rb");
125 syntaxerror("Couldn't open include file \"%s\"\n", fullfilename);
128 yy_switch_to_buffer(yy_create_buffer( yyin, YY_BUF_SIZE ) );
129 //BEGIN(INITIAL); keep context
132 string_t string_unescape(const char*in, int l)
136 const char*end = &in[l];
137 char*n = (char*)malloc(l);
146 if(s==end) syntaxerror("invalid \\ at end of string");
148 /* handle the various line endings (mac, dos, unix) */
161 case '\\': o[len++] = '\\';s++; break;
162 case '"': o[len++] = '"';s++; break;
163 case 'b': o[len++] = '\b';s++; break;
164 case 'f': o[len++] = '\f';s++; break;
165 case 'n': o[len++] = '\n';s++; break;
166 case 'r': o[len++] = '\r';s++; break;
167 case 't': o[len++] = '\t';s++; break;
168 case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': {
171 while(strchr("01234567", *s) && nr<3 && s<end) {
178 syntaxerror("octal number out of range (0-255): %d", num);
182 case 'x': case 'u': {
191 if(s==end) syntaxerror("invalid \\u or \\x at end of string");
194 if(s==end) syntaxerror("invalid \\u{ at end of string");
199 while(strchr("0123456789abcdefABCDEF", *s) && (bracket || nr < max) && s<end) {
201 if(*s>='0' && *s<='9') num |= *s - '0';
202 if(*s>='a' && *s<='f') num |= *s - 'a' + 10;
203 if(*s>='A' && *s<='F') num |= *s - 'A' + 10;
208 if(*s=='}' && s<end) {
211 syntaxerror("missing terminating '}'");
215 char*utf8 = getUTF8(num);
221 syntaxerror("byte out of range (0-255): %d", num);
227 syntaxerror("unknown escape sequence: \"\\%c\"", *s);
230 string_t out = string_new(n, len);
235 static void handleString(char*s, int len)
238 if(s[len-1]!='"') syntaxerror("String doesn't end with '\"'");
241 else if(s[0]=='\'') {
242 if(s[len-1]!='\'') syntaxerror("String doesn't end with '\"'");
245 else syntaxerror("String incorrectly terminated");
248 avm2_lval.str = string_unescape(s, len);
252 char start_of_expression;
254 static inline int mkid(int type)
256 char*s = malloc(yyleng+1);
257 memcpy(s, yytext, yyleng);
263 static inline int m(int type)
265 avm2_lval.token = type;
270 static char numberbuf[64];
273 if(yyleng>sizeof(numberbuf)-1)
274 syntaxerror("decimal number overflow");
276 memcpy(s, yytext, yyleng);
281 static inline int setint(int v)
283 avm2_lval.number_int = v;
291 static inline int setuint(unsigned int v)
293 avm2_lval.number_uint = v;
302 static inline int handlefloat()
305 avm2_lval.number_float = atof(s);
309 static inline int handleint()
312 char l = (yytext[0]=='-');
314 char*max = l?"1073741824":"2147483647";
316 syntaxerror("integer overflow");
319 for(t=0;t<yyleng-l;t++) {
320 if(yytext[l+t]>max[t])
321 syntaxerror("integer overflow %s > %s", s+l,max);
322 else if(yytext[l+t]<max[t])
332 for(t=0;t<yyleng;t++) {
340 static inline int handlehex()
342 char l = (yytext[0]=='-');
345 syntaxerror("integer overflow");
348 for(t=l;t<yyleng;t++) {
353 else if(c>='a' && c<='f' ||
357 if(l && v>1073741824)
358 syntaxerror("signed integer overflow");
359 if(!l && v>2147483647)
360 syntaxerror("unsigned integer overflow");
363 return setint(-(int)v);
369 void initialize_scanner();
370 #define YY_USER_INIT initialize_scanner();
372 #define c() {countlines(yytext, yyleng);}
374 //Boolean {c();return m(KW_BOOLEAN);}
375 //int {c();return m(KW_INT);}
376 //uint {c();return m(KW_UINT);}
377 //Number {c();return m(KW_NUMBER);}
383 NAME [a-zA-Z_][a-zA-Z0-9_\\]*
385 HEXINT 0x[a-zA-Z0-9]+
387 FLOAT [0-9]+(\.[0-9]*)?|\.[0-9]+
389 HEXWITHSIGN [+-]?({HEXINT})
390 INTWITHSIGN [+-]?({INT})
391 FLOATWITHSIGN [+-]?({FLOAT})
393 STRING ["](\\[\x00-\xff]|[^\\"\n])*["]|['](\\[\x00-\xff]|[^\\'\n])*[']
395 MULTILINE_COMMENT [/][*]+([*][^/]|[^/*]|[^*][/]|[\x00-\x1f])*[*]+[/]
396 SINGLELINE_COMMENT \/\/[^\n]*\n
397 REGEXP [/]([^/\n]|\\[/])*[/][a-zA-Z]*
401 {SINGLELINE_COMMENT} {c(); /* single line comment */}
402 {MULTILINE_COMMENT} {c(); /* multi line comment */}
403 [/][*] {syntaxerror("syntax error: unterminated comment", yytext);}
405 ^include{S}+{STRING}{S}*/\n {c();handleInclude(yytext, yyleng, 1);}
406 ^include{S}+[^" \t\r\n][\x20-\xff]*{S}*/\n {c();handleInclude(yytext, yyleng, 0);}
407 {STRING} {c(); BEGIN(INITIAL);handleString(yytext, yyleng);return T_STRING;}
409 <BEGINNING,REGEXPOK>{
410 {REGEXP} {c(); BEGIN(INITIAL);return m(T_REGEXP);}
411 {HEXWITHSIGN} {c(); BEGIN(INITIAL);return handlehex();}
412 {INTWITHSIGN} {c(); BEGIN(INITIAL);return handleint();}
413 {FLOATWITHSIGN} {c(); BEGIN(INITIAL);return handlefloat();}
416 \xef\xbb\xbf {/* utf 8 bom */}
419 {HEXINT} {c(); BEGIN(INITIAL);return handlehex();}
420 {INT} {c(); BEGIN(INITIAL);return handleint();}
421 {FLOAT} {c(); BEGIN(INITIAL);return handlefloat();}
423 3rr0r {/* for debugging: generates a tokenizer-level error */
424 syntaxerror("3rr0r");}
426 [&][&] {c();BEGIN(REGEXPOK);return m(T_ANDAND);}
427 [|][|] {c();BEGIN(REGEXPOK);return m(T_OROR);}
428 [!][=] {c();BEGIN(REGEXPOK);return m(T_NE);}
429 [!][=][=] {c();BEGIN(REGEXPOK);return m(T_NEE);}
430 [=][=][=] {c();BEGIN(REGEXPOK);return m(T_EQEQEQ);}
431 [=][=] {c();BEGIN(REGEXPOK);return m(T_EQEQ);}
432 [>][=] {c();return m(T_GE);}
433 [<][=] {c();return m(T_LE);}
434 [-][-] {c();BEGIN(INITIAL);return m(T_MINUSMINUS);}
435 [+][+] {c();BEGIN(INITIAL);return m(T_PLUSPLUS);}
436 [+][=] {c();return m(T_PLUSBY);}
437 [-][=] {c();return m(T_MINUSBY);}
438 [/][=] {c();return m(T_DIVBY);}
439 [%][=] {c();return m(T_MODBY);}
440 [*][=] {c();return m(T_MULBY);}
441 [>][>][=] {c();return m(T_SHRBY);}
442 [<][<][=] {c();return m(T_SHLBY);}
443 [>][>][>][=] {c();return m(T_USHRBY);}
444 [<][<] {c();return m(T_SHL);}
445 [>][>][>] {c();return m(T_USHR);}
446 [>][>] {c();return m(T_SHR);}
447 \.\.\. {c();return m(T_DOTDOTDOT);}
448 \.\. {c();return m(T_DOTDOT);}
449 \. {c();return m('.');}
450 :: {c();return m(T_COLONCOLON);}
451 : {c();return m(':');}
452 implements {c();return m(KW_IMPLEMENTS);}
453 interface {c();return m(KW_INTERFACE);}
454 namespace {c();return m(KW_NAMESPACE);}
455 protected {c();return m(KW_PROTECTED);}
456 undefined {c();return m(KW_UNDEFINED);}
457 override {c();return m(KW_OVERRIDE);}
458 internal {c();return m(KW_INTERNAL);}
459 function {c();return m(KW_FUNCTION);}
460 package {c();return m(KW_PACKAGE);}
461 private {c();return m(KW_PRIVATE);}
462 dynamic {c();return m(KW_DYNAMIC);}
463 extends {c();return m(KW_EXTENDS);}
464 delete {c();return m(KW_DELETE);}
465 return {c();return m(KW_RETURN);}
466 public {c();return m(KW_PUBLIC);}
467 native {c();return m(KW_NATIVE);}
468 static {c();return m(KW_STATIC);}
469 import {c();return m(KW_IMPORT);}
470 typeof {c();return m(KW_TYPEOF);}
471 while {c();return m(KW_WHILE);}
472 class {c();return m(KW_CLASS);}
473 const {c();return m(KW_CONST);}
474 final {c();return m(KW_FINAL);}
475 false {c();return m(KW_FALSE);}
476 break {c();return m(KW_BREAK);}
477 super {c();return m(KW_SUPER);}
478 void {c();return m(KW_VOID);}
479 true {c();return m(KW_TRUE);}
480 null {c();return m(KW_NULL);}
481 else {c();return m(KW_ELSE);}
482 use {c();return m(KW_USE);}
483 new {c();return m(KW_NEW);}
484 get {c();return m(KW_GET);}
485 for {c();return m(KW_FOR);}
486 set {c();return m(KW_SET);}
487 var {c();return m(KW_VAR);}
488 is {c();return m(KW_IS) ;}
489 if {c();return m(KW_IF) ;}
490 as {c();return m(KW_AS);}
491 {NAME} {c();BEGIN(INITIAL);return mkid(T_IDENTIFIER);}
493 [+-\/*^~@$!%&\(=\[\]\{\}|?:;,<>] {c();BEGIN(REGEXPOK);return m(yytext[0]);}
494 [\)\]] {c();BEGIN(INITIAL);return m(yytext[0]);}
496 . {char c1=yytext[0];
501 char c = buf[t]=input();
502 if(c=='\n' || c==EOF) {
507 if(c1>='0' && c1<='9')
508 syntaxerror("syntax error: %s (identifiers must not start with a digit)");
510 syntaxerror("syntax error: %s", buf);
516 void*b = leave_file();
519 yy_delete_buffer(YY_CURRENT_BUFFER);
522 yy_delete_buffer(YY_CURRENT_BUFFER);
523 yy_switch_to_buffer(b);
534 static char mbuf[256];
535 char*token2string(enum yytokentype nr, YYSTYPE v)
537 if(nr==T_STRING) return "<string>";
538 else if(nr==T_INT) return "<int>";
539 else if(nr==T_UINT) return "<uint>";
540 else if(nr==T_BYTE) return "<byte>";
541 else if(nr==T_FLOAT) return "<float>";
542 else if(nr==T_REGEXP) return "REGEXP";
543 else if(nr==T_EOF) return "***END***";
544 else if(nr==T_GE) return ">=";
545 else if(nr==T_LE) return "<=";
546 else if(nr==T_MINUSMINUS) return "--";
547 else if(nr==T_PLUSPLUS) return "++";
548 else if(nr==KW_IMPLEMENTS) return "implements";
549 else if(nr==KW_INTERFACE) return "interface";
550 else if(nr==KW_NAMESPACE) return "namespace";
551 else if(nr==KW_PROTECTED) return "protected";
552 else if(nr==KW_OVERRIDE) return "override";
553 else if(nr==KW_INTERNAL) return "internal";
554 else if(nr==KW_FUNCTION) return "function";
555 else if(nr==KW_PACKAGE) return "package";
556 else if(nr==KW_PRIVATE) return "private";
557 else if(nr==KW_BOOLEAN) return "Boolean";
558 else if(nr==KW_DYNAMIC) return "dynamic";
559 else if(nr==KW_EXTENDS) return "extends";
560 else if(nr==KW_PUBLIC) return "public";
561 else if(nr==KW_NATIVE) return "native";
562 else if(nr==KW_STATIC) return "static";
563 else if(nr==KW_IMPORT) return "import";
564 else if(nr==KW_NUMBER) return "number";
565 else if(nr==KW_CLASS) return "class";
566 else if(nr==KW_CONST) return "const";
567 else if(nr==KW_FINAL) return "final";
568 else if(nr==KW_FALSE) return "False";
569 else if(nr==KW_TRUE) return "True";
570 else if(nr==KW_UINT) return "uint";
571 else if(nr==KW_NULL) return "null";
572 else if(nr==KW_ELSE) return "else";
573 else if(nr==KW_USE) return "use";
574 else if(nr==KW_INT) return "int";
575 else if(nr==KW_NEW) return "new";
576 else if(nr==KW_GET) return "get";
577 else if(nr==KW_FOR) return "for";
578 else if(nr==KW_SET) return "set";
579 else if(nr==KW_VAR) return "var";
580 else if(nr==KW_IS) return "is";
581 else if(nr==KW_AS) return "as";
582 else if(nr==T_IDENTIFIER) return "ID";
584 sprintf(mbuf, "%d", nr);
589 void initialize_scanner()