lua/lapi.c

824 lines
17 KiB
C
Raw Normal View History

1997-09-16 23:25:59 +04:00
/*
** $Id: lapi.c,v 1.216 2002/11/06 19:08:00 roberto Exp roberto $
1997-09-16 23:25:59 +04:00
** Lua API
** See Copyright Notice in lua.h
*/
#include <assert.h>
1997-09-16 23:25:59 +04:00
#include <string.h>
#include "lua.h"
1997-09-16 23:25:59 +04:00
#include "lapi.h"
2002-05-15 22:57:44 +04:00
#include "ldebug.h"
1997-09-16 23:25:59 +04:00
#include "ldo.h"
#include "lfunc.h"
#include "lgc.h"
#include "lmem.h"
#include "lobject.h"
#include "lstate.h"
1997-09-16 23:25:59 +04:00
#include "lstring.h"
#include "ltable.h"
#include "ltm.h"
#include "lundump.h"
1997-09-16 23:25:59 +04:00
#include "lvm.h"
const char lua_ident[] =
"$Lua: " LUA_VERSION " " LUA_COPYRIGHT " $\n"
"$Authors: " LUA_AUTHORS " $\n"
"$URL: www.lua.org $\n";
1997-09-16 23:25:59 +04:00
2001-02-12 18:42:44 +03:00
#ifndef api_check
#define api_check(L, o) /*{ assert(o); }*/
2001-02-12 18:42:44 +03:00
#endif
#define api_checknelems(L, n) api_check(L, (n) <= (L->top - L->ci->base))
2001-02-12 18:42:44 +03:00
#define api_incr_top(L) {api_check(L, L->top < L->ci->top); L->top++;}
1997-09-16 23:25:59 +04:00
static TObject *negindex (lua_State *L, int index) {
if (index > LUA_REGISTRYINDEX) {
api_check(L, index != 0 && -index <= L->top - L->ci->base);
return L->top+index;
}
else switch (index) { /* pseudo-indices */
2001-12-05 23:15:18 +03:00
case LUA_REGISTRYINDEX: return registry(L);
case LUA_GLOBALSINDEX: return gt(L);
default: {
TObject *func = (L->ci->base - 1);
index = LUA_GLOBALSINDEX - index;
api_check(L, iscfunction(func) && index <= clvalue(func)->c.nupvalues);
return &clvalue(func)->c.upvalue[index-1];
}
}
}
static TObject *luaA_index (lua_State *L, int index) {
if (index > 0) {
api_check(L, index <= L->top - L->ci->base);
return L->ci->base + index - 1;
}
else
return negindex(L, index);
}
1997-09-16 23:25:59 +04:00
static TObject *luaA_indexAcceptable (lua_State *L, int index) {
2001-02-13 19:17:53 +03:00
if (index > 0) {
TObject *o = L->ci->base+(index-1);
api_check(L, index <= L->stack_last - L->ci->base);
if (o >= L->top) return NULL;
else return o;
}
else
return negindex(L, index);
}
2000-08-28 21:57:04 +04:00
void luaA_pushobject (lua_State *L, const TObject *o) {
setobj2s(L->top, o);
2002-01-26 00:55:41 +03:00
incr_top(L);
}
LUA_API int lua_checkstack (lua_State *L, int size) {
int res;
lua_lock(L);
2002-03-26 23:46:10 +03:00
if ((L->top - L->ci->base + size) > LUA_MAXCSTACK)
res = 0; /* stack overflow */
2002-03-20 15:51:29 +03:00
else {
luaD_checkstack(L, size);
if (L->ci->top < L->top + size)
L->ci->top = L->top + size;
res = 1;
}
lua_unlock(L);
return res;
2000-08-30 00:43:28 +04:00
}
2002-11-06 22:08:00 +03:00
LUA_API void lua_movethread (lua_State *from, lua_State *to, int n) {
int i;
lua_lock(to);
api_checknelems(from, n);
from->top -= n;
for (i = 0; i < n; i++) {
setobj2s(to->top, from->top + i);
2002-11-06 22:08:00 +03:00
api_incr_top(to);
}
lua_unlock(to);
}
2002-06-06 16:40:22 +04:00
LUA_API lua_CFunction lua_atpanic (lua_State *L, lua_CFunction panicf) {
2002-04-16 21:08:28 +04:00
lua_CFunction old;
lua_lock(L);
old = G(L)->panic;
G(L)->panic = panicf;
lua_unlock(L);
return old;
}
LUA_API lua_State *lua_newthread (lua_State *L) {
lua_State *L1;
lua_lock(L);
L1 = luaE_newthread(L);
setthvalue(L->top, L1);
api_incr_top(L);
lua_unlock(L);
lua_userstateopen(L1);
return L1;
}
2002-10-26 01:31:28 +04:00
1997-09-16 23:25:59 +04:00
/*
2000-08-28 21:57:04 +04:00
** basic stack manipulation
1997-09-16 23:25:59 +04:00
*/
2000-10-20 20:39:03 +04:00
LUA_API int lua_gettop (lua_State *L) {
return (L->top - L->ci->base);
1997-09-16 23:25:59 +04:00
}
2000-10-20 20:39:03 +04:00
LUA_API void lua_settop (lua_State *L, int index) {
2001-03-02 20:27:50 +03:00
lua_lock(L);
if (index >= 0) {
api_check(L, index <= L->stack_last - L->ci->base);
2001-12-21 00:26:52 +03:00
while (L->top < L->ci->base + index)
setnilvalue(L->top++);
L->top = L->ci->base + index;
}
2001-02-12 18:42:44 +03:00
else {
api_check(L, -(index+1) <= (L->top - L->ci->base));
L->top += index+1; /* `subtract' index (index is negative) */
2001-02-12 18:42:44 +03:00
}
2001-03-02 20:27:50 +03:00
lua_unlock(L);
}
2000-10-20 20:39:03 +04:00
LUA_API void lua_remove (lua_State *L, int index) {
StkId p;
2001-03-02 20:27:50 +03:00
lua_lock(L);
2001-02-13 19:17:53 +03:00
p = luaA_index(L, index);
while (++p < L->top) setobjs2s(p-1, p);
2000-09-05 23:33:32 +04:00
L->top--;
2001-03-02 20:27:50 +03:00
lua_unlock(L);
}
2000-10-20 20:39:03 +04:00
LUA_API void lua_insert (lua_State *L, int index) {
StkId p;
2000-09-05 23:33:32 +04:00
StkId q;
2001-03-02 20:27:50 +03:00
lua_lock(L);
2001-02-13 19:17:53 +03:00
p = luaA_index(L, index);
for (q = L->top; q>p; q--) setobjs2s(q, q-1);
setobjs2s(p, L->top);
2001-03-02 20:27:50 +03:00
lua_unlock(L);
1997-09-16 23:25:59 +04:00
}
2002-02-06 01:35:58 +03:00
LUA_API void lua_replace (lua_State *L, int index) {
lua_lock(L);
api_checknelems(L, 1);
setobj(luaA_index(L, index), L->top - 1); /* unknown destination */
2002-02-06 01:35:58 +03:00
L->top--;
lua_unlock(L);
}
2000-10-20 20:39:03 +04:00
LUA_API void lua_pushvalue (lua_State *L, int index) {
2001-03-02 20:27:50 +03:00
lua_lock(L);
setobj2s(L->top, luaA_index(L, index));
2000-08-28 21:57:04 +04:00
api_incr_top(L);
2001-03-02 20:27:50 +03:00
lua_unlock(L);
1997-09-16 23:25:59 +04:00
}
2000-08-28 21:57:04 +04:00
/*
** access functions (stack -> C)
*/
1997-09-16 23:25:59 +04:00
2001-12-05 23:15:18 +03:00
LUA_API int lua_type (lua_State *L, int index) {
StkId o = luaA_indexAcceptable(L, index);
return (o == NULL) ? LUA_TNONE : ttype(o);
}
2001-01-25 19:45:36 +03:00
2001-12-05 23:15:18 +03: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 19:45:36 +03:00
}
2000-10-20 20:39:03 +04:00
LUA_API int lua_iscfunction (lua_State *L, int index) {
StkId o = luaA_indexAcceptable(L, index);
return (o == NULL) ? 0 : iscfunction(o);
1997-09-16 23:25:59 +04:00
}
2000-10-20 20:39:03 +04:00
LUA_API int lua_isnumber (lua_State *L, int index) {
TObject n;
const TObject *o = luaA_indexAcceptable(L, index);
return (o != NULL && tonumber(o, &n));
1997-09-16 23:25:59 +04:00
}
2000-10-20 20:39:03 +04:00
LUA_API int lua_isstring (lua_State *L, int index) {
2001-12-05 23:15:18 +03:00
int t = lua_type(L, index);
return (t == LUA_TSTRING || t == LUA_TNUMBER);
}
2000-10-03 18:27:44 +04:00
LUA_API int lua_isuserdata (lua_State *L, int index) {
const TObject *o = luaA_indexAcceptable(L, index);
return (o != NULL && (ttisuserdata(o) || ttislightuserdata(o)));
}
2002-06-13 17:39:55 +04:00
LUA_API int lua_rawequal (lua_State *L, int index1, int index2) {
StkId o1 = luaA_indexAcceptable(L, index1);
StkId o2 = luaA_indexAcceptable(L, index2);
return (o1 == NULL || o2 == NULL) ? 0 /* index out of range */
2002-06-13 17:39:55 +04:00
: luaO_rawequalObj(o1, o2);
}
LUA_API int lua_equal (lua_State *L, int index1, int index2) {
StkId o1, o2;
int i;
lua_lock(L); /* may call tag method */
o1 = luaA_indexAcceptable(L, index1);
o2 = luaA_indexAcceptable(L, index2);
i = (o1 == NULL || o2 == NULL) ? 0 /* index out of range */
: equalobj(L, o1, o2);
lua_unlock(L);
return i;
1997-09-16 23:25:59 +04:00
}
2000-10-20 20:39:03 +04:00
LUA_API int lua_lessthan (lua_State *L, int index1, int index2) {
StkId o1, o2;
int i;
lua_lock(L); /* may call tag method */
o1 = luaA_indexAcceptable(L, index1);
o2 = luaA_indexAcceptable(L, index2);
i = (o1 == NULL || o2 == NULL) ? 0 /* index out-of-range */
: luaV_lessthan(L, o1, o2);
2001-03-02 20:27:50 +03:00
lua_unlock(L);
return i;
2000-09-05 23:33:32 +04:00
}
1997-09-16 23:25:59 +04:00
LUA_API lua_Number lua_tonumber (lua_State *L, int index) {
TObject n;
const TObject *o = luaA_indexAcceptable(L, index);
if (o != NULL && tonumber(o, &n))
return nvalue(o);
else
return 0;
1997-09-16 23:25:59 +04:00
}
2001-12-12 01:48:44 +03:00
LUA_API int lua_toboolean (lua_State *L, int index) {
const TObject *o = luaA_indexAcceptable(L, index);
2002-02-09 01:39:36 +03:00
return (o != NULL) && !l_isfalse(o);
2001-12-12 01:48:44 +03:00
}
LUA_API const char *lua_tostring (lua_State *L, int index) {
StkId o = luaA_indexAcceptable(L, index);
if (o == NULL)
return NULL;
2002-08-05 18:50:39 +04:00
else if (ttisstring(o))
return svalue(o);
else {
const char *s;
lua_lock(L); /* `luaV_tostring' may create a new string */
s = (luaV_tostring(L, o) ? svalue(o) : NULL);
lua_unlock(L);
return s;
}
1997-09-16 23:25:59 +04:00
}
2000-10-20 20:39:03 +04:00
LUA_API size_t lua_strlen (lua_State *L, int index) {
StkId o = luaA_indexAcceptable(L, index);
if (o == NULL)
return 0;
2002-08-05 18:50:39 +04:00
else if (ttisstring(o))
return tsvalue(o)->tsv.len;
else {
size_t l;
lua_lock(L); /* `luaV_tostring' may create a new string */
l = (luaV_tostring(L, o) ? tsvalue(o)->tsv.len : 0);
lua_unlock(L);
return l;
}
1997-09-16 23:25:59 +04:00
}
2000-10-20 20:39:03 +04:00
LUA_API lua_CFunction lua_tocfunction (lua_State *L, int index) {
StkId o = luaA_indexAcceptable(L, index);
2001-10-02 20:45:03 +04:00
return (o == NULL || !iscfunction(o)) ? NULL : clvalue(o)->c.f;
1997-09-16 23:25:59 +04:00
}
2000-10-20 20:39:03 +04:00
LUA_API void *lua_touserdata (lua_State *L, int index) {
StkId o = luaA_indexAcceptable(L, index);
if (o == NULL) return NULL;
switch (ttype(o)) {
case LUA_TUSERDATA: return (uvalue(o) + 1);
case LUA_TLIGHTUSERDATA: return pvalue(o);
default: return NULL;
}
1999-11-11 20:02:40 +03:00
}
LUA_API lua_State *lua_tothread (lua_State *L, int index) {
StkId o = luaA_indexAcceptable(L, index);
return (o == NULL || !ttisthread(o)) ? NULL : thvalue(o);
}
2000-10-20 20:39:03 +04:00
LUA_API const void *lua_topointer (lua_State *L, int index) {
StkId o = luaA_indexAcceptable(L, index);
if (o == NULL) return NULL;
else {
switch (ttype(o)) {
case LUA_TTABLE: return hvalue(o);
case LUA_TFUNCTION: return clvalue(o);
case LUA_TUSERDATA:
case LUA_TLIGHTUSERDATA:
return lua_touserdata(L, index);
default: return NULL;
}
}
}
1997-09-16 23:25:59 +04:00
2000-08-28 21:57:04 +04:00
/*
** push functions (C -> stack)
*/
1997-09-16 23:25:59 +04:00
2000-10-20 20:39:03 +04:00
LUA_API void lua_pushnil (lua_State *L) {
2001-03-02 20:27:50 +03:00
lua_lock(L);
setnilvalue(L->top);
2000-08-28 21:57:04 +04:00
api_incr_top(L);
2001-03-02 20:27:50 +03:00
lua_unlock(L);
1997-09-16 23:25:59 +04:00
}
2000-08-28 21:57:04 +04:00
LUA_API void lua_pushnumber (lua_State *L, lua_Number n) {
2001-03-02 20:27:50 +03:00
lua_lock(L);
setnvalue(L->top, n);
2000-08-28 21:57:04 +04:00
api_incr_top(L);
2001-03-02 20:27:50 +03:00
lua_unlock(L);
1997-09-16 23:25:59 +04:00
}
2000-08-28 21:57:04 +04:00
LUA_API void lua_pushlstring (lua_State *L, const char *s, size_t len) {
2001-03-02 20:27:50 +03:00
lua_lock(L);
setsvalue2s(L->top, luaS_newlstr(L, s, len));
2000-08-28 21:57:04 +04:00
api_incr_top(L);
2001-03-02 20:27:50 +03:00
lua_unlock(L);
1997-09-16 23:25:59 +04:00
}
2000-08-28 21:57:04 +04:00
LUA_API void lua_pushstring (lua_State *L, const char *s) {
1998-03-06 19:54:42 +03:00
if (s == NULL)
lua_pushnil(L);
1998-03-06 19:54:42 +03:00
else
lua_pushlstring(L, s, strlen(s));
1998-03-06 19:54:42 +03:00
}
2000-08-28 21:57:04 +04:00
LUA_API const char *lua_pushvfstring (lua_State *L, const char *fmt,
va_list argp) {
const char *ret;
lua_lock(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);
va_start(argp, fmt);
ret = luaO_pushvfstring(L, fmt, argp);
va_end(argp);
lua_unlock(L);
return ret;
}
2000-10-20 20:39:03 +04:00
LUA_API void lua_pushcclosure (lua_State *L, lua_CFunction fn, int n) {
Closure *cl;
2001-03-02 20:27:50 +03:00
lua_lock(L);
2001-02-12 18:42:44 +03:00
api_checknelems(L, n);
cl = luaF_newCclosure(L, n);
2001-10-02 20:45:03 +04:00
cl->c.f = fn;
L->top -= n;
while (n--)
2001-10-02 20:45:03 +04:00
setobj(&cl->c.upvalue[n], L->top+n);
setclvalue(L->top, cl);
2002-01-26 00:55:41 +03:00
api_incr_top(L);
2001-03-02 20:27:50 +03:00
lua_unlock(L);
1997-09-16 23:25:59 +04:00
}
2000-08-28 21:57:04 +04:00
2001-12-12 01:48:44 +03: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-12 01:48:44 +03: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);
}
2000-08-28 21:57:04 +04:00
/*
** get functions (Lua -> stack)
*/
2000-10-20 20:39:03 +04:00
LUA_API void lua_gettable (lua_State *L, int index) {
StkId t;
2001-03-02 20:27:50 +03:00
lua_lock(L);
2001-02-13 19:17:53 +03:00
t = luaA_index(L, index);
setobj2s(L->top - 1, luaV_gettable(L, t, L->top - 1, 0));
2001-03-02 20:27:50 +03:00
lua_unlock(L);
1997-09-16 23:25:59 +04:00
}
2000-10-20 20:39:03 +04:00
LUA_API void lua_rawget (lua_State *L, int index) {
StkId t;
2001-03-02 20:27:50 +03:00
lua_lock(L);
2001-02-13 19:17:53 +03:00
t = luaA_index(L, index);
2002-08-05 18:50:39 +04:00
api_check(L, ttistable(t));
setobj2s(L->top - 1, luaH_get(hvalue(t), L->top - 1));
2001-03-02 20:27:50 +03:00
lua_unlock(L);
2000-08-28 21:57:04 +04:00
}
2000-10-20 20:39:03 +04:00
LUA_API void lua_rawgeti (lua_State *L, int index, int n) {
StkId o;
2001-03-02 20:27:50 +03:00
lua_lock(L);
2001-02-13 19:17:53 +03:00
o = luaA_index(L, index);
2002-08-05 18:50:39 +04:00
api_check(L, ttistable(o));
setobj2s(L->top, luaH_getnum(hvalue(o), n));
2000-08-28 21:57:04 +04:00
api_incr_top(L);
2001-03-02 20:27:50 +03:00
lua_unlock(L);
2000-08-28 21:57:04 +04:00
}
2000-10-20 20:39:03 +04:00
LUA_API void lua_newtable (lua_State *L) {
2001-03-02 20:27:50 +03:00
lua_lock(L);
2001-10-25 23:14:14 +04:00
sethvalue(L->top, luaH_new(L, 0, 0));
2000-08-28 21:57:04 +04:00
api_incr_top(L);
2001-03-02 20:27:50 +03:00
lua_unlock(L);
1997-09-16 23:25:59 +04:00
}
2002-08-06 21:06:56 +04:00
LUA_API const char *lua_getmode (lua_State *L, int index) {
static const char *const modes[] = {"", "k", "v", "kv"};
int mode = 0;
TObject *t;
lua_lock(L);
t = luaA_index(L, index);
api_check(L, ttistable(t));
if (hvalue(t)->mode & WEAKKEY) mode += 1;
if (hvalue(t)->mode & WEAKVALUE) mode += 2;
lua_unlock(L);
return modes[mode];
}
2002-03-27 15:49:53 +03:00
LUA_API int lua_getmetatable (lua_State *L, int objindex) {
2001-12-05 23:15:18 +03:00
StkId obj;
2002-01-30 20:26:44 +03:00
Table *mt;
2002-03-27 15:49:53 +03:00
int res;
2001-12-05 23:15:18 +03:00
lua_lock(L);
obj = luaA_indexAcceptable(L, objindex);
switch (ttype(obj)) {
case LUA_TTABLE:
2002-01-30 20:26:44 +03:00
mt = hvalue(obj)->metatable;
2001-12-05 23:15:18 +03:00
break;
case LUA_TUSERDATA:
2002-01-30 20:26:44 +03:00
mt = uvalue(obj)->uv.metatable;
2001-12-05 23:15:18 +03:00
break;
default:
2002-01-30 20:26:44 +03:00
mt = hvalue(defaultmeta(L));
2001-12-05 23:15:18 +03:00
}
if (mt == hvalue(defaultmeta(L)))
2002-03-27 15:49:53 +03:00
res = 0;
else {
2002-01-30 20:26:44 +03:00
sethvalue(L->top, mt);
api_incr_top(L);
2002-03-27 15:49:53 +03:00
res = 1;
}
2001-12-05 23:15:18 +03:00
lua_unlock(L);
2002-03-27 15:49:53 +03:00
return res;
2001-12-05 23:15:18 +03:00
}
2000-08-28 21:57:04 +04:00
LUA_API void lua_getglobals (lua_State *L, int index) {
StkId o;
lua_lock(L);
o = luaA_index(L, index);
setobj2s(L->top, isLfunction(o) ? &clvalue(o)->l.g : gt(L));
api_incr_top(L);
lua_unlock(L);
}
2000-08-28 21:57:04 +04:00
/*
** set functions (stack -> Lua)
*/
2000-10-20 20:39:03 +04:00
LUA_API void lua_settable (lua_State *L, int index) {
StkId t;
2001-03-02 20:27:50 +03:00
lua_lock(L);
2001-02-12 18:42:44 +03:00
api_checknelems(L, 2);
2001-02-13 19:17:53 +03:00
t = luaA_index(L, index);
2001-02-07 21:13:49 +03:00
luaV_settable(L, t, L->top - 2, L->top - 1);
L->top -= 2; /* pop index and value */
2001-03-02 20:27:50 +03:00
lua_unlock(L);
2000-08-28 21:57:04 +04:00
}
2000-10-20 20:39:03 +04:00
LUA_API void lua_rawset (lua_State *L, int index) {
StkId t;
2001-03-02 20:27:50 +03:00
lua_lock(L);
2001-02-12 18:42:44 +03:00
api_checknelems(L, 2);
2001-02-13 19:17:53 +03:00
t = luaA_index(L, index);
2002-08-05 18:50:39 +04:00
api_check(L, ttistable(t));
setobj2t(luaH_set(L, hvalue(t), L->top-2), L->top-1);
2000-09-05 23:33:32 +04:00
L->top -= 2;
2001-03-02 20:27:50 +03:00
lua_unlock(L);
2000-08-28 21:57:04 +04:00
}
2000-10-20 20:39:03 +04:00
LUA_API void lua_rawseti (lua_State *L, int index, int n) {
StkId o;
2001-03-02 20:27:50 +03:00
lua_lock(L);
2001-02-12 18:42:44 +03:00
api_checknelems(L, 1);
2001-02-13 19:17:53 +03:00
o = luaA_index(L, index);
2002-08-05 18:50:39 +04:00
api_check(L, ttistable(o));
setobj2t(luaH_setnum(L, hvalue(o), n), L->top-1);
2000-09-05 23:33:32 +04:00
L->top--;
2001-03-02 20:27:50 +03:00
lua_unlock(L);
2000-08-28 21:57:04 +04:00
}
2002-08-06 21:06:56 +04:00
LUA_API void lua_setmode (lua_State *L, int index, const char *mode) {
TObject *t;
lua_lock(L);
t = luaA_index(L, index);
api_check(L, ttistable(t));
hvalue(t)->mode &= ~(WEAKKEY | WEAKVALUE); /* clear bits */
if (strchr(mode, 'k')) hvalue(t)->mode |= WEAKKEY;
if (strchr(mode, 'v')) hvalue(t)->mode |= WEAKVALUE;
lua_unlock(L);
}
LUA_API int lua_setmetatable (lua_State *L, int objindex) {
TObject *obj, *mt;
int res = 1;
2001-12-05 23:15:18 +03:00
lua_lock(L);
api_checknelems(L, 1);
obj = luaA_index(L, objindex);
2002-08-05 18:50:39 +04:00
mt = (!ttisnil(L->top - 1)) ? L->top - 1 : defaultmeta(L);
api_check(L, ttistable(mt));
2001-12-05 23:15:18 +03:00
switch (ttype(obj)) {
case LUA_TTABLE: {
2002-01-30 20:26:44 +03:00
hvalue(obj)->metatable = hvalue(mt);
2001-12-05 23:15:18 +03:00
break;
}
case LUA_TUSERDATA: {
2002-01-30 20:26:44 +03:00
uvalue(obj)->uv.metatable = hvalue(mt);
2001-12-05 23:15:18 +03:00
break;
}
default: {
res = 0; /* cannot set */
break;
}
2001-12-05 23:15:18 +03:00
}
L->top--;
lua_unlock(L);
return res;
}
LUA_API int lua_setglobals (lua_State *L, int index) {
StkId o;
int res = 0;
lua_lock(L);
api_checknelems(L, 1);
o = luaA_index(L, index);
L->top--;
2002-08-05 18:50:39 +04:00
api_check(L, ttistable(L->top));
if (isLfunction(o)) {
res = 1;
clvalue(o)->l.g = *(L->top);
}
2001-12-05 23:15:18 +03:00
lua_unlock(L);
return res;
2001-12-05 23:15:18 +03:00
}
2000-08-28 21:57:04 +04:00
2000-09-14 18:09:31 +04:00
/*
2002-05-02 00:48:12 +04:00
** `load' and `call' functions (run Lua code)
2000-09-14 18:09:31 +04:00
*/
2002-06-26 20:37:23 +04:00
LUA_API void lua_call (lua_State *L, int nargs, int nresults) {
StkId func;
2001-03-02 20:27:50 +03:00
lua_lock(L);
2001-02-12 18:42:44 +03:00
api_checknelems(L, nargs+1);
func = L->top - (nargs+1);
2001-12-18 23:52:30 +03:00
luaD_call(L, func, nresults);
2001-03-02 20:27:50 +03:00
lua_unlock(L);
2000-09-14 18:09:31 +04:00
}
2000-08-28 21:57:04 +04:00
2002-08-06 19:32:22 +04:00
LUA_API int lua_pcall (lua_State *L, int nargs, int nresults, int errfunc) {
int status;
2002-08-06 19:32:22 +04:00
ptrdiff_t func;
lua_lock(L);
2002-08-06 19:32:22 +04:00
func = (errfunc == 0) ? 0 : savestack(L, luaA_index(L, errfunc));
status = luaD_pcall(L, nargs, nresults, func);
lua_unlock(L);
return status;
}
2002-06-06 16:40:22 +04:00
LUA_API int lua_load (lua_State *L, lua_Chunkreader reader, void *data,
2002-06-04 00:11:07 +04:00
const char *chunkname) {
ZIO z;
int status;
2002-06-04 00:11:07 +04:00
int c;
lua_lock(L);
if (!chunkname) chunkname = "?";
2002-06-06 16:40:22 +04:00
luaZ_init(&z, reader, data, chunkname);
2002-06-04 00:11:07 +04:00
c = luaZ_lookahead(&z);
status = luaD_protectedparser(L, &z, (c == LUA_SIGNATURE[0]));
lua_unlock(L);
return status;
}
2002-10-26 01:31:28 +04:00
LUA_API int lua_dump (lua_State *L, lua_Chunkwriter writer, void *data) {
int status;
TObject *o;
lua_lock(L);
api_checknelems(L, 1);
o = L->top - 1;
if (isLfunction(o) && clvalue(o)->l.nupvalues == 0) {
luaU_dump(L, clvalue(o)->l.p, writer, data);
status = 1;
}
else
status = 0;
lua_unlock(L);
return status;
}
2000-10-02 18:47:43 +04:00
/*
** Garbage-collection functions
*/
/* GC values are expressed in Kbytes: #bytes/2^10 */
2001-08-31 23:46:07 +04:00
#define GCscale(x) (cast(int, (x)>>10))
#define GCunscale(x) (cast(lu_mem, (x)<<10))
2000-10-02 18:47:43 +04:00
2000-10-20 20:39:03 +04:00
LUA_API int lua_getgcthreshold (lua_State *L) {
int threshold;
2001-03-02 20:27:50 +03:00
lua_lock(L);
threshold = GCscale(G(L)->GCthreshold);
2001-03-02 20:27:50 +03:00
lua_unlock(L);
return threshold;
2000-10-02 18:47:43 +04:00
}
2000-10-20 20:39:03 +04:00
LUA_API int lua_getgccount (lua_State *L) {
int count;
2001-03-02 20:27:50 +03:00
lua_lock(L);
count = GCscale(G(L)->nblocks);
2001-03-02 20:27:50 +03:00
lua_unlock(L);
return count;
2000-10-02 18:47:43 +04:00
}
2000-10-20 20:39:03 +04:00
LUA_API void lua_setgcthreshold (lua_State *L, int newthreshold) {
2001-03-02 20:27:50 +03:00
lua_lock(L);
2000-10-02 18:47:43 +04:00
if (newthreshold > GCscale(ULONG_MAX))
G(L)->GCthreshold = ULONG_MAX;
2000-10-02 18:47:43 +04:00
else
G(L)->GCthreshold = GCunscale(newthreshold);
2000-10-02 18:47:43 +04:00
luaC_checkGC(L);
2001-03-02 20:27:50 +03:00
lua_unlock(L);
2000-10-02 18:47:43 +04:00
}
2000-08-28 21:57:04 +04:00
/*
2000-08-31 18:08:27 +04:00
** miscellaneous functions
2000-08-28 21:57:04 +04:00
*/
2002-06-18 19:19:27 +04:00
LUA_API int lua_error (lua_State *L) {
2001-03-02 20:27:50 +03:00
lua_lock(L);
2002-05-02 00:48:12 +04:00
api_checknelems(L, 1);
luaG_errormsg(L);
2001-03-02 20:27:50 +03:00
lua_unlock(L);
return 0; /* to avoid warnings */
1997-09-16 23:25:59 +04:00
}
2000-10-20 20:39:03 +04:00
LUA_API int lua_next (lua_State *L, int index) {
StkId t;
2002-02-15 00:46:13 +03:00
int more;
2001-03-02 20:27:50 +03:00
lua_lock(L);
2001-02-13 19:17:53 +03:00
t = luaA_index(L, index);
2002-08-05 18:50:39 +04:00
api_check(L, ttistable(t));
2002-02-15 00:46:13 +03:00
more = luaH_next(L, hvalue(t), L->top - 1);
if (more) {
2000-08-31 18:08:27 +04:00
api_incr_top(L);
}
2001-10-25 23:14:14 +04:00
else /* no more elements */
2000-09-05 23:33:32 +04:00
L->top -= 1; /* remove key */
2001-03-02 20:27:50 +03:00
lua_unlock(L);
2002-02-15 00:46:13 +03:00
return more;
}
2000-10-20 20:39:03 +04:00
LUA_API void lua_concat (lua_State *L, int n) {
2001-03-02 20:27:50 +03:00
lua_lock(L);
2001-02-12 18:42:44 +03:00
api_checknelems(L, n);
2001-02-14 20:04:11 +03:00
if (n >= 2) {
luaV_concat(L, n, L->top - L->ci->base - 1);
2001-02-14 20:04:11 +03:00
L->top -= (n-1);
luaC_checkGC(L);
}
else if (n == 0) { /* push empty string */
setsvalue2s(L->top, luaS_newlstr(L, NULL, 0));
2001-02-14 20:04:11 +03:00
api_incr_top(L);
}
/* else n == 1; nothing to do */
2001-03-02 20:27:50 +03:00
lua_unlock(L);
2000-09-05 23:33:32 +04:00
}
2000-10-26 16:47:05 +04:00
LUA_API void *lua_newuserdata (lua_State *L, size_t size) {
Udata *u;
2001-03-02 20:27:50 +03:00
lua_lock(L);
u = luaS_newudata(L, size);
setuvalue(L->top, u);
api_incr_top(L);
lua_unlock(L);
return u + 1;
}
2002-01-10 00:50:35 +03:00
LUA_API int lua_pushupvalues (lua_State *L) {
2002-08-07 18:24:24 +04:00
Closure *func;
int n, i;
lua_lock(L);
2002-08-07 18:24:24 +04:00
api_check(L, iscfunction(L->ci->base - 1));
func = clvalue(L->ci->base - 1);
n = func->c.nupvalues;
luaD_checkstack(L, n + LUA_MINSTACK);
for (i=0; i<n; i++) {
setobj2s(L->top, &func->c.upvalue[i]);
L->top++;
}
lua_unlock(L);
2002-01-10 00:50:35 +03:00
return n;
}