lua/ldblib.c

185 lines
4.2 KiB
C
Raw Normal View History

1999-01-08 08:47:44 -08:00
/*
** $Id: ldblib.c,v 1.39 2001/10/17 21:12:57 roberto Exp $
1999-01-08 08:47:44 -08:00
** Interface from Lua to its debug API
** See Copyright Notice in lua.h
*/
#include <stdio.h>
1999-01-08 08:47:44 -08:00
#include <stdlib.h>
#include <string.h>
2001-03-26 06:31:49 -08:00
#define LUA_PRIVATE
1999-01-08 08:47:44 -08:00
#include "lua.h"
#include "lauxlib.h"
1999-01-08 08:47:44 -08:00
#include "luadebug.h"
1999-01-11 10:57:35 -08:00
#include "lualib.h"
1999-01-08 08:47:44 -08:00
2001-02-23 09:17:25 -08:00
static void settabss (lua_State *L, const l_char *i, const l_char *v) {
lua_pushstring(L, i);
lua_pushstring(L, v);
2000-09-05 12:33:32 -07:00
lua_settable(L, -3);
1999-01-08 08:47:44 -08:00
}
2001-02-23 09:17:25 -08:00
static void settabsi (lua_State *L, const l_char *i, int v) {
lua_pushstring(L, i);
lua_pushnumber(L, v);
2000-09-05 12:33:32 -07:00
lua_settable(L, -3);
1999-01-08 08:47:44 -08:00
}
2000-08-28 10:57:04 -07:00
static int getinfo (lua_State *L) {
2000-03-30 09:19:48 -08:00
lua_Debug ar;
2001-02-23 09:17:25 -08:00
const l_char *options = luaL_opt_string(L, 2, l_s("flnSu"));
l_char buff[20];
2000-08-28 10:57:04 -07:00
if (lua_isnumber(L, 1)) {
2001-08-31 12:46:07 -07:00
if (!lua_getstack(L, (int)(lua_tonumber(L, 1)), &ar)) {
lua_pushnil(L); /* level out of range */
2000-08-28 10:57:04 -07:00
return 1;
}
}
2000-08-28 10:57:04 -07:00
else if (lua_isfunction(L, 1)) {
2000-09-05 12:33:32 -07:00
lua_pushvalue(L, 1);
2001-02-23 09:17:25 -08:00
sprintf(buff, l_s(">%.10s"), options);
options = buff;
}
else
2001-02-23 09:17:25 -08:00
luaL_argerror(L, 1, l_s("function or level expected"));
if (!lua_getinfo(L, options, &ar))
2001-02-23 09:17:25 -08:00
luaL_argerror(L, 2, l_s("invalid option"));
2000-08-28 10:57:04 -07:00
lua_newtable(L);
for (; *options; options++) {
switch (*options) {
2001-02-23 09:17:25 -08:00
case l_c('S'):
settabss(L, l_s("source"), ar.source);
2000-09-12 11:38:25 -07:00
if (ar.source)
2001-02-23 09:17:25 -08:00
settabss(L, l_s("short_src"), ar.short_src);
settabsi(L, l_s("linedefined"), ar.linedefined);
settabss(L, l_s("what"), ar.what);
break;
2001-02-23 09:17:25 -08:00
case l_c('l'):
settabsi(L, l_s("currentline"), ar.currentline);
break;
2001-02-23 09:17:25 -08:00
case l_c('u'):
settabsi(L, l_s("nups"), ar.nups);
break;
2001-02-23 09:17:25 -08:00
case l_c('n'):
settabss(L, l_s("name"), ar.name);
settabss(L, l_s("namewhat"), ar.namewhat);
break;
2001-02-23 09:17:25 -08:00
case l_c('f'):
lua_pushliteral(L, l_s("func"));
2000-09-05 12:33:32 -07:00
lua_pushvalue(L, -3);
lua_settable(L, -3);
break;
1999-01-08 08:47:44 -08:00
}
}
2000-08-28 10:57:04 -07:00
return 1; /* return table */
1999-01-08 08:47:44 -08:00
}
2000-01-19 04:00:45 -08:00
1999-01-08 08:47:44 -08:00
2000-08-28 10:57:04 -07:00
static int getlocal (lua_State *L) {
2000-03-30 09:19:48 -08:00
lua_Debug ar;
2001-02-23 09:17:25 -08:00
const l_char *name;
2000-01-19 04:00:45 -08:00
if (!lua_getstack(L, luaL_check_int(L, 1), &ar)) /* level out of range? */
2001-02-23 09:17:25 -08:00
luaL_argerror(L, 1, l_s("level out of range"));
2000-08-28 10:57:04 -07:00
name = lua_getlocal(L, &ar, luaL_check_int(L, 2));
if (name) {
lua_pushstring(L, name);
2000-09-05 12:33:32 -07:00
lua_pushvalue(L, -2);
2000-08-28 10:57:04 -07:00
return 2;
}
else {
lua_pushnil(L);
return 1;
1999-01-08 08:47:44 -08:00
}
}
2000-08-28 10:57:04 -07:00
static int setlocal (lua_State *L) {
2000-03-30 09:19:48 -08:00
lua_Debug ar;
2000-01-19 04:00:45 -08:00
if (!lua_getstack(L, luaL_check_int(L, 1), &ar)) /* level out of range? */
2001-02-23 09:17:25 -08:00
luaL_argerror(L, 1, l_s("level out of range"));
luaL_check_any(L, 3);
2000-08-28 10:57:04 -07:00
lua_pushstring(L, lua_setlocal(L, &ar, luaL_check_int(L, 2)));
return 1;
1999-01-08 08:47:44 -08:00
}
#define KEY_CALLHOOK l_s("luadblibCallhook")
#define KEY_LINEHOOK l_s("luadblibLinehook")
1999-01-08 08:47:44 -08:00
static void hookf (lua_State *L, const l_char *key) {
lua_pushstring(L, key);
lua_gettable(L, LUA_REGISTRYINDEX);
2000-10-24 12:12:06 -07:00
if (lua_isfunction(L, -1)) {
lua_pushvalue(L, -2); /* original argument (below function) */
lua_rawcall(L, 1, 0);
}
2000-10-24 12:12:06 -07:00
else
lua_pop(L, 1); /* pop result from gettable */
1999-01-08 08:47:44 -08:00
}
2000-03-30 09:19:48 -08:00
static void callf (lua_State *L, lua_Debug *ar) {
2000-10-24 12:12:06 -07:00
lua_pushstring(L, ar->event);
hookf(L, KEY_CALLHOOK);
}
static void linef (lua_State *L, lua_Debug *ar) {
lua_pushnumber(L, ar->currentline);
hookf(L, KEY_LINEHOOK);
}
static void sethook (lua_State *L, const l_char *key, lua_Hook hook,
2000-10-24 12:12:06 -07:00
lua_Hook (*sethookf)(lua_State * L, lua_Hook h)) {
lua_settop(L, 1);
if (lua_isnil(L, 1))
(*sethookf)(L, NULL);
else if (lua_isfunction(L, 1))
(*sethookf)(L, hook);
else
2001-02-23 09:17:25 -08:00
luaL_argerror(L, 1, l_s("function expected"));
lua_pushstring(L, key);
lua_gettable(L, LUA_REGISTRYINDEX); /* get old value */
lua_pushstring(L, key);
2000-10-24 12:12:06 -07:00
lua_pushvalue(L, 1);
lua_settable(L, LUA_REGISTRYINDEX); /* set new value */
1999-01-08 08:47:44 -08:00
}
2000-08-28 10:57:04 -07:00
static int setcallhook (lua_State *L) {
2000-10-24 12:12:06 -07:00
sethook(L, KEY_CALLHOOK, callf, lua_setcallhook);
return 1;
1999-01-08 08:47:44 -08:00
}
2000-08-28 10:57:04 -07:00
static int setlinehook (lua_State *L) {
2000-10-24 12:12:06 -07:00
sethook(L, KEY_LINEHOOK, linef, lua_setlinehook);
return 1;
1999-01-08 08:47:44 -08:00
}
2001-02-02 11:02:40 -08:00
static const luaL_reg dblib[] = {
2001-02-23 09:17:25 -08:00
{l_s("getlocal"), getlocal},
{l_s("getinfo"), getinfo},
{l_s("setcallhook"), setcallhook},
{l_s("setlinehook"), setlinehook},
{l_s("setlocal"), setlocal}
1999-01-08 08:47:44 -08:00
};
2001-03-06 12:09:38 -08:00
LUALIB_API int lua_dblibopen (lua_State *L) {
1999-11-22 09:39:51 -08:00
luaL_openl(L, dblib);
2001-03-06 12:09:38 -08:00
return 0;
1999-01-08 08:47:44 -08:00
}