Github User Fetcher 1.0.0
C Application with Server and GUI
Loading...
Searching...
No Matches
ldblib.c File Reference
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "lua.h"
#include "lauxlib.h"
#include "lualib.h"

Go to the source code of this file.

Macros

#define ldblib_c
 
#define LUA_LIB
 
#define LEVELS1   12 /* size of the first part of the stack */
 
#define LEVELS2   10 /* size of the second part of the stack */
 

Functions

static int db_getregistry (lua_State *L)
 
static int db_getmetatable (lua_State *L)
 
static int db_setmetatable (lua_State *L)
 
static int db_getfenv (lua_State *L)
 
static int db_setfenv (lua_State *L)
 
static void settabss (lua_State *L, const char *i, const char *v)
 
static void settabsi (lua_State *L, const char *i, int v)
 
static lua_Stategetthread (lua_State *L, int *arg)
 
static void treatstackoption (lua_State *L, lua_State *L1, const char *fname)
 
static int db_getinfo (lua_State *L)
 
static int db_getlocal (lua_State *L)
 
static int db_setlocal (lua_State *L)
 
static int auxupvalue (lua_State *L, int get)
 
static int db_getupvalue (lua_State *L)
 
static int db_setupvalue (lua_State *L)
 
static void hookf (lua_State *L, lua_Debug *ar)
 
static int makemask (const char *smask, int count)
 
static char * unmakemask (int mask, char *smask)
 
static void gethooktable (lua_State *L)
 
static int db_sethook (lua_State *L)
 
static int db_gethook (lua_State *L)
 
static int db_debug (lua_State *L)
 
static int db_errorfb (lua_State *L)
 
LUALIB_API int luaopen_debug (lua_State *L)
 

Variables

static const char KEY_HOOK = 'h'
 
static const luaL_Reg dblib []
 

Macro Definition Documentation

◆ ldblib_c

#define ldblib_c

Definition at line 12 of file lua-5.1.5/src/ldblib.c.

◆ LEVELS1

#define LEVELS1   12 /* size of the first part of the stack */

Definition at line 319 of file lua-5.1.5/src/ldblib.c.

Referenced by db_errorfb().

◆ LEVELS2

#define LEVELS2   10 /* size of the second part of the stack */

Definition at line 320 of file lua-5.1.5/src/ldblib.c.

Referenced by db_errorfb().

◆ LUA_LIB

#define LUA_LIB

Definition at line 13 of file lua-5.1.5/src/ldblib.c.

Function Documentation

◆ auxupvalue()

static int auxupvalue ( lua_State * L,
int get )
static

Definition at line 179 of file lua-5.1.5/src/ldblib.c.

179 {
180 const char *name;
181 int n = luaL_checkint(L, 2);
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;
187 lua_insert(L, -(get+1));
188 return get + 1;
189}
#define NULL
Definition gmacros.h:924
const char * name
Definition lsqlite3.c:2154
LUA_API void lua_pushstring(lua_State *L, const char *s)
LUA_API const char * lua_getupvalue(lua_State *L, int funcindex, int n)
LUA_API int lua_iscfunction(lua_State *L, int idx)
LUA_API const char * lua_setupvalue(lua_State *L, int funcindex, int n)
LUALIB_API void luaL_checktype(lua_State *L, int narg, int t)
#define luaL_checkint(L, n)
#define LUA_TFUNCTION
#define lua_insert(L, idx)

References lua_getupvalue(), lua_insert, lua_iscfunction(), lua_pushstring(), lua_setupvalue(), LUA_TFUNCTION, luaL_checkint, luaL_checktype(), name, and NULL.

Referenced by db_getupvalue(), and db_setupvalue().

◆ db_debug()

static int db_debug ( lua_State * L)
static

Definition at line 302 of file lua-5.1.5/src/ldblib.c.

302 {
303 for (;;) {
304 char buffer[250];
305 fputs("lua_debug> ", stderr);
306 if (fgets(buffer, sizeof(buffer), stdin) == 0 ||
307 strcmp(buffer, "cont\n") == 0)
308 return 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);
312 fputs("\n", stderr);
313 }
314 lua_settop(L, 0); /* remove eventual returns */
315 }
316}
LUA_API void lua_settop(lua_State *L, int idx)
#define lua_tostring(L, i)
#define luaL_loadbuffer(L, s, sz, n)
#define lua_pcall(L, n, r, f)

References lua_pcall, lua_settop(), lua_tostring, and luaL_loadbuffer.

◆ db_errorfb()

static int db_errorfb ( lua_State * L)
static

Definition at line 322 of file lua-5.1.5/src/ldblib.c.

322 {
323 int level;
324 int firstpart = 1; /* still before eventual `...' */
325 int arg;
326 lua_State *L1 = getthread(L, &arg);
327 lua_Debug ar;
328 if (lua_isnumber(L, arg+2)) {
329 level = (int)lua_tointeger(L, arg+2);
330 lua_pop(L, 1);
331 }
332 else
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 */
344 else {
345 lua_pushliteral(L, "\n\t..."); /* too many levels */
346 while (lua_getstack(L1, level+LEVELS2, &ar)) /* find last levels */
347 level++;
348 }
349 firstpart = 0;
350 continue;
351 }
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);
359 else {
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 */
364 else
365 lua_pushfstring(L, " in function <%s:%d>",
366 ar.short_src, ar.linedefined);
367 }
368 lua_concat(L, lua_gettop(L) - arg);
369 }
370 lua_concat(L, lua_gettop(L) - arg);
371 return 1;
372}
CURL_EXTERN int void * arg
Definition curl.h:2622
LUA_API void lua_concat(lua_State *L, int n)
LUA_API const char * lua_pushfstring(lua_State *L, const char *fmt,...)
LUA_API int lua_isnumber(lua_State *L, int idx)
LUA_API int lua_isstring(lua_State *L, int idx)
LUA_API int lua_gettop(lua_State *L)
static lua_State * getthread(lua_State *L, int *arg)
#define LEVELS2
#define LEVELS1
LUA_API int lua_getstack(lua_State *L, int level, lua_Debug *ar)
LUA_API int lua_getinfo(lua_State *L, const char *what, lua_Debug *ar)
#define lua_pushliteral(L, s)
#define lua_pop(L, n)
#define LUA_QS
#define lua_tointeger(L, i)
const char * what
char short_src[LUA_IDSIZE]
const char * name
const char * namewhat

References arg, lua_Debug::currentline, getthread(), LEVELS1, LEVELS2, lua_Debug::linedefined, lua_concat(), lua_getinfo(), lua_getstack(), lua_gettop(), lua_isnumber(), lua_isstring(), lua_pop, lua_pushfstring(), lua_pushliteral, LUA_QS, lua_tointeger, lua_Debug::name, lua_Debug::namewhat, lua_Debug::short_src, and lua_Debug::what.

◆ db_getfenv()

static int db_getfenv ( lua_State * L)
static

Definition at line 47 of file lua-5.1.5/src/ldblib.c.

47 {
48 luaL_checkany(L, 1);
49 lua_getfenv(L, 1);
50 return 1;
51}
LUA_API void lua_getfenv(lua_State *L, int idx)
LUALIB_API void luaL_checkany(lua_State *L, int narg)

References lua_getfenv(), and luaL_checkany().

◆ db_gethook()

static int db_gethook ( lua_State * L)
static

Definition at line 282 of file lua-5.1.5/src/ldblib.c.

282 {
283 int arg;
284 lua_State *L1 = getthread(L, &arg);
285 char buff[5];
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");
290 else {
291 gethooktable(L);
293 lua_rawget(L, -2); /* get hook */
294 lua_remove(L, -2); /* remove hook table */
295 }
296 lua_pushstring(L, unmakemask(mask, buff));
298 return 3;
299}
LUA_API void lua_rawget(lua_State *L, int idx)
LUA_API void lua_pushlightuserdata(lua_State *L, void *p)
LUA_API void lua_pushinteger(lua_State *L, lua_Integer n)
static void hookf(lua_State *L, lua_Debug *ar)
static char * unmakemask(int mask, char *smask)
LUA_API int lua_gethookmask(lua_State *L)
LUA_API int lua_gethookcount(lua_State *L)
LUA_API lua_Hook lua_gethook(lua_State *L)
void(* lua_Hook)(lua_State *L, lua_Debug *ar)
#define mask(n)
#define gethooktable(L)
#define lua_remove(L, idx)

References arg, gethooktable, getthread(), hookf(), lua_gethook(), lua_gethookcount(), lua_gethookmask(), lua_pushinteger(), lua_pushlightuserdata(), lua_pushliteral, lua_pushstring(), lua_rawget(), lua_remove, mask, NULL, and unmakemask().

◆ db_getinfo()

static int db_getinfo ( lua_State * L)
static

Definition at line 99 of file lua-5.1.5/src/ldblib.c.

99 {
100 lua_Debug ar;
101 int arg;
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 */
107 return 1;
108 }
109 }
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);
114 lua_xmove(L, L1, 1);
115 }
116 else
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);
127 }
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);
135 }
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 */
141}
LUA_API void lua_pushnil(lua_State *L)
LUA_API void lua_pushvalue(lua_State *L, int idx)
LUA_API void lua_createtable(lua_State *L, int narray, int nrec)
LUA_API void lua_xmove(lua_State *from, lua_State *to, int n)
LUALIB_API int luaL_argerror(lua_State *L, int narg, const char *extramsg)
#define luaL_optstring(L, n, d)
static void settabsi(lua_State *L, const char *i, int v)
static void treatstackoption(lua_State *L, lua_State *L1, const char *fname)
static void settabss(lua_State *L, const char *i, const char *v)
#define lua_isfunction(L, n)
const char * source

References arg, lua_Debug::currentline, getthread(), lua_Debug::lastlinedefined, lua_Debug::linedefined, lua_createtable(), lua_getinfo(), lua_getstack(), lua_isfunction, lua_isnumber(), lua_pushfstring(), lua_pushnil(), lua_pushvalue(), lua_tointeger, lua_tostring, lua_xmove(), luaL_argerror(), luaL_optstring, lua_Debug::name, lua_Debug::namewhat, lua_Debug::nups, settabsi(), settabss(), lua_Debug::short_src, lua_Debug::source, treatstackoption(), and lua_Debug::what.

◆ db_getlocal()

static int db_getlocal ( lua_State * L)
static

Definition at line 144 of file lua-5.1.5/src/ldblib.c.

144 {
145 int arg;
146 lua_State *L1 = getthread(L, &arg);
147 lua_Debug ar;
148 const char *name;
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));
152 if (name) {
153 lua_xmove(L1, L, 1);
155 lua_pushvalue(L, -2);
156 return 2;
157 }
158 else {
159 lua_pushnil(L);
160 return 1;
161 }
162}
LUA_API const char * lua_getlocal(lua_State *L, const lua_Debug *ar, int n)

References arg, getthread(), lua_getlocal(), lua_getstack(), lua_pushnil(), lua_pushstring(), lua_pushvalue(), lua_xmove(), luaL_argerror(), luaL_checkint, and name.

◆ db_getmetatable()

static int db_getmetatable ( lua_State * L)
static

Definition at line 28 of file lua-5.1.5/src/ldblib.c.

28 {
29 luaL_checkany(L, 1);
30 if (!lua_getmetatable(L, 1)) {
31 lua_pushnil(L); /* no metatable */
32 }
33 return 1;
34}
LUA_API int lua_getmetatable(lua_State *L, int objindex)

References lua_getmetatable(), lua_pushnil(), and luaL_checkany().

◆ db_getregistry()

static int db_getregistry ( lua_State * L)
static

Definition at line 22 of file lua-5.1.5/src/ldblib.c.

22 {
24 return 1;
25}
#define LUA_REGISTRYINDEX

References lua_pushvalue(), and LUA_REGISTRYINDEX.

◆ db_getupvalue()

static int db_getupvalue ( lua_State * L)
static

Definition at line 192 of file lua-5.1.5/src/ldblib.c.

192 {
193 return auxupvalue(L, 1);
194}
static int auxupvalue(lua_State *L, int get)

References auxupvalue().

◆ db_setfenv()

static int db_setfenv ( lua_State * L)
static

Definition at line 54 of file lua-5.1.5/src/ldblib.c.

54 {
56 lua_settop(L, 2);
57 if (lua_setfenv(L, 1) == 0)
58 luaL_error(L, LUA_QL("setfenv")
59 " cannot change environment of given object");
60 return 1;
61}
LUA_API int lua_setfenv(lua_State *L, int idx)
LUALIB_API int luaL_error(lua_State *L, const char *fmt,...)
#define LUA_TTABLE
#define LUA_QL(x)

References LUA_QL, lua_setfenv(), lua_settop(), LUA_TTABLE, luaL_checktype(), and luaL_error().

◆ db_sethook()

static int db_sethook ( lua_State * L)
static

Definition at line 258 of file lua-5.1.5/src/ldblib.c.

258 {
259 int arg, mask, count;
260 lua_Hook func;
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 */
265 }
266 else {
267 const char *smask = luaL_checkstring(L, arg+2);
269 count = luaL_optint(L, arg+3, 0);
270 func = hookf; mask = makemask(smask, count);
271 }
272 gethooktable(L);
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 */
278 return 0;
279}
LUA_API void lua_rawset(lua_State *L, int idx)
#define luaL_optint(L, n, d)
#define luaL_checkstring(L, n)
static int makemask(const char *smask, int count)
LUA_API int lua_sethook(lua_State *L, lua_Hook func, int mask, int count)
#define lua_isnoneornil(L, n)

References arg, gethooktable, getthread(), hookf(), lua_isnoneornil, lua_pop, lua_pushlightuserdata(), lua_pushvalue(), lua_rawset(), lua_sethook(), lua_settop(), LUA_TFUNCTION, luaL_checkstring, luaL_checktype(), luaL_optint, makemask(), mask, and NULL.

◆ db_setlocal()

static int db_setlocal ( lua_State * L)
static

Definition at line 165 of file lua-5.1.5/src/ldblib.c.

165 {
166 int arg;
167 lua_State *L1 = getthread(L, &arg);
168 lua_Debug ar;
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);
173 lua_xmove(L, L1, 1);
174 lua_pushstring(L, lua_setlocal(L1, &ar, luaL_checkint(L, arg+2)));
175 return 1;
176}
LUA_API const char * lua_setlocal(lua_State *L, const lua_Debug *ar, int n)

References arg, getthread(), lua_getstack(), lua_pushstring(), lua_setlocal(), lua_settop(), lua_xmove(), luaL_argerror(), luaL_checkany(), and luaL_checkint.

◆ db_setmetatable()

static int db_setmetatable ( lua_State * L)
static

Definition at line 37 of file lua-5.1.5/src/ldblib.c.

37 {
38 int t = lua_type(L, 2);
39 luaL_argcheck(L, t == LUA_TNIL || t == LUA_TTABLE, 2,
40 "nil or table expected");
41 lua_settop(L, 2);
43 return 1;
44}
LUA_API int lua_setmetatable(lua_State *L, int objindex)
LUA_API void lua_pushboolean(lua_State *L, int b)
LUA_API int lua_type(lua_State *L, int idx)
#define luaL_argcheck(L, cond, numarg, extramsg)
#define LUA_TNIL

References lua_pushboolean(), lua_setmetatable(), lua_settop(), LUA_TNIL, LUA_TTABLE, lua_type(), and luaL_argcheck.

◆ db_setupvalue()

static int db_setupvalue ( lua_State * L)
static

Definition at line 197 of file lua-5.1.5/src/ldblib.c.

197 {
198 luaL_checkany(L, 3);
199 return auxupvalue(L, 0);
200}

References auxupvalue(), and luaL_checkany().

◆ gethooktable()

static void gethooktable ( lua_State * L)
static

Definition at line 245 of file lua-5.1.5/src/ldblib.c.

245 {
246 lua_pushlightuserdata(L, (void *)&KEY_HOOK);
248 if (!lua_istable(L, -1)) {
249 lua_pop(L, 1);
250 lua_createtable(L, 0, 1);
251 lua_pushlightuserdata(L, (void *)&KEY_HOOK);
252 lua_pushvalue(L, -2);
254 }
255}
static const char KEY_HOOK
#define lua_istable(L, n)

References KEY_HOOK, lua_createtable(), lua_istable, lua_pop, lua_pushlightuserdata(), lua_pushvalue(), lua_rawget(), lua_rawset(), and LUA_REGISTRYINDEX.

◆ getthread()

static lua_State * getthread ( lua_State * L,
int * arg )
static

Definition at line 76 of file lua-5.1.5/src/ldblib.c.

76 {
77 if (lua_isthread(L, 1)) {
78 *arg = 1;
79 return lua_tothread(L, 1);
80 }
81 else {
82 *arg = 0;
83 return L;
84 }
85}
LUA_API lua_State * lua_tothread(lua_State *L, int idx)
#define lua_isthread(L, n)

References arg, lua_isthread, and lua_tothread().

Referenced by db_errorfb(), db_gethook(), db_getinfo(), db_getlocal(), db_sethook(), and db_setlocal().

◆ hookf()

static void hookf ( lua_State * L,
lua_Debug * ar )
static

Definition at line 207 of file lua-5.1.5/src/ldblib.c.

207 {
208 static const char *const hooknames[] =
209 {"call", "return", "line", "count", "tail return"};
210 lua_pushlightuserdata(L, (void *)&KEY_HOOK);
213 lua_rawget(L, -2);
214 if (lua_isfunction(L, -1)) {
215 lua_pushstring(L, hooknames[(int)ar->event]);
216 if (ar->currentline >= 0)
218 else lua_pushnil(L);
219 lua_assert(lua_getinfo(L, "lS", ar));
220 lua_call(L, 2, 0);
221 }
222}
#define lua_assert(c)
#define lua_call(L, n, r)

References lua_Debug::currentline, lua_Debug::event, KEY_HOOK, lua_assert, lua_call, lua_getinfo(), lua_isfunction, lua_pushinteger(), lua_pushlightuserdata(), lua_pushnil(), lua_pushstring(), lua_rawget(), and LUA_REGISTRYINDEX.

Referenced by db_gethook(), and db_sethook().

◆ luaopen_debug()

LUALIB_API int luaopen_debug ( lua_State * L)

Definition at line 394 of file lua-5.1.5/src/ldblib.c.

394 {
396 return 1;
397}
LUALIB_API void luaL_register(lua_State *L, const char *libname, const luaL_Reg *l)
static const luaL_Reg dblib[]
#define LUA_DBLIBNAME

References dblib, LUA_DBLIBNAME, and luaL_register().

◆ makemask()

static int makemask ( const char * smask,
int count )
static

Definition at line 225 of file lua-5.1.5/src/ldblib.c.

225 {
226 int mask = 0;
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;
231 return mask;
232}
#define LUA_MASKCOUNT
#define LUA_MASKCALL
#define LUA_MASKLINE
#define LUA_MASKRET

References LUA_MASKCALL, LUA_MASKCOUNT, LUA_MASKLINE, LUA_MASKRET, and mask.

Referenced by db_sethook().

◆ settabsi()

static void settabsi ( lua_State * L,
const char * i,
int v )
static

Definition at line 70 of file lua-5.1.5/src/ldblib.c.

70 {
71 lua_pushinteger(L, v);
72 lua_setfield(L, -2, i);
73}
LUA_API void lua_setfield(lua_State *L, int idx, const char *k)

References lua_pushinteger(), and lua_setfield().

Referenced by db_getinfo().

◆ settabss()

static void settabss ( lua_State * L,
const char * i,
const char * v )
static

Definition at line 64 of file lua-5.1.5/src/ldblib.c.

64 {
65 lua_pushstring(L, v);
66 lua_setfield(L, -2, i);
67}

References lua_pushstring(), and lua_setfield().

Referenced by db_getinfo().

◆ treatstackoption()

static void treatstackoption ( lua_State * L,
lua_State * L1,
const char * fname )
static

Definition at line 88 of file lua-5.1.5/src/ldblib.c.

88 {
89 if (L == L1) {
90 lua_pushvalue(L, -2);
91 lua_remove(L, -3);
92 }
93 else
94 lua_xmove(L1, L, 1);
95 lua_setfield(L, -2, fname);
96}

References lua_pushvalue(), lua_remove, lua_setfield(), and lua_xmove().

Referenced by db_getinfo().

◆ unmakemask()

static char * unmakemask ( int mask,
char * smask )
static

Definition at line 235 of file lua-5.1.5/src/ldblib.c.

235 {
236 int i = 0;
237 if (mask & LUA_MASKCALL) smask[i++] = 'c';
238 if (mask & LUA_MASKRET) smask[i++] = 'r';
239 if (mask & LUA_MASKLINE) smask[i++] = 'l';
240 smask[i] = '\0';
241 return smask;
242}

References LUA_MASKCALL, LUA_MASKLINE, LUA_MASKRET, and mask.

Referenced by db_gethook().

Variable Documentation

◆ dblib

const luaL_Reg dblib[]
static
Initial value:
= {
{"debug", db_debug},
{"getfenv", db_getfenv},
{"gethook", db_gethook},
{"getinfo", db_getinfo},
{"getlocal", db_getlocal},
{"getregistry", db_getregistry},
{"getmetatable", db_getmetatable},
{"getupvalue", db_getupvalue},
{"setfenv", db_setfenv},
{"sethook", db_sethook},
{"setlocal", db_setlocal},
{"setmetatable", db_setmetatable},
{"setupvalue", db_setupvalue},
{"traceback", db_errorfb},
}
static int db_setlocal(lua_State *L)
static int db_setmetatable(lua_State *L)
static int db_errorfb(lua_State *L)
static int db_getinfo(lua_State *L)
static int db_gethook(lua_State *L)
static int db_getupvalue(lua_State *L)
static int db_getregistry(lua_State *L)
static int db_sethook(lua_State *L)
static int db_getmetatable(lua_State *L)
static int db_setfenv(lua_State *L)
static int db_getfenv(lua_State *L)
static int db_setupvalue(lua_State *L)
static int db_debug(lua_State *L)
static int db_getlocal(lua_State *L)

Definition at line 375 of file lua-5.1.5/src/ldblib.c.

375 {
376 {"debug", db_debug},
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},
390 {NULL, NULL}
391};

Referenced by luaopen_debug().

◆ KEY_HOOK

const char KEY_HOOK = 'h'
static

Definition at line 204 of file lua-5.1.5/src/ldblib.c.

Referenced by gethooktable(), and hookf().