lua/llex.c

441 lines
11 KiB
C
Raw Normal View History

1997-09-16 23:25:59 +04:00
/*
1997-12-09 16:50:08 +03:00
** $Id: llex.c,v 1.9 1997/12/02 12:43:54 roberto Exp roberto $
1997-09-16 23:25:59 +04:00
** Lexical Analizer
** See Copyright Notice in lua.h
*/
1993-12-23 00:15:16 +03:00
#include <ctype.h>
#include <string.h>
1993-12-23 00:15:16 +03:00
1997-09-16 23:25:59 +04:00
#include "llex.h"
#include "lmem.h"
#include "lobject.h"
#include "lparser.h"
#include "lstate.h"
1997-09-16 23:25:59 +04:00
#include "lstring.h"
#include "lstx.h"
#include "luadebug.h"
1997-09-16 23:25:59 +04:00
#include "lzio.h"
1993-12-23 00:15:16 +03:00
1997-09-16 23:25:59 +04:00
int lua_debug=0;
#define next(LS) (LS->current = zgetc(LS->lex_z))
1997-09-16 23:25:59 +04:00
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}
};
1997-09-16 23:25:59 +04:00
void luaX_init (void)
1997-09-16 23:25:59 +04:00
{
int i;
for (i=0; i<(sizeof(reserved)/sizeof(reserved[0])); i++) {
TaggedString *ts = luaS_new(reserved[i].name);
ts->head.marked = reserved[i].token; /* reserved word (always > 255) */
1997-09-16 23:25:59 +04:00
}
}
static void firstline (LexState *LS)
{
int c = zgetc(LS->lex_z);
if (c == '#')
while ((c=zgetc(LS->lex_z)) != '\n' && c != EOZ) /* skip first line */;
zungetc(LS->lex_z);
}
1997-09-16 23:25:59 +04:00
void luaX_setinput (ZIO *z)
1993-12-23 00:15:16 +03:00
{
LexState *LS = L->lexstate;
LS->current = '\n';
LS->linelasttoken = 0;
LS->linenumber = 0;
LS->iflevel = 0;
LS->ifstate[0].skip = 0;
LS->ifstate[0].elsepart = 1; /* to avoid a free $else */
LS->lex_z = z;
firstline(LS);
LS->textbuff.buffsize = 20;
LS->textbuff.text = luaM_buffer(LS->textbuff.buffsize);
1993-12-23 00:15:16 +03:00
}
/*
1997-09-16 23:25:59 +04:00
** =======================================================
** PRAGMAS
** =======================================================
*/
#define PRAGMASIZE 20
static void skipspace (LexState *LS)
{
while (LS->current == ' ' || LS->current == '\t' || LS->current == '\r')
next(LS);
}
static int checkcond (char *buff)
{
1997-11-07 18:09:49 +03:00
static char *opts[] = {"nil", "1", NULL};
1997-09-16 23:25:59 +04:00
int i = luaO_findstring(buff, opts);
if (i >= 0) return i;
else if (isalpha((unsigned char)buff[0]) || buff[0] == '_')
return luaS_globaldefined(buff);
else {
1997-09-16 23:25:59 +04:00
luaY_syntaxerror("invalid $if condition", buff);
return 0; /* to avoid warnings */
}
}
static void readname (LexState *LS, char *buff)
{
int i = 0;
skipspace(LS);
while (isalnum(LS->current) || LS->current == '_') {
if (i >= PRAGMASIZE) {
buff[PRAGMASIZE] = 0;
1997-09-16 23:25:59 +04:00
luaY_syntaxerror("pragma too long", buff);
}
buff[i++] = LS->current;
next(LS);
}
buff[i] = 0;
}
static void inclinenumber (LexState *LS);
static void ifskip (LexState *LS)
{
while (LS->ifstate[LS->iflevel].skip) {
if (LS->current == '\n')
inclinenumber(LS);
else if (LS->current == EOZ)
1997-09-16 23:25:59 +04:00
luaY_syntaxerror("input ends inside a $if", "");
else next(LS);
}
}
static void inclinenumber (LexState *LS)
{
1997-09-16 23:25:59 +04:00
static char *pragmas [] =
{"debug", "nodebug", "endinput", "end", "ifnot", "if", "else", NULL};
next(LS); /* skip '\n' */
++LS->linenumber;
if (LS->current == '$') { /* is a pragma? */
char buff[PRAGMASIZE+1];
int ifnot = 0;
int skip = LS->ifstate[LS->iflevel].skip;
next(LS); /* skip $ */
readname(LS, buff);
1997-09-16 23:25:59 +04:00
switch (luaO_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) {
LS->current = EOZ;
LS->iflevel = 0; /* to allow $endinput inside a $if */
}
break;
case 3: /* end */
if (LS->iflevel-- == 0)
1997-09-16 23:25:59 +04:00
luaY_syntaxerror("unmatched $end", "$end");
break;
case 4: /* ifnot */
ifnot = 1;
/* go through */
case 5: /* if */
if (LS->iflevel == MAX_IFS-1)
1997-12-09 16:50:08 +03:00
luaY_syntaxerror("too many nested $ifs", "$if");
readname(LS, buff);
LS->iflevel++;
LS->ifstate[LS->iflevel].elsepart = 0;
LS->ifstate[LS->iflevel].condition = checkcond(buff) ? !ifnot : ifnot;
LS->ifstate[LS->iflevel].skip = skip || !LS->ifstate[LS->iflevel].condition;
break;
case 6: /* else */
if (LS->ifstate[LS->iflevel].elsepart)
1997-09-16 23:25:59 +04:00
luaY_syntaxerror("unmatched $else", "$else");
LS->ifstate[LS->iflevel].elsepart = 1;
LS->ifstate[LS->iflevel].skip = LS->ifstate[LS->iflevel-1].skip ||
LS->ifstate[LS->iflevel].condition;
1997-04-14 23:08:09 +04:00
break;
default:
1997-12-09 16:50:08 +03:00
luaY_syntaxerror("unknown pragma", buff);
}
skipspace(LS);
if (LS->current == '\n') /* pragma must end with a '\n' ... */
inclinenumber(LS);
else if (LS->current != EOZ) /* or eof */
1997-09-16 23:25:59 +04:00
luaY_syntaxerror("invalid pragma format", buff);
ifskip(LS);
}
}
1993-12-23 00:15:16 +03:00
1997-09-16 23:25:59 +04:00
/*
** =======================================================
** LEXICAL ANALIZER
** =======================================================
*/
static void save (LexState *LS, int c)
1997-09-16 23:25:59 +04:00
{
if (LS->textbuff.tokensize >= LS->textbuff.buffsize)
LS->textbuff.text = luaM_buffer(LS->textbuff.buffsize *= 2);
LS->textbuff.text[LS->textbuff.tokensize++] = c;
1997-09-16 23:25:59 +04:00
}
char *luaX_lasttoken (void)
{
save(L->lexstate, 0);
return L->lexstate->textbuff.text;
1997-09-16 23:25:59 +04:00
}
#define save_and_next(LS) (save(LS, LS->current), next(LS))
1997-09-16 23:25:59 +04:00
static int read_long_string (LexState *LS, YYSTYPE *l)
{
int cont = 0;
1997-09-16 23:25:59 +04:00
while (1) {
switch (LS->current) {
1997-06-16 20:50:22 +04:00
case EOZ:
save(LS, 0);
return WRONGTOKEN;
case '[':
save_and_next(LS);
if (LS->current == '[') {
cont++;
save_and_next(LS);
}
continue;
case ']':
save_and_next(LS);
if (LS->current == ']') {
if (cont == 0) goto endloop;
cont--;
save_and_next(LS);
}
continue;
case '\n':
save(LS, '\n');
inclinenumber(LS);
continue;
default:
save_and_next(LS);
}
} endloop:
save_and_next(LS); /* pass the second ']' */
LS->textbuff.text[LS->textbuff.tokensize-2] = 0; /* erases ']]' */
l->pTStr = luaS_new(LS->textbuff.text+2);
LS->textbuff.text[LS->textbuff.tokensize-2] = ']'; /* restores ']]' */
return STRING;
}
1997-09-16 23:25:59 +04:00
/* to avoid warnings; this declaration cannot be public since YYSTYPE
** cannot be visible in llex.h (otherwise there is an error, since
** the parser body redefines it!)
*/
int luaY_lex (YYSTYPE *l);
int luaY_lex (YYSTYPE *l)
1993-12-23 00:15:16 +03:00
{
LexState *LS = L->lexstate;
double a;
LS->textbuff.tokensize = 0;
if (lua_debug)
luaY_codedebugline(LS->linelasttoken);
LS->linelasttoken = LS->linenumber;
1997-07-01 23:32:41 +04:00
while (1) {
switch (LS->current) {
case '\n':
inclinenumber(LS);
LS->linelasttoken = LS->linenumber;
1993-12-23 00:15:16 +03:00
continue;
1993-12-23 00:39:15 +03:00
case ' ': case '\t': case '\r': /* CR: to avoid problems with DOS */
next(LS);
continue;
1994-09-22 16:44:00 +04:00
1993-12-23 00:15:16 +03:00
case '-':
save_and_next(LS);
if (LS->current != '-') return '-';
do { next(LS); } while (LS->current != '\n' && LS->current != EOZ);
LS->textbuff.tokensize = 0;
1993-12-23 00:15:16 +03:00
continue;
1994-09-22 16:44:00 +04:00
case '[':
save_and_next(LS);
if (LS->current != '[') return '[';
1997-09-16 23:25:59 +04:00
else {
save_and_next(LS); /* pass the second '[' */
return read_long_string(LS, l);
}
case '=':
save_and_next(LS);
if (LS->current != '=') return '=';
else { save_and_next(LS); return EQ; }
1993-12-23 00:15:16 +03:00
case '<':
save_and_next(LS);
if (LS->current != '=') return '<';
else { save_and_next(LS); return LE; }
1994-09-22 16:44:00 +04:00
1993-12-23 00:15:16 +03:00
case '>':
save_and_next(LS);
if (LS->current != '=') return '>';
else { save_and_next(LS); return GE; }
1994-09-22 16:44:00 +04:00
1993-12-23 00:15:16 +03:00
case '~':
save_and_next(LS);
if (LS->current != '=') return '~';
else { save_and_next(LS); return NE; }
1993-12-23 00:15:16 +03:00
case '"':
1997-09-16 23:25:59 +04:00
case '\'': {
int del = LS->current;
save_and_next(LS);
while (LS->current != del) {
switch (LS->current) {
1997-06-16 20:50:22 +04:00
case EOZ:
1994-09-22 16:44:00 +04:00
case '\n':
save(LS, 0);
1993-12-23 00:15:16 +03:00
return WRONGTOKEN;
case '\\':
next(LS); /* do not save the '\' */
switch (LS->current) {
case 'n': save(LS, '\n'); next(LS); break;
case 't': save(LS, '\t'); next(LS); break;
case 'r': save(LS, '\r'); next(LS); break;
case '\n': save(LS, '\n'); inclinenumber(LS); break;
default : save_and_next(LS); break;
1993-12-23 00:15:16 +03:00
}
break;
1994-09-22 16:44:00 +04:00
default:
save_and_next(LS);
1993-12-23 00:15:16 +03:00
}
}
next(LS); /* skip delimiter */
save(LS, 0);
l->pTStr = luaS_new(LS->textbuff.text+1);
LS->textbuff.text[LS->textbuff.tokensize-1] = del; /* restore delimiter */
1993-12-23 00:15:16 +03:00
return STRING;
}
case '.':
save_and_next(LS);
if (LS->current == '.')
1994-09-22 16:44:00 +04:00
{
save_and_next(LS);
if (LS->current == '.')
{
save_and_next(LS);
return DOTS; /* ... */
}
else return CONC; /* .. */
1993-12-23 00:15:16 +03:00
}
else if (!isdigit(LS->current)) return '.';
/* LS->current is a digit: goes through to number */
a=0.0;
1993-12-23 00:15:16 +03:00
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+(LS->current-'0');
save_and_next(LS);
} while (isdigit(LS->current));
if (LS->current == '.') {
save_and_next(LS);
if (LS->current == '.') {
save(LS, 0);
1997-09-16 23:25:59 +04:00
luaY_error(
"ambiguous syntax (decimal point x string concatenation)");
1997-09-16 23:25:59 +04:00
}
}
fraction:
1996-02-27 01:35:51 +03:00
{ double da=0.1;
while (isdigit(LS->current))
{
a+=(LS->current-'0')*da;
da/=10.0;
save_and_next(LS);
}
if (toupper(LS->current) == 'E') {
int e=0;
int neg;
1996-02-27 01:35:51 +03:00
double ea;
save_and_next(LS);
neg=(LS->current=='-');
if (LS->current == '+' || LS->current == '-') save_and_next(LS);
if (!isdigit(LS->current)) {
save(LS, 0); return WRONGTOKEN; }
do {
e=10.0*e+(LS->current-'0');
save_and_next(LS);
} while (isdigit(LS->current));
for (ea=neg?0.1:10.0; e>0; e>>=1)
{
if (e & 1) a*=ea;
ea*=ea;
}
}
l->vReal = a;
return NUMBER;
1993-12-23 00:15:16 +03:00
}
1994-11-13 17:39:04 +03:00
1997-06-16 20:50:22 +04:00
case EOZ:
save(LS, 0);
if (LS->iflevel > 0)
1997-12-09 16:50:08 +03:00
luaY_syntaxerror("input ends inside a $if", "");
return 0;
default:
if (LS->current != '_' && !isalpha(LS->current)) {
save_and_next(LS);
return LS->textbuff.text[0];
1997-07-01 23:32:41 +04:00
}
else { /* identifier or reserved word */
TaggedString *ts;
do {
save_and_next(LS);
} while (isalnum(LS->current) || LS->current == '_');
save(LS, 0);
ts = luaS_new(LS->textbuff.text);
if (ts->head.marked > 255)
return ts->head.marked; /* reserved word */
l->pTStr = ts;
1997-07-01 23:32:41 +04:00
return NAME;
}
1993-12-23 00:15:16 +03:00
}
}
}