lua/ldblib.c

189 lines
4.2 KiB
C
Raw Normal View History

1999-01-08 19:47:44 +03:00
/*
** $Id: ldblib.c,v 1.14 2000/05/08 13:21:35 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>
#define LUA_REENTRANT
1999-01-08 19:47:44 +03:00
#include "lauxlib.h"
#include "lua.h"
#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, lua_Object t, const char *i, const char *v) {
lua_pushobject(L, t);
lua_pushstring(L, i);
lua_pushstring(L, v);
lua_settable(L);
1999-01-08 19:47:44 +03:00
}
static void settabsi (lua_State *L, lua_Object t, const char *i, int v) {
lua_pushobject(L, t);
lua_pushstring(L, i);
lua_pushnumber(L, v);
lua_settable(L);
1999-01-08 19:47:44 +03:00
}
2000-01-19 15:00:45 +03:00
static void settabso (lua_State *L, lua_Object t, const char *i, lua_Object v) {
lua_pushobject(L, t);
lua_pushstring(L, i);
lua_pushobject(L, v);
lua_settable(L);
1999-01-08 19:47:44 +03:00
}
static void getinfo (lua_State *L) {
2000-03-30 21:19:48 +04:00
lua_Debug ar;
lua_Object res;
lua_Object func = lua_getparam(L, 1);
const char *options = luaL_opt_string(L, 2, "flnSu");
char buff[20];
if (lua_isnumber(L, func)) {
if (!lua_getstack(L, lua_getnumber(L, func), &ar)) {
lua_pushnil(L); /* level out of range */
return;
}
}
else if (lua_isfunction(L, func)) {
ar.func = func;
sprintf(buff, ">%.10s", options);
options = buff;
}
else
luaL_argerror(L, 1, "function or level expected");
res = lua_createtable(L);
if (!lua_getinfo(L, options, &ar))
luaL_argerror(L, 2, "invalid option");
for (; *options; options++) {
switch (*options) {
case 'S':
settabss(L, res, "source", ar.source);
settabsi(L, res, "linedefined", ar.linedefined);
settabss(L, res, "what", ar.what);
break;
case 'l':
settabsi(L, res, "currentline", ar.currentline);
break;
case 'u':
settabsi(L, res, "nups", ar.nups);
break;
case 'n':
settabss(L, res, "name", ar.name);
settabss(L, res, "namewhat", ar.namewhat);
break;
case 'f':
settabso(L, res, "func", ar.func);
break;
1999-01-08 19:47:44 +03:00
}
}
lua_pushobject(L, res);
1999-01-08 19:47:44 +03:00
}
2000-01-19 15:00:45 +03:00
1999-01-08 19:47:44 +03:00
static void getlocal (lua_State *L) {
2000-03-30 21:19:48 +04:00
lua_Debug ar;
lua_Localvar lvar;
2000-01-19 15:00:45 +03:00
if (!lua_getstack(L, luaL_check_int(L, 1), &ar)) /* level out of range? */
luaL_argerror(L, 1, "level out of range");
lvar.index = luaL_check_int(L, 2);
if (lua_getlocal(L, &ar, &lvar)) {
lua_pushstring(L, lvar.name);
lua_pushobject(L, lvar.value);
1999-01-08 19:47:44 +03:00
}
else lua_pushnil(L);
1999-01-08 19:47:44 +03:00
}
static void setlocal (lua_State *L) {
2000-03-30 21:19:48 +04:00
lua_Debug ar;
lua_Localvar lvar;
2000-01-19 15:00:45 +03:00
if (!lua_getstack(L, luaL_check_int(L, 1), &ar)) /* level out of range? */
luaL_argerror(L, 1, "level out of range");
lvar.index = luaL_check_int(L, 2);
lvar.value = luaL_nonnullarg(L, 3);
if (lua_setlocal(L, &ar, &lvar))
lua_pushstring(L, lvar.name);
else lua_pushnil(L);
1999-01-08 19:47:44 +03:00
}
2000-03-03 17:58:26 +03:00
/*
** because of these variables, this module is not reentrant, and should
** not be used in multiple states
*/
1999-01-08 19:47:44 +03:00
static int linehook = LUA_NOREF; /* Lua reference to line hook function */
static int callhook = LUA_NOREF; /* Lua reference to call hook function */
1999-01-08 19:47:44 +03:00
2000-03-30 21:19:48 +04:00
static void linef (lua_State *L, lua_Debug *ar) {
if (linehook != LUA_NOREF) {
2000-01-19 15:00:45 +03:00
lua_pushnumber(L, ar->currentline);
lua_callfunction(L, lua_getref(L, linehook));
}
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) {
if (callhook != LUA_NOREF) {
2000-01-19 15:00:45 +03:00
lua_pushstring(L, ar->event);
lua_callfunction(L, lua_getref(L, callhook));
1999-01-08 19:47:44 +03:00
}
}
static void setcallhook (lua_State *L) {
lua_Object f = lua_getparam(L, 1);
lua_unref(L, callhook);
1999-01-08 19:47:44 +03:00
if (f == LUA_NOOBJECT) {
callhook = LUA_NOREF;
lua_setcallhook(L, NULL);
1999-01-08 19:47:44 +03:00
}
else {
lua_pushobject(L, f);
callhook = lua_ref(L, 1);
lua_setcallhook(L, callf);
1999-01-08 19:47:44 +03:00
}
}
static void setlinehook (lua_State *L) {
lua_Object f = lua_getparam(L, 1);
lua_unref(L, linehook);
1999-01-08 19:47:44 +03:00
if (f == LUA_NOOBJECT) {
linehook = LUA_NOREF;
lua_setlinehook(L, NULL);
1999-01-08 19:47:44 +03:00
}
else {
lua_pushobject(L, f);
linehook = lua_ref(L, 1);
lua_setlinehook(L, linef);
1999-01-08 19:47:44 +03:00
}
}
1999-08-17 00:52:00 +04:00
static const struct luaL_reg dblib[] = {
1999-01-08 19:47:44 +03:00
{"getlocal", getlocal},
{"getinfo", getinfo},
1999-01-08 19:47:44 +03:00
{"setcallhook", setcallhook},
{"setlinehook", setlinehook},
{"setlocal", setlocal}
};
void lua_dblibopen (lua_State *L) {
1999-11-22 20:39:51 +03:00
luaL_openl(L, dblib);
1999-01-08 19:47:44 +03:00
}