lua/ldblib.c

255 lines
6.2 KiB
C
Raw Normal View History

1999-01-08 19:47:44 +03:00
/*
2002-06-18 19:17:58 +04:00
** $Id: ldblib.c,v 1.57 2002/06/13 13:44:50 roberto Exp roberto $
1999-01-08 19:47:44 +03:00
** Interface from Lua to its debug API
** See Copyright Notice in lua.h
*/
#include <stdio.h>
1999-01-08 19:47:44 +03:00
#include <stdlib.h>
#include <string.h>
#include "lua.h"
#include "lauxlib.h"
1999-01-08 19:47:44 +03:00
#include "luadebug.h"
1999-01-11 21:57:35 +03:00
#include "lualib.h"
1999-01-08 19:47:44 +03:00
static void settabss (lua_State *L, const char *i, const char *v) {
2002-02-07 20:25:36 +03:00
lua_pushstring(L, i);
lua_pushstring(L, v);
2002-02-07 20:25:36 +03:00
lua_rawset(L, -3);
1999-01-08 19:47:44 +03:00
}
static void settabsi (lua_State *L, const char *i, int v) {
2002-02-07 20:25:36 +03:00
lua_pushstring(L, i);
lua_pushnumber(L, v);
2002-02-07 20:25:36 +03:00
lua_rawset(L, -3);
1999-01-08 19:47:44 +03:00
}
2000-08-28 21:57:04 +04:00
static int getinfo (lua_State *L) {
2000-03-30 21:19:48 +04:00
lua_Debug ar;
const char *options = luaL_opt_string(L, 2, "flnSu");
2000-08-28 21:57:04 +04:00
if (lua_isnumber(L, 1)) {
2001-08-31 23:46:07 +04:00
if (!lua_getstack(L, (int)(lua_tonumber(L, 1)), &ar)) {
lua_pushnil(L); /* level out of range */
2000-08-28 21:57:04 +04:00
return 1;
}
}
2000-08-28 21:57:04 +04:00
else if (lua_isfunction(L, 1)) {
lua_pushfstring(L, ">%s", options);
options = lua_tostring(L, -1);
2000-09-05 23:33:32 +04:00
lua_pushvalue(L, 1);
}
else
return luaL_argerror(L, 1, "function or level expected");
if (!lua_getinfo(L, options, &ar))
return luaL_argerror(L, 2, "invalid option");
2000-08-28 21:57:04 +04:00
lua_newtable(L);
for (; *options; options++) {
switch (*options) {
case 'S':
settabss(L, "source", ar.source);
2002-05-15 22:57:44 +04:00
settabss(L, "short_src", ar.short_src);
settabsi(L, "linedefined", ar.linedefined);
settabss(L, "what", ar.what);
break;
case 'l':
settabsi(L, "currentline", ar.currentline);
break;
case 'u':
settabsi(L, "nups", ar.nups);
break;
case 'n':
settabss(L, "name", ar.name);
settabss(L, "namewhat", ar.namewhat);
break;
case 'f':
2002-02-07 20:25:36 +03:00
lua_pushliteral(L, "func");
lua_pushvalue(L, -3);
lua_rawset(L, -3);
break;
1999-01-08 19:47:44 +03:00
}
}
2000-08-28 21:57:04 +04:00
return 1; /* return table */
1999-01-08 19:47:44 +03:00
}
2000-01-19 15:00:45 +03:00
1999-01-08 19:47:44 +03:00
2000-08-28 21:57:04 +04:00
static int getlocal (lua_State *L) {
2000-03-30 21:19:48 +04:00
lua_Debug ar;
const char *name;
2000-01-19 15:00:45 +03:00
if (!lua_getstack(L, luaL_check_int(L, 1), &ar)) /* level out of range? */
return luaL_argerror(L, 1, "level out of range");
2000-08-28 21:57:04 +04:00
name = lua_getlocal(L, &ar, luaL_check_int(L, 2));
if (name) {
lua_pushstring(L, name);
2000-09-05 23:33:32 +04:00
lua_pushvalue(L, -2);
2000-08-28 21:57:04 +04:00
return 2;
}
else {
lua_pushnil(L);
return 1;
1999-01-08 19:47:44 +03:00
}
}
2000-08-28 21:57:04 +04:00
static int setlocal (lua_State *L) {
2000-03-30 21:19:48 +04:00
lua_Debug ar;
2000-01-19 15:00:45 +03:00
if (!lua_getstack(L, luaL_check_int(L, 1), &ar)) /* level out of range? */
return luaL_argerror(L, 1, "level out of range");
luaL_check_any(L, 3);
2000-08-28 21:57:04 +04:00
lua_pushstring(L, lua_setlocal(L, &ar, luaL_check_int(L, 2)));
return 1;
1999-01-08 19:47:44 +03:00
}
2002-04-09 23:48:08 +04:00
static const char KEY_CALLHOOK = 'c';
static const char KEY_LINEHOOK = 'l';
1999-01-08 19:47:44 +03:00
2002-04-09 23:48:08 +04:00
static void hookf (lua_State *L, void *key) {
lua_pushudataval(L, key);
2002-02-07 20:25:36 +03:00
lua_rawget(L, LUA_REGISTRYINDEX);
2000-10-24 23:12:06 +04:00
if (lua_isfunction(L, -1)) {
lua_pushvalue(L, -2); /* original argument (below function) */
lua_upcall(L, 1, 0);
}
2000-10-24 23:12:06 +04:00
else
lua_pop(L, 1); /* pop result from gettable */
1999-01-08 19:47:44 +03:00
}
2000-03-30 21:19:48 +04:00
static void callf (lua_State *L, lua_Debug *ar) {
2000-10-24 23:12:06 +04:00
lua_pushstring(L, ar->event);
2002-04-09 23:48:08 +04:00
hookf(L, (void *)&KEY_CALLHOOK);
2000-10-24 23:12:06 +04:00
}
static void linef (lua_State *L, lua_Debug *ar) {
lua_pushnumber(L, ar->currentline);
2002-04-09 23:48:08 +04:00
hookf(L, (void *)&KEY_LINEHOOK);
2000-10-24 23:12:06 +04:00
}
2002-04-09 23:48:08 +04:00
static void sethook (lua_State *L, void *key, lua_Hook hook,
2000-10-24 23:12:06 +04:00
lua_Hook (*sethookf)(lua_State * L, lua_Hook h)) {
lua_settop(L, 1);
if (lua_isnoneornil(L, 1))
2000-10-24 23:12:06 +04:00
(*sethookf)(L, NULL);
else if (lua_isfunction(L, 1))
(*sethookf)(L, hook);
else
luaL_argerror(L, 1, "function expected");
2002-04-09 23:48:08 +04:00
lua_pushudataval(L, key);
2002-02-07 20:25:36 +03:00
lua_rawget(L, LUA_REGISTRYINDEX); /* get old value */
2002-04-09 23:48:08 +04:00
lua_pushudataval(L, key);
2000-10-24 23:12:06 +04:00
lua_pushvalue(L, 1);
2002-02-07 20:25:36 +03:00
lua_rawset(L, LUA_REGISTRYINDEX); /* set new value */
1999-01-08 19:47:44 +03:00
}
2000-08-28 21:57:04 +04:00
static int setcallhook (lua_State *L) {
2002-04-09 23:48:08 +04:00
sethook(L, (void *)&KEY_CALLHOOK, callf, lua_setcallhook);
return 1;
1999-01-08 19:47:44 +03:00
}
2000-08-28 21:57:04 +04:00
static int setlinehook (lua_State *L) {
2002-04-09 23:48:08 +04:00
sethook(L, (void *)&KEY_LINEHOOK, linef, lua_setlinehook);
return 1;
1999-01-08 19:47:44 +03:00
}
2002-03-20 15:54:08 +03:00
static int debug (lua_State *L) {
for (;;) {
char buffer[250];
fputs("lua_debug> ", stderr);
2002-03-20 15:54:08 +03:00
if (fgets(buffer, sizeof(buffer), stdin) == 0 ||
strcmp(buffer, "cont\n") == 0)
return 0;
lua_dostring(L, buffer);
lua_settop(L, 0); /* remove eventual returns */
}
}
#define LEVELS1 12 /* size of the first part of the stack */
#define LEVELS2 10 /* size of the second part of the stack */
static int errorfb (lua_State *L) {
int level = 1; /* skip level 0 (it's this function) */
int firstpart = 1; /* still before eventual `...' */
lua_Debug ar;
2002-06-18 19:17:58 +04:00
lua_settop(L, 0);
2002-06-03 21:47:18 +04:00
lua_pushliteral(L, "stack traceback:\n");
2002-03-20 15:54:08 +03:00
while (lua_getstack(L, level++, &ar)) {
char buff[10];
2002-06-03 21:47:18 +04:00
if (level > LEVELS1 && firstpart) {
2002-03-20 15:54:08 +03:00
/* no more than `LEVELS2' more levels? */
if (!lua_getstack(L, level+LEVELS2, &ar))
level--; /* keep going */
else {
lua_pushliteral(L, " ...\n"); /* too many levels */
2002-03-20 15:54:08 +03:00
while (lua_getstack(L, level+LEVELS2, &ar)) /* find last levels */
level++;
}
firstpart = 0;
continue;
}
2002-05-15 22:57:44 +04:00
sprintf(buff, "%4d- ", level-1);
lua_pushstring(L, buff);
2002-03-20 15:54:08 +03:00
lua_getinfo(L, "Snl", &ar);
lua_pushfstring(L, "%s:", ar.short_src);
2002-05-15 22:57:44 +04:00
if (ar.currentline > 0)
lua_pushfstring(L, "%d:", ar.currentline);
2002-03-20 15:54:08 +03:00
switch (*ar.namewhat) {
2002-05-15 22:57:44 +04:00
case 'g': /* global */
case 'l': /* local */
2002-03-20 15:54:08 +03:00
case 'f': /* field */
case 'm': /* method */
lua_pushfstring(L, " in function `%s'", ar.name);
2002-03-20 15:54:08 +03:00
break;
default: {
if (*ar.what == 'm') /* main? */
lua_pushfstring(L, " in main chunk");
2002-03-20 15:54:08 +03:00
else if (*ar.what == 'C') /* C function? */
lua_pushfstring(L, "%s", ar.short_src);
2002-03-20 15:54:08 +03:00
else
lua_pushfstring(L, " in function <%s:%d>",
ar.short_src, ar.linedefined);
2002-03-20 15:54:08 +03:00
}
}
lua_pushliteral(L, "\n");
lua_concat(L, lua_gettop(L));
2002-03-20 15:54:08 +03:00
}
lua_concat(L, lua_gettop(L));
2002-05-02 00:48:12 +04:00
return 1;
2002-03-20 15:54:08 +03:00
}
2001-02-02 22:02:40 +03:00
static const luaL_reg dblib[] = {
{"getlocal", getlocal},
{"getinfo", getinfo},
{"setcallhook", setcallhook},
{"setlinehook", setlinehook},
2002-03-20 15:54:08 +03:00
{"setlocal", setlocal},
{"debug", debug},
2002-06-18 19:17:58 +04:00
{"traceback", errorfb},
2002-03-20 15:54:08 +03:00
{NULL, NULL}
1999-01-08 19:47:44 +03:00
};
2001-03-06 23:09:38 +03:00
LUALIB_API int lua_dblibopen (lua_State *L) {
2002-06-05 21:24:04 +04:00
luaL_opennamedlib(L, LUA_DBLIBNAME, dblib, 0);
2002-06-18 19:17:58 +04:00
lua_pushliteral(L, LUA_TRACEBACK);
lua_pushcfunction(L, errorfb);
lua_settable(L, LUA_REGISTRYINDEX);
2001-03-06 23:09:38 +03:00
return 0;
1999-01-08 19:47:44 +03:00
}