1999-01-08 19:47:44 +03:00
|
|
|
/*
|
2000-08-28 21:57:04 +04:00
|
|
|
** $Id: ldblib.c,v 1.18 2000/08/09 19:16:57 roberto Exp roberto $
|
1999-01-08 19:47:44 +03:00
|
|
|
** Interface from Lua to its debug API
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2000-05-12 23:49:18 +04:00
|
|
|
#include <stdio.h>
|
1999-01-08 19:47:44 +03:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "lua.h"
|
2000-06-12 17:52:05 +04:00
|
|
|
|
|
|
|
#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
|
|
|
|
|
|
|
|
|
|
|
|
2000-08-28 21:57:04 +04:00
|
|
|
static void settabss (lua_State *L, const char *i, const char *v) {
|
|
|
|
lua_pushobject(L, -1);
|
1999-11-22 16:12:07 +03:00
|
|
|
lua_pushstring(L, i);
|
|
|
|
lua_pushstring(L, v);
|
|
|
|
lua_settable(L);
|
1999-01-08 19:47:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-08-28 21:57:04 +04:00
|
|
|
static void settabsi (lua_State *L, const char *i, int v) {
|
|
|
|
lua_pushobject(L, -1);
|
1999-11-22 16:12:07 +03:00
|
|
|
lua_pushstring(L, i);
|
|
|
|
lua_pushnumber(L, v);
|
|
|
|
lua_settable(L);
|
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;
|
2000-05-12 23:49:18 +04:00
|
|
|
const char *options = luaL_opt_string(L, 2, "flnSu");
|
|
|
|
char buff[20];
|
2000-08-28 21:57:04 +04:00
|
|
|
if (lua_isnumber(L, 1)) {
|
|
|
|
if (!lua_getstack(L, (int)lua_tonumber(L, 1), &ar)) {
|
2000-05-12 23:49:18 +04:00
|
|
|
lua_pushnil(L); /* level out of range */
|
2000-08-28 21:57:04 +04:00
|
|
|
return 1;
|
2000-05-12 23:49:18 +04:00
|
|
|
}
|
|
|
|
}
|
2000-08-28 21:57:04 +04:00
|
|
|
else if (lua_isfunction(L, 1)) {
|
|
|
|
lua_pushobject(L, 1);
|
2000-05-12 23:49:18 +04:00
|
|
|
sprintf(buff, ">%.10s", options);
|
|
|
|
options = buff;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
luaL_argerror(L, 1, "function or level expected");
|
|
|
|
if (!lua_getinfo(L, options, &ar))
|
|
|
|
luaL_argerror(L, 2, "invalid option");
|
2000-08-28 21:57:04 +04:00
|
|
|
lua_newtable(L);
|
2000-05-12 23:49:18 +04:00
|
|
|
for (; *options; options++) {
|
|
|
|
switch (*options) {
|
|
|
|
case 'S':
|
2000-08-28 21:57:04 +04:00
|
|
|
settabss(L, "source", ar.source);
|
|
|
|
settabsi(L, "linedefined", ar.linedefined);
|
|
|
|
settabss(L, "what", ar.what);
|
2000-05-12 23:49:18 +04:00
|
|
|
break;
|
|
|
|
case 'l':
|
2000-08-28 21:57:04 +04:00
|
|
|
settabsi(L, "currentline", ar.currentline);
|
2000-05-12 23:49:18 +04:00
|
|
|
break;
|
|
|
|
case 'u':
|
2000-08-28 21:57:04 +04:00
|
|
|
settabsi(L, "nups", ar.nups);
|
2000-05-12 23:49:18 +04:00
|
|
|
break;
|
|
|
|
case 'n':
|
2000-08-28 21:57:04 +04:00
|
|
|
settabss(L, "name", ar.name);
|
|
|
|
settabss(L, "namewhat", ar.namewhat);
|
2000-05-12 23:49:18 +04:00
|
|
|
break;
|
|
|
|
case 'f':
|
2000-08-28 21:57:04 +04:00
|
|
|
lua_pushobject(L, -1);
|
|
|
|
lua_pushstring(L, "func");
|
|
|
|
lua_pushobject(L, -4);
|
|
|
|
lua_settable(L);
|
2000-05-12 23:49:18 +04:00
|
|
|
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;
|
2000-08-28 21:57:04 +04:00
|
|
|
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? */
|
|
|
|
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);
|
|
|
|
lua_pushobject(L, -2);
|
|
|
|
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? */
|
|
|
|
luaL_argerror(L, 1, "level out of range");
|
2000-08-28 21:57:04 +04:00
|
|
|
luaL_checktype(L, 3, "any");
|
|
|
|
lua_pushstring(L, lua_setlocal(L, &ar, luaL_check_int(L, 2)));
|
|
|
|
return 1;
|
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
|
|
|
|
1999-12-21 21:04:41 +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) {
|
1999-12-21 21:04:41 +03:00
|
|
|
if (linehook != LUA_NOREF) {
|
2000-08-28 21:57:04 +04:00
|
|
|
lua_getref(L, linehook);
|
2000-01-19 15:00:45 +03:00
|
|
|
lua_pushnumber(L, ar->currentline);
|
2000-08-28 21:57:04 +04:00
|
|
|
lua_call(L, 1, 0);
|
1999-12-21 21:04:41 +03:00
|
|
|
}
|
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) {
|
1999-12-21 21:04:41 +03:00
|
|
|
if (callhook != LUA_NOREF) {
|
2000-08-28 21:57:04 +04:00
|
|
|
lua_getref(L, callhook);
|
2000-01-19 15:00:45 +03:00
|
|
|
lua_pushstring(L, ar->event);
|
2000-08-28 21:57:04 +04:00
|
|
|
lua_call(L, 1, 0);
|
1999-01-08 19:47:44 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-08-28 21:57:04 +04:00
|
|
|
static int setcallhook (lua_State *L) {
|
1999-11-22 16:12:07 +03:00
|
|
|
lua_unref(L, callhook);
|
2000-08-28 21:57:04 +04:00
|
|
|
if (lua_isnull(L, 1)) {
|
1999-12-21 21:04:41 +03:00
|
|
|
callhook = LUA_NOREF;
|
1999-11-22 16:12:07 +03:00
|
|
|
lua_setcallhook(L, NULL);
|
1999-01-08 19:47:44 +03:00
|
|
|
}
|
|
|
|
else {
|
1999-11-22 16:12:07 +03:00
|
|
|
callhook = lua_ref(L, 1);
|
|
|
|
lua_setcallhook(L, callf);
|
1999-01-08 19:47:44 +03:00
|
|
|
}
|
2000-08-28 21:57:04 +04:00
|
|
|
return 0;
|
1999-01-08 19:47:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-08-28 21:57:04 +04:00
|
|
|
static int setlinehook (lua_State *L) {
|
1999-11-22 16:12:07 +03:00
|
|
|
lua_unref(L, linehook);
|
2000-08-28 21:57:04 +04:00
|
|
|
if (lua_isnull(L, 1)) {
|
1999-12-21 21:04:41 +03:00
|
|
|
linehook = LUA_NOREF;
|
1999-11-22 16:12:07 +03:00
|
|
|
lua_setlinehook(L, NULL);
|
1999-01-08 19:47:44 +03:00
|
|
|
}
|
|
|
|
else {
|
1999-11-22 16:12:07 +03:00
|
|
|
linehook = lua_ref(L, 1);
|
|
|
|
lua_setlinehook(L, linef);
|
1999-01-08 19:47:44 +03:00
|
|
|
}
|
2000-08-28 21:57:04 +04:00
|
|
|
return 0;
|
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},
|
2000-05-12 23:49:18 +04:00
|
|
|
{"getinfo", getinfo},
|
1999-01-08 19:47:44 +03:00
|
|
|
{"setcallhook", setcallhook},
|
|
|
|
{"setlinehook", setlinehook},
|
|
|
|
{"setlocal", setlocal}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
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
|
|
|
}
|
|
|
|
|