lua/llex.c

410 lines
11 KiB
C
Raw Normal View History

1997-09-16 23:25:59 +04:00
/*
** $Id: llex.c,v 1.107 2002/07/08 18:14:36 roberto Exp roberto $
1999-02-26 00:07:26 +03:00
** Lexical Analyzer
1997-09-16 23:25:59 +04:00
** 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
#include "lua.h"
#include "ldo.h"
1997-09-16 23:25:59 +04:00
#include "llex.h"
#include "lobject.h"
#include "lparser.h"
#include "lstate.h"
1997-09-16 23:25:59 +04:00
#include "lstring.h"
#include "lzio.h"
1993-12-23 00:15:16 +03:00
2000-03-03 17:58:26 +03:00
#define next(LS) (LS->current = zgetc(LS->z))
1997-09-16 23:25:59 +04:00
1998-05-27 17:08:34 +04:00
1999-07-22 23:29:42 +04:00
/* ORDER RESERVED */
static const char *const token2string [] = {
"and", "break", "do", "else", "elseif",
2001-12-12 01:48:44 +03:00
"end", "false", "for", "function", "global", "if",
"in", "local", "nil", "not", "or", "repeat",
"return", "then", "true", "until", "while", "*name",
"..", "...", "==", ">=", "<=", "~=",
"*number", "*string", "<eof>"
2001-02-23 20:17:25 +03:00
};
1998-05-27 17:08:34 +04:00
1997-09-16 23:25:59 +04:00
void luaX_init (lua_State *L) {
2000-03-03 17:58:26 +03:00
int i;
2000-02-08 19:39:42 +03:00
for (i=0; i<NUM_RESERVED; i++) {
2000-03-10 21:37:44 +03:00
TString *ts = luaS_new(L, token2string[i]);
lua_assert(strlen(token2string[i])+1 <= TOKEN_LEN);
2001-08-31 23:46:07 +04:00
ts->tsv.marked = cast(unsigned short, RESERVEDMARK+i); /* reserved word */
1998-05-27 17:08:34 +04:00
}
}
1999-05-14 16:24:04 +04:00
#define MAXSRC 80
2000-05-24 17:54:49 +04:00
void luaX_checklimit (LexState *ls, int val, int limit, const char *msg) {
2000-05-24 17:54:49 +04:00
if (val > limit) {
msg = luaO_pushfstring(ls->L, "too many %s (limit=%d)", msg, limit);
luaX_syntaxerror(ls, msg);
2000-05-24 17:54:49 +04:00
}
}
static void luaX_error (LexState *ls, const char *s, const char *token) {
lua_State *L = ls->L;
char buff[MAXSRC];
luaO_chunkid(buff, getstr(ls->source), MAXSRC);
luaO_pushfstring(L, "%s:%d: %s near `%s'\n", buff, ls->linenumber, s, token);
2002-06-18 19:19:27 +04:00
luaD_throw(L, LUA_ERRSYNTAX);
1998-05-27 17:08:34 +04:00
}
void luaX_syntaxerror (LexState *ls, const char *msg) {
const char *lasttoken;
switch (ls->t.token) {
case TK_NAME:
lasttoken = luaO_pushfstring(ls->L, "%s", getstr(ls->t.seminfo.ts));
break;
case TK_STRING:
lasttoken = luaO_pushfstring(ls->L, "\"%s\"", getstr(ls->t.seminfo.ts));
break;
case TK_NUMBER:
lasttoken = luaO_pushfstring(ls->L, "%f", ls->t.seminfo.r);
break;
default:
lasttoken = luaX_token2str(ls, ls->t.token);
break;
1997-09-16 23:25:59 +04:00
}
luaX_error(ls, msg, lasttoken);
1998-05-27 17:08:34 +04:00
}
const char *luaX_token2str (LexState *ls, int token) {
if (token < FIRST_RESERVED) {
lua_assert(token == (char)token);
return luaO_pushfstring(ls->L, "%c", token);
}
else
return token2string[token-FIRST_RESERVED];
}
static void luaX_lexerror (LexState *ls, const char *s, int token) {
if (token == TK_EOS)
luaX_error(ls, s, luaX_token2str(ls, token));
else
luaX_error(ls, s, cast(char *, G(ls->L)->Mbuffer));
1997-09-16 23:25:59 +04:00
}
2000-05-26 18:04:04 +04:00
static void inclinenumber (LexState *LS) {
2001-02-22 21:59:59 +03:00
next(LS); /* skip `\n' */
++LS->linenumber;
luaX_checklimit(LS, LS->linenumber, MAX_INT, "lines in a chunk");
2000-05-26 18:04:04 +04:00
}
2000-06-19 22:05:14 +04:00
void luaX_setinput (lua_State *L, LexState *LS, ZIO *z, TString *source) {
2000-05-26 18:04:04 +04:00
LS->L = L;
LS->lookahead.token = TK_EOS; /* no look-ahead token */
LS->z = z;
LS->fs = NULL;
LS->linenumber = 1;
2000-06-21 22:13:56 +04:00
LS->lastline = 1;
2000-06-19 22:05:14 +04:00
LS->source = source;
2000-05-26 18:04:04 +04:00
next(LS); /* read first char */
if (LS->current == '#') {
2000-05-26 18:04:04 +04:00
do { /* skip first line */
next(LS);
} while (LS->current != '\n' && LS->current != EOZ);
2000-05-26 18:04:04 +04:00
}
}
1997-09-16 23:25:59 +04:00
/*
** =======================================================
1999-12-14 21:33:29 +03:00
** LEXICAL ANALYZER
1997-09-16 23:25:59 +04:00
** =======================================================
*/
2000-09-11 21:38:42 +04:00
/* use Mbuffer to store names, literal strings and numbers */
#define EXTRABUFF 128
2002-03-08 22:07:01 +03:00
#define checkbuffer(L, len) \
if (((len)+10)*sizeof(char) > G(L)->Mbuffsize) \
luaO_openspace(L, (len)+EXTRABUFF, char)
2000-09-11 21:38:42 +04:00
2002-03-08 22:07:01 +03:00
#define save(L, c, l) (cast(char *, G(L)->Mbuffer)[l++] = cast(char, c))
2000-09-11 21:38:42 +04:00
#define save_and_next(L, LS, l) (save(L, LS->current, l), next(LS))
1997-09-16 23:25:59 +04:00
2001-01-10 20:41:50 +03:00
static size_t readname (LexState *LS) {
2000-09-11 21:38:42 +04:00
lua_State *L = LS->L;
size_t l = 0;
2002-03-08 22:07:01 +03:00
checkbuffer(L, l);
2000-09-11 21:38:42 +04:00
do {
2002-03-08 22:07:01 +03:00
checkbuffer(L, l);
2000-09-11 21:38:42 +04:00
save_and_next(L, LS, l);
} while (isalnum(LS->current) || LS->current == '_');
save(L, '\0', l);
2001-01-10 20:41:50 +03:00
return l-1;
2000-09-11 21:38:42 +04:00
}
/* LUA_NUMBER */
static void read_numeral (LexState *LS, int comma, SemInfo *seminfo) {
2000-09-11 21:38:42 +04:00
lua_State *L = LS->L;
size_t l = 0;
2002-03-08 22:07:01 +03:00
checkbuffer(L, l);
if (comma) save(L, '.', l);
2000-09-11 21:38:42 +04:00
while (isdigit(LS->current)) {
2002-03-08 22:07:01 +03:00
checkbuffer(L, l);
2000-09-11 21:38:42 +04:00
save_and_next(L, LS, l);
}
if (LS->current == '.') {
2000-09-11 21:38:42 +04:00
save_and_next(L, LS, l);
if (LS->current == '.') {
2000-09-11 21:38:42 +04:00
save_and_next(L, LS, l);
save(L, '\0', l);
luaX_lexerror(LS,
"ambiguous syntax (decimal point x string concatenation)",
2001-02-23 20:17:25 +03:00
TK_NUMBER);
2000-09-11 21:38:42 +04:00
}
}
while (isdigit(LS->current)) {
2002-03-08 22:07:01 +03:00
checkbuffer(L, l);
2000-09-11 21:38:42 +04:00
save_and_next(L, LS, l);
}
if (LS->current == 'e' || LS->current == 'E') {
2001-02-22 21:59:59 +03:00
save_and_next(L, LS, l); /* read `E' */
if (LS->current == '+' || LS->current == '-')
2000-09-11 21:38:42 +04:00
save_and_next(L, LS, l); /* optional exponent sign */
while (isdigit(LS->current)) {
2002-03-08 22:07:01 +03:00
checkbuffer(L, l);
2000-09-11 21:38:42 +04:00
save_and_next(L, LS, l);
}
}
save(L, '\0', l);
if (!luaO_str2d(cast(char *, G(L)->Mbuffer), &seminfo->r))
luaX_lexerror(LS, "malformed number", TK_NUMBER);
2000-09-11 21:38:42 +04:00
}
static void read_long_string (LexState *LS, SemInfo *seminfo) {
2000-09-11 21:38:42 +04:00
lua_State *L = LS->L;
int cont = 0;
2000-09-11 21:38:42 +04:00
size_t l = 0;
2002-03-08 22:07:01 +03:00
checkbuffer(L, l);
save(L, '[', l); /* save first `[' */
2001-02-22 21:59:59 +03:00
save_and_next(L, LS, l); /* pass the second `[' */
if (LS->current == '\n') /* string starts with a newline? */
2001-03-07 15:49:37 +03:00
inclinenumber(LS); /* skip it */
1998-12-03 18:45:15 +03:00
for (;;) {
2002-03-08 22:07:01 +03:00
checkbuffer(L, l);
switch (LS->current) {
1997-06-16 20:50:22 +04:00
case EOZ:
save(L, '\0', l);
luaX_lexerror(LS, (seminfo) ? "unfinished long string" :
2002-03-08 22:25:24 +03:00
"unfinished long comment", TK_EOS);
2000-01-25 21:44:21 +03:00
break; /* to avoid warnings */
case '[':
2000-09-11 21:38:42 +04:00
save_and_next(L, LS, l);
if (LS->current == '[') {
cont++;
2000-09-11 21:38:42 +04:00
save_and_next(L, LS, l);
}
continue;
case ']':
2000-09-11 21:38:42 +04:00
save_and_next(L, LS, l);
if (LS->current == ']') {
if (cont == 0) goto endloop;
cont--;
2000-09-11 21:38:42 +04:00
save_and_next(L, LS, l);
}
continue;
case '\n':
save(L, '\n', l);
2000-05-26 18:04:04 +04:00
inclinenumber(LS);
2002-03-08 22:07:01 +03:00
if (!seminfo) l = 0; /* reset buffer to avoid wasting space */
continue;
default:
2000-09-11 21:38:42 +04:00
save_and_next(L, LS, l);
}
} endloop:
2001-02-22 21:59:59 +03:00
save_and_next(L, LS, l); /* skip the second `]' */
save(L, '\0', l);
2002-03-08 22:07:01 +03:00
if (seminfo)
seminfo->ts = luaS_newlstr(L, cast(char *, G(L)->Mbuffer)+2, l-5);
2000-01-25 21:44:21 +03:00
}
static void read_string (LexState *LS, int del, SemInfo *seminfo) {
2000-09-11 21:38:42 +04:00
lua_State *L = LS->L;
size_t l = 0;
2002-03-08 22:07:01 +03:00
checkbuffer(L, l);
2000-09-11 21:38:42 +04:00
save_and_next(L, LS, l);
2000-01-25 21:44:21 +03:00
while (LS->current != del) {
2002-03-08 22:07:01 +03:00
checkbuffer(L, l);
2000-01-25 21:44:21 +03:00
switch (LS->current) {
case EOZ:
save(L, '\0', l);
luaX_lexerror(LS, "unfinished string", TK_EOS);
break; /* to avoid warnings */
case '\n':
save(L, '\0', l);
luaX_lexerror(LS, "unfinished string", TK_STRING);
2000-01-25 21:44:21 +03:00
break; /* to avoid warnings */
case '\\':
2001-02-22 21:59:59 +03:00
next(LS); /* do not save the `\' */
2000-01-25 21:44:21 +03:00
switch (LS->current) {
case 'a': save(L, '\a', l); next(LS); break;
case 'b': save(L, '\b', l); next(LS); break;
case 'f': save(L, '\f', l); next(LS); break;
case 'n': save(L, '\n', l); next(LS); break;
case 'r': save(L, '\r', l); next(LS); break;
case 't': save(L, '\t', l); next(LS); break;
case 'v': save(L, '\v', l); next(LS); break;
case '\n': save(L, '\n', l); inclinenumber(LS); break;
case EOZ: break; /* will raise an error next loop */
2001-02-23 20:17:25 +03:00
default: {
if (!isdigit(LS->current))
save_and_next(L, LS, l); /* handles \\, \", \', and \? */
else { /* \xxx */
int c = 0;
int i = 0;
do {
c = 10*c + (LS->current-'0');
2001-02-23 20:17:25 +03:00
next(LS);
} while (++i<3 && isdigit(LS->current));
if (c > UCHAR_MAX) {
save(L, '\0', l);
luaX_lexerror(LS, "escape sequence too large", TK_STRING);
2001-02-23 20:17:25 +03:00
}
save(L, c, l);
2000-09-11 21:38:42 +04:00
}
2000-01-25 21:44:21 +03:00
}
}
break;
default:
2000-09-11 21:38:42 +04:00
save_and_next(L, LS, l);
2000-01-25 21:44:21 +03:00
}
}
2000-09-11 21:38:42 +04:00
save_and_next(L, LS, l); /* skip delimiter */
save(L, '\0', l);
seminfo->ts = luaS_newlstr(L, cast(char *, G(L)->Mbuffer)+1, l-3);
}
1997-09-16 23:25:59 +04:00
int luaX_lex (LexState *LS, SemInfo *seminfo) {
1998-12-03 18:45:15 +03:00
for (;;) {
switch (LS->current) {
1993-12-23 00:39:15 +03:00
case '\n': {
2000-05-26 18:04:04 +04:00
inclinenumber(LS);
1998-01-09 17:44:55 +03:00
continue;
}
case '-': {
2000-01-25 21:44:21 +03:00
next(LS);
if (LS->current != '-') return '-';
2002-03-08 22:07:01 +03:00
/* else is a comment */
next(LS);
if (LS->current == '[' && (next(LS), LS->current == '['))
read_long_string(LS, NULL); /* long comment */
else /* short comment */
while (LS->current != '\n' && LS->current != EOZ)
next(LS);
1993-12-23 00:15:16 +03:00
continue;
}
case '[': {
2000-09-11 21:38:42 +04:00
next(LS);
if (LS->current != '[') return '[';
1997-09-16 23:25:59 +04:00
else {
read_long_string(LS, seminfo);
2000-03-10 21:37:44 +03:00
return TK_STRING;
}
}
case '=': {
2000-01-25 21:44:21 +03:00
next(LS);
if (LS->current != '=') return '=';
2000-03-10 21:37:44 +03:00
else { next(LS); return TK_EQ; }
}
case '<': {
2000-01-25 21:44:21 +03:00
next(LS);
if (LS->current != '=') return '<';
2000-03-10 21:37:44 +03:00
else { next(LS); return TK_LE; }
}
case '>': {
2000-01-25 21:44:21 +03:00
next(LS);
if (LS->current != '=') return '>';
2000-03-10 21:37:44 +03:00
else { next(LS); return TK_GE; }
}
case '~': {
2000-01-25 21:44:21 +03:00
next(LS);
if (LS->current != '=') return '~';
2000-03-10 21:37:44 +03:00
else { next(LS); return TK_NE; }
}
case '"':
case '\'': {
read_string(LS, LS->current, seminfo);
2000-03-10 21:37:44 +03:00
return TK_STRING;
}
case '.': {
2000-09-11 21:38:42 +04:00
next(LS);
if (LS->current == '.') {
2000-01-25 21:44:21 +03:00
next(LS);
if (LS->current == '.') {
2000-01-25 21:44:21 +03:00
next(LS);
2000-03-10 21:37:44 +03:00
return TK_DOTS; /* ... */
}
2000-04-07 17:11:49 +04:00
else return TK_CONCAT; /* .. */
1993-12-23 00:15:16 +03:00
}
else if (!isdigit(LS->current)) return '.';
2000-09-11 21:38:42 +04:00
else {
read_numeral(LS, 1, seminfo);
2000-09-11 21:38:42 +04:00
return TK_NUMBER;
}
}
case EOZ: {
2000-03-10 21:37:44 +03:00
return TK_EOS;
}
2001-02-23 20:17:25 +03:00
default: {
if (isspace(LS->current)) {
next(LS);
continue;
}
else if (isdigit(LS->current)) {
read_numeral(LS, 0, seminfo);
2001-02-23 20:17:25 +03:00
return TK_NUMBER;
1997-07-01 23:32:41 +04:00
}
else if (isalpha(LS->current) || LS->current == '_') {
2001-02-23 20:17:25 +03:00
/* identifier or reserved word */
2001-01-10 20:41:50 +03:00
size_t l = readname(LS);
TString *ts = luaS_newlstr(LS->L, cast(char *, G(LS->L)->Mbuffer), l);
if (ts->tsv.marked >= RESERVEDMARK) /* reserved word? */
return ts->tsv.marked-RESERVEDMARK+FIRST_RESERVED;
seminfo->ts = ts;
2000-03-10 21:37:44 +03:00
return TK_NAME;
1997-07-01 23:32:41 +04:00
}
2001-02-23 20:17:25 +03:00
else {
int c = LS->current;
2001-02-23 20:17:25 +03:00
if (iscntrl(c))
luaX_error(LS, "invalid control char",
luaO_pushfstring(LS->L, "char(%d)", c));
2001-02-23 20:17:25 +03:00
next(LS);
return c; /* single-char tokens (+ - / ...) */
}
}
1993-12-23 00:15:16 +03:00
}
}
}
#undef next