lua/lapi.c

1118 lines
24 KiB
C
Raw Normal View History

1997-09-16 21:25:59 +02:00
/*
2009-07-15 20:37:19 +02:00
** $Id: lapi.c,v 2.86 2009/07/15 17:57:03 roberto Exp roberto $
1997-09-16 21:25:59 +02:00
** Lua API
** See Copyright Notice in lua.h
*/
#include <stdarg.h>
1997-09-16 21:25:59 +02:00
#include <string.h>
2002-12-04 18:38:31 +01:00
#define lapi_c
#define LUA_CORE
2002-12-04 18:38:31 +01:00
#include "lua.h"
1997-09-16 21:25:59 +02:00
#include "lapi.h"
2002-05-15 20:57:44 +02:00
#include "ldebug.h"
1997-09-16 21:25:59 +02:00
#include "ldo.h"
#include "lfunc.h"
#include "lgc.h"
#include "lmem.h"
#include "lobject.h"
#include "lstate.h"
1997-09-16 21:25:59 +02:00
#include "lstring.h"
#include "ltable.h"
#include "ltm.h"
#include "lundump.h"
1997-09-16 21:25:59 +02:00
#include "lvm.h"
const char lua_ident[] =
"$LuaVersion: " LUA_COPYRIGHT " $"
2007-02-07 15:28:00 +01:00
"$LuaAuthors: " LUA_AUTHORS " $";
1997-09-16 21:25:59 +02:00
#define api_checknelems(L,n) api_check(L, (n) < (L->top - L->ci->func))
2001-02-12 16:42:44 +01:00
2006-01-10 13:50:00 +01:00
#define api_checkvalidindex(L, i) api_check(L, (i) != luaO_nilobject)
static TValue *index2addr (lua_State *L, int idx) {
CallInfo *ci = L->ci;
if (idx > 0) {
TValue *o = ci->func + idx;
api_check(L, idx <= ci->top - (ci->func + 1));
2006-01-10 13:50:00 +01:00
if (o >= L->top) return cast(TValue *, luaO_nilobject);
else return o;
}
else if (idx > LUA_REGISTRYINDEX) {
api_check(L, idx != 0 && -idx <= L->top - (ci->func + 1));
return L->top + idx;
}
else switch (idx) { /* pseudo-indices */
2001-12-05 21:15:18 +01:00
case LUA_REGISTRYINDEX: return registry(L);
case LUA_ENVIRONINDEX: {
Closure *func = curr_func(L);
sethvalue(L, &L->env, func->c.env);
return &L->env;
}
2001-12-05 21:15:18 +01:00
case LUA_GLOBALSINDEX: return gt(L);
default: {
2004-03-23 18:07:34 +01:00
Closure *func = curr_func(L);
idx = LUA_GLOBALSINDEX - idx;
api_check(L, idx <= UCHAR_MAX + 1);
2004-03-23 18:07:34 +01:00
return (idx <= func->c.nupvalues)
? &func->c.upvalue[idx-1]
2006-01-10 13:50:00 +01:00
: cast(TValue *, luaO_nilobject);
}
}
}
static Table *getcurrenv (lua_State *L) {
if (L->ci->previous == NULL) /* no enclosing function? */
return hvalue(gt(L)); /* use global table as environment */
else {
Closure *func = curr_func(L);
return func->c.env;
}
}
LUA_API int lua_checkstack (lua_State *L, int size) {
int res = 1;
CallInfo *ci = L->ci;
lua_lock(L);
if (L->stack_last - L->top <= size) { /* need to grow stack? */
int inuse = L->top - L->stack + EXTRA_STACK;
if (inuse > LUAI_MAXSTACK - size) /* can grow without overflow? */
res = 0; /* no */
else
luaD_growstack(L, size);
2002-03-20 13:51:29 +01:00
}
if (res && ci->top < L->top + size)
ci->top = L->top + size; /* adjust frame top */
lua_unlock(L);
return res;
2000-08-29 22:43:28 +02:00
}
2009-06-15 21:51:31 +02:00
LUA_API lua_State *lua_mainthread (lua_State *L) {
return G(L)->mainthread;
}
2002-11-07 16:39:23 +01:00
LUA_API void lua_xmove (lua_State *from, lua_State *to, int n) {
2002-11-06 20:08:00 +01:00
int i;
if (from == to) return;
2002-11-06 20:08:00 +01:00
lua_lock(to);
api_checknelems(from, n);
2005-07-31 19:12:32 +02:00
api_check(from, G(from) == G(to));
api_check(from, to->ci->top - to->top >= n);
2002-11-06 20:08:00 +01:00
from->top -= n;
for (i = 0; i < n; i++) {
2005-07-31 19:12:32 +02:00
setobj2s(to, to->top++, from->top + i);
2002-11-06 20:08:00 +01:00
}
lua_unlock(to);
}
2002-06-06 14:40:22 +02:00
LUA_API lua_CFunction lua_atpanic (lua_State *L, lua_CFunction panicf) {
2002-04-16 19:08:28 +02:00
lua_CFunction old;
lua_lock(L);
old = G(L)->panic;
G(L)->panic = panicf;
lua_unlock(L);
return old;
}
LUA_API const lua_Number *lua_version (lua_State *L) {
static const lua_Number version = LUA_VERSION_NUM;
if (L == NULL) return &version;
else return G(L)->version;
}
2002-10-25 23:31:28 +02:00
1997-09-16 21:25:59 +02:00
/*
2000-08-28 19:57:04 +02:00
** basic stack manipulation
1997-09-16 21:25:59 +02:00
*/
2000-10-20 18:39:03 +02:00
LUA_API int lua_gettop (lua_State *L) {
return cast_int(L->top - (L->ci->func + 1));
1997-09-16 21:25:59 +02:00
}
LUA_API void lua_settop (lua_State *L, int idx) {
StkId func = L->ci->func;
2001-03-02 18:27:50 +01:00
lua_lock(L);
if (idx >= 0) {
api_check(L, idx <= L->stack_last - (func + 1));
while (L->top < (func + 1) + idx)
2001-12-20 22:26:52 +01:00
setnilvalue(L->top++);
L->top = (func + 1) + idx;
}
2001-02-12 16:42:44 +01:00
else {
api_check(L, -(idx+1) <= (L->top - (func + 1)));
L->top += idx+1; /* `subtract' index (index is negative) */
2001-02-12 16:42:44 +01:00
}
2001-03-02 18:27:50 +01:00
lua_unlock(L);
}
LUA_API void lua_remove (lua_State *L, int idx) {
StkId p;
2001-03-02 18:27:50 +01:00
lua_lock(L);
p = index2addr(L, idx);
api_checkvalidindex(L, p);
while (++p < L->top) setobjs2s(L, p-1, p);
2000-09-05 21:33:32 +02:00
L->top--;
2001-03-02 18:27:50 +01:00
lua_unlock(L);
}
LUA_API void lua_insert (lua_State *L, int idx) {
StkId p;
2000-09-05 21:33:32 +02:00
StkId q;
2001-03-02 18:27:50 +01:00
lua_lock(L);
p = index2addr(L, idx);
api_checkvalidindex(L, p);
for (q = L->top; q>p; q--) setobjs2s(L, q, q-1);
setobjs2s(L, p, L->top);
2001-03-02 18:27:50 +01:00
lua_unlock(L);
1997-09-16 21:25:59 +02:00
}
LUA_API void lua_replace (lua_State *L, int idx) {
StkId o;
2002-02-05 23:35:58 +01:00
lua_lock(L);
/* explicit test for incompatible code */
if (idx == LUA_ENVIRONINDEX && L->ci->previous == NULL)
luaG_runerror(L, "no calling environment");
2002-02-05 23:35:58 +01:00
api_checknelems(L, 1);
o = index2addr(L, idx);
api_checkvalidindex(L, o);
if (idx == LUA_ENVIRONINDEX) {
Closure *func = curr_func(L);
2006-09-11 16:07:24 +02:00
api_check(L, ttistable(L->top - 1));
func->c.env = hvalue(L->top - 1);
luaC_barrier(L, func, L->top - 1);
}
else {
setobj(L, o, L->top - 1);
if (idx < LUA_GLOBALSINDEX) /* function upvalue? */
luaC_barrier(L, curr_func(L), L->top - 1);
}
/* LUA_GLOBALSINDEX does not need gc barrier (threads are never black) */
2002-02-05 23:35:58 +01:00
L->top--;
lua_unlock(L);
}
LUA_API void lua_pushvalue (lua_State *L, int idx) {
2001-03-02 18:27:50 +01:00
lua_lock(L);
setobj2s(L, L->top, index2addr(L, idx));
2000-08-28 19:57:04 +02:00
api_incr_top(L);
2001-03-02 18:27:50 +01:00
lua_unlock(L);
1997-09-16 21:25:59 +02:00
}
2000-08-28 19:57:04 +02:00
/*
** access functions (stack -> C)
*/
1997-09-16 21:25:59 +02:00
LUA_API int lua_type (lua_State *L, int idx) {
StkId o = index2addr(L, idx);
2006-01-10 13:50:00 +01:00
return (o == luaO_nilobject) ? LUA_TNONE : ttype(o);
}
2001-01-25 17:45:36 +01:00
2001-12-05 21:15:18 +01:00
LUA_API const char *lua_typename (lua_State *L, int t) {
UNUSED(L);
return (t == LUA_TNONE) ? "no value" : luaT_typenames[t];
2001-01-25 17:45:36 +01:00
}
LUA_API int lua_iscfunction (lua_State *L, int idx) {
StkId o = index2addr(L, idx);
return iscfunction(o);
1997-09-16 21:25:59 +02:00
}
LUA_API int lua_isnumber (lua_State *L, int idx) {
TValue n;
const TValue *o = index2addr(L, idx);
return tonumber(o, &n);
1997-09-16 21:25:59 +02:00
}
LUA_API int lua_isstring (lua_State *L, int idx) {
int t = lua_type(L, idx);
return (t == LUA_TSTRING || t == LUA_TNUMBER);
}
2000-10-03 16:27:44 +02:00
LUA_API int lua_isuserdata (lua_State *L, int idx) {
const TValue *o = index2addr(L, idx);
return (ttisuserdata(o) || ttislightuserdata(o));
}
2002-06-13 15:39:55 +02:00
LUA_API int lua_rawequal (lua_State *L, int index1, int index2) {
StkId o1 = index2addr(L, index1);
StkId o2 = index2addr(L, index2);
2006-01-10 13:50:00 +01:00
return (o1 == luaO_nilobject || o2 == luaO_nilobject) ? 0
: luaO_rawequalObj(o1, o2);
2002-06-13 15:39:55 +02:00
}
LUA_API void lua_arith (lua_State *L, int op) {
lua_lock(L);
api_checknelems(L, 2);
if (ttisnumber(L->top - 2) && ttisnumber(L->top - 1))
changenvalue(L->top - 2,
luaO_arith(op, nvalue(L->top - 2), nvalue(L->top - 1)));
else
luaV_arith(L, L->top - 2, L->top - 2, L->top - 1, op - LUA_OPADD + TM_ADD);
L->top--;
2002-06-13 15:39:55 +02:00
lua_unlock(L);
1997-09-16 21:25:59 +02:00
}
LUA_API int lua_compare (lua_State *L, int index1, int index2, int op) {
StkId o1, o2;
int i;
lua_lock(L); /* may call tag method */
o1 = index2addr(L, index1);
o2 = index2addr(L, index2);
if (o1 == luaO_nilobject || o2 == luaO_nilobject)
i = 0;
else switch (op) {
case LUA_OPEQ: i = equalobj(L, o1, o2); break;
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); i = 0;
}
2001-03-02 18:27:50 +01:00
lua_unlock(L);
return i;
2000-09-05 21:33:32 +02:00
}
1997-09-16 21:25:59 +02:00
LUA_API lua_Number lua_tonumber (lua_State *L, int idx) {
TValue n;
const TValue *o = index2addr(L, idx);
if (tonumber(o, &n))
return nvalue(o);
else
return 0;
1997-09-16 21:25:59 +02:00
}
LUA_API lua_Integer lua_tointeger (lua_State *L, int idx) {
TValue n;
const TValue *o = index2addr(L, idx);
if (tonumber(o, &n)) {
lua_Integer res;
2005-05-05 17:34:03 +02:00
lua_Number num = nvalue(o);
lua_number2integer(res, num);
return res;
}
else
return 0;
}
LUA_API int lua_toboolean (lua_State *L, int idx) {
const TValue *o = index2addr(L, idx);
return !l_isfalse(o);
2001-12-11 23:48:44 +01:00
}
2005-05-16 21:21:11 +02:00
LUA_API const char *lua_tolstring (lua_State *L, int idx, size_t *len) {
StkId o = index2addr(L, idx);
2005-05-16 21:21:11 +02:00
if (!ttisstring(o)) {
lua_lock(L); /* `luaV_tostring' may create a new string */
2005-05-16 21:21:11 +02:00
if (!luaV_tostring(L, o)) { /* conversion failed? */
if (len != NULL) *len = 0;
lua_unlock(L);
return NULL;
}
luaC_checkGC(L);
o = index2addr(L, idx); /* previous call may reallocate the stack */
lua_unlock(L);
}
2005-05-16 21:21:11 +02:00
if (len != NULL) *len = tsvalue(o)->len;
return svalue(o);
1997-09-16 21:25:59 +02:00
}
LUA_API size_t lua_objlen (lua_State *L, int idx) {
StkId o = index2addr(L, idx);
2005-03-16 17:58:41 +01:00
switch (ttype(o)) {
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;
}
1997-09-16 21:25:59 +02:00
}
LUA_API lua_CFunction lua_tocfunction (lua_State *L, int idx) {
StkId o = index2addr(L, idx);
return (!iscfunction(o)) ? NULL : clvalue(o)->c.f;
1997-09-16 21:25:59 +02:00
}
LUA_API void *lua_touserdata (lua_State *L, int idx) {
StkId o = index2addr(L, idx);
switch (ttype(o)) {
case LUA_TUSERDATA: return (rawuvalue(o) + 1);
case LUA_TLIGHTUSERDATA: return pvalue(o);
default: return NULL;
}
1999-11-11 18:02:40 +01:00
}
LUA_API lua_State *lua_tothread (lua_State *L, int idx) {
StkId o = index2addr(L, idx);
return (!ttisthread(o)) ? NULL : thvalue(o);
}
LUA_API const void *lua_topointer (lua_State *L, int idx) {
StkId o = index2addr(L, idx);
switch (ttype(o)) {
case LUA_TTABLE: return hvalue(o);
case LUA_TFUNCTION: return clvalue(o);
case LUA_TTHREAD: return thvalue(o);
case LUA_TUSERDATA:
case LUA_TLIGHTUSERDATA:
return lua_touserdata(L, idx);
default: return NULL;
}
}
1997-09-16 21:25:59 +02:00
2000-08-28 19:57:04 +02:00
/*
** push functions (C -> stack)
*/
1997-09-16 21:25:59 +02:00
2000-10-20 18:39:03 +02:00
LUA_API void lua_pushnil (lua_State *L) {
2001-03-02 18:27:50 +01:00
lua_lock(L);
setnilvalue(L->top);
2000-08-28 19:57:04 +02:00
api_incr_top(L);
2001-03-02 18:27:50 +01:00
lua_unlock(L);
1997-09-16 21:25:59 +02:00
}
2000-08-28 19:57:04 +02:00
LUA_API void lua_pushnumber (lua_State *L, lua_Number n) {
2001-03-02 18:27:50 +01:00
lua_lock(L);
setnvalue(L->top, n);
2000-08-28 19:57:04 +02:00
api_incr_top(L);
2001-03-02 18:27:50 +01:00
lua_unlock(L);
1997-09-16 21:25:59 +02:00
}
2000-08-28 19:57:04 +02:00
LUA_API void lua_pushinteger (lua_State *L, lua_Integer n) {
lua_lock(L);
2005-12-22 17:19:56 +01:00
setnvalue(L->top, cast_num(n));
api_incr_top(L);
lua_unlock(L);
}
LUA_API const char *lua_pushlstring (lua_State *L, const char *s, size_t len) {
TString *ts;
2001-03-02 18:27:50 +01:00
lua_lock(L);
luaC_checkGC(L);
ts = luaS_newlstr(L, s, len);
setsvalue2s(L, L->top, ts);
2000-08-28 19:57:04 +02:00
api_incr_top(L);
2001-03-02 18:27:50 +01:00
lua_unlock(L);
return getstr(ts);
1997-09-16 21:25:59 +02:00
}
2000-08-28 19:57:04 +02:00
LUA_API const char *lua_pushstring (lua_State *L, const char *s) {
if (s == NULL) {
lua_pushnil(L);
return NULL;
}
1998-03-06 17:54:42 +01:00
else
return lua_pushlstring(L, s, strlen(s));
1998-03-06 17:54:42 +01:00
}
2000-08-28 19:57:04 +02:00
LUA_API const char *lua_pushvfstring (lua_State *L, const char *fmt,
va_list argp) {
const char *ret;
lua_lock(L);
luaC_checkGC(L);
ret = luaO_pushvfstring(L, fmt, argp);
lua_unlock(L);
return ret;
}
LUA_API const char *lua_pushfstring (lua_State *L, const char *fmt, ...) {
const char *ret;
va_list argp;
lua_lock(L);
luaC_checkGC(L);
va_start(argp, fmt);
ret = luaO_pushvfstring(L, fmt, argp);
va_end(argp);
lua_unlock(L);
return ret;
}
2000-10-20 18:39:03 +02:00
LUA_API void lua_pushcclosure (lua_State *L, lua_CFunction fn, int n) {
Closure *cl;
2001-03-02 18:27:50 +01:00
lua_lock(L);
2001-02-12 16:42:44 +01:00
api_checknelems(L, n);
api_check(L, n <= UCHAR_MAX);
luaC_checkGC(L);
cl = luaF_newCclosure(L, n, getcurrenv(L));
2001-10-02 18:45:03 +02:00
cl->c.f = fn;
L->top -= n;
while (n--)
setobj2n(L, &cl->c.upvalue[n], L->top+n);
setclvalue(L, L->top, cl);
lua_assert(iswhite(obj2gco(cl)));
2002-01-25 22:55:41 +01:00
api_incr_top(L);
2001-03-02 18:27:50 +01:00
lua_unlock(L);
1997-09-16 21:25:59 +02:00
}
2000-08-28 19:57:04 +02:00
2001-12-11 23:48:44 +01:00
LUA_API void lua_pushboolean (lua_State *L, int b) {
lua_lock(L);
setbvalue(L->top, (b != 0)); /* ensure that true is 1 */
2001-12-11 23:48:44 +01:00
api_incr_top(L);
lua_unlock(L);
}
LUA_API void lua_pushlightuserdata (lua_State *L, void *p) {
lua_lock(L);
setpvalue(L->top, p);
api_incr_top(L);
lua_unlock(L);
}
2004-09-15 22:39:42 +02: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-28 19:57:04 +02:00
/*
** get functions (Lua -> stack)
*/
LUA_API void lua_gettable (lua_State *L, int idx) {
StkId t;
2001-03-02 18:27:50 +01:00
lua_lock(L);
t = index2addr(L, idx);
api_checkvalidindex(L, t);
luaV_gettable(L, t, L->top - 1, L->top - 1);
2001-03-02 18:27:50 +01:00
lua_unlock(L);
1997-09-16 21:25:59 +02:00
}
LUA_API void lua_getfield (lua_State *L, int idx, const char *k) {
StkId t;
lua_lock(L);
t = index2addr(L, idx);
api_checkvalidindex(L, t);
setsvalue2s(L, L->top, luaS_new(L, k));
api_incr_top(L);
luaV_gettable(L, t, L->top - 1, L->top - 1);
lua_unlock(L);
}
LUA_API void lua_rawget (lua_State *L, int idx) {
StkId t;
2001-03-02 18:27:50 +01:00
lua_lock(L);
t = index2addr(L, idx);
2002-08-05 16:50:39 +02:00
api_check(L, ttistable(t));
setobj2s(L, L->top - 1, luaH_get(hvalue(t), L->top - 1));
2001-03-02 18:27:50 +01:00
lua_unlock(L);
2000-08-28 19:57:04 +02:00
}
LUA_API void lua_rawgeti (lua_State *L, int idx, int n) {
StkId o;
2001-03-02 18:27:50 +01:00
lua_lock(L);
o = index2addr(L, idx);
2002-08-05 16:50:39 +02:00
api_check(L, ttistable(o));
setobj2s(L, L->top, luaH_getnum(hvalue(o), n));
2000-08-28 19:57:04 +02:00
api_incr_top(L);
2001-03-02 18:27:50 +01:00
lua_unlock(L);
2000-08-28 19:57:04 +02:00
}
2003-10-10 15:29:28 +02:00
LUA_API void lua_createtable (lua_State *L, int narray, int nrec) {
Table *t;
2001-03-02 18:27:50 +01:00
lua_lock(L);
luaC_checkGC(L);
t = luaH_new(L);
sethvalue(L, L->top, t);
2000-08-28 19:57:04 +02:00
api_incr_top(L);
if (narray > 0 || nrec > 0)
luaH_resize(L, t, narray, nrec);
2001-03-02 18:27:50 +01:00
lua_unlock(L);
1997-09-16 21:25:59 +02:00
}
2002-03-27 13:49:53 +01:00
LUA_API int lua_getmetatable (lua_State *L, int objindex) {
const TValue *obj;
Table *mt = NULL;
2002-03-27 13:49:53 +01:00
int res;
2001-12-05 21:15:18 +01:00
lua_lock(L);
obj = index2addr(L, objindex);
switch (ttype(obj)) {
case LUA_TTABLE:
mt = hvalue(obj)->metatable;
break;
case LUA_TUSERDATA:
mt = uvalue(obj)->metatable;
break;
2005-05-05 17:34:03 +02:00
default:
mt = G(L)->mt[ttype(obj)];
break;
2001-12-05 21:15:18 +01:00
}
2003-12-01 19:22:56 +01:00
if (mt == NULL)
2002-03-27 13:49:53 +01:00
res = 0;
else {
sethvalue(L, L->top, mt);
api_incr_top(L);
2002-03-27 13:49:53 +01:00
res = 1;
}
2001-12-05 21:15:18 +01:00
lua_unlock(L);
2002-03-27 13:49:53 +01:00
return res;
2001-12-05 21:15:18 +01:00
}
2000-08-28 19:57:04 +02:00
LUA_API void lua_getfenv (lua_State *L, int idx) {
StkId o;
lua_lock(L);
o = index2addr(L, idx);
api_checkvalidindex(L, o);
switch (ttype(o)) {
case LUA_TFUNCTION:
sethvalue(L, L->top, clvalue(o)->c.env);
break;
case LUA_TUSERDATA:
sethvalue(L, L->top, uvalue(o)->env);
break;
case LUA_TTHREAD:
setobj2s(L, L->top, gt(thvalue(o)));
break;
default:
setnilvalue(L->top);
break;
}
api_incr_top(L);
lua_unlock(L);
}
2000-08-28 19:57:04 +02:00
/*
** set functions (stack -> Lua)
*/
LUA_API void lua_settable (lua_State *L, int idx) {
StkId t;
2001-03-02 18:27:50 +01:00
lua_lock(L);
2001-02-12 16:42:44 +01:00
api_checknelems(L, 2);
t = index2addr(L, idx);
api_checkvalidindex(L, t);
luaV_settable(L, t, L->top - 2, L->top - 1);
L->top -= 2; /* pop index and value */
2001-03-02 18:27:50 +01:00
lua_unlock(L);
2000-08-28 19:57:04 +02:00
}
LUA_API void lua_setfield (lua_State *L, int idx, const char *k) {
StkId t;
lua_lock(L);
api_checknelems(L, 1);
t = index2addr(L, idx);
api_checkvalidindex(L, t);
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 */
lua_unlock(L);
}
LUA_API void lua_rawset (lua_State *L, int idx) {
StkId t;
2001-03-02 18:27:50 +01:00
lua_lock(L);
2001-02-12 16:42:44 +01:00
api_checknelems(L, 2);
t = index2addr(L, idx);
2002-08-05 16:50:39 +02:00
api_check(L, ttistable(t));
setobj2t(L, luaH_set(L, hvalue(t), L->top-2), L->top-1);
luaC_barriert(L, hvalue(t), L->top-1);
2000-09-05 21:33:32 +02:00
L->top -= 2;
2001-03-02 18:27:50 +01:00
lua_unlock(L);
2000-08-28 19:57:04 +02:00
}
LUA_API void lua_rawseti (lua_State *L, int idx, int n) {
StkId o;
2001-03-02 18:27:50 +01:00
lua_lock(L);
2001-02-12 16:42:44 +01:00
api_checknelems(L, 1);
o = index2addr(L, idx);
2002-08-05 16:50:39 +02:00
api_check(L, ttistable(o));
setobj2t(L, luaH_setnum(L, hvalue(o), n), L->top-1);
luaC_barriert(L, hvalue(o), L->top-1);
2000-09-05 21:33:32 +02:00
L->top--;
2001-03-02 18:27:50 +01:00
lua_unlock(L);
2000-08-28 19:57:04 +02:00
}
LUA_API int lua_setmetatable (lua_State *L, int objindex) {
TValue *obj;
2003-12-01 19:22:56 +01:00
Table *mt;
2001-12-05 21:15:18 +01:00
lua_lock(L);
api_checknelems(L, 1);
obj = index2addr(L, objindex);
api_checkvalidindex(L, obj);
2003-12-01 19:22:56 +01:00
if (ttisnil(L->top - 1))
mt = NULL;
else {
api_check(L, ttistable(L->top - 1));
mt = hvalue(L->top - 1);
}
2001-12-05 21:15:18 +01:00
switch (ttype(obj)) {
case LUA_TTABLE: {
2003-12-09 17:56:11 +01:00
hvalue(obj)->metatable = mt;
if (mt)
2004-09-15 22:39:42 +02:00
luaC_objbarriert(L, hvalue(obj), mt);
2001-12-05 21:15:18 +01:00
break;
}
case LUA_TUSERDATA: {
uvalue(obj)->metatable = mt;
if (mt) {
luaC_objbarrier(L, rawuvalue(obj), mt);
luaC_checkfinalizer(L, rawuvalue(obj));
}
2001-12-05 21:15:18 +01:00
break;
}
default: {
2005-05-05 17:34:03 +02:00
G(L)->mt[ttype(obj)] = mt;
break;
}
2001-12-05 21:15:18 +01:00
}
L->top--;
lua_unlock(L);
2005-05-05 17:34:03 +02:00
return 1;
}
LUA_API int lua_setfenv (lua_State *L, int idx) {
StkId o;
int res = 1;
lua_lock(L);
api_checknelems(L, 1);
o = index2addr(L, idx);
api_checkvalidindex(L, o);
api_check(L, ttistable(L->top - 1));
switch (ttype(o)) {
case LUA_TFUNCTION:
clvalue(o)->c.env = hvalue(L->top - 1);
break;
case LUA_TUSERDATA:
uvalue(o)->env = hvalue(L->top - 1);
break;
case LUA_TTHREAD:
sethvalue(L, gt(thvalue(o)), hvalue(L->top - 1));
break;
default:
res = 0;
break;
}
if (res) luaC_objbarrier(L, gcvalue(o), hvalue(L->top - 1));
L->top--;
2001-12-05 21:15:18 +01:00
lua_unlock(L);
return res;
2001-12-05 21:15:18 +01:00
}
2000-08-28 19:57:04 +02:00
2000-09-14 16:09:31 +02:00
/*
2002-05-01 22:48:12 +02:00
** `load' and `call' functions (run Lua code)
2000-09-14 16:09:31 +02:00
*/
2004-06-08 16:31:00 +02:00
#define checkresults(L,na,nr) \
api_check(L, (nr) == LUA_MULTRET || (L->ci->top - L->top >= (nr) - (na)))
2006-09-11 16:07:24 +02:00
2004-06-08 16:31:00 +02:00
2009-03-23 15:26:12 +01:00
LUA_API int lua_getctx (lua_State *L, int *ctx) {
if (L->ci->callstatus & CIST_YIELDED) {
if (ctx) *ctx = L->ci->u.c.ctx;
return L->ci->u.c.status;
2009-03-23 15:26:12 +01:00
}
else return LUA_OK;
}
LUA_API void lua_callk (lua_State *L, int nargs, int nresults, int ctx,
lua_CFunction k) {
StkId func;
2001-03-02 18:27:50 +01:00
lua_lock(L);
/* cannot use continuations inside hooks */
2009-03-23 15:26:12 +01:00
api_check(L, k == NULL || !isLua(L->ci));
2001-02-12 16:42:44 +01:00
api_checknelems(L, nargs+1);
2004-06-08 16:31:00 +02:00
checkresults(L, nargs, nresults);
func = L->top - (nargs+1);
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 */
}
else /* no continuation or no yieldable */
luaD_call(L, func, nresults, 0); /* just do the call */
adjustresults(L, nresults);
2001-03-02 18:27:50 +01:00
lua_unlock(L);
2000-09-14 16:09:31 +02:00
}
2000-08-28 19:57:04 +02:00
2002-12-04 18:29:32 +01: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);
luaD_call(L, c->func, c->nresults, 0);
2002-12-04 18:29:32 +01:00
}
LUA_API int lua_pcallk (lua_State *L, int nargs, int nresults, int errfunc,
int ctx, lua_CFunction k) {
2002-12-04 18:29:32 +01:00
struct CallS c;
int status;
2002-08-06 17:32:22 +02:00
ptrdiff_t func;
lua_lock(L);
2004-06-08 16:31:00 +02:00
api_checknelems(L, nargs+1);
checkresults(L, nargs, nresults);
if (errfunc == 0)
func = 0;
else {
StkId o = index2addr(L, errfunc);
api_checkvalidindex(L, o);
func = savestack(L, o);
}
2002-12-04 18:29:32 +01:00
c.func = L->top - (nargs+1); /* function to be called */
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') */
CallInfo *ci = L->ci;
ci->u.c.k = k; /* save continuation */
ci->u.c.ctx = ctx; /* save context */
/* save information for error recovery */
ci->u.c.oldtop = savestack(L, c.func);
ci->u.c.old_allowhook = L->allowhook;
ci->u.c.old_errfunc = L->errfunc;
L->errfunc = func;
/* mark that function may do error recovery */
ci->callstatus |= CIST_YPCALL;
luaD_call(L, c.func, nresults, 1); /* do the call */
ci->callstatus &= ~CIST_YPCALL;
L->errfunc = ci->u.c.old_errfunc;
status = LUA_OK; /* if it is here, there were no errors */
}
adjustresults(L, nresults);
2002-12-04 18:29:32 +01:00
lua_unlock(L);
return status;
}
/*
** Execute a protected C call.
*/
struct CCallS { /* data to `f_Ccall' */
lua_CFunction func;
void *ud;
};
static void f_Ccall (lua_State *L, void *ud) {
struct CCallS *c = cast(struct CCallS *, ud);
Closure *cl;
cl = luaF_newCclosure(L, 0, getcurrenv(L));
2002-12-04 18:29:32 +01:00
cl->c.f = c->func;
setclvalue(L, L->top, cl); /* push function */
2005-04-05 17:35:15 +02:00
api_incr_top(L);
2002-12-04 18:29:32 +01:00
setpvalue(L->top, c->ud); /* push only argument */
2005-04-05 17:35:15 +02:00
api_incr_top(L);
luaD_call(L, L->top - 2, 0, 0);
2002-12-04 18:29:32 +01:00
}
LUA_API int lua_cpcall (lua_State *L, lua_CFunction func, void *ud) {
struct CCallS c;
int status;
lua_lock(L);
c.func = func;
c.ud = ud;
status = luaD_pcall(L, f_Ccall, &c, savestack(L, L->top), 0);
lua_unlock(L);
return status;
}
2005-05-17 21:49:15 +02:00
LUA_API int lua_load (lua_State *L, lua_Reader reader, void *data,
2002-06-03 22:11:07 +02:00
const char *chunkname) {
ZIO z;
int status;
lua_lock(L);
if (!chunkname) chunkname = "?";
2003-08-25 22:00:50 +02:00
luaZ_init(L, &z, reader, data);
2003-08-27 23:01:44 +02:00
status = luaD_protectedparser(L, &z, chunkname);
lua_unlock(L);
return status;
}
2005-05-17 21:49:15 +02:00
LUA_API int lua_dump (lua_State *L, lua_Writer writer, void *data) {
2002-10-25 23:31:28 +02:00
int status;
TValue *o;
2002-10-25 23:31:28 +02:00
lua_lock(L);
api_checknelems(L, 1);
o = L->top - 1;
if (isLfunction(o))
2009-07-15 20:37:19 +02:00
status = luaU_dump(L, getproto(o), writer, data, 0);
2002-10-25 23:31:28 +02:00
else
2005-09-01 19:42:22 +02:00
status = 1;
2002-10-25 23:31:28 +02:00
lua_unlock(L);
return status;
}
2005-01-07 20:53:32 +01:00
LUA_API int lua_status (lua_State *L) {
2004-09-15 22:39:42 +02:00
return L->status;
}
2000-10-02 16:47:43 +02:00
/*
** Garbage-collection function
2000-10-02 16:47:43 +02:00
*/
LUA_API int lua_gc (lua_State *L, int what, int data) {
int res = 0;
global_State *g;
lua_lock(L);
g = G(L);
switch (what) {
case LUA_GCSTOP: {
2004-11-24 19:55:56 +01:00
g->GCthreshold = MAX_LUMEM;
break;
}
case LUA_GCRESTART: {
2004-08-30 15:44:44 +02:00
g->GCthreshold = g->totalbytes;
break;
}
case LUA_GCCOLLECT: {
luaC_fullgc(L, 0);
break;
}
case LUA_GCCOUNT: {
/* GC values are expressed in Kbytes: #bytes/2^10 */
2005-12-22 17:19:56 +01:00
res = cast_int(g->totalbytes >> 10);
break;
}
2005-10-20 13:35:50 +02:00
case LUA_GCCOUNTB: {
2005-12-22 17:19:56 +01:00
res = cast_int(g->totalbytes & 0x3ff);
2005-10-20 13:35:50 +02:00
break;
}
2004-06-04 17:30:53 +02:00
case LUA_GCSTEP: {
lu_mem oldts = g->GCthreshold;
2004-06-04 17:30:53 +02:00
lu_mem a = (cast(lu_mem, data) << 10);
g->GCthreshold = (a <= g->totalbytes) ? g->totalbytes - a : 0;
while (g->GCthreshold <= g->totalbytes) {
luaC_step(L);
if (g->gcstate == GCSpause) { /* end of cycle? */
res = 1; /* signal it */
break;
}
}
if (oldts == MAX_LUMEM) /* collector was stopped? */
g->GCthreshold = oldts; /* keep it that way */
break;
2004-06-04 17:30:53 +02:00
}
2005-03-22 17:04:29 +01:00
case LUA_GCSETPAUSE: {
res = g->gcpause;
g->gcpause = data;
2004-12-06 18:53:42 +01:00
break;
}
case LUA_GCSETSTEPMUL: {
res = g->gcstepmul;
g->gcstepmul = data;
2004-12-06 18:53:42 +01:00
break;
}
default: res = -1; /* invalid option */
}
lua_unlock(L);
return res;
2000-10-02 16:47:43 +02:00
}
2000-08-28 19:57:04 +02:00
/*
2000-08-31 16:08:27 +02:00
** miscellaneous functions
2000-08-28 19:57:04 +02:00
*/
2002-06-18 17:19:27 +02:00
LUA_API int lua_error (lua_State *L) {
2001-03-02 18:27:50 +01:00
lua_lock(L);
2002-05-01 22:48:12 +02:00
api_checknelems(L, 1);
luaG_errormsg(L);
2001-03-02 18:27:50 +01:00
lua_unlock(L);
return 0; /* to avoid warnings */
1997-09-16 21:25:59 +02:00
}
LUA_API int lua_next (lua_State *L, int idx) {
StkId t;
2002-02-14 22:46:13 +01:00
int more;
2001-03-02 18:27:50 +01:00
lua_lock(L);
t = index2addr(L, idx);
2002-08-05 16:50:39 +02:00
api_check(L, ttistable(t));
2002-02-14 22:46:13 +01:00
more = luaH_next(L, hvalue(t), L->top - 1);
if (more) {
2000-08-31 16:08:27 +02:00
api_incr_top(L);
}
2001-10-25 21:14:14 +02:00
else /* no more elements */
2000-09-05 21:33:32 +02:00
L->top -= 1; /* remove key */
2001-03-02 18:27:50 +01:00
lua_unlock(L);
2002-02-14 22:46:13 +01:00
return more;
}
2000-10-20 18:39:03 +02:00
LUA_API void lua_concat (lua_State *L, int n) {
2001-03-02 18:27:50 +01:00
lua_lock(L);
2001-02-12 16:42:44 +01:00
api_checknelems(L, n);
2001-02-14 18:04:11 +01:00
if (n >= 2) {
2005-07-31 19:12:32 +02:00
luaC_checkGC(L);
luaV_concat(L, n);
2001-02-14 18:04:11 +01:00
}
else if (n == 0) { /* push empty string */
setsvalue2s(L, L->top, luaS_newlstr(L, "", 0));
2001-02-14 18:04:11 +01:00
api_incr_top(L);
}
/* else n == 1; nothing to do */
2001-03-02 18:27:50 +01:00
lua_unlock(L);
2000-09-05 21:33:32 +02:00
}
2000-10-26 14:47:05 +02:00
LUA_API lua_Alloc lua_getallocf (lua_State *L, void **ud) {
2005-09-20 19:55:10 +02:00
lua_Alloc f;
lua_lock(L);
2005-07-05 16:31:20 +02:00
if (ud) *ud = G(L)->ud;
2005-09-20 19:55:10 +02: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);
}
2000-10-26 14:47:05 +02:00
LUA_API void *lua_newuserdata (lua_State *L, size_t size) {
Udata *u;
2001-03-02 18:27:50 +01:00
lua_lock(L);
luaC_checkGC(L);
u = luaS_newudata(L, size, getcurrenv(L));
setuvalue(L, L->top, u);
api_incr_top(L);
lua_unlock(L);
return u + 1;
}
2005-02-23 18:30:22 +01:00
static const char *aux_upvalue (StkId fi, int n, TValue **val) {
Closure *f;
if (!ttisfunction(fi)) return NULL;
f = clvalue(fi);
if (f->c.isC) {
if (!(1 <= n && n <= f->c.nupvalues)) return NULL;
*val = &f->c.upvalue[n-1];
return "";
}
else {
Proto *p = f->l.p;
if (!(1 <= n && n <= p->sizeupvalues)) return NULL;
*val = f->l.upvals[n-1]->v;
return getstr(p->upvalues[n-1]);
}
}
LUA_API const char *lua_getupvalue (lua_State *L, int funcindex, int n) {
const char *name;
TValue *val;
lua_lock(L);
name = aux_upvalue(index2addr(L, funcindex), n, &val);
if (name) {
setobj2s(L, L->top, val);
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;
TValue *val;
2003-12-09 17:56:11 +01:00
StkId fi;
lua_lock(L);
fi = index2addr(L, funcindex);
api_checknelems(L, 1);
2005-02-23 18:30:22 +01:00
name = aux_upvalue(fi, n, &val);
if (name) {
L->top--;
setobj(L, val, L->top);
2003-12-09 17:56:11 +01:00
luaC_barrier(L, clvalue(fi), L->top);
}
lua_unlock(L);
return name;
}