1995-10-17 17:12:45 +03:00
|
|
|
/*
|
2002-07-09 00:22:08 +04:00
|
|
|
** $Id: luadebug.h,v 1.29 2002/07/08 18:21:33 roberto Exp roberto $
|
1998-06-19 20:14:09 +04:00
|
|
|
** Debugging API
|
1997-09-16 23:25:59 +04:00
|
|
|
** See Copyright Notice in lua.h
|
1995-10-17 17:12:45 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef luadebug_h
|
|
|
|
#define luadebug_h
|
|
|
|
|
1997-09-16 23:25:59 +04:00
|
|
|
|
1995-10-17 17:12:45 +03:00
|
|
|
#include "lua.h"
|
|
|
|
|
2002-07-08 22:21:33 +04:00
|
|
|
typedef enum lua_Hookevent {
|
|
|
|
LUA_HOOKCALL, LUA_HOOKRET, LUA_HOOKLINE, LUA_HOOKCOUNT
|
|
|
|
} lua_Hookevent;
|
|
|
|
|
|
|
|
|
|
|
|
#define LUA_MASKCALL (2 << LUA_HOOKCALL)
|
|
|
|
#define LUA_MASKRET (2 << LUA_HOOKRET)
|
|
|
|
#define LUA_MASKLINE (2 << LUA_HOOKLINE)
|
2002-07-09 00:22:08 +04:00
|
|
|
#define LUA_MASKCOUNT(count) ((count) << (LUA_HOOKCOUNT+1))
|
2002-07-08 22:21:33 +04:00
|
|
|
#define lua_getmaskcount(mask) ((mask) >> (LUA_HOOKCOUNT+1))
|
|
|
|
|
2000-03-30 21:19:48 +04:00
|
|
|
typedef struct lua_Debug lua_Debug; /* activation record */
|
1996-02-08 20:03:20 +03:00
|
|
|
|
2000-03-30 21:19:48 +04:00
|
|
|
typedef void (*lua_Hook) (lua_State *L, lua_Debug *ar);
|
1996-01-09 23:22:44 +03:00
|
|
|
|
1995-10-17 17:12:45 +03:00
|
|
|
|
2000-10-20 20:39:03 +04:00
|
|
|
LUA_API int lua_getstack (lua_State *L, int level, lua_Debug *ar);
|
2001-11-28 23:13:13 +03:00
|
|
|
LUA_API int lua_getinfo (lua_State *L, const char *what, lua_Debug *ar);
|
|
|
|
LUA_API const char *lua_getlocal (lua_State *L, const lua_Debug *ar, int n);
|
|
|
|
LUA_API const char *lua_setlocal (lua_State *L, const lua_Debug *ar, int n);
|
1996-02-07 21:10:27 +03:00
|
|
|
|
2002-07-08 22:21:33 +04:00
|
|
|
LUA_API int lua_sethook (lua_State *L, lua_Hook func, int mask);
|
|
|
|
LUA_API lua_Hook lua_gethook (lua_State *L);
|
|
|
|
LUA_API int lua_gethookmask (lua_State *L);
|
2000-01-19 15:00:45 +03:00
|
|
|
|
|
|
|
|
2000-09-12 00:29:27 +04:00
|
|
|
#define LUA_IDSIZE 60
|
2000-01-19 15:00:45 +03:00
|
|
|
|
2000-03-30 21:19:48 +04:00
|
|
|
struct lua_Debug {
|
2002-07-08 22:21:33 +04:00
|
|
|
lua_Hookevent event;
|
2002-06-18 21:10:43 +04:00
|
|
|
const char *name; /* (n) */
|
|
|
|
const char *namewhat; /* (n) `global', `local', `field', `method' */
|
|
|
|
const char *what; /* (S) `Lua' function, `C' function, Lua `main' */
|
|
|
|
const char *source; /* (S) */
|
|
|
|
int currentline; /* (l) */
|
|
|
|
int isprotected; /* (c) function was called in protected mode */
|
|
|
|
int nups; /* (u) number of upvalues */
|
|
|
|
int linedefined; /* (S) */
|
2001-11-28 23:13:13 +03:00
|
|
|
char short_src[LUA_IDSIZE]; /* (S) */
|
2000-01-19 15:00:45 +03:00
|
|
|
/* private part */
|
2002-03-11 15:45:00 +03:00
|
|
|
int i_ci; /* active function */
|
2000-01-19 15:00:45 +03:00
|
|
|
};
|
|
|
|
|
1999-01-15 16:11:22 +03:00
|
|
|
|
1995-10-17 17:12:45 +03:00
|
|
|
#endif
|