Tamar 0.7.5 → 0.7.6
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitmodules +3 -0
- data/HISTORY +22 -5
- data/Tamar.gemspec +114 -1
- data/VERSION +1 -1
- data/src/lua/CMakeLists.txt +176 -0
- data/src/lua/COPYRIGHT +34 -0
- data/src/lua/FindReadline.cmake +25 -0
- data/src/lua/HISTORY +183 -0
- data/src/lua/INSTALL +99 -0
- data/src/lua/Makefile +128 -0
- data/src/lua/README +46 -0
- data/src/lua/dist.cmake +450 -0
- data/src/lua/dist.info +10 -0
- data/src/lua/doc/amazon.gif +0 -0
- data/src/lua/doc/contents.html +499 -0
- data/src/lua/doc/cover.png +0 -0
- data/src/lua/doc/logo.gif +0 -0
- data/src/lua/doc/lua.1 +163 -0
- data/src/lua/doc/lua.css +41 -0
- data/src/lua/doc/lua.html +172 -0
- data/src/lua/doc/luac.1 +136 -0
- data/src/lua/doc/luac.html +145 -0
- data/src/lua/doc/manual.css +13 -0
- data/src/lua/doc/manual.html +8801 -0
- data/src/lua/doc/readme.html +40 -0
- data/src/lua/etc/Makefile +44 -0
- data/src/lua/etc/README +37 -0
- data/src/lua/etc/all.c +38 -0
- data/src/lua/etc/lua.hpp +9 -0
- data/src/lua/etc/lua.ico +0 -0
- data/src/lua/etc/lua.pc +31 -0
- data/src/lua/etc/luavs.bat +28 -0
- data/src/lua/etc/min.c +39 -0
- data/src/lua/etc/noparser.c +50 -0
- data/src/lua/etc/strict.lua +41 -0
- data/src/lua/src/Makefile +182 -0
- data/src/lua/src/lapi.c +1087 -0
- data/src/lua/src/lapi.h +16 -0
- data/src/lua/src/lauxlib.c +652 -0
- data/src/lua/src/lauxlib.h +174 -0
- data/src/lua/src/lbaselib.c +653 -0
- data/src/lua/src/lcode.c +831 -0
- data/src/lua/src/lcode.h +76 -0
- data/src/lua/src/ldblib.c +398 -0
- data/src/lua/src/ldebug.c +638 -0
- data/src/lua/src/ldebug.h +33 -0
- data/src/lua/src/ldo.c +518 -0
- data/src/lua/src/ldo.h +57 -0
- data/src/lua/src/ldump.c +164 -0
- data/src/lua/src/lfunc.c +174 -0
- data/src/lua/src/lfunc.h +34 -0
- data/src/lua/src/lgc.c +711 -0
- data/src/lua/src/lgc.h +110 -0
- data/src/lua/src/linit.c +38 -0
- data/src/lua/src/liolib.c +556 -0
- data/src/lua/src/llex.c +463 -0
- data/src/lua/src/llex.h +81 -0
- data/src/lua/src/llimits.h +128 -0
- data/src/lua/src/lmathlib.c +263 -0
- data/src/lua/src/lmem.c +86 -0
- data/src/lua/src/lmem.h +49 -0
- data/src/lua/src/loadlib.c +666 -0
- data/src/lua/src/loadlib_rel.c +719 -0
- data/src/lua/src/lobject.c +214 -0
- data/src/lua/src/lobject.h +381 -0
- data/src/lua/src/lopcodes.c +102 -0
- data/src/lua/src/lopcodes.h +268 -0
- data/src/lua/src/loslib.c +243 -0
- data/src/lua/src/lparser.c +1339 -0
- data/src/lua/src/lparser.h +82 -0
- data/src/lua/src/lstate.c +214 -0
- data/src/lua/src/lstate.h +169 -0
- data/src/lua/src/lstring.c +111 -0
- data/src/lua/src/lstring.h +31 -0
- data/src/lua/src/lstrlib.c +871 -0
- data/src/lua/src/ltable.c +588 -0
- data/src/lua/src/ltable.h +40 -0
- data/src/lua/src/ltablib.c +287 -0
- data/src/lua/src/ltm.c +75 -0
- data/src/lua/src/ltm.h +54 -0
- data/src/lua/src/lua.c +392 -0
- data/src/lua/src/lua.def +131 -0
- data/src/lua/src/lua.h +388 -0
- data/src/lua/src/lua.rc +28 -0
- data/src/lua/src/lua_dll.rc +26 -0
- data/src/lua/src/luac.c +200 -0
- data/src/lua/src/luac.rc +1 -0
- data/src/lua/src/luaconf.h.in +724 -0
- data/src/lua/src/luaconf.h.orig +763 -0
- data/src/lua/src/lualib.h +53 -0
- data/src/lua/src/lundump.c +227 -0
- data/src/lua/src/lundump.h +36 -0
- data/src/lua/src/lvm.c +766 -0
- data/src/lua/src/lvm.h +36 -0
- data/src/lua/src/lzio.c +82 -0
- data/src/lua/src/lzio.h +67 -0
- data/src/lua/src/print.c +227 -0
- data/src/lua/test/README +26 -0
- data/src/lua/test/bisect.lua +27 -0
- data/src/lua/test/cf.lua +16 -0
- data/src/lua/test/echo.lua +5 -0
- data/src/lua/test/env.lua +7 -0
- data/src/lua/test/factorial.lua +32 -0
- data/src/lua/test/fib.lua +40 -0
- data/src/lua/test/fibfor.lua +13 -0
- data/src/lua/test/globals.lua +13 -0
- data/src/lua/test/hello.lua +3 -0
- data/src/lua/test/life.lua +111 -0
- data/src/lua/test/luac.lua +7 -0
- data/src/lua/test/printf.lua +7 -0
- data/src/lua/test/readonly.lua +12 -0
- data/src/lua/test/sieve.lua +29 -0
- data/src/lua/test/sort.lua +66 -0
- data/src/lua/test/table.lua +12 -0
- data/src/lua/test/trace-calls.lua +32 -0
- data/src/lua/test/trace-globals.lua +38 -0
- data/src/lua/test/xd.lua +14 -0
- metadata +115 -2
data/src/lua/src/lcode.h
ADDED
@@ -0,0 +1,76 @@
|
|
1
|
+
/*
|
2
|
+
** $Id: lcode.h,v 1.48.1.1 2007/12/27 13:02:25 roberto Exp $
|
3
|
+
** Code generator for Lua
|
4
|
+
** See Copyright Notice in lua.h
|
5
|
+
*/
|
6
|
+
|
7
|
+
#ifndef lcode_h
|
8
|
+
#define lcode_h
|
9
|
+
|
10
|
+
#include "llex.h"
|
11
|
+
#include "lobject.h"
|
12
|
+
#include "lopcodes.h"
|
13
|
+
#include "lparser.h"
|
14
|
+
|
15
|
+
|
16
|
+
/*
|
17
|
+
** Marks the end of a patch list. It is an invalid value both as an absolute
|
18
|
+
** address, and as a list link (would link an element to itself).
|
19
|
+
*/
|
20
|
+
#define NO_JUMP (-1)
|
21
|
+
|
22
|
+
|
23
|
+
/*
|
24
|
+
** grep "ORDER OPR" if you change these enums
|
25
|
+
*/
|
26
|
+
typedef enum BinOpr {
|
27
|
+
OPR_ADD, OPR_SUB, OPR_MUL, OPR_DIV, OPR_MOD, OPR_POW,
|
28
|
+
OPR_CONCAT,
|
29
|
+
OPR_NE, OPR_EQ,
|
30
|
+
OPR_LT, OPR_LE, OPR_GT, OPR_GE,
|
31
|
+
OPR_AND, OPR_OR,
|
32
|
+
OPR_NOBINOPR
|
33
|
+
} BinOpr;
|
34
|
+
|
35
|
+
|
36
|
+
typedef enum UnOpr { OPR_MINUS, OPR_NOT, OPR_LEN, OPR_NOUNOPR } UnOpr;
|
37
|
+
|
38
|
+
|
39
|
+
#define getcode(fs,e) ((fs)->f->code[(e)->u.s.info])
|
40
|
+
|
41
|
+
#define luaK_codeAsBx(fs,o,A,sBx) luaK_codeABx(fs,o,A,(sBx)+MAXARG_sBx)
|
42
|
+
|
43
|
+
#define luaK_setmultret(fs,e) luaK_setreturns(fs, e, LUA_MULTRET)
|
44
|
+
|
45
|
+
LUAI_FUNC int luaK_codeABx (FuncState *fs, OpCode o, int A, unsigned int Bx);
|
46
|
+
LUAI_FUNC int luaK_codeABC (FuncState *fs, OpCode o, int A, int B, int C);
|
47
|
+
LUAI_FUNC void luaK_fixline (FuncState *fs, int line);
|
48
|
+
LUAI_FUNC void luaK_nil (FuncState *fs, int from, int n);
|
49
|
+
LUAI_FUNC void luaK_reserveregs (FuncState *fs, int n);
|
50
|
+
LUAI_FUNC void luaK_checkstack (FuncState *fs, int n);
|
51
|
+
LUAI_FUNC int luaK_stringK (FuncState *fs, TString *s);
|
52
|
+
LUAI_FUNC int luaK_numberK (FuncState *fs, lua_Number r);
|
53
|
+
LUAI_FUNC void luaK_dischargevars (FuncState *fs, expdesc *e);
|
54
|
+
LUAI_FUNC int luaK_exp2anyreg (FuncState *fs, expdesc *e);
|
55
|
+
LUAI_FUNC void luaK_exp2nextreg (FuncState *fs, expdesc *e);
|
56
|
+
LUAI_FUNC void luaK_exp2val (FuncState *fs, expdesc *e);
|
57
|
+
LUAI_FUNC int luaK_exp2RK (FuncState *fs, expdesc *e);
|
58
|
+
LUAI_FUNC void luaK_self (FuncState *fs, expdesc *e, expdesc *key);
|
59
|
+
LUAI_FUNC void luaK_indexed (FuncState *fs, expdesc *t, expdesc *k);
|
60
|
+
LUAI_FUNC void luaK_goiftrue (FuncState *fs, expdesc *e);
|
61
|
+
LUAI_FUNC void luaK_storevar (FuncState *fs, expdesc *var, expdesc *e);
|
62
|
+
LUAI_FUNC void luaK_setreturns (FuncState *fs, expdesc *e, int nresults);
|
63
|
+
LUAI_FUNC void luaK_setoneret (FuncState *fs, expdesc *e);
|
64
|
+
LUAI_FUNC int luaK_jump (FuncState *fs);
|
65
|
+
LUAI_FUNC void luaK_ret (FuncState *fs, int first, int nret);
|
66
|
+
LUAI_FUNC void luaK_patchlist (FuncState *fs, int list, int target);
|
67
|
+
LUAI_FUNC void luaK_patchtohere (FuncState *fs, int list);
|
68
|
+
LUAI_FUNC void luaK_concat (FuncState *fs, int *l1, int l2);
|
69
|
+
LUAI_FUNC int luaK_getlabel (FuncState *fs);
|
70
|
+
LUAI_FUNC void luaK_prefix (FuncState *fs, UnOpr op, expdesc *v);
|
71
|
+
LUAI_FUNC void luaK_infix (FuncState *fs, BinOpr op, expdesc *v);
|
72
|
+
LUAI_FUNC void luaK_posfix (FuncState *fs, BinOpr op, expdesc *v1, expdesc *v2);
|
73
|
+
LUAI_FUNC void luaK_setlist (FuncState *fs, int base, int nelems, int tostore);
|
74
|
+
|
75
|
+
|
76
|
+
#endif
|
@@ -0,0 +1,398 @@
|
|
1
|
+
/*
|
2
|
+
** $Id: ldblib.c,v 1.104.1.4 2009/08/04 18:50:18 roberto Exp $
|
3
|
+
** Interface from Lua to its debug API
|
4
|
+
** See Copyright Notice in lua.h
|
5
|
+
*/
|
6
|
+
|
7
|
+
|
8
|
+
#include <stdio.h>
|
9
|
+
#include <stdlib.h>
|
10
|
+
#include <string.h>
|
11
|
+
|
12
|
+
#define ldblib_c
|
13
|
+
#define LUA_LIB
|
14
|
+
|
15
|
+
#include "lua.h"
|
16
|
+
|
17
|
+
#include "lauxlib.h"
|
18
|
+
#include "lualib.h"
|
19
|
+
|
20
|
+
|
21
|
+
|
22
|
+
static int db_getregistry (lua_State *L) {
|
23
|
+
lua_pushvalue(L, LUA_REGISTRYINDEX);
|
24
|
+
return 1;
|
25
|
+
}
|
26
|
+
|
27
|
+
|
28
|
+
static int db_getmetatable (lua_State *L) {
|
29
|
+
luaL_checkany(L, 1);
|
30
|
+
if (!lua_getmetatable(L, 1)) {
|
31
|
+
lua_pushnil(L); /* no metatable */
|
32
|
+
}
|
33
|
+
return 1;
|
34
|
+
}
|
35
|
+
|
36
|
+
|
37
|
+
static int db_setmetatable (lua_State *L) {
|
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);
|
42
|
+
lua_pushboolean(L, lua_setmetatable(L, 1));
|
43
|
+
return 1;
|
44
|
+
}
|
45
|
+
|
46
|
+
|
47
|
+
static int db_getfenv (lua_State *L) {
|
48
|
+
luaL_checkany(L, 1);
|
49
|
+
lua_getfenv(L, 1);
|
50
|
+
return 1;
|
51
|
+
}
|
52
|
+
|
53
|
+
|
54
|
+
static int db_setfenv (lua_State *L) {
|
55
|
+
luaL_checktype(L, 2, LUA_TTABLE);
|
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
|
+
}
|
62
|
+
|
63
|
+
|
64
|
+
static void settabss (lua_State *L, const char *i, const char *v) {
|
65
|
+
lua_pushstring(L, v);
|
66
|
+
lua_setfield(L, -2, i);
|
67
|
+
}
|
68
|
+
|
69
|
+
|
70
|
+
static void settabsi (lua_State *L, const char *i, int v) {
|
71
|
+
lua_pushinteger(L, v);
|
72
|
+
lua_setfield(L, -2, i);
|
73
|
+
}
|
74
|
+
|
75
|
+
|
76
|
+
static lua_State *getthread (lua_State *L, int *arg) {
|
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
|
+
}
|
86
|
+
|
87
|
+
|
88
|
+
static void treatstackoption (lua_State *L, lua_State *L1, const char *fname) {
|
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
|
+
}
|
97
|
+
|
98
|
+
|
99
|
+
static int db_getinfo (lua_State *L) {
|
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
|
+
}
|
142
|
+
|
143
|
+
|
144
|
+
static int db_getlocal (lua_State *L) {
|
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);
|
154
|
+
lua_pushstring(L, name);
|
155
|
+
lua_pushvalue(L, -2);
|
156
|
+
return 2;
|
157
|
+
}
|
158
|
+
else {
|
159
|
+
lua_pushnil(L);
|
160
|
+
return 1;
|
161
|
+
}
|
162
|
+
}
|
163
|
+
|
164
|
+
|
165
|
+
static int db_setlocal (lua_State *L) {
|
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
|
+
}
|
177
|
+
|
178
|
+
|
179
|
+
static int auxupvalue (lua_State *L, int get) {
|
180
|
+
const char *name;
|
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));
|
188
|
+
return get + 1;
|
189
|
+
}
|
190
|
+
|
191
|
+
|
192
|
+
static int db_getupvalue (lua_State *L) {
|
193
|
+
return auxupvalue(L, 1);
|
194
|
+
}
|
195
|
+
|
196
|
+
|
197
|
+
static int db_setupvalue (lua_State *L) {
|
198
|
+
luaL_checkany(L, 3);
|
199
|
+
return auxupvalue(L, 0);
|
200
|
+
}
|
201
|
+
|
202
|
+
|
203
|
+
|
204
|
+
static const char KEY_HOOK = 'h';
|
205
|
+
|
206
|
+
|
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);
|
213
|
+
lua_rawget(L, -2);
|
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);
|
218
|
+
else lua_pushnil(L);
|
219
|
+
lua_assert(lua_getinfo(L, "lS", ar));
|
220
|
+
lua_call(L, 2, 0);
|
221
|
+
}
|
222
|
+
}
|
223
|
+
|
224
|
+
|
225
|
+
static int makemask (const char *smask, int count) {
|
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
|
+
}
|
233
|
+
|
234
|
+
|
235
|
+
static char *unmakemask (int mask, char *smask) {
|
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
|
+
}
|
243
|
+
|
244
|
+
|
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)) {
|
249
|
+
lua_pop(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);
|
254
|
+
}
|
255
|
+
}
|
256
|
+
|
257
|
+
|
258
|
+
static int db_sethook (lua_State *L) {
|
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);
|
268
|
+
luaL_checktype(L, arg+1, LUA_TFUNCTION);
|
269
|
+
count = luaL_optint(L, arg+3, 0);
|
270
|
+
func = hookf; mask = makemask(smask, count);
|
271
|
+
}
|
272
|
+
gethooktable(L);
|
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 */
|
278
|
+
return 0;
|
279
|
+
}
|
280
|
+
|
281
|
+
|
282
|
+
static int db_gethook (lua_State *L) {
|
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);
|
292
|
+
lua_pushlightuserdata(L, L1);
|
293
|
+
lua_rawget(L, -2); /* get hook */
|
294
|
+
lua_remove(L, -2); /* remove hook table */
|
295
|
+
}
|
296
|
+
lua_pushstring(L, unmakemask(mask, buff));
|
297
|
+
lua_pushinteger(L, lua_gethookcount(L1));
|
298
|
+
return 3;
|
299
|
+
}
|
300
|
+
|
301
|
+
|
302
|
+
static int db_debug (lua_State *L) {
|
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
|
+
}
|
317
|
+
|
318
|
+
|
319
|
+
#define LEVELS1 12 /* size of the first part of the stack */
|
320
|
+
#define LEVELS2 10 /* size of the second part of the stack */
|
321
|
+
|
322
|
+
static int db_errorfb (lua_State *L) {
|
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
|
+
}
|
373
|
+
|
374
|
+
|
375
|
+
static const luaL_Reg dblib[] = {
|
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
|
+
};
|
392
|
+
|
393
|
+
|
394
|
+
LUALIB_API int luaopen_debug (lua_State *L) {
|
395
|
+
luaL_register(L, LUA_DBLIBNAME, dblib);
|
396
|
+
return 1;
|
397
|
+
}
|
398
|
+
|