lua/ldblib.c

300 lines
7.5 KiB
C
Raw Normal View History

1999-01-08 17:47:44 +01:00
/*
** $Id: ldblib.c,v 1.79 2003/03/11 12:24:34 roberto Exp roberto $
1999-01-08 17:47:44 +01:00
** Interface from Lua to its debug API
** See Copyright Notice in lua.h
*/
#include <stdio.h>
1999-01-08 17:47:44 +01:00
#include <stdlib.h>
#include <string.h>
2002-12-04 18:38:31 +01:00
#define ldblib_c
1999-01-08 17:47:44 +01:00
#include "lua.h"
#include "lauxlib.h"
1999-01-11 19:57:35 +01:00
#include "lualib.h"
1999-01-08 17:47:44 +01:00
static void settabss (lua_State *L, const char *i, const char *v) {
2002-02-07 18:25:36 +01:00
lua_pushstring(L, i);
lua_pushstring(L, v);
2002-02-07 18:25:36 +01:00
lua_rawset(L, -3);
1999-01-08 17:47:44 +01:00
}
static void settabsi (lua_State *L, const char *i, int v) {
2002-02-07 18:25:36 +01:00
lua_pushstring(L, i);
lua_pushnumber(L, (lua_Number)v);
2002-02-07 18:25:36 +01:00
lua_rawset(L, -3);
1999-01-08 17:47:44 +01:00
}
2000-08-28 19:57:04 +02:00
static int getinfo (lua_State *L) {
2000-03-30 19:19:48 +02:00
lua_Debug ar;
2002-11-14 16:41:38 +01:00
const char *options = luaL_optstring(L, 2, "flnSu");
2000-08-28 19:57:04 +02:00
if (lua_isnumber(L, 1)) {
2001-08-31 21:46:07 +02:00
if (!lua_getstack(L, (int)(lua_tonumber(L, 1)), &ar)) {
lua_pushnil(L); /* level out of range */
2000-08-28 19:57:04 +02:00
return 1;
}
}
2000-08-28 19:57:04 +02:00
else if (lua_isfunction(L, 1)) {
lua_pushfstring(L, ">%s", options);
options = lua_tostring(L, -1);
2000-09-05 21:33:32 +02: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 19:57:04 +02:00
lua_newtable(L);
for (; *options; options++) {
switch (*options) {
case 'S':
settabss(L, "source", ar.source);
2002-05-15 20:57:44 +02: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 18:25:36 +01:00
lua_pushliteral(L, "func");
lua_pushvalue(L, -3);
lua_rawset(L, -3);
break;
1999-01-08 17:47:44 +01:00
}
}
2000-08-28 19:57:04 +02:00
return 1; /* return table */
1999-01-08 17:47:44 +01:00
}
2000-01-19 13:00:45 +01:00
1999-01-08 17:47:44 +01:00
2000-08-28 19:57:04 +02:00
static int getlocal (lua_State *L) {
2000-03-30 19:19:48 +02:00
lua_Debug ar;
const char *name;
2002-11-14 16:41:38 +01:00
if (!lua_getstack(L, luaL_checkint(L, 1), &ar)) /* level out of range? */
return luaL_argerror(L, 1, "level out of range");
2002-11-14 16:41:38 +01:00
name = lua_getlocal(L, &ar, luaL_checkint(L, 2));
2000-08-28 19:57:04 +02:00
if (name) {
lua_pushstring(L, name);
2000-09-05 21:33:32 +02:00
lua_pushvalue(L, -2);
2000-08-28 19:57:04 +02:00
return 2;
}
else {
lua_pushnil(L);
return 1;
1999-01-08 17:47:44 +01:00
}
}
2000-08-28 19:57:04 +02:00
static int setlocal (lua_State *L) {
2000-03-30 19:19:48 +02:00
lua_Debug ar;
2002-11-14 16:41:38 +01:00
if (!lua_getstack(L, luaL_checkint(L, 1), &ar)) /* level out of range? */
return luaL_argerror(L, 1, "level out of range");
2002-11-14 16:41:38 +01:00
luaL_checkany(L, 3);
lua_pushstring(L, lua_setlocal(L, &ar, luaL_checkint(L, 2)));
2000-08-28 19:57:04 +02:00
return 1;
1999-01-08 17:47:44 +01:00
}
static int auxupvalue (lua_State *L, int get) {
const char *name;
int n = luaL_checkint(L, 2);
luaL_checktype(L, 1, LUA_TFUNCTION);
if (lua_iscfunction(L, 1)) return 0; /* cannot touch C upvalues from Lua */
name = get ? lua_getupvalue(L, 1, n) : lua_setupvalue(L, 1, n);
if (name == NULL) return 0;
lua_pushstring(L, name);
lua_insert(L, -(get+1));
return get + 1;
}
static int getupvalue (lua_State *L) {
return auxupvalue(L, 1);
}
static int setupvalue (lua_State *L) {
luaL_checkany(L, 3);
return auxupvalue(L, 0);
}
1999-01-08 17:47:44 +01:00
2002-07-08 20:21:33 +02:00
static const char KEY_HOOK = 'h';
1999-01-08 17:47:44 +01:00
2002-07-08 20:21:33 +02:00
static void hookf (lua_State *L, lua_Debug *ar) {
static const char *const hooknames[] =
{"call", "return", "line", "count", "tail return"};
lua_pushlightuserdata(L, (void *)&KEY_HOOK);
2002-02-07 18:25:36 +01:00
lua_rawget(L, LUA_REGISTRYINDEX);
2000-10-24 21:12:06 +02:00
if (lua_isfunction(L, -1)) {
2002-07-08 20:21:33 +02:00
lua_pushstring(L, hooknames[(int)ar->event]);
if (ar->currentline >= 0)
lua_pushnumber(L, (lua_Number)ar->currentline);
2002-07-08 20:21:33 +02:00
else lua_pushnil(L);
lua_assert(lua_getinfo(L, "lS", ar));
lua_call(L, 2, 0);
}
2000-10-24 21:12:06 +02:00
else
lua_pop(L, 1); /* pop result from gettable */
1999-01-08 17:47:44 +01:00
}
static int makemask (const char *smask, int count) {
int mask = 0;
2002-07-08 20:21:33 +02:00
if (strchr(smask, 'c')) mask |= LUA_MASKCALL;
if (strchr(smask, 'r')) mask |= LUA_MASKRET;
if (strchr(smask, 'l')) mask |= LUA_MASKLINE;
if (count > 0) mask |= LUA_MASKCOUNT;
return mask;
2000-10-24 21:12:06 +02:00
}
static char *unmakemask (int mask, char *smask) {
2002-07-08 20:21:33 +02:00
int i = 0;
if (mask & LUA_MASKCALL) smask[i++] = 'c';
if (mask & LUA_MASKRET) smask[i++] = 'r';
if (mask & LUA_MASKLINE) smask[i++] = 'l';
smask[i] = '\0';
return smask;
2000-10-24 21:12:06 +02:00
}
2002-07-08 20:21:33 +02:00
static int sethook (lua_State *L) {
if (lua_isnoneornil(L, 1)) {
lua_settop(L, 1);
lua_sethook(L, NULL, 0, 0); /* turn off hooks */
2002-07-08 20:21:33 +02:00
}
else {
2002-11-14 16:41:38 +01:00
const char *smask = luaL_checkstring(L, 2);
2002-12-05 18:50:10 +01:00
int count = luaL_optint(L, 3, 0);
2002-11-14 16:41:38 +01:00
luaL_checktype(L, 1, LUA_TFUNCTION);
lua_sethook(L, hookf, makemask(smask, count), count);
2002-07-08 20:21:33 +02:00
}
lua_pushlightuserdata(L, (void *)&KEY_HOOK);
2000-10-24 21:12:06 +02:00
lua_pushvalue(L, 1);
2002-07-08 20:21:33 +02:00
lua_rawset(L, LUA_REGISTRYINDEX); /* set new hook */
return 0;
1999-01-08 17:47:44 +01:00
}
2002-07-08 20:21:33 +02:00
static int gethook (lua_State *L) {
char buff[5];
int mask = lua_gethookmask(L);
2002-11-18 16:23:43 +01:00
lua_Hook hook = lua_gethook(L);
if (hook != NULL && hook != hookf) /* external hook? */
lua_pushliteral(L, "external hook");
else {
lua_pushlightuserdata(L, (void *)&KEY_HOOK);
lua_rawget(L, LUA_REGISTRYINDEX); /* get hook */
}
2002-07-08 20:21:33 +02:00
lua_pushstring(L, unmakemask(mask, buff));
lua_pushnumber(L, (lua_Number)lua_gethookcount(L));
2002-07-08 20:21:33 +02:00
return 3;
1999-01-08 17:47:44 +01:00
}
2002-03-20 13:54:08 +01:00
static int debug (lua_State *L) {
for (;;) {
char buffer[250];
fputs("lua_debug> ", stderr);
2002-03-20 13:54:08 +01: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-08-05 19:36:24 +02:00
if (lua_gettop(L) == 0)
lua_pushliteral(L, "");
else if (!lua_isstring(L, 1)) return 1; /* no string message */
2002-09-16 21:18:01 +02:00
else lua_pushliteral(L, "\n");
lua_pushliteral(L, "stack traceback:");
2002-03-20 13:54:08 +01:00
while (lua_getstack(L, level++, &ar)) {
2002-06-03 19:47:18 +02:00
if (level > LEVELS1 && firstpart) {
2002-03-20 13:54:08 +01:00
/* no more than `LEVELS2' more levels? */
if (!lua_getstack(L, level+LEVELS2, &ar))
level--; /* keep going */
else {
lua_pushliteral(L, "\n\t..."); /* too many levels */
2002-03-20 13:54:08 +01:00
while (lua_getstack(L, level+LEVELS2, &ar)) /* find last levels */
level++;
}
firstpart = 0;
continue;
}
lua_pushliteral(L, "\n\t");
2002-08-05 19:36:24 +02:00
lua_getinfo(L, "Snl", &ar);
lua_pushfstring(L, "%s:", ar.short_src);
2002-05-15 20:57:44 +02:00
if (ar.currentline > 0)
lua_pushfstring(L, "%d:", ar.currentline);
2002-03-20 13:54:08 +01:00
switch (*ar.namewhat) {
2002-05-15 20:57:44 +02:00
case 'g': /* global */
case 'l': /* local */
2002-03-20 13:54:08 +01:00
case 'f': /* field */
case 'm': /* method */
lua_pushfstring(L, " in function `%s'", ar.name);
2002-03-20 13:54:08 +01:00
break;
default: {
if (*ar.what == 'm') /* main? */
lua_pushfstring(L, " in main chunk");
else if (*ar.what == 'C' || *ar.what == 't')
lua_pushliteral(L, " ?"); /* C function or tail call */
2002-03-20 13:54:08 +01:00
else
lua_pushfstring(L, " in function <%s:%d>",
ar.short_src, ar.linedefined);
2002-03-20 13:54:08 +01:00
}
}
lua_concat(L, lua_gettop(L));
2002-03-20 13:54:08 +01:00
}
lua_concat(L, lua_gettop(L));
2002-05-01 22:48:12 +02:00
return 1;
2002-03-20 13:54:08 +01:00
}
2001-02-02 20:02:40 +01:00
static const luaL_reg dblib[] = {
{"getlocal", getlocal},
{"getinfo", getinfo},
2002-07-08 20:21:33 +02:00
{"gethook", gethook},
{"getupvalue", getupvalue},
2002-07-08 20:21:33 +02:00
{"sethook", sethook},
2002-03-20 13:54:08 +01:00
{"setlocal", setlocal},
{"setupvalue", setupvalue},
2002-03-20 13:54:08 +01:00
{"debug", debug},
2002-06-18 17:17:58 +02:00
{"traceback", errorfb},
2002-03-20 13:54:08 +01:00
{NULL, NULL}
1999-01-08 17:47:44 +01:00
};
LUALIB_API int luaopen_debug (lua_State *L) {
2002-11-14 16:41:38 +01:00
luaL_openlib(L, LUA_DBLIBNAME, dblib, 0);
2002-08-05 19:36:24 +02:00
lua_pushliteral(L, "_TRACEBACK");
2002-06-18 17:17:58 +02:00
lua_pushcfunction(L, errorfb);
2002-08-05 19:36:24 +02:00
lua_settable(L, LUA_GLOBALSINDEX);
2002-12-20 11:26:33 +01:00
return 1;
1999-01-08 17:47:44 +01:00
}