lua/llex.c

413 lines
11 KiB
C
Raw Normal View History

1997-09-16 23:25:59 +04:00
/*
** $Id: llex.c,v 1.119 2003/03/24 12:39:34 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
2002-12-04 20:38:31 +03:00
#define llex_c
#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",
2002-09-03 15:57:38 +04:00
"end", "false", "for", "function", "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]);
luaS_fix(ts); /* reserved words are never collected */
lua_assert(strlen(token2string[i])+1 <= TOKEN_LEN);
ts->tsv.reserved = cast(lu_byte, i+1); /* 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
}
}
void luaX_errorline (LexState *ls, const char *s, const char *token, int line) {
lua_State *L = ls->L;
char buff[MAXSRC];
luaO_chunkid(buff, getstr(ls->source), MAXSRC);
luaO_pushfstring(L, "%s:%d: %s near `%s'", buff, line, s, token);
2002-06-18 19:19:27 +04:00
luaD_throw(L, LUA_ERRSYNTAX);
1998-05-27 17:08:34 +04:00
}
static void luaX_error (LexState *ls, const char *s, const char *token) {
luaX_errorline(ls, s, token, ls->linenumber);
}
void luaX_syntaxerror (LexState *ls, const char *msg) {
const char *lasttoken;
switch (ls->t.token) {
case TK_NAME:
2002-10-23 23:08:13 +04:00
lasttoken = getstr(ls->t.seminfo.ts);
break;
case TK_STRING:
case TK_NUMBER:
2002-10-23 23:08:13 +04:00
lasttoken = luaZ_buffer(ls->buff);
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) {
2003-03-24 15:39:34 +03:00
lua_assert(token == (unsigned 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, luaZ_buffer(ls->buff));
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 */
}
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
** =======================================================
*/
2002-10-09 17:00:08 +04:00
/* use buffer to store names, literal strings and numbers */
2000-09-11 21:38:42 +04:00
2002-10-09 17:00:08 +04:00
/* extra space to allocate when growing buffer */
#define EXTRABUFF 32
2002-10-09 17:00:08 +04:00
/* maximum number of chars that can be read without checking buffer size */
#define MAXNOCHECK 5
#define checkbuffer(LS, len) \
2002-10-09 17:00:08 +04:00
if (((len)+MAXNOCHECK)*sizeof(char) > luaZ_sizebuffer((LS)->buff)) \
luaZ_openspace((LS)->L, (LS)->buff, (len)+EXTRABUFF)
2000-09-11 21:38:42 +04:00
#define save(LS, c, l) \
2002-10-22 20:45:52 +04:00
(luaZ_buffer((LS)->buff)[l++] = cast(char, c))
#define save_and_next(LS, l) (save(LS, LS->current, l), next(LS))
2000-09-11 21:38:42 +04:00
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
size_t l = 0;
checkbuffer(LS, l);
2000-09-11 21:38:42 +04:00
do {
checkbuffer(LS, l);
save_and_next(LS, l);
} while (isalnum(LS->current) || LS->current == '_');
save(LS, '\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
size_t l = 0;
checkbuffer(LS, l);
if (comma) save(LS, '.', l);
2000-09-11 21:38:42 +04:00
while (isdigit(LS->current)) {
checkbuffer(LS, l);
save_and_next(LS, l);
2000-09-11 21:38:42 +04:00
}
if (LS->current == '.') {
save_and_next(LS, l);
if (LS->current == '.') {
save_and_next(LS, l);
save(LS, '\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)) {
checkbuffer(LS, l);
save_and_next(LS, l);
2000-09-11 21:38:42 +04:00
}
if (LS->current == 'e' || LS->current == 'E') {
save_and_next(LS, l); /* read `E' */
if (LS->current == '+' || LS->current == '-')
save_and_next(LS, l); /* optional exponent sign */
2000-09-11 21:38:42 +04:00
while (isdigit(LS->current)) {
checkbuffer(LS, l);
save_and_next(LS, l);
2000-09-11 21:38:42 +04:00
}
}
save(LS, '\0', l);
2002-10-22 20:45:52 +04:00
if (!luaO_str2d(luaZ_buffer(LS->buff), &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) {
int cont = 0;
2000-09-11 21:38:42 +04:00
size_t l = 0;
checkbuffer(LS, l);
save(LS, '[', l); /* save first `[' */
save_and_next(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 (;;) {
checkbuffer(LS, l);
switch (LS->current) {
1997-06-16 20:50:22 +04:00
case EOZ:
save(LS, '\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 '[':
save_and_next(LS, l);
if (LS->current == '[') {
cont++;
save_and_next(LS, l);
}
continue;
case ']':
save_and_next(LS, l);
if (LS->current == ']') {
if (cont == 0) goto endloop;
cont--;
save_and_next(LS, l);
}
continue;
case '\n':
save(LS, '\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:
save_and_next(LS, l);
}
} endloop:
save_and_next(LS, l); /* skip the second `]' */
save(LS, '\0', l);
2002-03-08 22:07:01 +03:00
if (seminfo)
seminfo->ts = luaS_newlstr(LS->L, luaZ_buffer(LS->buff) + 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
size_t l = 0;
checkbuffer(LS, l);
save_and_next(LS, l);
2000-01-25 21:44:21 +03:00
while (LS->current != del) {
checkbuffer(LS, l);
2000-01-25 21:44:21 +03:00
switch (LS->current) {
case EOZ:
save(LS, '\0', l);
luaX_lexerror(LS, "unfinished string", TK_EOS);
break; /* to avoid warnings */
case '\n':
save(LS, '\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(LS, '\a', l); next(LS); break;
case 'b': save(LS, '\b', l); next(LS); break;
case 'f': save(LS, '\f', l); next(LS); break;
case 'n': save(LS, '\n', l); next(LS); break;
case 'r': save(LS, '\r', l); next(LS); break;
case 't': save(LS, '\t', l); next(LS); break;
case 'v': save(LS, '\v', l); next(LS); break;
case '\n': save(LS, '\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(LS, l); /* handles \\, \", \', and \? */
2001-02-23 20:17:25 +03:00
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(LS, '\0', l);
luaX_lexerror(LS, "escape sequence too large", TK_STRING);
2001-02-23 20:17:25 +03:00
}
save(LS, c, l);
2000-09-11 21:38:42 +04:00
}
2000-01-25 21:44:21 +03:00
}
}
break;
default:
save_and_next(LS, l);
2000-01-25 21:44:21 +03:00
}
}
save_and_next(LS, l); /* skip delimiter */
save(LS, '\0', l);
seminfo->ts = luaS_newlstr(LS->L, luaZ_buffer(LS->buff) + 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, luaZ_buffer(LS->buff), l);
if (ts->tsv.reserved > 0) /* reserved word? */
return ts->tsv.reserved - 1 + 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