2 ** $Id: ldblib.c,v 1.104.1.3 2008/01/21 13:11:21 roberto Exp $
3 ** Interface from Lua to its debug API
4 ** See Copyright Notice in lua.h
23 static int db_getregistry (lua_State
*L
) {
24 lua_pushvalue(L
, LUA_REGISTRYINDEX
);
29 static int db_getmetatable (lua_State
*L
) {
31 if (!lua_getmetatable(L
, 1)) {
32 lua_pushnil(L
); /* no metatable */
38 static int db_setmetatable (lua_State
*L
) {
39 int t
= lua_type(L
, 2);
40 luaL_argcheck(L
, t
== LUA_TNIL
|| t
== LUA_TTABLE
, 2,
41 "nil or table expected");
43 lua_pushboolean(L
, lua_setmetatable(L
, 1));
48 static int db_getfenv (lua_State
*L
) {
54 static int db_setfenv (lua_State
*L
) {
55 luaL_checktype(L
, 2, LUA_TTABLE
);
57 if (lua_setfenv(L
, 1) == 0)
58 luaL_error(L
, LUA_QL("setfenv")
59 " cannot change environment of given object");
64 static void settabss (lua_State
*L
, const char *i
, const char *v
) {
66 lua_setfield(L
, -2, i
);
70 static void settabsi (lua_State
*L
, const char *i
, int v
) {
71 lua_pushinteger(L
, v
);
72 lua_setfield(L
, -2, i
);
76 static lua_State
*getthread (lua_State
*L
, int *arg
) {
77 if (lua_isthread(L
, 1)) {
79 return lua_tothread(L
, 1);
88 static void treatstackoption (lua_State
*L
, lua_State
*L1
, const char *fname
) {
95 lua_setfield(L
, -2, fname
);
99 static int db_getinfo (lua_State
*L
) {
102 lua_State
*L1
= getthread(L
, &arg
);
103 const char *options
= luaL_optstring(L
, arg
+2, "flnSu");
104 if (lua_isnumber(L
, arg
+1)) {
105 if (!lua_getstack(L1
, (int)lua_tointeger(L
, arg
+1), &ar
)) {
106 lua_pushnil(L
); /* level out of range */
110 else if (lua_isfunction(L
, arg
+1)) {
111 lua_pushfstring(L
, ">%s", options
);
112 options
= lua_tostring(L
, -1);
113 lua_pushvalue(L
, arg
+1);
117 return luaL_argerror(L
, arg
+1, "function or level expected");
118 if (!lua_getinfo(L1
, options
, &ar
))
119 return luaL_argerror(L
, arg
+2, "invalid option");
120 lua_createtable(L
, 0, 2);
121 if (strchr(options
, 'S')) {
122 settabss(L
, "source", ar
.source
);
123 settabss(L
, "short_src", ar
.short_src
);
124 settabsi(L
, "linedefined", ar
.linedefined
);
125 settabsi(L
, "lastlinedefined", ar
.lastlinedefined
);
126 settabss(L
, "what", ar
.what
);
128 if (strchr(options
, 'l'))
129 settabsi(L
, "currentline", ar
.currentline
);
130 if (strchr(options
, 'u'))
131 settabsi(L
, "nups", ar
.nups
);
132 if (strchr(options
, 'n')) {
133 settabss(L
, "name", ar
.name
);
134 settabss(L
, "namewhat", ar
.namewhat
);
136 if (strchr(options
, 'L'))
137 treatstackoption(L
, L1
, "activelines");
138 if (strchr(options
, 'f'))
139 treatstackoption(L
, L1
, "func");
140 return 1; /* return table */
144 static int db_getlocal (lua_State
*L
) {
146 lua_State
*L1
= getthread(L
, &arg
);
149 if (!lua_getstack(L1
, luaL_checkint(L
, arg
+1), &ar
)) /* out of range? */
150 return luaL_argerror(L
, arg
+1, "level out of range");
151 name
= lua_getlocal(L1
, &ar
, luaL_checkint(L
, arg
+2));
154 lua_pushstring(L
, name
);
155 lua_pushvalue(L
, -2);
165 static int db_setlocal (lua_State
*L
) {
167 lua_State
*L1
= getthread(L
, &arg
);
169 if (!lua_getstack(L1
, luaL_checkint(L
, arg
+1), &ar
)) /* out of range? */
170 return luaL_argerror(L
, arg
+1, "level out of range");
171 luaL_checkany(L
, arg
+3);
172 lua_settop(L
, arg
+3);
174 lua_pushstring(L
, lua_setlocal(L1
, &ar
, luaL_checkint(L
, arg
+2)));
179 static int auxupvalue (lua_State
*L
, int get
) {
181 int n
= luaL_checkint(L
, 2);
182 luaL_checktype(L
, 1, LUA_TFUNCTION
);
183 if (lua_iscfunction(L
, 1)) return 0; /* cannot touch C upvalues from Lua */
184 name
= get
? lua_getupvalue(L
, 1, n
) : lua_setupvalue(L
, 1, n
);
185 if (name
== NULL
) return 0;
186 lua_pushstring(L
, name
);
187 lua_insert(L
, -(get
+1));
192 static int db_getupvalue (lua_State
*L
) {
193 return auxupvalue(L
, 1);
197 static int db_setupvalue (lua_State
*L
) {
199 return auxupvalue(L
, 0);
204 static const char KEY_HOOK
= 'h';
207 static void hookf (lua_State
*L
, lua_Debug
*ar
) {
208 static const char *const hooknames
[] =
209 {"call", "return", "line", "count", "tail return"};
210 lua_pushlightuserdata(L
, (void *)&KEY_HOOK
);
211 lua_rawget(L
, LUA_REGISTRYINDEX
);
212 lua_pushlightuserdata(L
, L
);
214 if (lua_isfunction(L
, -1)) {
215 lua_pushstring(L
, hooknames
[(int)ar
->event
]);
216 if (ar
->currentline
>= 0)
217 lua_pushinteger(L
, ar
->currentline
);
219 lua_assert(lua_getinfo(L
, "lS", ar
));
225 static int makemask (const char *smask
, int count
) {
227 if (strchr(smask
, 'c')) mask
|= LUA_MASKCALL
;
228 if (strchr(smask
, 'r')) mask
|= LUA_MASKRET
;
229 if (strchr(smask
, 'l')) mask
|= LUA_MASKLINE
;
230 if (count
> 0) mask
|= LUA_MASKCOUNT
;
235 static char *unmakemask (int mask
, char *smask
) {
237 if (mask
& LUA_MASKCALL
) smask
[i
++] = 'c';
238 if (mask
& LUA_MASKRET
) smask
[i
++] = 'r';
239 if (mask
& LUA_MASKLINE
) smask
[i
++] = 'l';
245 static void gethooktable (lua_State
*L
) {
246 lua_pushlightuserdata(L
, (void *)&KEY_HOOK
);
247 lua_rawget(L
, LUA_REGISTRYINDEX
);
248 if (!lua_istable(L
, -1)) {
250 lua_createtable(L
, 0, 1);
251 lua_pushlightuserdata(L
, (void *)&KEY_HOOK
);
252 lua_pushvalue(L
, -2);
253 lua_rawset(L
, LUA_REGISTRYINDEX
);
258 static int db_sethook (lua_State
*L
) {
259 int arg
, mask
, count
;
261 lua_State
*L1
= getthread(L
, &arg
);
262 if (lua_isnoneornil(L
, arg
+1)) {
263 lua_settop(L
, arg
+1);
264 func
= NULL
; mask
= 0; count
= 0; /* turn off hooks */
267 const char *smask
= luaL_checkstring(L
, arg
+2);
268 luaL_checktype(L
, arg
+1, LUA_TFUNCTION
);
269 count
= luaL_optint(L
, arg
+3, 0);
270 func
= hookf
; mask
= makemask(smask
, count
);
273 lua_pushlightuserdata(L
, L1
);
274 lua_pushvalue(L
, arg
+1);
275 lua_rawset(L
, -3); /* set new hook */
276 lua_pop(L
, 1); /* remove hook table */
277 lua_sethook(L1
, func
, mask
, count
); /* set hooks */
282 static int db_gethook (lua_State
*L
) {
284 lua_State
*L1
= getthread(L
, &arg
);
286 int mask
= lua_gethookmask(L1
);
287 lua_Hook hook
= lua_gethook(L1
);
288 if (hook
!= NULL
&& hook
!= hookf
) /* external hook? */
289 lua_pushliteral(L
, "external hook");
292 lua_pushlightuserdata(L
, L1
);
293 lua_rawget(L
, -2); /* get hook */
294 lua_remove(L
, -2); /* remove hook table */
296 lua_pushstring(L
, unmakemask(mask
, buff
));
297 lua_pushinteger(L
, lua_gethookcount(L1
));
302 static int db_debug (lua_State
*L
) {
305 fputs("lua_debug> ", stderr
);
306 if (fgets(buffer
, sizeof(buffer
), stdin
) == 0 ||
307 strcmp(buffer
, "cont\n") == 0)
309 if (luaL_loadbuffer(L
, buffer
, strlen(buffer
), "=(debug command)") ||
310 lua_pcall(L
, 0, 0, 0)) {
311 fputs(lua_tostring(L
, -1), stderr
);
314 lua_settop(L
, 0); /* remove eventual returns */
319 #define LEVELS1 12 /* size of the first part of the stack */
320 #define LEVELS2 10 /* size of the second part of the stack */
322 static int db_errorfb (lua_State
*L
) {
324 int firstpart
= 1; /* still before eventual `...' */
326 lua_State
*L1
= getthread(L
, &arg
);
328 if (lua_isnumber(L
, arg
+2)) {
329 level
= (int)lua_tointeger(L
, arg
+2);
333 level
= (L
== L1
) ? 1 : 0; /* level 0 may be this own function */
334 if (lua_gettop(L
) == arg
)
335 lua_pushliteral(L
, "");
336 else if (!lua_isstring(L
, arg
+1)) return 1; /* message is not a string */
337 else lua_pushliteral(L
, "\n");
338 lua_pushliteral(L
, "stack traceback:");
339 while (lua_getstack(L1
, level
++, &ar
)) {
340 if (level
> LEVELS1
&& firstpart
) {
341 /* no more than `LEVELS2' more levels? */
342 if (!lua_getstack(L1
, level
+LEVELS2
, &ar
))
343 level
--; /* keep going */
345 lua_pushliteral(L
, "\n\t..."); /* too many levels */
346 while (lua_getstack(L1
, level
+LEVELS2
, &ar
)) /* find last levels */
352 lua_pushliteral(L
, "\n\t");
353 lua_getinfo(L1
, "Snl", &ar
);
354 lua_pushfstring(L
, "%s:", ar
.short_src
);
355 if (ar
.currentline
> 0)
356 lua_pushfstring(L
, "%d:", ar
.currentline
);
357 if (*ar
.namewhat
!= '\0') /* is there a name? */
358 lua_pushfstring(L
, " in function " LUA_QS
, ar
.name
);
360 if (*ar
.what
== 'm') /* main? */
361 lua_pushfstring(L
, " in main chunk");
362 else if (*ar
.what
== 'C' || *ar
.what
== 't')
363 lua_pushliteral(L
, " ?"); /* C function or tail call */
365 lua_pushfstring(L
, " in function <%s:%d>",
366 ar
.short_src
, ar
.linedefined
);
368 lua_concat(L
, lua_gettop(L
) - arg
);
370 lua_concat(L
, lua_gettop(L
) - arg
);
375 static const luaL_Reg dblib
[] = {
377 {"getfenv", db_getfenv
},
378 {"gethook", db_gethook
},
379 {"getinfo", db_getinfo
},
380 {"getlocal", db_getlocal
},
381 {"getregistry", db_getregistry
},
382 {"getmetatable", db_getmetatable
},
383 {"getupvalue", db_getupvalue
},
384 {"setfenv", db_setfenv
},
385 {"sethook", db_sethook
},
386 {"setlocal", db_setlocal
},
387 {"setmetatable", db_setmetatable
},
388 {"setupvalue", db_setupvalue
},
389 {"traceback", db_errorfb
},
394 LUALIB_API
int luaopen_debug (lua_State
*L
) {
395 luaL_register(L
, LUA_DBLIBNAME
, dblib
);