123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470 |
- char *rcs_lex = "$Id: lex.c,v 3.4 1997/06/11 18:56:02 roberto Exp roberto $";
- #include <ctype.h>
- #include <string.h>
- #include "auxlib.h"
- #include "luamem.h"
- #include "tree.h"
- #include "table.h"
- #include "lex.h"
- #include "inout.h"
- #include "luadebug.h"
- #include "parser.h"
- #define MINBUFF 250
- static int current; /* look ahead character */
- static ZIO *lex_z;
- #define next() (current = zgetc(lex_z))
- #define save(x) (yytext[tokensize++] = (x))
- #define save_and_next() (save(current), next())
- #define MAX_IFS 5
- /* "ifstate" keeps the state of each nested $if the lexical is dealing with. */
- static struct {
- int elsepart; /* true if its in the $else part */
- int condition; /* true if $if condition is true */
- int skip; /* true if part must be skiped */
- } ifstate[MAX_IFS];
- static int iflevel; /* level of nested $if's */
- void lua_setinput (ZIO *z)
- {
- current = '\n';
- lua_linenumber = 0;
- iflevel = 0;
- ifstate[0].skip = 0;
- ifstate[0].elsepart = 1; /* to avoid a free $else */
- lex_z = z;
- }
- static void luaI_auxsyntaxerror (char *s)
- {
- luaL_verror("%s;\n> at line %d in file %s",
- s, lua_linenumber, lua_parsedfile);
- }
- static void luaI_auxsynterrbf (char *s, char *token)
- {
- if (token[0] == 0)
- token = "<eof>";
- luaL_verror("%s;\n> last token read: \"%s\" at line %d in file %s",
- s, token, lua_linenumber, lua_parsedfile);
- }
- void luaI_syntaxerror (char *s)
- {
- luaI_auxsynterrbf(s, luaI_buffer(1));
- }
- static struct
- {
- char *name;
- int token;
- } reserved [] = {
- {"and", AND},
- {"do", DO},
- {"else", ELSE},
- {"elseif", ELSEIF},
- {"end", END},
- {"function", FUNCTION},
- {"if", IF},
- {"local", LOCAL},
- {"nil", NIL},
- {"not", NOT},
- {"or", OR},
- {"repeat", REPEAT},
- {"return", RETURN},
- {"then", THEN},
- {"until", UNTIL},
- {"while", WHILE} };
- #define RESERVEDSIZE (sizeof(reserved)/sizeof(reserved[0]))
- void luaI_addReserved (void)
- {
- int i;
- for (i=0; i<RESERVEDSIZE; i++)
- {
- TaggedString *ts = lua_createstring(reserved[i].name);
- ts->marked = reserved[i].token; /* reserved word (always > 255) */
- }
- }
- /*
- ** Pragma handling
- */
- #define PRAGMASIZE 20
- static void skipspace (void)
- {
- while (current == ' ' || current == '\t') next();
- }
- static int checkcond (char *buff)
- {
- static char *opts[] = {"nil", "1"};
- int i = luaI_findstring(buff, opts);
- if (i >= 0) return i;
- else if (isalpha((unsigned char)buff[0]) || buff[0] == '_')
- return luaI_globaldefined(buff);
- else {
- luaI_auxsynterrbf("invalid $if condition", buff);
- return 0; /* to avoid warnings */
- }
- }
- static void readname (char *buff)
- {
- int i = 0;
- skipspace();
- while (isalnum((unsigned char)current) || current == '_') {
- if (i >= PRAGMASIZE) {
- buff[PRAGMASIZE] = 0;
- luaI_auxsynterrbf("pragma too long", buff);
- }
- buff[i++] = current;
- next();
- }
- buff[i] = 0;
- }
- static void inclinenumber (void);
- static void ifskip (void)
- {
- while (ifstate[iflevel].skip) {
- if (current == '\n')
- inclinenumber();
- else if (current == EOZ)
- luaI_auxsyntaxerror("input ends inside a $if");
- else next();
- }
- }
- static void inclinenumber (void)
- {
- static char *pragmas [] =
- {"debug", "nodebug", "endinput", "end", "ifnot", "if", "else", NULL};
- next(); /* skip '\n' */
- ++lua_linenumber;
- if (current == '$') { /* is a pragma? */
- char buff[PRAGMASIZE+1];
- int ifnot = 0;
- int skip = ifstate[iflevel].skip;
- next(); /* skip $ */
- readname(buff);
- switch (luaI_findstring(buff, pragmas)) {
- case 0: /* debug */
- if (!skip) lua_debug = 1;
- break;
- case 1: /* nodebug */
- if (!skip) lua_debug = 0;
- break;
- case 2: /* endinput */
- if (!skip) {
- current = EOZ;
- iflevel = 0; /* to allow $endinput inside a $if */
- }
- break;
- case 3: /* end */
- if (iflevel-- == 0)
- luaI_auxsyntaxerror("unmatched $endif");
- break;
- case 4: /* ifnot */
- ifnot = 1;
- /* go through */
- case 5: /* if */
- if (iflevel == MAX_IFS-1)
- luaI_auxsyntaxerror("too many nested `$ifs'");
- readname(buff);
- iflevel++;
- ifstate[iflevel].elsepart = 0;
- ifstate[iflevel].condition = checkcond(buff) ? !ifnot : ifnot;
- ifstate[iflevel].skip = skip || !ifstate[iflevel].condition;
- break;
- case 6: /* else */
- if (ifstate[iflevel].elsepart)
- luaI_auxsyntaxerror("unmatched $else");
- ifstate[iflevel].elsepart = 1;
- ifstate[iflevel].skip =
- ifstate[iflevel-1].skip || ifstate[iflevel].condition;
- break;
- default:
- luaI_auxsynterrbf("invalid pragma", buff);
- }
- skipspace();
- if (current == '\n') /* pragma must end with a '\n' ... */
- inclinenumber();
- else if (current != EOZ) /* or eof */
- luaI_auxsyntaxerror("invalid pragma format");
- ifskip();
- }
- }
- static int read_long_string (char *yytext, int buffsize)
- {
- int cont = 0;
- int tokensize = 2; /* '[[' already stored */
- while (1)
- {
- if (buffsize-tokensize <= 2) /* may read more than 1 char in one cicle */
- yytext = luaI_buffer(buffsize *= 2);
- switch (current)
- {
- case EOZ:
- save(0);
- return WRONGTOKEN;
- case '[':
- save_and_next();
- if (current == '[')
- {
- cont++;
- save_and_next();
- }
- continue;
- case ']':
- save_and_next();
- if (current == ']')
- {
- if (cont == 0) goto endloop;
- cont--;
- save_and_next();
- }
- continue;
- case '\n':
- save('\n');
- inclinenumber();
- continue;
- default:
- save_and_next();
- }
- } endloop:
- save_and_next(); /* pass the second ']' */
- yytext[tokensize-2] = 0; /* erases ']]' */
- luaY_lval.vWord = luaI_findconstantbyname(yytext+2);
- yytext[tokensize-2] = ']'; /* restores ']]' */
- save(0);
- return STRING;
- }
- int luaY_lex (void)
- {
- static int linelasttoken = 0;
- double a;
- int buffsize = MINBUFF;
- char *yytext = luaI_buffer(buffsize);
- yytext[1] = yytext[2] = yytext[3] = 0;
- if (lua_debug)
- luaI_codedebugline(linelasttoken);
- linelasttoken = lua_linenumber;
- while (1)
- {
- int tokensize = 0;
- switch (current)
- {
- case '\n':
- inclinenumber();
- linelasttoken = lua_linenumber;
- continue;
- case ' ': case '\t': case '\r': /* CR: to avoid problems with DOS */
- next();
- continue;
- case '-':
- save_and_next();
- if (current != '-') return '-';
- do { next(); } while (current != '\n' && current != EOZ);
- continue;
- case '[':
- save_and_next();
- if (current != '[') return '[';
- else
- {
- save_and_next(); /* pass the second '[' */
- return read_long_string(yytext, buffsize);
- }
- case '=':
- save_and_next();
- if (current != '=') return '=';
- else { save_and_next(); return EQ; }
- case '<':
- save_and_next();
- if (current != '=') return '<';
- else { save_and_next(); return LE; }
- case '>':
- save_and_next();
- if (current != '=') return '>';
- else { save_and_next(); return GE; }
- case '~':
- save_and_next();
- if (current != '=') return '~';
- else { save_and_next(); return NE; }
- case '"':
- case '\'':
- {
- int del = current;
- save_and_next();
- while (current != del)
- {
- if (buffsize-tokensize <= 2) /* may read more than 1 char in one cicle */
- yytext = luaI_buffer(buffsize *= 2);
- switch (current)
- {
- case EOZ:
- case '\n':
- save(0);
- return WRONGTOKEN;
- case '\\':
- next(); /* do not save the '\' */
- switch (current)
- {
- case 'n': save('\n'); next(); break;
- case 't': save('\t'); next(); break;
- case 'r': save('\r'); next(); break;
- case '\n': save('\n'); inclinenumber(); break;
- default : save_and_next(); break;
- }
- break;
- default:
- save_and_next();
- }
- }
- next(); /* skip delimiter */
- save(0);
- luaY_lval.vWord = luaI_findconstantbyname(yytext+1);
- tokensize--;
- save(del); save(0); /* restore delimiter */
- return STRING;
- }
- case 'a': case 'b': case 'c': case 'd': case 'e':
- case 'f': case 'g': case 'h': case 'i': case 'j':
- case 'k': case 'l': case 'm': case 'n': case 'o':
- case 'p': case 'q': case 'r': case 's': case 't':
- case 'u': case 'v': case 'w': case 'x': case 'y':
- case 'z':
- case 'A': case 'B': case 'C': case 'D': case 'E':
- case 'F': case 'G': case 'H': case 'I': case 'J':
- case 'K': case 'L': case 'M': case 'N': case 'O':
- case 'P': case 'Q': case 'R': case 'S': case 'T':
- case 'U': case 'V': case 'W': case 'X': case 'Y':
- case 'Z':
- case '_':
- {
- TaggedString *ts;
- do {
- save_and_next();
- } while (isalnum((unsigned char)current) || current == '_');
- save(0);
- ts = lua_createstring(yytext);
- if (ts->marked > 2)
- return ts->marked; /* reserved word */
- luaY_lval.pTStr = ts;
- ts->marked = 2; /* avoid GC */
- return NAME;
- }
- case '.':
- save_and_next();
- if (current == '.')
- {
- save_and_next();
- if (current == '.')
- {
- save_and_next();
- return DOTS; /* ... */
- }
- else return CONC; /* .. */
- }
- else if (!isdigit((unsigned char)current)) return '.';
- /* current is a digit: goes through to number */
- a=0.0;
- goto fraction;
- case '0': case '1': case '2': case '3': case '4':
- case '5': case '6': case '7': case '8': case '9':
- a=0.0;
- do {
- a=10.0*a+(current-'0');
- save_and_next();
- } while (isdigit((unsigned char)current));
- if (current == '.') {
- save_and_next();
- if (current == '.')
- luaI_syntaxerror(
- "ambiguous syntax (decimal point x string concatenation)");
- }
- fraction:
- { double da=0.1;
- while (isdigit((unsigned char)current))
- {
- a+=(current-'0')*da;
- da/=10.0;
- save_and_next();
- }
- if (current == 'e' || current == 'E')
- {
- int e=0;
- int neg;
- double ea;
- save_and_next();
- neg=(current=='-');
- if (current == '+' || current == '-') save_and_next();
- if (!isdigit((unsigned char)current)) {
- save(0); return WRONGTOKEN; }
- do {
- e=10.0*e+(current-'0');
- save_and_next();
- } while (isdigit((unsigned char)current));
- for (ea=neg?0.1:10.0; e>0; e>>=1)
- {
- if (e & 1) a*=ea;
- ea*=ea;
- }
- }
- luaY_lval.vFloat = a;
- save(0);
- return NUMBER;
- }
- case EOZ:
- save(0);
- if (iflevel > 0)
- luaI_syntaxerror("missing $endif");
- return 0;
- default:
- save_and_next();
- return yytext[0];
- }
- }
- }
|