1997-09-17 03:25:59 +08:00
|
|
|
/*
|
2014-06-25 01:02:00 +08:00
|
|
|
** $Id: lapi.c,v 2.219 2014/06/19 18:27:20 roberto Exp roberto $
|
1997-09-17 03:25:59 +08:00
|
|
|
** Lua API
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2013-06-05 03:34:51 +08:00
|
|
|
#include <math.h>
|
2004-02-21 00:01:05 +08:00
|
|
|
#include <stdarg.h>
|
1997-09-17 03:25:59 +08:00
|
|
|
#include <string.h>
|
|
|
|
|
2002-12-05 01:38:31 +08:00
|
|
|
#define lapi_c
|
2004-05-01 04:13:38 +08:00
|
|
|
#define LUA_CORE
|
2002-12-05 01:38:31 +08:00
|
|
|
|
2000-06-12 21:52:05 +08:00
|
|
|
#include "lua.h"
|
|
|
|
|
1997-09-17 03:25:59 +08:00
|
|
|
#include "lapi.h"
|
2002-05-16 02:57:44 +08:00
|
|
|
#include "ldebug.h"
|
1997-09-17 03:25:59 +08:00
|
|
|
#include "ldo.h"
|
|
|
|
#include "lfunc.h"
|
|
|
|
#include "lgc.h"
|
|
|
|
#include "lmem.h"
|
|
|
|
#include "lobject.h"
|
1997-11-20 01:29:23 +08:00
|
|
|
#include "lstate.h"
|
1997-09-17 03:25:59 +08:00
|
|
|
#include "lstring.h"
|
|
|
|
#include "ltable.h"
|
|
|
|
#include "ltm.h"
|
2002-04-22 22:40:50 +08:00
|
|
|
#include "lundump.h"
|
1997-09-17 03:25:59 +08:00
|
|
|
#include "lvm.h"
|
|
|
|
|
|
|
|
|
2003-10-08 04:13:41 +08:00
|
|
|
|
2001-11-29 04:13:13 +08:00
|
|
|
const char lua_ident[] =
|
2007-08-08 00:53:40 +08:00
|
|
|
"$LuaVersion: " LUA_COPYRIGHT " $"
|
2007-02-07 22:28:00 +08:00
|
|
|
"$LuaAuthors: " LUA_AUTHORS " $";
|
1997-09-17 03:25:59 +08:00
|
|
|
|
|
|
|
|
2011-09-27 04:17:27 +08:00
|
|
|
/* value at a non-valid index */
|
|
|
|
#define NONVALIDVALUE cast(TValue *, luaO_nilobject)
|
1997-09-17 03:25:59 +08:00
|
|
|
|
2011-09-27 04:17:27 +08:00
|
|
|
/* corresponding test */
|
|
|
|
#define isvalid(o) ((o) != luaO_nilobject)
|
|
|
|
|
2012-10-19 23:52:46 +08:00
|
|
|
/* test for pseudo index */
|
|
|
|
#define ispseudo(i) ((i) <= LUA_REGISTRYINDEX)
|
|
|
|
|
|
|
|
/* test for valid but not pseudo index */
|
|
|
|
#define isstackindex(i, o) (isvalid(o) && !ispseudo(i))
|
|
|
|
|
|
|
|
#define api_checkvalidindex(L, o) api_check(L, isvalid(o), "invalid index")
|
|
|
|
|
|
|
|
#define api_checkstackindex(L, i, o) \
|
|
|
|
api_check(L, isstackindex(i, o), "index not in the stack")
|
2002-03-19 04:11:52 +08:00
|
|
|
|
1999-02-23 22:57:28 +08:00
|
|
|
|
2009-07-16 01:57:03 +08:00
|
|
|
static TValue *index2addr (lua_State *L, int idx) {
|
2009-06-02 03:09:26 +08:00
|
|
|
CallInfo *ci = L->ci;
|
2003-05-10 04:16:54 +08:00
|
|
|
if (idx > 0) {
|
2009-06-02 03:09:26 +08:00
|
|
|
TValue *o = ci->func + idx;
|
2009-08-31 22:26:28 +08:00
|
|
|
api_check(L, idx <= ci->top - (ci->func + 1), "unacceptable index");
|
2011-09-27 04:17:27 +08:00
|
|
|
if (o >= L->top) return NONVALIDVALUE;
|
2003-05-10 04:16:54 +08:00
|
|
|
else return o;
|
|
|
|
}
|
2012-10-19 23:52:46 +08:00
|
|
|
else if (!ispseudo(idx)) { /* negative index */
|
2009-08-31 22:26:28 +08:00
|
|
|
api_check(L, idx != 0 && -idx <= L->top - (ci->func + 1), "invalid index");
|
2003-05-10 04:16:54 +08:00
|
|
|
return L->top + idx;
|
2001-11-01 03:58:11 +08:00
|
|
|
}
|
2010-03-27 04:58:11 +08:00
|
|
|
else if (idx == LUA_REGISTRYINDEX)
|
|
|
|
return &G(L)->l_registry;
|
|
|
|
else { /* upvalues */
|
|
|
|
idx = LUA_REGISTRYINDEX - idx;
|
2010-06-01 00:08:55 +08:00
|
|
|
api_check(L, idx <= MAXUPVAL + 1, "upvalue index too large");
|
2010-04-18 21:22:48 +08:00
|
|
|
if (ttislcf(ci->func)) /* light C function? */
|
2011-09-27 04:17:27 +08:00
|
|
|
return NONVALIDVALUE; /* it has no upvalues */
|
2010-04-14 23:13:48 +08:00
|
|
|
else {
|
2011-06-03 03:31:40 +08:00
|
|
|
CClosure *func = clCvalue(ci->func);
|
2011-09-27 04:17:27 +08:00
|
|
|
return (idx <= func->nupvalues) ? &func->upvalue[idx-1] : NONVALIDVALUE;
|
2010-04-14 23:13:48 +08:00
|
|
|
}
|
2001-10-18 05:12:57 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-12-09 00:15:43 +08:00
|
|
|
/*
|
2010-05-06 02:53:41 +08:00
|
|
|
** to be called by 'lua_checkstack' in protected mode, to grow stack
|
2009-12-09 00:15:43 +08:00
|
|
|
** capturing memory errors
|
|
|
|
*/
|
|
|
|
static void growstack (lua_State *L, void *ud) {
|
|
|
|
int size = *(int *)ud;
|
|
|
|
luaD_growstack(L, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-03-08 02:15:10 +08:00
|
|
|
LUA_API int lua_checkstack (lua_State *L, int size) {
|
2009-12-09 00:15:43 +08:00
|
|
|
int res;
|
2009-06-02 03:09:26 +08:00
|
|
|
CallInfo *ci = L->ci;
|
2002-03-08 02:15:10 +08:00
|
|
|
lua_lock(L);
|
2014-04-02 02:51:23 +08:00
|
|
|
api_check(L, size >= 0, "negative 'size'");
|
2009-12-09 00:15:43 +08:00
|
|
|
if (L->stack_last - L->top > size) /* stack large enough? */
|
|
|
|
res = 1; /* yes; check is OK */
|
|
|
|
else { /* no; need to grow stack */
|
2010-10-26 03:01:37 +08:00
|
|
|
int inuse = cast_int(L->top - L->stack) + EXTRA_STACK;
|
2009-07-16 01:26:14 +08:00
|
|
|
if (inuse > LUAI_MAXSTACK - size) /* can grow without overflow? */
|
|
|
|
res = 0; /* no */
|
2009-12-09 00:15:43 +08:00
|
|
|
else /* try to grow stack */
|
|
|
|
res = (luaD_rawrunprotected(L, &growstack, &size) == LUA_OK);
|
2002-03-20 20:51:29 +08:00
|
|
|
}
|
2009-07-16 01:26:14 +08:00
|
|
|
if (res && ci->top < L->top + size)
|
|
|
|
ci->top = L->top + size; /* adjust frame top */
|
2002-03-08 02:15:10 +08:00
|
|
|
lua_unlock(L);
|
|
|
|
return res;
|
2000-08-30 04:43:28 +08:00
|
|
|
}
|
|
|
|
|
2000-05-09 03:32:53 +08:00
|
|
|
|
2002-11-07 23:39:23 +08:00
|
|
|
LUA_API void lua_xmove (lua_State *from, lua_State *to, int n) {
|
2002-11-07 03:08:00 +08:00
|
|
|
int i;
|
2003-07-07 21:34:25 +08:00
|
|
|
if (from == to) return;
|
2002-11-07 03:08:00 +08:00
|
|
|
lua_lock(to);
|
|
|
|
api_checknelems(from, n);
|
2009-08-31 22:26:28 +08:00
|
|
|
api_check(from, G(from) == G(to), "moving among independent states");
|
|
|
|
api_check(from, to->ci->top - to->top >= n, "not enough elements to move");
|
2002-11-07 03:08:00 +08:00
|
|
|
from->top -= n;
|
|
|
|
for (i = 0; i < n; i++) {
|
2005-08-01 01:12:32 +08:00
|
|
|
setobj2s(to, to->top++, from->top + i);
|
2002-11-07 03:08:00 +08:00
|
|
|
}
|
|
|
|
lua_unlock(to);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-06-06 20:40:22 +08:00
|
|
|
LUA_API lua_CFunction lua_atpanic (lua_State *L, lua_CFunction panicf) {
|
2002-04-17 01:08:28 +08:00
|
|
|
lua_CFunction old;
|
|
|
|
lua_lock(L);
|
|
|
|
old = G(L)->panic;
|
|
|
|
G(L)->panic = panicf;
|
|
|
|
lua_unlock(L);
|
|
|
|
return old;
|
|
|
|
}
|
|
|
|
|
2000-05-09 03:32:53 +08:00
|
|
|
|
2009-06-19 02:59:18 +08:00
|
|
|
LUA_API const lua_Number *lua_version (lua_State *L) {
|
2009-06-19 22:21:23 +08:00
|
|
|
static const lua_Number version = LUA_VERSION_NUM;
|
|
|
|
if (L == NULL) return &version;
|
2009-06-19 02:59:18 +08:00
|
|
|
else return G(L)->version;
|
2009-02-19 01:20:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-10-26 05:31:28 +08:00
|
|
|
|
1997-09-17 03:25:59 +08:00
|
|
|
/*
|
2000-08-29 01:57:04 +08:00
|
|
|
** basic stack manipulation
|
1997-09-17 03:25:59 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2010-05-12 22:09:20 +08:00
|
|
|
/*
|
|
|
|
** convert an acceptable stack index into an absolute index
|
|
|
|
*/
|
|
|
|
LUA_API int lua_absindex (lua_State *L, int idx) {
|
2012-10-19 23:52:46 +08:00
|
|
|
return (idx > 0 || ispseudo(idx))
|
2010-05-12 22:09:20 +08:00
|
|
|
? idx
|
2010-05-14 21:15:26 +08:00
|
|
|
: cast_int(L->top - L->ci->func + idx);
|
2010-05-12 22:09:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-10-21 00:39:03 +08:00
|
|
|
LUA_API int lua_gettop (lua_State *L) {
|
2009-06-02 03:09:26 +08:00
|
|
|
return cast_int(L->top - (L->ci->func + 1));
|
1997-09-17 03:25:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-02-27 20:33:07 +08:00
|
|
|
LUA_API void lua_settop (lua_State *L, int idx) {
|
2009-06-02 03:09:26 +08:00
|
|
|
StkId func = L->ci->func;
|
2001-03-03 01:27:50 +08:00
|
|
|
lua_lock(L);
|
2003-02-27 20:33:07 +08:00
|
|
|
if (idx >= 0) {
|
2009-08-31 22:26:28 +08:00
|
|
|
api_check(L, idx <= L->stack_last - (func + 1), "new top too large");
|
2009-06-02 03:09:26 +08:00
|
|
|
while (L->top < (func + 1) + idx)
|
2001-12-21 05:26:52 +08:00
|
|
|
setnilvalue(L->top++);
|
2009-06-02 03:09:26 +08:00
|
|
|
L->top = (func + 1) + idx;
|
2001-06-09 03:01:38 +08:00
|
|
|
}
|
2001-02-12 23:42:44 +08:00
|
|
|
else {
|
2009-08-31 22:26:28 +08:00
|
|
|
api_check(L, -(idx+1) <= (L->top - (func + 1)), "invalid new top");
|
2003-02-27 20:33:07 +08:00
|
|
|
L->top += idx+1; /* `subtract' index (index is negative) */
|
2001-02-12 23:42:44 +08:00
|
|
|
}
|
2001-03-03 01:27:50 +08:00
|
|
|
lua_unlock(L);
|
2000-09-01 04:23:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-05-14 03:40:28 +08:00
|
|
|
/*
|
|
|
|
** Reverse the stack segment from 'from' to 'to'
|
|
|
|
** (auxiliar to 'lua_rotate')
|
|
|
|
*/
|
|
|
|
static void reverse (lua_State *L, StkId from, StkId to) {
|
|
|
|
for (; from < to; from++, to--) {
|
|
|
|
TValue temp;
|
|
|
|
setobj(L, &temp, from);
|
2014-05-15 02:32:30 +08:00
|
|
|
setobjs2s(L, from, to);
|
|
|
|
setobj2s(L, to, &temp);
|
2014-05-14 03:40:28 +08:00
|
|
|
}
|
2000-09-01 04:23:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-05-14 22:20:17 +08:00
|
|
|
/*
|
|
|
|
** Let x = AB, where A is a prefix of length 'n'. Then,
|
|
|
|
** rotate x n == BA. But BA == (A^r . B^r)^r.
|
|
|
|
*/
|
2014-05-14 03:40:28 +08:00
|
|
|
LUA_API void lua_rotate (lua_State *L, int idx, int n) {
|
|
|
|
StkId p, t, m;
|
2001-03-03 01:27:50 +08:00
|
|
|
lua_lock(L);
|
2014-05-14 22:20:17 +08:00
|
|
|
t = L->top - 1; /* end of stack segment being rotated */
|
|
|
|
p = index2addr(L, idx); /* start of segment */
|
2012-10-19 23:52:46 +08:00
|
|
|
api_checkstackindex(L, idx, p);
|
2014-05-15 23:22:45 +08:00
|
|
|
api_check(L, (n >= 0 ? n : -n) <= (t - p + 1), "invalid 'n'");
|
|
|
|
m = (n >= 0 ? t - n : p - n - 1); /* end of prefix */
|
2014-05-14 22:20:17 +08:00
|
|
|
reverse(L, p, m); /* reverse the prefix with length 'n' */
|
|
|
|
reverse(L, m + 1, t); /* reverse the suffix */
|
|
|
|
reverse(L, p, t); /* reverse the entire segment */
|
2001-03-03 01:27:50 +08:00
|
|
|
lua_unlock(L);
|
1997-09-17 03:25:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-10-06 00:44:33 +08:00
|
|
|
static void moveto (lua_State *L, TValue *fr, int idx) {
|
|
|
|
TValue *to = index2addr(L, idx);
|
|
|
|
api_checkvalidindex(L, to);
|
2010-03-27 04:58:11 +08:00
|
|
|
setobj(L, to, fr);
|
2011-06-03 03:31:40 +08:00
|
|
|
if (idx < LUA_REGISTRYINDEX) /* function upvalue? */
|
|
|
|
luaC_barrier(L, clCvalue(L->ci->func), fr);
|
2009-12-22 23:32:50 +08:00
|
|
|
/* LUA_REGISTRYINDEX does not need gc barrier
|
|
|
|
(collector revisits it before finishing collection) */
|
2009-10-06 00:44:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API void lua_replace (lua_State *L, int idx) {
|
|
|
|
lua_lock(L);
|
|
|
|
api_checknelems(L, 1);
|
|
|
|
moveto(L, L->top - 1, idx);
|
2002-02-06 06:35:58 +08:00
|
|
|
L->top--;
|
|
|
|
lua_unlock(L);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-10-06 00:44:33 +08:00
|
|
|
LUA_API void lua_copy (lua_State *L, int fromidx, int toidx) {
|
|
|
|
TValue *fr;
|
|
|
|
lua_lock(L);
|
|
|
|
fr = index2addr(L, fromidx);
|
|
|
|
moveto(L, fr, toidx);
|
|
|
|
lua_unlock(L);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-02-27 20:33:07 +08:00
|
|
|
LUA_API void lua_pushvalue (lua_State *L, int idx) {
|
2001-03-03 01:27:50 +08:00
|
|
|
lua_lock(L);
|
2009-07-16 01:57:03 +08:00
|
|
|
setobj2s(L, L->top, index2addr(L, idx));
|
2000-08-29 01:57:04 +08:00
|
|
|
api_incr_top(L);
|
2001-03-03 01:27:50 +08:00
|
|
|
lua_unlock(L);
|
1997-09-17 03:25:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2000-08-29 01:57:04 +08:00
|
|
|
/*
|
|
|
|
** access functions (stack -> C)
|
|
|
|
*/
|
1997-09-17 03:25:59 +08:00
|
|
|
|
|
|
|
|
2003-02-27 20:33:07 +08:00
|
|
|
LUA_API int lua_type (lua_State *L, int idx) {
|
2009-07-16 01:57:03 +08:00
|
|
|
StkId o = index2addr(L, idx);
|
2013-04-13 03:07:09 +08:00
|
|
|
return (isvalid(o) ? ttnov(o) : LUA_TNONE);
|
2000-10-03 04:10:55 +08:00
|
|
|
}
|
|
|
|
|
2001-01-26 00:45:36 +08:00
|
|
|
|
2001-12-06 04:15:18 +08:00
|
|
|
LUA_API const char *lua_typename (lua_State *L, int t) {
|
|
|
|
UNUSED(L);
|
2010-04-14 23:13:48 +08:00
|
|
|
return ttypename(t);
|
2001-01-26 00:45:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-02-27 20:33:07 +08:00
|
|
|
LUA_API int lua_iscfunction (lua_State *L, int idx) {
|
2009-07-16 01:57:03 +08:00
|
|
|
StkId o = index2addr(L, idx);
|
2011-06-03 03:31:40 +08:00
|
|
|
return (ttislcf(o) || (ttisCclosure(o)));
|
1997-09-17 03:25:59 +08:00
|
|
|
}
|
|
|
|
|
2001-06-16 03:16:41 +08:00
|
|
|
|
2013-04-25 21:52:49 +08:00
|
|
|
LUA_API int lua_isinteger (lua_State *L, int idx) {
|
|
|
|
StkId o = index2addr(L, idx);
|
|
|
|
return ttisinteger(o);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-02-27 20:33:07 +08:00
|
|
|
LUA_API int lua_isnumber (lua_State *L, int idx) {
|
2013-04-27 00:03:50 +08:00
|
|
|
lua_Number n;
|
2009-07-16 01:57:03 +08:00
|
|
|
const TValue *o = index2addr(L, idx);
|
2003-05-10 04:16:54 +08:00
|
|
|
return tonumber(o, &n);
|
1997-09-17 03:25:59 +08:00
|
|
|
}
|
|
|
|
|
2001-06-16 03:16:41 +08:00
|
|
|
|
2003-02-27 20:33:07 +08:00
|
|
|
LUA_API int lua_isstring (lua_State *L, int idx) {
|
|
|
|
int t = lua_type(L, idx);
|
2000-10-03 04:10:55 +08:00
|
|
|
return (t == LUA_TSTRING || t == LUA_TNUMBER);
|
|
|
|
}
|
|
|
|
|
2000-10-03 22:27:44 +08:00
|
|
|
|
2003-02-27 20:33:07 +08:00
|
|
|
LUA_API int lua_isuserdata (lua_State *L, int idx) {
|
2009-07-16 01:57:03 +08:00
|
|
|
const TValue *o = index2addr(L, idx);
|
2013-12-04 20:15:22 +08:00
|
|
|
return (ttisfulluserdata(o) || ttislightuserdata(o));
|
2002-08-31 03:09:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-06-13 21:39:55 +08:00
|
|
|
LUA_API int lua_rawequal (lua_State *L, int index1, int index2) {
|
2009-07-16 01:57:03 +08:00
|
|
|
StkId o1 = index2addr(L, index1);
|
|
|
|
StkId o2 = index2addr(L, index2);
|
2011-09-27 04:17:27 +08:00
|
|
|
return (isvalid(o1) && isvalid(o2)) ? luaV_rawequalobj(o1, o2) : 0;
|
2002-06-13 21:39:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-08-15 02:12:34 +08:00
|
|
|
LUA_API void lua_arith (lua_State *L, int op) {
|
2009-06-18 01:53:14 +08:00
|
|
|
lua_lock(L);
|
2013-12-31 04:47:58 +08:00
|
|
|
if (op != LUA_OPUNM && op != LUA_OPBNOT)
|
|
|
|
api_checknelems(L, 2); /* all other operations expect two operands */
|
|
|
|
else { /* for unary operations, add fake 2nd operand */
|
2011-04-05 22:26:23 +08:00
|
|
|
api_checknelems(L, 1);
|
|
|
|
setobjs2s(L, L->top, L->top - 1);
|
|
|
|
L->top++;
|
|
|
|
}
|
2013-05-02 20:37:24 +08:00
|
|
|
/* first operand at top - 2, second at top - 1; result go to top - 2 */
|
|
|
|
luaO_arith(L, op, L->top - 2, L->top - 1, L->top - 2);
|
|
|
|
L->top--; /* remove second operand */
|
2002-06-13 21:39:55 +08:00
|
|
|
lua_unlock(L);
|
1997-09-17 03:25:59 +08:00
|
|
|
}
|
|
|
|
|
2001-06-16 03:16:41 +08:00
|
|
|
|
2009-06-18 01:53:14 +08:00
|
|
|
LUA_API int lua_compare (lua_State *L, int index1, int index2, int op) {
|
2001-01-24 23:45:33 +08:00
|
|
|
StkId o1, o2;
|
2011-09-30 20:44:45 +08:00
|
|
|
int i = 0;
|
2001-06-16 03:16:41 +08:00
|
|
|
lua_lock(L); /* may call tag method */
|
2009-07-16 01:57:03 +08:00
|
|
|
o1 = index2addr(L, index1);
|
|
|
|
o2 = index2addr(L, index2);
|
2011-09-30 20:44:45 +08:00
|
|
|
if (isvalid(o1) && isvalid(o2)) {
|
|
|
|
switch (op) {
|
2013-04-15 23:43:34 +08:00
|
|
|
case LUA_OPEQ: i = luaV_equalobj(L, o1, o2); break;
|
2011-09-30 20:44:45 +08:00
|
|
|
case LUA_OPLT: i = luaV_lessthan(L, o1, o2); break;
|
|
|
|
case LUA_OPLE: i = luaV_lessequal(L, o1, o2); break;
|
|
|
|
default: api_check(L, 0, "invalid option");
|
|
|
|
}
|
2009-06-18 01:53:14 +08:00
|
|
|
}
|
2001-03-03 01:27:50 +08:00
|
|
|
lua_unlock(L);
|
2001-01-24 23:45:33 +08:00
|
|
|
return i;
|
2000-09-06 03:33:32 +08:00
|
|
|
}
|
|
|
|
|
1997-09-17 03:25:59 +08:00
|
|
|
|
2014-05-02 02:18:06 +08:00
|
|
|
LUA_API size_t lua_strtonum (lua_State *L, const char *s) {
|
|
|
|
size_t sz = luaO_str2num(s, L->top);
|
|
|
|
if (sz != 0)
|
2014-05-01 00:48:44 +08:00
|
|
|
api_incr_top(L);
|
2014-05-02 02:18:06 +08:00
|
|
|
return sz;
|
2013-05-15 00:00:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-04-30 01:12:50 +08:00
|
|
|
LUA_API lua_Number lua_tonumberx (lua_State *L, int idx, int *pisnum) {
|
2013-04-27 00:03:50 +08:00
|
|
|
lua_Number n;
|
2009-07-16 01:57:03 +08:00
|
|
|
const TValue *o = index2addr(L, idx);
|
2013-04-30 01:12:50 +08:00
|
|
|
int isnum = tonumber(o, &n);
|
|
|
|
if (!isnum)
|
|
|
|
n = 0; /* call to 'tonumber' may change 'n' even if it fails */
|
|
|
|
if (pisnum) *pisnum = isnum;
|
|
|
|
return n;
|
1997-09-17 03:25:59 +08:00
|
|
|
}
|
|
|
|
|
2001-06-16 03:16:41 +08:00
|
|
|
|
2013-04-30 01:12:50 +08:00
|
|
|
LUA_API lua_Integer lua_tointegerx (lua_State *L, int idx, int *pisnum) {
|
|
|
|
lua_Integer res;
|
2009-07-16 01:57:03 +08:00
|
|
|
const TValue *o = index2addr(L, idx);
|
2013-04-30 01:12:50 +08:00
|
|
|
int isnum = tointeger(o, &res);
|
|
|
|
if (!isnum)
|
|
|
|
res = 0; /* call to 'tointeger' may change 'n' even if it fails */
|
|
|
|
if (pisnum) *pisnum = isnum;
|
|
|
|
return res;
|
2003-10-08 04:13:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-06-25 01:02:00 +08:00
|
|
|
#if !defined(LUAI_FTWO2N)
|
|
|
|
/* 2.0^(numbits in an integer), computed without roundings */
|
|
|
|
#define LUAI_FTWO2N (cast_num(LUA_MININTEGER) * cast_num(-2))
|
|
|
|
#endif
|
|
|
|
|
2013-04-30 01:12:50 +08:00
|
|
|
LUA_API lua_Unsigned lua_tounsignedx (lua_State *L, int idx, int *pisnum) {
|
2013-06-05 03:34:51 +08:00
|
|
|
lua_Unsigned res = 0;
|
|
|
|
const TValue *o = index2addr(L, idx);
|
|
|
|
int isnum = 0;
|
|
|
|
switch (ttype(o)) {
|
|
|
|
case LUA_TNUMINT: {
|
2014-04-16 00:32:49 +08:00
|
|
|
res = l_castS2U(ivalue(o));
|
2013-06-05 03:34:51 +08:00
|
|
|
isnum = 1;
|
|
|
|
break;
|
|
|
|
}
|
2014-02-26 20:39:30 +08:00
|
|
|
case LUA_TNUMFLT: { /* compute floor(n) % 2^(numbits in an integer) */
|
2014-06-25 01:02:00 +08:00
|
|
|
const lua_Number two2n = LUAI_FTWO2N;
|
2014-02-26 20:39:30 +08:00
|
|
|
lua_Number n = fltvalue(o); /* get value */
|
2013-06-15 02:32:45 +08:00
|
|
|
int neg = 0;
|
2014-02-26 20:39:30 +08:00
|
|
|
n = l_floor(n); /* get its floor */
|
2013-06-15 02:32:45 +08:00
|
|
|
if (n < 0) {
|
|
|
|
neg = 1;
|
2014-02-26 20:39:30 +08:00
|
|
|
n = -n; /* make 'n' positive, so that 'fmod' is the same as '%' */
|
2013-06-15 02:32:45 +08:00
|
|
|
}
|
2014-04-12 22:45:10 +08:00
|
|
|
n = l_mathop(fmod)(n, two2n); /* n = n % 2^(numbits in an integer) */
|
2014-01-27 21:34:32 +08:00
|
|
|
if (luai_numisnan(n)) /* not a number? */
|
2013-06-05 03:34:51 +08:00
|
|
|
break; /* not an integer, too */
|
2014-04-15 22:29:30 +08:00
|
|
|
res = cast(lua_Unsigned, n); /* 'n' now must fit in an unsigned */
|
2014-02-26 20:39:30 +08:00
|
|
|
if (neg) res = 0u - res; /* back to negative, if needed */
|
2013-06-05 03:34:51 +08:00
|
|
|
isnum = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
if (pisnum) *pisnum = isnum;
|
|
|
|
return res;
|
2010-10-26 04:31:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-02-27 20:33:07 +08:00
|
|
|
LUA_API int lua_toboolean (lua_State *L, int idx) {
|
2009-07-16 01:57:03 +08:00
|
|
|
const TValue *o = index2addr(L, idx);
|
2003-05-10 04:16:54 +08:00
|
|
|
return !l_isfalse(o);
|
2001-12-12 06:48:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-05-17 03:21:11 +08:00
|
|
|
LUA_API const char *lua_tolstring (lua_State *L, int idx, size_t *len) {
|
2009-07-16 01:57:03 +08:00
|
|
|
StkId o = index2addr(L, idx);
|
2005-05-17 03:21:11 +08:00
|
|
|
if (!ttisstring(o)) {
|
2001-06-16 03:16:41 +08:00
|
|
|
lua_lock(L); /* `luaV_tostring' may create a new string */
|
2005-05-17 03:21:11 +08:00
|
|
|
if (!luaV_tostring(L, o)) { /* conversion failed? */
|
|
|
|
if (len != NULL) *len = 0;
|
|
|
|
lua_unlock(L);
|
|
|
|
return NULL;
|
|
|
|
}
|
2002-11-21 22:16:52 +08:00
|
|
|
luaC_checkGC(L);
|
2009-07-16 01:57:03 +08:00
|
|
|
o = index2addr(L, idx); /* previous call may reallocate the stack */
|
2001-06-16 03:16:41 +08:00
|
|
|
lua_unlock(L);
|
|
|
|
}
|
2005-05-17 03:21:11 +08:00
|
|
|
if (len != NULL) *len = tsvalue(o)->len;
|
|
|
|
return svalue(o);
|
1997-09-17 03:25:59 +08:00
|
|
|
}
|
|
|
|
|
2001-06-16 03:16:41 +08:00
|
|
|
|
2009-12-18 00:20:01 +08:00
|
|
|
LUA_API size_t lua_rawlen (lua_State *L, int idx) {
|
2009-07-16 01:57:03 +08:00
|
|
|
StkId o = index2addr(L, idx);
|
2013-04-13 03:07:09 +08:00
|
|
|
switch (ttnov(o)) {
|
2009-12-18 00:20:01 +08:00
|
|
|
case LUA_TSTRING: return tsvalue(o)->len;
|
|
|
|
case LUA_TUSERDATA: return uvalue(o)->len;
|
|
|
|
case LUA_TTABLE: return luaH_getn(hvalue(o));
|
|
|
|
default: return 0;
|
2001-06-16 03:16:41 +08:00
|
|
|
}
|
1997-09-17 03:25:59 +08:00
|
|
|
}
|
|
|
|
|
2001-06-16 03:16:41 +08:00
|
|
|
|
2003-02-27 20:33:07 +08:00
|
|
|
LUA_API lua_CFunction lua_tocfunction (lua_State *L, int idx) {
|
2009-07-16 01:57:03 +08:00
|
|
|
StkId o = index2addr(L, idx);
|
2010-04-18 21:22:48 +08:00
|
|
|
if (ttislcf(o)) return fvalue(o);
|
2011-06-03 03:31:40 +08:00
|
|
|
else if (ttisCclosure(o))
|
|
|
|
return clCvalue(o)->f;
|
2010-04-14 23:13:48 +08:00
|
|
|
else return NULL; /* not a C function */
|
1997-09-17 03:25:59 +08:00
|
|
|
}
|
|
|
|
|
2001-06-16 03:16:41 +08:00
|
|
|
|
2003-02-27 20:33:07 +08:00
|
|
|
LUA_API void *lua_touserdata (lua_State *L, int idx) {
|
2009-07-16 01:57:03 +08:00
|
|
|
StkId o = index2addr(L, idx);
|
2013-04-13 03:07:09 +08:00
|
|
|
switch (ttnov(o)) {
|
2003-12-10 20:13:36 +08:00
|
|
|
case LUA_TUSERDATA: return (rawuvalue(o) + 1);
|
2002-07-18 00:25:13 +08:00
|
|
|
case LUA_TLIGHTUSERDATA: return pvalue(o);
|
2002-04-06 02:54:31 +08:00
|
|
|
default: return NULL;
|
|
|
|
}
|
1999-11-12 01:02:40 +08:00
|
|
|
}
|
|
|
|
|
2001-06-16 03:16:41 +08:00
|
|
|
|
2003-02-27 20:33:07 +08:00
|
|
|
LUA_API lua_State *lua_tothread (lua_State *L, int idx) {
|
2009-07-16 01:57:03 +08:00
|
|
|
StkId o = index2addr(L, idx);
|
2003-05-10 04:16:54 +08:00
|
|
|
return (!ttisthread(o)) ? NULL : thvalue(o);
|
2002-10-26 04:05:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-02-27 20:33:07 +08:00
|
|
|
LUA_API const void *lua_topointer (lua_State *L, int idx) {
|
2009-07-16 01:57:03 +08:00
|
|
|
StkId o = index2addr(L, idx);
|
2003-05-10 04:16:54 +08:00
|
|
|
switch (ttype(o)) {
|
|
|
|
case LUA_TTABLE: return hvalue(o);
|
2011-06-03 03:31:40 +08:00
|
|
|
case LUA_TLCL: return clLvalue(o);
|
|
|
|
case LUA_TCCL: return clCvalue(o);
|
2010-04-18 21:22:48 +08:00
|
|
|
case LUA_TLCF: return cast(void *, cast(size_t, fvalue(o)));
|
2003-05-10 04:16:54 +08:00
|
|
|
case LUA_TTHREAD: return thvalue(o);
|
|
|
|
case LUA_TUSERDATA:
|
|
|
|
case LUA_TLIGHTUSERDATA:
|
|
|
|
return lua_touserdata(L, idx);
|
|
|
|
default: return NULL;
|
2000-09-01 05:01:43 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1997-09-17 03:25:59 +08:00
|
|
|
|
|
|
|
|
2000-08-29 01:57:04 +08:00
|
|
|
/*
|
|
|
|
** push functions (C -> stack)
|
|
|
|
*/
|
1997-09-17 03:25:59 +08:00
|
|
|
|
|
|
|
|
2000-10-21 00:39:03 +08:00
|
|
|
LUA_API void lua_pushnil (lua_State *L) {
|
2001-03-03 01:27:50 +08:00
|
|
|
lua_lock(L);
|
2001-01-18 23:59:09 +08:00
|
|
|
setnilvalue(L->top);
|
2000-08-29 01:57:04 +08:00
|
|
|
api_incr_top(L);
|
2001-03-03 01:27:50 +08:00
|
|
|
lua_unlock(L);
|
1997-09-17 03:25:59 +08:00
|
|
|
}
|
|
|
|
|
2000-08-29 01:57:04 +08:00
|
|
|
|
2000-12-05 02:33:40 +08:00
|
|
|
LUA_API void lua_pushnumber (lua_State *L, lua_Number n) {
|
2001-03-03 01:27:50 +08:00
|
|
|
lua_lock(L);
|
2014-04-30 02:14:16 +08:00
|
|
|
setfltvalue(L->top, n);
|
2000-08-29 01:57:04 +08:00
|
|
|
api_incr_top(L);
|
2001-03-03 01:27:50 +08:00
|
|
|
lua_unlock(L);
|
1997-09-17 03:25:59 +08:00
|
|
|
}
|
|
|
|
|
2000-08-29 01:57:04 +08:00
|
|
|
|
2003-10-08 04:13:41 +08:00
|
|
|
LUA_API void lua_pushinteger (lua_State *L, lua_Integer n) {
|
|
|
|
lua_lock(L);
|
2013-04-30 01:12:50 +08:00
|
|
|
setivalue(L->top, n);
|
2003-10-08 04:13:41 +08:00
|
|
|
api_incr_top(L);
|
|
|
|
lua_unlock(L);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-26 04:31:11 +08:00
|
|
|
LUA_API void lua_pushunsigned (lua_State *L, lua_Unsigned u) {
|
|
|
|
lua_lock(L);
|
2014-04-16 00:32:49 +08:00
|
|
|
setivalue(L->top, l_castU2S(u));
|
2010-10-26 04:31:11 +08:00
|
|
|
api_incr_top(L);
|
|
|
|
lua_unlock(L);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-04-17 21:19:53 +08:00
|
|
|
LUA_API const char *lua_pushlstring (lua_State *L, const char *s, size_t len) {
|
|
|
|
TString *ts;
|
2001-03-03 01:27:50 +08:00
|
|
|
lua_lock(L);
|
2002-11-21 22:16:52 +08:00
|
|
|
luaC_checkGC(L);
|
2007-04-17 21:19:53 +08:00
|
|
|
ts = luaS_newlstr(L, s, len);
|
|
|
|
setsvalue2s(L, L->top, ts);
|
2000-08-29 01:57:04 +08:00
|
|
|
api_incr_top(L);
|
2001-03-03 01:27:50 +08:00
|
|
|
lua_unlock(L);
|
2007-04-17 21:19:53 +08:00
|
|
|
return getstr(ts);
|
1997-09-17 03:25:59 +08:00
|
|
|
}
|
|
|
|
|
2000-08-29 01:57:04 +08:00
|
|
|
|
2007-04-17 21:19:53 +08:00
|
|
|
LUA_API const char *lua_pushstring (lua_State *L, const char *s) {
|
|
|
|
if (s == NULL) {
|
1999-11-22 21:12:07 +08:00
|
|
|
lua_pushnil(L);
|
2007-04-17 21:19:53 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
2010-04-05 22:21:38 +08:00
|
|
|
else {
|
|
|
|
TString *ts;
|
|
|
|
lua_lock(L);
|
|
|
|
luaC_checkGC(L);
|
|
|
|
ts = luaS_new(L, s);
|
|
|
|
setsvalue2s(L, L->top, ts);
|
|
|
|
api_incr_top(L);
|
|
|
|
lua_unlock(L);
|
|
|
|
return getstr(ts);
|
|
|
|
}
|
1998-03-07 00:54:42 +08:00
|
|
|
}
|
|
|
|
|
2000-08-29 01:57:04 +08:00
|
|
|
|
2002-05-17 02:39:46 +08:00
|
|
|
LUA_API const char *lua_pushvfstring (lua_State *L, const char *fmt,
|
|
|
|
va_list argp) {
|
|
|
|
const char *ret;
|
2002-05-08 01:36:56 +08:00
|
|
|
lua_lock(L);
|
2002-11-21 22:16:52 +08:00
|
|
|
luaC_checkGC(L);
|
2002-05-17 02:39:46 +08:00
|
|
|
ret = luaO_pushvfstring(L, fmt, argp);
|
2002-05-08 01:36:56 +08:00
|
|
|
lua_unlock(L);
|
2002-05-17 02:39:46 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API const char *lua_pushfstring (lua_State *L, const char *fmt, ...) {
|
|
|
|
const char *ret;
|
|
|
|
va_list argp;
|
2002-06-04 01:46:34 +08:00
|
|
|
lua_lock(L);
|
2002-11-21 22:16:52 +08:00
|
|
|
luaC_checkGC(L);
|
2002-05-17 02:39:46 +08:00
|
|
|
va_start(argp, fmt);
|
2002-06-04 01:46:34 +08:00
|
|
|
ret = luaO_pushvfstring(L, fmt, argp);
|
2002-05-17 02:39:46 +08:00
|
|
|
va_end(argp);
|
2002-06-04 01:46:34 +08:00
|
|
|
lua_unlock(L);
|
2002-05-17 02:39:46 +08:00
|
|
|
return ret;
|
2002-05-08 01:36:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-10-21 00:39:03 +08:00
|
|
|
LUA_API void lua_pushcclosure (lua_State *L, lua_CFunction fn, int n) {
|
2001-03-03 01:27:50 +08:00
|
|
|
lua_lock(L);
|
2010-04-14 23:13:48 +08:00
|
|
|
if (n == 0) {
|
|
|
|
setfvalue(L->top, fn);
|
|
|
|
}
|
|
|
|
else {
|
2014-06-20 02:27:20 +08:00
|
|
|
CClosure *cl;
|
2010-04-14 23:13:48 +08:00
|
|
|
api_checknelems(L, n);
|
2010-06-01 00:08:55 +08:00
|
|
|
api_check(L, n <= MAXUPVAL, "upvalue index too large");
|
2010-04-14 23:13:48 +08:00
|
|
|
luaC_checkGC(L);
|
|
|
|
cl = luaF_newCclosure(L, n);
|
2014-06-20 02:27:20 +08:00
|
|
|
cl->f = fn;
|
2010-04-14 23:13:48 +08:00
|
|
|
L->top -= n;
|
2013-08-17 02:55:49 +08:00
|
|
|
while (n--) {
|
2014-06-20 02:27:20 +08:00
|
|
|
setobj2n(L, &cl->upvalue[n], L->top + n);
|
2013-08-17 02:55:49 +08:00
|
|
|
/* does not need barrier because closure is white */
|
|
|
|
}
|
2011-06-03 03:31:40 +08:00
|
|
|
setclCvalue(L, L->top, cl);
|
2010-04-14 23:13:48 +08:00
|
|
|
}
|
2002-01-26 05:55:41 +08:00
|
|
|
api_incr_top(L);
|
2001-03-03 01:27:50 +08:00
|
|
|
lua_unlock(L);
|
1997-09-17 03:25:59 +08:00
|
|
|
}
|
|
|
|
|
2000-08-29 01:57:04 +08:00
|
|
|
|
2001-12-12 06:48:44 +08:00
|
|
|
LUA_API void lua_pushboolean (lua_State *L, int b) {
|
|
|
|
lua_lock(L);
|
2002-02-08 01:22:53 +08:00
|
|
|
setbvalue(L->top, (b != 0)); /* ensure that true is 1 */
|
2001-12-12 06:48:44 +08:00
|
|
|
api_incr_top(L);
|
|
|
|
lua_unlock(L);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-07-18 00:25:13 +08:00
|
|
|
LUA_API void lua_pushlightuserdata (lua_State *L, void *p) {
|
2002-04-06 02:54:31 +08:00
|
|
|
lua_lock(L);
|
|
|
|
setpvalue(L->top, p);
|
|
|
|
api_incr_top(L);
|
|
|
|
lua_unlock(L);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-09-16 04:39:42 +08:00
|
|
|
LUA_API int lua_pushthread (lua_State *L) {
|
|
|
|
lua_lock(L);
|
|
|
|
setthvalue(L, L->top, L);
|
|
|
|
api_incr_top(L);
|
|
|
|
lua_unlock(L);
|
|
|
|
return (G(L)->mainthread == L);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-08-29 01:57:04 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
** get functions (Lua -> stack)
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2014-03-13 04:57:40 +08:00
|
|
|
LUA_API int lua_getglobal (lua_State *L, const char *var) {
|
2011-10-25 00:53:05 +08:00
|
|
|
Table *reg = hvalue(&G(L)->l_registry);
|
|
|
|
const TValue *gt; /* global table */
|
|
|
|
lua_lock(L);
|
|
|
|
gt = luaH_getint(reg, LUA_RIDX_GLOBALS);
|
|
|
|
setsvalue2s(L, L->top++, luaS_new(L, var));
|
|
|
|
luaV_gettable(L, gt, L->top - 1, L->top - 1);
|
|
|
|
lua_unlock(L);
|
2014-03-13 04:57:40 +08:00
|
|
|
return ttnov(L->top - 1);
|
2011-10-25 00:53:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-03-13 04:57:40 +08:00
|
|
|
LUA_API int lua_gettable (lua_State *L, int idx) {
|
2001-02-02 00:03:38 +08:00
|
|
|
StkId t;
|
2001-03-03 01:27:50 +08:00
|
|
|
lua_lock(L);
|
2009-07-16 01:57:03 +08:00
|
|
|
t = index2addr(L, idx);
|
2005-04-05 02:12:51 +08:00
|
|
|
luaV_gettable(L, t, L->top - 1, L->top - 1);
|
2001-03-03 01:27:50 +08:00
|
|
|
lua_unlock(L);
|
2014-03-13 04:57:40 +08:00
|
|
|
return ttnov(L->top - 1);
|
1997-09-17 03:25:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-03-13 04:57:40 +08:00
|
|
|
LUA_API int lua_getfield (lua_State *L, int idx, const char *k) {
|
2003-10-10 20:57:55 +08:00
|
|
|
StkId t;
|
|
|
|
lua_lock(L);
|
2009-07-16 01:57:03 +08:00
|
|
|
t = index2addr(L, idx);
|
2006-07-11 23:53:29 +08:00
|
|
|
setsvalue2s(L, L->top, luaS_new(L, k));
|
2003-10-10 20:57:55 +08:00
|
|
|
api_incr_top(L);
|
2006-07-11 23:53:29 +08:00
|
|
|
luaV_gettable(L, t, L->top - 1, L->top - 1);
|
2003-10-10 20:57:55 +08:00
|
|
|
lua_unlock(L);
|
2014-03-13 04:57:40 +08:00
|
|
|
return ttnov(L->top - 1);
|
2003-10-10 20:57:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-03-13 04:57:40 +08:00
|
|
|
LUA_API int lua_rawget (lua_State *L, int idx) {
|
2001-01-24 23:45:33 +08:00
|
|
|
StkId t;
|
2001-03-03 01:27:50 +08:00
|
|
|
lua_lock(L);
|
2009-07-16 01:57:03 +08:00
|
|
|
t = index2addr(L, idx);
|
2009-08-31 22:26:28 +08:00
|
|
|
api_check(L, ttistable(t), "table expected");
|
2003-12-10 20:13:36 +08:00
|
|
|
setobj2s(L, L->top - 1, luaH_get(hvalue(t), L->top - 1));
|
2001-03-03 01:27:50 +08:00
|
|
|
lua_unlock(L);
|
2014-03-13 04:57:40 +08:00
|
|
|
return ttnov(L->top - 1);
|
2000-08-29 01:57:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-03-13 04:57:40 +08:00
|
|
|
LUA_API int lua_rawgeti (lua_State *L, int idx, lua_Integer n) {
|
2011-10-24 22:54:05 +08:00
|
|
|
StkId t;
|
2001-03-03 01:27:50 +08:00
|
|
|
lua_lock(L);
|
2011-10-24 22:54:05 +08:00
|
|
|
t = index2addr(L, idx);
|
|
|
|
api_check(L, ttistable(t), "table expected");
|
|
|
|
setobj2s(L, L->top, luaH_getint(hvalue(t), n));
|
|
|
|
api_incr_top(L);
|
|
|
|
lua_unlock(L);
|
2014-03-13 04:57:40 +08:00
|
|
|
return ttnov(L->top - 1);
|
2011-10-24 22:54:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-03-13 04:57:40 +08:00
|
|
|
LUA_API int lua_rawgetp (lua_State *L, int idx, const void *p) {
|
2011-10-24 22:54:05 +08:00
|
|
|
StkId t;
|
|
|
|
TValue k;
|
|
|
|
lua_lock(L);
|
|
|
|
t = index2addr(L, idx);
|
|
|
|
api_check(L, ttistable(t), "table expected");
|
|
|
|
setpvalue(&k, cast(void *, p));
|
|
|
|
setobj2s(L, L->top, luaH_get(hvalue(t), &k));
|
2000-08-29 01:57:04 +08:00
|
|
|
api_incr_top(L);
|
2001-03-03 01:27:50 +08:00
|
|
|
lua_unlock(L);
|
2014-03-13 04:57:40 +08:00
|
|
|
return ttnov(L->top - 1);
|
2000-08-29 01:57:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-10 21:29:28 +08:00
|
|
|
LUA_API void lua_createtable (lua_State *L, int narray, int nrec) {
|
2006-07-11 23:53:29 +08:00
|
|
|
Table *t;
|
2001-03-03 01:27:50 +08:00
|
|
|
lua_lock(L);
|
2002-11-21 22:16:52 +08:00
|
|
|
luaC_checkGC(L);
|
2006-07-11 23:53:29 +08:00
|
|
|
t = luaH_new(L);
|
|
|
|
sethvalue(L, L->top, t);
|
2000-08-29 01:57:04 +08:00
|
|
|
api_incr_top(L);
|
2006-07-11 23:53:29 +08:00
|
|
|
if (narray > 0 || nrec > 0)
|
|
|
|
luaH_resize(L, t, narray, nrec);
|
2001-03-03 01:27:50 +08:00
|
|
|
lua_unlock(L);
|
1997-09-17 03:25:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-03-27 20:49:53 +08:00
|
|
|
LUA_API int lua_getmetatable (lua_State *L, int objindex) {
|
2003-12-10 20:13:36 +08:00
|
|
|
const TValue *obj;
|
2003-04-07 22:36:08 +08:00
|
|
|
Table *mt = NULL;
|
2002-03-27 20:49:53 +08:00
|
|
|
int res;
|
2001-12-06 04:15:18 +08:00
|
|
|
lua_lock(L);
|
2009-07-16 01:57:03 +08:00
|
|
|
obj = index2addr(L, objindex);
|
2013-04-13 03:07:09 +08:00
|
|
|
switch (ttnov(obj)) {
|
2003-05-10 04:16:54 +08:00
|
|
|
case LUA_TTABLE:
|
|
|
|
mt = hvalue(obj)->metatable;
|
|
|
|
break;
|
|
|
|
case LUA_TUSERDATA:
|
2003-12-10 20:13:36 +08:00
|
|
|
mt = uvalue(obj)->metatable;
|
2003-05-10 04:16:54 +08:00
|
|
|
break;
|
2005-05-05 23:34:03 +08:00
|
|
|
default:
|
2013-04-13 03:07:09 +08:00
|
|
|
mt = G(L)->mt[ttnov(obj)];
|
2005-05-05 23:34:03 +08:00
|
|
|
break;
|
2001-12-06 04:15:18 +08:00
|
|
|
}
|
2003-12-02 02:22:56 +08:00
|
|
|
if (mt == NULL)
|
2002-03-27 20:49:53 +08:00
|
|
|
res = 0;
|
|
|
|
else {
|
2003-12-10 20:13:36 +08:00
|
|
|
sethvalue(L, L->top, mt);
|
2002-04-03 04:43:18 +08:00
|
|
|
api_incr_top(L);
|
2002-03-27 20:49:53 +08:00
|
|
|
res = 1;
|
|
|
|
}
|
2001-12-06 04:15:18 +08:00
|
|
|
lua_unlock(L);
|
2002-03-27 20:49:53 +08:00
|
|
|
return res;
|
2001-12-06 04:15:18 +08:00
|
|
|
}
|
|
|
|
|
2000-08-29 01:57:04 +08:00
|
|
|
|
2014-05-02 02:21:32 +08:00
|
|
|
LUA_API int lua_getuservalue (lua_State *L, int idx) {
|
2002-08-07 02:54:18 +08:00
|
|
|
StkId o;
|
2002-06-21 04:41:46 +08:00
|
|
|
lua_lock(L);
|
2009-07-16 01:57:03 +08:00
|
|
|
o = index2addr(L, idx);
|
2013-12-04 20:15:22 +08:00
|
|
|
api_check(L, ttisfulluserdata(o), "full userdata expected");
|
2014-02-19 21:52:42 +08:00
|
|
|
getuservalue(L, rawuvalue(o), L->top);
|
2002-06-21 04:41:46 +08:00
|
|
|
api_incr_top(L);
|
|
|
|
lua_unlock(L);
|
2014-05-02 02:21:32 +08:00
|
|
|
return ttnov(L->top - 1);
|
2002-06-21 04:41:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-08-29 01:57:04 +08:00
|
|
|
/*
|
|
|
|
** set functions (stack -> Lua)
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2011-10-25 00:53:05 +08:00
|
|
|
LUA_API void lua_setglobal (lua_State *L, const char *var) {
|
|
|
|
Table *reg = hvalue(&G(L)->l_registry);
|
|
|
|
const TValue *gt; /* global table */
|
|
|
|
lua_lock(L);
|
|
|
|
api_checknelems(L, 1);
|
|
|
|
gt = luaH_getint(reg, LUA_RIDX_GLOBALS);
|
|
|
|
setsvalue2s(L, L->top++, luaS_new(L, var));
|
|
|
|
luaV_settable(L, gt, L->top - 1, L->top - 2);
|
|
|
|
L->top -= 2; /* pop value and key */
|
|
|
|
lua_unlock(L);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-02-27 20:33:07 +08:00
|
|
|
LUA_API void lua_settable (lua_State *L, int idx) {
|
2001-02-02 00:03:38 +08:00
|
|
|
StkId t;
|
2001-03-03 01:27:50 +08:00
|
|
|
lua_lock(L);
|
2001-02-12 23:42:44 +08:00
|
|
|
api_checknelems(L, 2);
|
2009-07-16 01:57:03 +08:00
|
|
|
t = index2addr(L, idx);
|
2005-04-05 02:12:51 +08:00
|
|
|
luaV_settable(L, t, L->top - 2, L->top - 1);
|
2001-02-02 00:03:38 +08:00
|
|
|
L->top -= 2; /* pop index and value */
|
2001-03-03 01:27:50 +08:00
|
|
|
lua_unlock(L);
|
2000-08-29 01:57:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-10 20:57:55 +08:00
|
|
|
LUA_API void lua_setfield (lua_State *L, int idx, const char *k) {
|
|
|
|
StkId t;
|
|
|
|
lua_lock(L);
|
|
|
|
api_checknelems(L, 1);
|
2009-07-16 01:57:03 +08:00
|
|
|
t = index2addr(L, idx);
|
2006-07-11 23:53:29 +08:00
|
|
|
setsvalue2s(L, L->top++, luaS_new(L, k));
|
|
|
|
luaV_settable(L, t, L->top - 1, L->top - 2);
|
|
|
|
L->top -= 2; /* pop value and key */
|
2003-10-10 20:57:55 +08:00
|
|
|
lua_unlock(L);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-02-27 20:33:07 +08:00
|
|
|
LUA_API void lua_rawset (lua_State *L, int idx) {
|
2001-01-24 23:45:33 +08:00
|
|
|
StkId t;
|
2001-03-03 01:27:50 +08:00
|
|
|
lua_lock(L);
|
2001-02-12 23:42:44 +08:00
|
|
|
api_checknelems(L, 2);
|
2009-07-16 01:57:03 +08:00
|
|
|
t = index2addr(L, idx);
|
2009-08-31 22:26:28 +08:00
|
|
|
api_check(L, ttistable(t), "table expected");
|
2003-12-10 20:13:36 +08:00
|
|
|
setobj2t(L, luaH_set(L, hvalue(t), L->top-2), L->top-1);
|
2011-08-18 04:26:47 +08:00
|
|
|
invalidateTMcache(hvalue(t));
|
2010-06-04 21:05:29 +08:00
|
|
|
luaC_barrierback(L, gcvalue(t), L->top-1);
|
2000-09-06 03:33:32 +08:00
|
|
|
L->top -= 2;
|
2001-03-03 01:27:50 +08:00
|
|
|
lua_unlock(L);
|
2000-08-29 01:57:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-04-26 23:39:25 +08:00
|
|
|
LUA_API void lua_rawseti (lua_State *L, int idx, lua_Integer n) {
|
2011-10-24 22:54:05 +08:00
|
|
|
StkId t;
|
2001-03-03 01:27:50 +08:00
|
|
|
lua_lock(L);
|
2001-02-12 23:42:44 +08:00
|
|
|
api_checknelems(L, 1);
|
2011-10-24 22:54:05 +08:00
|
|
|
t = index2addr(L, idx);
|
|
|
|
api_check(L, ttistable(t), "table expected");
|
|
|
|
luaH_setint(L, hvalue(t), n, L->top - 1);
|
|
|
|
luaC_barrierback(L, gcvalue(t), L->top-1);
|
|
|
|
L->top--;
|
|
|
|
lua_unlock(L);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API void lua_rawsetp (lua_State *L, int idx, const void *p) {
|
|
|
|
StkId t;
|
|
|
|
TValue k;
|
|
|
|
lua_lock(L);
|
|
|
|
api_checknelems(L, 1);
|
|
|
|
t = index2addr(L, idx);
|
|
|
|
api_check(L, ttistable(t), "table expected");
|
|
|
|
setpvalue(&k, cast(void *, p));
|
|
|
|
setobj2t(L, luaH_set(L, hvalue(t), &k), L->top - 1);
|
|
|
|
luaC_barrierback(L, gcvalue(t), L->top - 1);
|
2000-09-06 03:33:32 +08:00
|
|
|
L->top--;
|
2001-03-03 01:27:50 +08:00
|
|
|
lua_unlock(L);
|
2000-08-29 01:57:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-06-21 04:41:46 +08:00
|
|
|
LUA_API int lua_setmetatable (lua_State *L, int objindex) {
|
2003-12-10 20:13:36 +08:00
|
|
|
TValue *obj;
|
2003-12-02 02:22:56 +08:00
|
|
|
Table *mt;
|
2001-12-06 04:15:18 +08:00
|
|
|
lua_lock(L);
|
|
|
|
api_checknelems(L, 1);
|
2009-07-16 01:57:03 +08:00
|
|
|
obj = index2addr(L, objindex);
|
2003-12-02 02:22:56 +08:00
|
|
|
if (ttisnil(L->top - 1))
|
|
|
|
mt = NULL;
|
|
|
|
else {
|
2009-08-31 22:26:28 +08:00
|
|
|
api_check(L, ttistable(L->top - 1), "table expected");
|
2003-12-02 02:22:56 +08:00
|
|
|
mt = hvalue(L->top - 1);
|
|
|
|
}
|
2013-04-13 03:07:09 +08:00
|
|
|
switch (ttnov(obj)) {
|
2002-06-21 04:41:46 +08:00
|
|
|
case LUA_TTABLE: {
|
2003-12-10 00:56:11 +08:00
|
|
|
hvalue(obj)->metatable = mt;
|
2012-12-06 03:09:23 +08:00
|
|
|
if (mt) {
|
2013-09-12 04:15:31 +08:00
|
|
|
luaC_objbarrier(L, gcvalue(obj), mt);
|
2010-11-26 22:32:31 +08:00
|
|
|
luaC_checkfinalizer(L, gcvalue(obj), mt);
|
2012-12-06 03:09:23 +08:00
|
|
|
}
|
2001-12-06 04:15:18 +08:00
|
|
|
break;
|
2002-06-21 04:41:46 +08:00
|
|
|
}
|
|
|
|
case LUA_TUSERDATA: {
|
2003-12-10 20:13:36 +08:00
|
|
|
uvalue(obj)->metatable = mt;
|
2008-02-20 02:55:09 +08:00
|
|
|
if (mt) {
|
2003-12-10 20:13:36 +08:00
|
|
|
luaC_objbarrier(L, rawuvalue(obj), mt);
|
2010-11-26 22:32:31 +08:00
|
|
|
luaC_checkfinalizer(L, gcvalue(obj), mt);
|
2008-02-20 02:55:09 +08:00
|
|
|
}
|
2001-12-06 04:15:18 +08:00
|
|
|
break;
|
2002-06-21 04:41:46 +08:00
|
|
|
}
|
|
|
|
default: {
|
2013-04-13 03:07:09 +08:00
|
|
|
G(L)->mt[ttnov(obj)] = mt;
|
2002-06-21 04:41:46 +08:00
|
|
|
break;
|
|
|
|
}
|
2001-12-06 04:15:18 +08:00
|
|
|
}
|
2002-06-21 04:41:46 +08:00
|
|
|
L->top--;
|
|
|
|
lua_unlock(L);
|
2005-05-05 23:34:03 +08:00
|
|
|
return 1;
|
2002-06-21 04:41:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-07-25 23:18:19 +08:00
|
|
|
LUA_API void lua_setuservalue (lua_State *L, int idx) {
|
2002-08-07 02:54:18 +08:00
|
|
|
StkId o;
|
2002-06-21 04:41:46 +08:00
|
|
|
lua_lock(L);
|
|
|
|
api_checknelems(L, 1);
|
2009-07-16 01:57:03 +08:00
|
|
|
o = index2addr(L, idx);
|
2013-12-04 20:15:22 +08:00
|
|
|
api_check(L, ttisfulluserdata(o), "full userdata expected");
|
2014-02-19 21:52:42 +08:00
|
|
|
setuservalue(L, rawuvalue(o), L->top - 1);
|
|
|
|
luaC_barrier(L, gcvalue(o), L->top - 1);
|
2004-07-09 22:20:22 +08:00
|
|
|
L->top--;
|
2001-12-06 04:15:18 +08:00
|
|
|
lua_unlock(L);
|
|
|
|
}
|
|
|
|
|
2000-08-29 01:57:04 +08:00
|
|
|
|
2000-09-14 22:09:31 +08:00
|
|
|
/*
|
2002-05-02 04:48:12 +08:00
|
|
|
** `load' and `call' functions (run Lua code)
|
2000-09-14 22:09:31 +08:00
|
|
|
*/
|
|
|
|
|
2004-04-05 22:43:17 +08:00
|
|
|
|
2004-06-08 22:31:00 +08:00
|
|
|
#define checkresults(L,na,nr) \
|
2009-08-31 22:26:28 +08:00
|
|
|
api_check(L, (nr) == LUA_MULTRET || (L->ci->top - L->top >= (nr) - (na)), \
|
|
|
|
"results from function overflow current stack size")
|
2006-09-11 22:07:24 +08:00
|
|
|
|
2004-06-08 22:31:00 +08:00
|
|
|
|
2009-03-23 22:26:12 +08:00
|
|
|
LUA_API void lua_callk (lua_State *L, int nargs, int nresults, int ctx,
|
2014-06-11 01:41:38 +08:00
|
|
|
lua_KFunction k) {
|
2001-06-09 03:01:38 +08:00
|
|
|
StkId func;
|
2001-03-03 01:27:50 +08:00
|
|
|
lua_lock(L);
|
2009-08-31 22:26:28 +08:00
|
|
|
api_check(L, k == NULL || !isLua(L->ci),
|
|
|
|
"cannot use continuations inside hooks");
|
2001-02-12 23:42:44 +08:00
|
|
|
api_checknelems(L, nargs+1);
|
2010-08-05 02:40:28 +08:00
|
|
|
api_check(L, L->status == LUA_OK, "cannot do calls on non-normal thread");
|
2004-06-08 22:31:00 +08:00
|
|
|
checkresults(L, nargs, nresults);
|
2001-06-09 03:01:38 +08:00
|
|
|
func = L->top - (nargs+1);
|
2009-03-31 02:39:20 +08:00
|
|
|
if (k != NULL && L->nny == 0) { /* need to prepare continuation? */
|
|
|
|
L->ci->u.c.k = k; /* save continuation */
|
|
|
|
L->ci->u.c.ctx = ctx; /* save context */
|
|
|
|
luaD_call(L, func, nresults, 1); /* do the call */
|
2009-03-11 01:14:37 +08:00
|
|
|
}
|
2009-03-31 02:39:20 +08:00
|
|
|
else /* no continuation or no yieldable */
|
|
|
|
luaD_call(L, func, nresults, 0); /* just do the call */
|
2004-05-12 00:52:08 +08:00
|
|
|
adjustresults(L, nresults);
|
2001-03-03 01:27:50 +08:00
|
|
|
lua_unlock(L);
|
2000-09-14 22:09:31 +08:00
|
|
|
}
|
|
|
|
|
2000-08-29 01:57:04 +08:00
|
|
|
|
2002-12-05 01:29:32 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
** Execute a protected call.
|
|
|
|
*/
|
|
|
|
struct CallS { /* data to `f_call' */
|
|
|
|
StkId func;
|
|
|
|
int nresults;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static void f_call (lua_State *L, void *ud) {
|
|
|
|
struct CallS *c = cast(struct CallS *, ud);
|
2009-03-11 01:14:37 +08:00
|
|
|
luaD_call(L, c->func, c->nresults, 0);
|
2002-12-05 01:29:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-04-09 02:04:33 +08:00
|
|
|
LUA_API int lua_pcallk (lua_State *L, int nargs, int nresults, int errfunc,
|
2014-06-11 01:41:38 +08:00
|
|
|
int ctx, lua_KFunction k) {
|
2002-12-05 01:29:32 +08:00
|
|
|
struct CallS c;
|
2001-04-12 02:39:37 +08:00
|
|
|
int status;
|
2002-08-06 23:32:22 +08:00
|
|
|
ptrdiff_t func;
|
2002-04-22 22:40:50 +08:00
|
|
|
lua_lock(L);
|
2010-01-05 02:17:51 +08:00
|
|
|
api_check(L, k == NULL || !isLua(L->ci),
|
|
|
|
"cannot use continuations inside hooks");
|
2004-06-08 22:31:00 +08:00
|
|
|
api_checknelems(L, nargs+1);
|
2010-08-05 02:40:28 +08:00
|
|
|
api_check(L, L->status == LUA_OK, "cannot do calls on non-normal thread");
|
2004-06-08 22:31:00 +08:00
|
|
|
checkresults(L, nargs, nresults);
|
2003-05-10 04:16:54 +08:00
|
|
|
if (errfunc == 0)
|
|
|
|
func = 0;
|
|
|
|
else {
|
2009-07-16 01:57:03 +08:00
|
|
|
StkId o = index2addr(L, errfunc);
|
2012-10-19 23:52:46 +08:00
|
|
|
api_checkstackindex(L, errfunc, o);
|
2003-05-10 04:16:54 +08:00
|
|
|
func = savestack(L, o);
|
|
|
|
}
|
2002-12-05 01:29:32 +08:00
|
|
|
c.func = L->top - (nargs+1); /* function to be called */
|
2009-04-09 02:04:33 +08:00
|
|
|
if (k == NULL || L->nny > 0) { /* no continuation or no yieldable? */
|
|
|
|
c.nresults = nresults; /* do a 'conventional' protected call */
|
|
|
|
status = luaD_pcall(L, f_call, &c, savestack(L, c.func), func);
|
|
|
|
}
|
|
|
|
else { /* prepare continuation (call is already protected by 'resume') */
|
2009-04-18 06:00:01 +08:00
|
|
|
CallInfo *ci = L->ci;
|
|
|
|
ci->u.c.k = k; /* save continuation */
|
|
|
|
ci->u.c.ctx = ctx; /* save context */
|
2009-04-09 02:04:33 +08:00
|
|
|
/* save information for error recovery */
|
2012-06-08 23:14:04 +08:00
|
|
|
ci->extra = savestack(L, c.func);
|
2009-04-18 06:00:01 +08:00
|
|
|
ci->u.c.old_errfunc = L->errfunc;
|
2009-04-09 02:04:33 +08:00
|
|
|
L->errfunc = func;
|
2014-06-13 03:07:30 +08:00
|
|
|
setoah(ci->callstatus, L->allowhook); /* save value of 'allowhook' */
|
2014-06-11 03:13:26 +08:00
|
|
|
ci->callstatus |= CIST_YPCALL; /* function can do error recovery */
|
2009-04-09 02:04:33 +08:00
|
|
|
luaD_call(L, c.func, nresults, 1); /* do the call */
|
2009-04-18 06:00:01 +08:00
|
|
|
ci->callstatus &= ~CIST_YPCALL;
|
|
|
|
L->errfunc = ci->u.c.old_errfunc;
|
2009-04-09 02:04:33 +08:00
|
|
|
status = LUA_OK; /* if it is here, there were no errors */
|
|
|
|
}
|
2004-05-12 00:52:08 +08:00
|
|
|
adjustresults(L, nresults);
|
2002-12-05 01:29:32 +08:00
|
|
|
lua_unlock(L);
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-05-18 03:49:15 +08:00
|
|
|
LUA_API int lua_load (lua_State *L, lua_Reader reader, void *data,
|
2011-11-29 23:55:08 +08:00
|
|
|
const char *chunkname, const char *mode) {
|
2002-04-22 22:40:50 +08:00
|
|
|
ZIO z;
|
|
|
|
int status;
|
2002-06-04 01:46:34 +08:00
|
|
|
lua_lock(L);
|
|
|
|
if (!chunkname) chunkname = "?";
|
2003-08-26 04:00:50 +08:00
|
|
|
luaZ_init(L, &z, reader, data);
|
2011-11-29 23:55:08 +08:00
|
|
|
status = luaD_protectedparser(L, &z, chunkname, mode);
|
2010-03-30 01:43:14 +08:00
|
|
|
if (status == LUA_OK) { /* no errors? */
|
2011-06-03 03:31:40 +08:00
|
|
|
LClosure *f = clLvalue(L->top - 1); /* get newly created function */
|
|
|
|
if (f->nupvalues == 1) { /* does it have one upvalue? */
|
2010-03-30 01:43:14 +08:00
|
|
|
/* get global table from registry */
|
|
|
|
Table *reg = hvalue(&G(L)->l_registry);
|
|
|
|
const TValue *gt = luaH_getint(reg, LUA_RIDX_GLOBALS);
|
2010-09-08 03:21:39 +08:00
|
|
|
/* set global table as 1st upvalue of 'f' (may be LUA_ENV) */
|
2011-06-03 03:31:40 +08:00
|
|
|
setobj(L, f->upvals[0]->v, gt);
|
|
|
|
luaC_barrier(L, f->upvals[0], gt);
|
2010-03-30 01:43:14 +08:00
|
|
|
}
|
2010-03-09 00:55:52 +08:00
|
|
|
}
|
2002-06-04 01:46:34 +08:00
|
|
|
lua_unlock(L);
|
2002-04-22 22:40:50 +08:00
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-02-25 22:30:21 +08:00
|
|
|
LUA_API int lua_dump (lua_State *L, lua_Writer writer, void *data, int strip) {
|
2002-10-26 05:31:28 +08:00
|
|
|
int status;
|
2003-12-10 20:13:36 +08:00
|
|
|
TValue *o;
|
2002-10-26 05:31:28 +08:00
|
|
|
lua_lock(L);
|
|
|
|
api_checknelems(L, 1);
|
|
|
|
o = L->top - 1;
|
2003-10-21 01:42:41 +08:00
|
|
|
if (isLfunction(o))
|
2014-02-25 22:30:21 +08:00
|
|
|
status = luaU_dump(L, getproto(o), writer, data, strip);
|
2002-10-26 05:31:28 +08:00
|
|
|
else
|
2005-09-02 01:42:22 +08:00
|
|
|
status = 1;
|
2002-10-26 05:31:28 +08:00
|
|
|
lua_unlock(L);
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-08-15 02:12:34 +08:00
|
|
|
LUA_API int lua_status (lua_State *L) {
|
2004-09-16 04:39:42 +08:00
|
|
|
return L->status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-10-02 22:47:43 +08:00
|
|
|
/*
|
2004-03-10 01:34:35 +08:00
|
|
|
** Garbage-collection function
|
2000-10-02 22:47:43 +08:00
|
|
|
*/
|
|
|
|
|
2004-03-10 01:34:35 +08:00
|
|
|
LUA_API int lua_gc (lua_State *L, int what, int data) {
|
2004-06-30 22:15:23 +08:00
|
|
|
int res = 0;
|
|
|
|
global_State *g;
|
|
|
|
lua_lock(L);
|
|
|
|
g = G(L);
|
2004-03-10 01:34:35 +08:00
|
|
|
switch (what) {
|
|
|
|
case LUA_GCSTOP: {
|
2010-12-21 02:17:46 +08:00
|
|
|
g->gcrunning = 0;
|
2004-06-30 22:15:23 +08:00
|
|
|
break;
|
2004-03-10 01:34:35 +08:00
|
|
|
}
|
|
|
|
case LUA_GCRESTART: {
|
2010-12-21 03:40:07 +08:00
|
|
|
luaE_setdebt(g, 0);
|
2010-12-21 02:17:46 +08:00
|
|
|
g->gcrunning = 1;
|
2004-06-30 22:15:23 +08:00
|
|
|
break;
|
2004-03-10 01:34:35 +08:00
|
|
|
}
|
|
|
|
case LUA_GCCOLLECT: {
|
2006-07-11 23:53:29 +08:00
|
|
|
luaC_fullgc(L, 0);
|
2004-06-30 22:15:23 +08:00
|
|
|
break;
|
2004-03-10 01:34:35 +08:00
|
|
|
}
|
|
|
|
case LUA_GCCOUNT: {
|
|
|
|
/* GC values are expressed in Kbytes: #bytes/2^10 */
|
2010-12-21 03:40:07 +08:00
|
|
|
res = cast_int(gettotalbytes(g) >> 10);
|
2004-08-13 01:02:51 +08:00
|
|
|
break;
|
2004-03-10 01:34:35 +08:00
|
|
|
}
|
2005-10-20 19:35:50 +08:00
|
|
|
case LUA_GCCOUNTB: {
|
2010-12-21 03:40:07 +08:00
|
|
|
res = cast_int(gettotalbytes(g) & 0x3ff);
|
2005-10-20 19:35:50 +08:00
|
|
|
break;
|
|
|
|
}
|
2004-06-04 23:30:53 +08:00
|
|
|
case LUA_GCSTEP: {
|
2014-02-15 00:43:14 +08:00
|
|
|
l_mem debt = 1; /* =1 to signal that it did an actual step */
|
|
|
|
int oldrunning = g->gcrunning;
|
|
|
|
g->gcrunning = 1; /* force GC to run */
|
|
|
|
if (data == 0) {
|
|
|
|
luaE_setdebt(g, -GCSTEPSIZE); /* to do a "small" step */
|
|
|
|
luaC_step(L);
|
|
|
|
}
|
|
|
|
else { /* add 'data' to total debt */
|
|
|
|
debt = cast(l_mem, data) * 1024 + g->GCdebt;
|
|
|
|
luaE_setdebt(g, debt);
|
|
|
|
luaC_checkGC(L);
|
|
|
|
}
|
|
|
|
g->gcrunning = oldrunning; /* restore previous state */
|
|
|
|
if (debt > 0 && g->gcstate == GCSpause) /* end of cycle? */
|
2013-08-06 00:58:28 +08:00
|
|
|
res = 1; /* signal it */
|
2004-06-30 22:15:23 +08:00
|
|
|
break;
|
2004-06-04 23:30:53 +08:00
|
|
|
}
|
2005-03-23 00:04:29 +08:00
|
|
|
case LUA_GCSETPAUSE: {
|
|
|
|
res = g->gcpause;
|
|
|
|
g->gcpause = data;
|
2004-12-07 01:53:42 +08:00
|
|
|
break;
|
|
|
|
}
|
2005-01-14 22:19:42 +08:00
|
|
|
case LUA_GCSETSTEPMUL: {
|
|
|
|
res = g->gcstepmul;
|
2014-02-14 01:25:20 +08:00
|
|
|
if (data < 40) data = 40; /* avoid ridiculous low values (and 0) */
|
2005-01-14 22:19:42 +08:00
|
|
|
g->gcstepmul = data;
|
2004-12-07 01:53:42 +08:00
|
|
|
break;
|
|
|
|
}
|
2009-11-10 02:55:17 +08:00
|
|
|
case LUA_GCISRUNNING: {
|
2010-12-21 02:17:46 +08:00
|
|
|
res = g->gcrunning;
|
2009-11-10 02:55:17 +08:00
|
|
|
break;
|
|
|
|
}
|
2004-06-30 22:15:23 +08:00
|
|
|
default: res = -1; /* invalid option */
|
2004-03-10 01:34:35 +08:00
|
|
|
}
|
2004-06-30 22:15:23 +08:00
|
|
|
lua_unlock(L);
|
|
|
|
return res;
|
2000-10-02 22:47:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2000-08-29 01:57:04 +08:00
|
|
|
/*
|
2000-08-31 22:08:27 +08:00
|
|
|
** miscellaneous functions
|
2000-08-29 01:57:04 +08:00
|
|
|
*/
|
|
|
|
|
2001-01-24 23:45:33 +08:00
|
|
|
|
2002-06-18 23:19:27 +08:00
|
|
|
LUA_API int lua_error (lua_State *L) {
|
2001-03-03 01:27:50 +08:00
|
|
|
lua_lock(L);
|
2002-05-02 04:48:12 +08:00
|
|
|
api_checknelems(L, 1);
|
2002-08-09 04:08:41 +08:00
|
|
|
luaG_errormsg(L);
|
2013-03-17 05:10:18 +08:00
|
|
|
/* code unreachable; will unlock when control actually leaves the kernel */
|
2002-05-07 03:05:10 +08:00
|
|
|
return 0; /* to avoid warnings */
|
1997-09-17 03:25:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-02-27 20:33:07 +08:00
|
|
|
LUA_API int lua_next (lua_State *L, int idx) {
|
2001-01-24 23:45:33 +08:00
|
|
|
StkId t;
|
2002-02-15 05:46:13 +08:00
|
|
|
int more;
|
2001-03-03 01:27:50 +08:00
|
|
|
lua_lock(L);
|
2009-07-16 01:57:03 +08:00
|
|
|
t = index2addr(L, idx);
|
2009-08-31 22:26:28 +08:00
|
|
|
api_check(L, ttistable(t), "table expected");
|
2002-02-15 05:46:13 +08:00
|
|
|
more = luaH_next(L, hvalue(t), L->top - 1);
|
|
|
|
if (more) {
|
2000-08-31 22:08:27 +08:00
|
|
|
api_incr_top(L);
|
|
|
|
}
|
2001-10-26 03:14:14 +08:00
|
|
|
else /* no more elements */
|
2000-09-06 03:33:32 +08:00
|
|
|
L->top -= 1; /* remove key */
|
2001-03-03 01:27:50 +08:00
|
|
|
lua_unlock(L);
|
2002-02-15 05:46:13 +08:00
|
|
|
return more;
|
2000-05-27 03:17:57 +08:00
|
|
|
}
|
|
|
|
|
2000-09-01 05:01:43 +08:00
|
|
|
|
2000-10-21 00:39:03 +08:00
|
|
|
LUA_API void lua_concat (lua_State *L, int n) {
|
2001-03-03 01:27:50 +08:00
|
|
|
lua_lock(L);
|
2001-02-12 23:42:44 +08:00
|
|
|
api_checknelems(L, n);
|
2001-02-15 01:04:11 +08:00
|
|
|
if (n >= 2) {
|
2005-08-01 01:12:32 +08:00
|
|
|
luaC_checkGC(L);
|
2009-05-28 01:11:27 +08:00
|
|
|
luaV_concat(L, n);
|
2001-02-15 01:04:11 +08:00
|
|
|
}
|
2002-04-22 22:40:50 +08:00
|
|
|
else if (n == 0) { /* push empty string */
|
2004-01-15 20:40:26 +08:00
|
|
|
setsvalue2s(L, L->top, luaS_newlstr(L, "", 0));
|
2001-02-15 01:04:11 +08:00
|
|
|
api_incr_top(L);
|
|
|
|
}
|
|
|
|
/* else n == 1; nothing to do */
|
2001-03-03 01:27:50 +08:00
|
|
|
lua_unlock(L);
|
2000-09-06 03:33:32 +08:00
|
|
|
}
|
|
|
|
|
2000-10-26 20:47:05 +08:00
|
|
|
|
2009-12-18 00:20:01 +08:00
|
|
|
LUA_API void lua_len (lua_State *L, int idx) {
|
|
|
|
StkId t;
|
|
|
|
lua_lock(L);
|
|
|
|
t = index2addr(L, idx);
|
|
|
|
luaV_objlen(L, L->top, t);
|
|
|
|
api_incr_top(L);
|
|
|
|
lua_unlock(L);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-20 20:25:23 +08:00
|
|
|
LUA_API lua_Alloc lua_getallocf (lua_State *L, void **ud) {
|
2005-09-21 01:55:10 +08:00
|
|
|
lua_Alloc f;
|
|
|
|
lua_lock(L);
|
2005-07-05 22:31:20 +08:00
|
|
|
if (ud) *ud = G(L)->ud;
|
2005-09-21 01:55:10 +08:00
|
|
|
f = G(L)->frealloc;
|
|
|
|
lua_unlock(L);
|
|
|
|
return f;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API void lua_setallocf (lua_State *L, lua_Alloc f, void *ud) {
|
|
|
|
lua_lock(L);
|
|
|
|
G(L)->ud = ud;
|
|
|
|
G(L)->frealloc = f;
|
|
|
|
lua_unlock(L);
|
2003-10-20 20:25:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-10-26 20:47:05 +08:00
|
|
|
LUA_API void *lua_newuserdata (lua_State *L, size_t size) {
|
2001-06-07 02:00:19 +08:00
|
|
|
Udata *u;
|
2001-03-03 01:27:50 +08:00
|
|
|
lua_lock(L);
|
2002-11-21 22:16:52 +08:00
|
|
|
luaC_checkGC(L);
|
2014-02-19 21:52:42 +08:00
|
|
|
u = luaS_newudata(L, size);
|
2003-12-10 20:13:36 +08:00
|
|
|
setuvalue(L, L->top, u);
|
2002-04-06 02:54:31 +08:00
|
|
|
api_incr_top(L);
|
2001-06-07 02:00:19 +08:00
|
|
|
lua_unlock(L);
|
2002-04-06 02:54:31 +08:00
|
|
|
return u + 1;
|
2001-06-07 02:00:19 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-20 20:25:23 +08:00
|
|
|
|
2010-04-21 04:14:50 +08:00
|
|
|
static const char *aux_upvalue (StkId fi, int n, TValue **val,
|
2013-08-28 02:53:35 +08:00
|
|
|
GCObject **owner, UpVal **uv) {
|
2011-06-03 03:31:40 +08:00
|
|
|
switch (ttype(fi)) {
|
|
|
|
case LUA_TCCL: { /* C closure */
|
|
|
|
CClosure *f = clCvalue(fi);
|
|
|
|
if (!(1 <= n && n <= f->nupvalues)) return NULL;
|
|
|
|
*val = &f->upvalue[n-1];
|
|
|
|
if (owner) *owner = obj2gco(f);
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
case LUA_TLCL: { /* Lua closure */
|
|
|
|
LClosure *f = clLvalue(fi);
|
2011-11-01 01:48:51 +08:00
|
|
|
TString *name;
|
2011-06-03 03:31:40 +08:00
|
|
|
Proto *p = f->p;
|
|
|
|
if (!(1 <= n && n <= p->sizeupvalues)) return NULL;
|
|
|
|
*val = f->upvals[n-1]->v;
|
2013-08-28 02:53:35 +08:00
|
|
|
if (uv) *uv = f->upvals[n - 1];
|
2011-11-01 01:48:51 +08:00
|
|
|
name = p->upvalues[n-1].name;
|
2014-02-25 22:30:21 +08:00
|
|
|
return (name == NULL) ? "(*no name)" : getstr(name);
|
2011-06-03 03:31:40 +08:00
|
|
|
}
|
|
|
|
default: return NULL; /* not a closure */
|
2002-12-19 19:11:55 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API const char *lua_getupvalue (lua_State *L, int funcindex, int n) {
|
|
|
|
const char *name;
|
2011-11-30 20:58:57 +08:00
|
|
|
TValue *val = NULL; /* to avoid warnings */
|
2002-12-19 19:11:55 +08:00
|
|
|
lua_lock(L);
|
2013-08-28 02:53:35 +08:00
|
|
|
name = aux_upvalue(index2addr(L, funcindex), n, &val, NULL, NULL);
|
2002-12-19 19:11:55 +08:00
|
|
|
if (name) {
|
2003-12-10 20:13:36 +08:00
|
|
|
setobj2s(L, L->top, val);
|
2002-12-19 19:11:55 +08:00
|
|
|
api_incr_top(L);
|
|
|
|
}
|
|
|
|
lua_unlock(L);
|
|
|
|
return name;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API const char *lua_setupvalue (lua_State *L, int funcindex, int n) {
|
|
|
|
const char *name;
|
2011-11-30 20:58:57 +08:00
|
|
|
TValue *val = NULL; /* to avoid warnings */
|
2013-08-28 02:53:35 +08:00
|
|
|
GCObject *owner = NULL;
|
|
|
|
UpVal *uv = NULL;
|
2003-12-10 00:56:11 +08:00
|
|
|
StkId fi;
|
2002-12-19 19:11:55 +08:00
|
|
|
lua_lock(L);
|
2009-07-16 01:57:03 +08:00
|
|
|
fi = index2addr(L, funcindex);
|
2002-12-19 19:11:55 +08:00
|
|
|
api_checknelems(L, 1);
|
2013-08-28 02:53:35 +08:00
|
|
|
name = aux_upvalue(fi, n, &val, &owner, &uv);
|
2002-12-19 19:11:55 +08:00
|
|
|
if (name) {
|
|
|
|
L->top--;
|
2003-12-10 20:13:36 +08:00
|
|
|
setobj(L, val, L->top);
|
2013-08-28 02:53:35 +08:00
|
|
|
if (owner) { luaC_barrier(L, owner, L->top); }
|
|
|
|
else if (uv) { luaC_upvalbarrier(L, uv); }
|
2002-12-19 19:11:55 +08:00
|
|
|
}
|
|
|
|
lua_unlock(L);
|
|
|
|
return name;
|
|
|
|
}
|
|
|
|
|
2009-09-21 20:09:52 +08:00
|
|
|
|
2011-06-03 03:31:40 +08:00
|
|
|
static UpVal **getupvalref (lua_State *L, int fidx, int n, LClosure **pf) {
|
|
|
|
LClosure *f;
|
2009-11-06 00:48:31 +08:00
|
|
|
StkId fi = index2addr(L, fidx);
|
2011-06-03 03:31:40 +08:00
|
|
|
api_check(L, ttisLclosure(fi), "Lua function expected");
|
|
|
|
f = clLvalue(fi);
|
|
|
|
api_check(L, (1 <= n && n <= f->p->sizeupvalues), "invalid upvalue index");
|
2009-11-06 01:26:00 +08:00
|
|
|
if (pf) *pf = f;
|
2011-06-03 03:31:40 +08:00
|
|
|
return &f->upvals[n - 1]; /* get its upvalue pointer */
|
2009-11-06 00:48:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-01-08 23:16:56 +08:00
|
|
|
LUA_API void *lua_upvalueid (lua_State *L, int fidx, int n) {
|
2009-11-06 00:48:31 +08:00
|
|
|
StkId fi = index2addr(L, fidx);
|
2011-06-03 03:31:40 +08:00
|
|
|
switch (ttype(fi)) {
|
|
|
|
case LUA_TLCL: { /* lua closure */
|
|
|
|
return *getupvalref(L, fidx, n, NULL);
|
|
|
|
}
|
|
|
|
case LUA_TCCL: { /* C closure */
|
|
|
|
CClosure *f = clCvalue(fi);
|
|
|
|
api_check(L, 1 <= n && n <= f->nupvalues, "invalid upvalue index");
|
|
|
|
return &f->upvalue[n - 1];
|
|
|
|
}
|
|
|
|
default: {
|
|
|
|
api_check(L, 0, "closure expected");
|
|
|
|
return NULL;
|
|
|
|
}
|
2009-11-06 00:48:31 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-01-08 23:16:56 +08:00
|
|
|
LUA_API void lua_upvaluejoin (lua_State *L, int fidx1, int n1,
|
2009-11-06 01:26:00 +08:00
|
|
|
int fidx2, int n2) {
|
2011-06-03 03:31:40 +08:00
|
|
|
LClosure *f1;
|
2009-11-06 00:48:31 +08:00
|
|
|
UpVal **up1 = getupvalref(L, fidx1, n1, &f1);
|
|
|
|
UpVal **up2 = getupvalref(L, fidx2, n2, NULL);
|
2013-08-28 02:53:35 +08:00
|
|
|
luaC_upvdeccount(L, *up1);
|
2009-11-06 00:48:31 +08:00
|
|
|
*up1 = *up2;
|
2013-08-28 02:53:35 +08:00
|
|
|
(*up1)->refcount++;
|
2014-02-15 21:12:01 +08:00
|
|
|
if (upisopen(*up1)) (*up1)->u.open.touched = 1;
|
2013-08-28 02:53:35 +08:00
|
|
|
luaC_upvalbarrier(L, *up1);
|
2009-11-06 00:48:31 +08:00
|
|
|
}
|
|
|
|
|
2013-08-28 02:53:35 +08:00
|
|
|
|