Browse Source

better treatment for errors inside _ERRORMETHOD

v5-2
Roberto Ierusalimschy 24 years ago
parent
commit
46b543ebef
  1. 5
      lbaselib.c
  2. 7
      ldo.c
  3. 6
      lua.c
  4. 3
      lua.h

5
lbaselib.c

@ -1,5 +1,5 @@
/* /*
** $Id: lbaselib.c,v 1.9 2000/10/05 12:14:08 roberto Exp roberto $ ** $Id: lbaselib.c,v 1.10 2000/10/06 19:13:29 roberto Exp roberto $
** Basic library ** Basic library
** See Copyright Notice in lua.h ** See Copyright Notice in lua.h
*/ */
@ -229,7 +229,8 @@ static int luaB_next (lua_State *L) {
static int passresults (lua_State *L, int status, int oldtop) { static int passresults (lua_State *L, int status, int oldtop) {
static const char *const errornames[] = static const char *const errornames[] =
{"ok", "run-time error", "file error", "syntax error", "memory error"}; {"ok", "run-time error", "file error", "syntax error",
"memory error", "error in error handling"};
if (status == 0) { if (status == 0) {
int nresults = lua_gettop(L) - oldtop; int nresults = lua_gettop(L) - oldtop;
if (nresults > 0) if (nresults > 0)

7
ldo.c

@ -1,5 +1,5 @@
/* /*
** $Id: ldo.c,v 1.104 2000/10/06 12:45:25 roberto Exp roberto $ ** $Id: ldo.c,v 1.105 2000/10/09 13:47:32 roberto Exp roberto $
** Stack and Call structure of Lua ** Stack and Call structure of Lua
** See Copyright Notice in lua.h ** See Copyright Notice in lua.h
*/ */
@ -43,9 +43,8 @@ void luaD_init (lua_State *L, int stacksize) {
void luaD_checkstack (lua_State *L, int n) { void luaD_checkstack (lua_State *L, int n) {
if (L->stack_last - L->top <= n) { /* stack overflow? */ if (L->stack_last - L->top <= n) { /* stack overflow? */
if (L->stack_last-L->stack > (L->stacksize-1)) { if (L->stack_last-L->stack > (L->stacksize-1)) {
/* overflow while handling overflow: do what?? */ /* overflow while handling overflow */
L->top -= EXTRA_STACK; luaD_breakrun(L, LUA_ERRERR); /* break run without error message */
lua_error(L, "BAD STACK OVERFLOW! DATA CORRUPTED!");
} }
else { else {
L->stack_last += EXTRA_STACK; /* to be used by error message */ L->stack_last += EXTRA_STACK; /* to be used by error message */

6
lua.c

@ -1,5 +1,5 @@
/* /*
** $Id: lua.c,v 1.51 2000/09/11 19:42:57 roberto Exp roberto $ ** $Id: lua.c,v 1.52 2000/09/25 16:15:52 roberto Exp roberto $
** Lua stand-alone interpreter ** Lua stand-alone interpreter
** See Copyright Notice in lua.h ** See Copyright Notice in lua.h
*/ */
@ -91,10 +91,12 @@ static int ldo (int (*f)(lua_State *l, const char *), const char *name) {
res = f(L, name); /* dostring | dofile */ res = f(L, name); /* dostring | dofile */
lua_settop(L, top); /* remove eventual results */ lua_settop(L, top); /* remove eventual results */
signal(SIGINT, h); /* restore old action */ signal(SIGINT, h); /* restore old action */
/* Lua gives no message in such cases, so lua.c provides one */
if (res == LUA_ERRMEM) { if (res == LUA_ERRMEM) {
/* Lua gives no message in such case, so lua.c provides one */
fprintf(stderr, "lua: memory allocation error\n"); fprintf(stderr, "lua: memory allocation error\n");
} }
else if (res == LUA_ERRERR)
fprintf(stderr, "lua: error in error message\n");
return res; return res;
} }

3
lua.h

@ -1,5 +1,5 @@
/* /*
** $Id: lua.h,v 1.72 2000/10/02 20:10:55 roberto Exp roberto $ ** $Id: lua.h,v 1.73 2000/10/05 12:14:08 roberto Exp roberto $
** Lua - An Extensible Extension Language ** Lua - An Extensible Extension Language
** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil ** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil
** e-mail: lua@tecgraf.puc-rio.br ** e-mail: lua@tecgraf.puc-rio.br
@ -41,6 +41,7 @@
#define LUA_ERRFILE 2 #define LUA_ERRFILE 2
#define LUA_ERRSYNTAX 3 #define LUA_ERRSYNTAX 3
#define LUA_ERRMEM 4 #define LUA_ERRMEM 4
#define LUA_ERRERR 5
typedef struct lua_State lua_State; typedef struct lua_State lua_State;

Loading…
Cancel
Save