lua/lapi.c

752 lines
16 KiB
C
Raw Normal View History

1997-09-16 23:25:59 +04:00
/*
2001-10-31 22:40:14 +03:00
** $Id: lapi.c,v 1.157 2001/10/25 19:14:14 roberto Exp $
1997-09-16 23:25:59 +04:00
** Lua API
** See Copyright Notice in lua.h
*/
#include <string.h>
2001-03-26 18:31:49 +04:00
#define LUA_PRIVATE
#include "lua.h"
1997-09-16 23:25:59 +04:00
#include "lapi.h"
#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 "lvm.h"
2001-10-12 01:40:56 +04:00
const l_char lua_ident[] =
l_s("$Lua: ") l_s(LUA_VERSION) l_s(" ") l_s(LUA_COPYRIGHT) l_s(" $\n")
l_s("$Authors: ") l_s(LUA_AUTHORS) l_s(" $\n")
l_s("$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) /* nothing */
#endif
#define api_checknelems(L, n) api_check(L, (n) <= (L->top - L->ci->base))
2001-02-12 18:42:44 +03:00
2000-09-11 23:45:27 +04:00
#define api_incr_top(L) incr_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 if (index == LUA_REGISTRYINDEX) /* pseudo-indices */
return &G(L)->registry;
else {
TObject *func = (L->ci->base - 1);
index = LUA_REGISTRYINDEX - index;
api_check(L, iscfunction(func) && index <= clvalue(func)->c.nupvalues);
return &clvalue(func)->c.upvalue[index-1];
}
}
2000-08-28 21:57:04 +04:00
TObject *luaA_index (lua_State *L, int index) {
2001-02-13 19:17:53 +03:00
if (index > 0) {
api_check(L, index <= L->top - L->ci->base);
return L->ci->base+index-1;
2001-02-13 19:17:53 +03:00
}
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) {
setobj(L->top, o);
incr_top;
}
2000-10-20 20:39:03 +04:00
LUA_API int lua_stackspace (lua_State *L) {
return (L->stack_last - L->top);
2000-08-30 00:43: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);
luaD_adjusttop(L, 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) setobj(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--) setobj(q, q-1);
setobj(p, L->top);
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_pushvalue (lua_State *L, int index) {
2001-03-02 20:27:50 +03:00
lua_lock(L);
2001-02-13 19:17:53 +03:00
setobj(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
LUA_API int lua_rawtag (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
LUA_API const l_char *lua_type (lua_State *L, int index) {
2001-01-25 19:45:36 +03:00
StkId o;
2001-02-23 20:17:25 +03:00
const l_char *type;
2001-03-02 20:27:50 +03:00
lua_lock(L);
2001-01-25 19:45:36 +03:00
o = luaA_indexAcceptable(L, index);
2001-02-23 20:17:25 +03:00
type = (o == NULL) ? l_s("no value") : luaT_typename(G(L), o);
2001-03-02 20:27:50 +03:00
lua_unlock(L);
2001-01-25 19:45:36 +03:00
return type;
}
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;
TObject *o = luaA_indexAcceptable(L, index);
return (o != NULL && (ttype(o) == LUA_TNUMBER || luaV_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) {
int t = lua_rawtag(L, index);
return (t == LUA_TSTRING || t == LUA_TNUMBER);
}
2000-10-03 18:27:44 +04:00
2000-10-20 20:39:03 +04:00
LUA_API int lua_tag (lua_State *L, int index) {
StkId o;
int i;
lua_lock(L); /* other thread could be changing the tag */
o = luaA_indexAcceptable(L, index);
i = (o == NULL) ? LUA_NOTAG : luaT_tag(o);
2001-03-02 20:27:50 +03:00
lua_unlock(L);
return i;
1999-10-07 23:04:30 +04:00
}
1997-09-16 23:25:59 +04:00
2000-10-20 20:39:03 +04:00
LUA_API int lua_equal (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 */
: luaO_equalObj(o1, o2);
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 */
2001-02-07 21:13:49 +03:00
: 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 &&
(ttype(o) == LUA_TNUMBER || (o = luaV_tonumber(o, &n)) != NULL))
return nvalue(o);
else
return 0;
1997-09-16 23:25:59 +04:00
}
2001-02-23 20:17:25 +03:00
LUA_API const l_char *lua_tostring (lua_State *L, int index) {
StkId o = luaA_indexAcceptable(L, index);
if (o == NULL)
return NULL;
else if (ttype(o) == LUA_TSTRING)
return svalue(o);
else {
const l_char *s;
lua_lock(L); /* `luaV_tostring' may create a new string */
s = (luaV_tostring(L, o) == 0) ? 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;
else if (ttype(o) == LUA_TSTRING)
return tsvalue(o)->tsv.len;
else {
size_t l;
lua_lock(L); /* `luaV_tostring' may create a new string */
l = (luaV_tostring(L, o) == 0) ? 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);
return (o == NULL || ttype(o) != LUA_TUSERDATA) ? NULL : uvalue(o)->uv.value;
1999-11-11 20:02:40 +03:00
}
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);
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
2001-02-23 20:17:25 +03:00
LUA_API void lua_pushlstring (lua_State *L, const l_char *s, size_t len) {
2001-03-02 20:27:50 +03:00
lua_lock(L);
setsvalue(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
2001-02-23 20:17:25 +03:00
LUA_API void lua_pushstring (lua_State *L, const l_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
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);
incr_top;
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
/*
** get functions (Lua -> stack)
*/
2001-02-23 20:17:25 +03:00
LUA_API void lua_getglobal (lua_State *L, const l_char *name) {
2001-03-02 20:27:50 +03:00
lua_lock(L);
luaV_getglobal(L, luaS_new(L, name), L->top);
2000-09-11 23:45:27 +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
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);
2001-02-07 21:13:49 +03:00
luaV_gettable(L, t, L->top-1, L->top-1);
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);
2001-02-12 18:42:44 +03:00
api_check(L, ttype(t) == LUA_TTABLE);
setobj(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);
2001-02-12 18:42:44 +03:00
api_check(L, ttype(o) == LUA_TTABLE);
setobj(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_getglobals (lua_State *L) {
2001-03-02 20:27:50 +03:00
lua_lock(L);
sethvalue(L->top, L->gt);
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
}
2000-08-28 21:57:04 +04:00
/*
** set functions (stack -> Lua)
*/
2001-02-23 20:17:25 +03:00
LUA_API void lua_setglobal (lua_State *L, const l_char *name) {
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-07 21:13:49 +03:00
luaV_setglobal(L, luaS_new(L, name), L->top - 1);
L->top--; /* remove element from the top */
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_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);
2001-02-12 18:42:44 +03:00
api_check(L, ttype(t) == LUA_TTABLE);
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);
2001-02-12 18:42:44 +03:00
api_check(L, ttype(o) == LUA_TTABLE);
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
}
2000-10-20 20:39:03 +04:00
LUA_API void lua_setglobals (lua_State *L) {
StkId newtable;
2001-03-02 20:27:50 +03:00
lua_lock(L);
2001-02-12 18:42:44 +03:00
api_checknelems(L, 1);
newtable = --L->top;
2001-02-12 18:42:44 +03:00
api_check(L, ttype(newtable) == LUA_TTABLE);
2000-09-05 23:33:32 +04:00
L->gt = hvalue(newtable);
2001-03-02 20:27:50 +03:00
lua_unlock(L);
2000-08-28 21:57:04 +04:00
}
2000-09-14 18:09:31 +04:00
/*
2001-02-22 21:59:59 +03:00
** `do' functions (run Lua code)
2000-09-14 18:09:31 +04:00
*/
2000-10-20 20:39:03 +04:00
LUA_API void lua_rawcall (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);
luaD_call(L, func);
if (nresults != LUA_MULTRET)
luaD_adjusttop(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
LUA_API int lua_dofile (lua_State *L, const l_char *filename) {
int status;
status = lua_loadfile(L, filename);
if (status == 0) /* parse OK? */
status = lua_call(L, 0, LUA_MULTRET); /* call main */
return status;
}
LUA_API int lua_dobuffer (lua_State *L, const l_char *buff, size_t size,
const l_char *name) {
int status;
status = lua_loadbuffer(L, buff, size, name);
if (status == 0) /* parse OK? */
status = lua_call(L, 0, LUA_MULTRET); /* call main */
return status;
}
LUA_API int lua_dostring (lua_State *L, const l_char *str) {
return lua_dobuffer(L, str, strlen(str), str);
}
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
*/
LUA_API int lua_newtype (lua_State *L, const l_char *name, int basictype) {
2001-01-25 19:45:36 +03:00
int tag;
2001-03-02 20:27:50 +03:00
lua_lock(L);
2001-01-25 19:45:36 +03:00
if (basictype != LUA_TNONE &&
basictype != LUA_TTABLE &&
basictype != LUA_TUSERDATA)
2001-02-23 20:17:25 +03:00
luaO_verror(L, l_s("invalid basic type (%d) for new type"), basictype);
2001-01-25 19:45:36 +03:00
tag = luaT_newtag(L, name, basictype);
if (tag == LUA_TNONE)
2001-02-23 20:17:25 +03:00
luaO_verror(L, l_s("type name '%.30s' already exists"), name);
2001-03-02 20:27:50 +03:00
lua_unlock(L);
2001-01-25 19:45:36 +03:00
return tag;
}
2001-04-23 20:35:45 +04:00
LUA_API int lua_name2tag (lua_State *L, const l_char *name) {
2001-01-25 19:45:36 +03:00
int tag;
const TObject *v;
2001-03-02 20:27:50 +03:00
lua_lock(L);
2001-01-25 19:45:36 +03:00
v = luaH_getstr(G(L)->type2tag, luaS_new(L, name));
if (ttype(v) == LUA_TNIL)
tag = LUA_TNONE;
else {
lua_assert(ttype(v) == LUA_TNUMBER);
2001-08-31 23:46:07 +04:00
tag = cast(int, nvalue(v));
2001-01-25 19:45:36 +03:00
}
2001-03-02 20:27:50 +03:00
lua_unlock(L);
2001-01-25 19:45:36 +03:00
return tag;
}
LUA_API const l_char *lua_tag2name (lua_State *L, int tag) {
const l_char *s;
lua_lock(L);
s = (tag == LUA_TNONE) ? l_s("no value") : typenamebytag(G(L), tag);
lua_unlock(L);
return s;
}
2001-01-25 19:45:36 +03:00
LUA_API void lua_settag (lua_State *L, int tag) {
int basictype;
2001-03-02 20:27:50 +03:00
lua_lock(L);
2001-02-12 18:42:44 +03:00
api_checknelems(L, 1);
2001-01-25 19:45:36 +03:00
if (tag < 0 || tag >= G(L)->ntag)
2001-02-23 20:17:25 +03:00
luaO_verror(L, l_s("%d is not a valid tag"), tag);
2001-01-25 19:45:36 +03:00
basictype = G(L)->TMtable[tag].basictype;
if (basictype != LUA_TNONE && basictype != ttype(L->top-1))
2001-02-23 20:17:25 +03:00
luaO_verror(L, l_s("tag %d can only be used for type '%.20s'"), tag,
typenamebytag(G(L), basictype));
1999-12-01 22:50:08 +03:00
switch (ttype(L->top-1)) {
2000-10-05 16:14:08 +04:00
case LUA_TTABLE:
hvalue(L->top-1)->htag = tag;
1997-09-16 23:25:59 +04:00
break;
2000-10-05 16:14:08 +04:00
case LUA_TUSERDATA:
uvalue(L->top-1)->uv.tag = tag;
1997-09-16 23:25:59 +04:00
break;
default:
2001-02-23 20:17:25 +03:00
luaO_verror(L, l_s("cannot change the tag of a %.20s"),
2001-01-25 19:45:36 +03:00
luaT_typename(G(L), L->top-1));
1997-09-16 23:25:59 +04:00
}
2001-03-02 20:27:50 +03:00
lua_unlock(L);
}
2001-02-23 20:17:25 +03:00
LUA_API void lua_error (lua_State *L, const l_char *s) {
2001-03-02 20:27:50 +03:00
lua_lock(L);
luaD_error(L, s);
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 int lua_next (lua_State *L, int index) {
StkId t;
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);
2001-02-12 18:42:44 +03:00
api_check(L, ttype(t) == LUA_TTABLE);
2001-10-25 23:14:14 +04:00
more = luaH_index(L, hvalue(t), luaA_index(L, -1));
more = (luaH_nexti(hvalue(t), more, L->top - 1) != -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);
return more;
}
2000-10-20 20:39:03 +04:00
LUA_API int lua_getn (lua_State *L, int index) {
2001-04-11 18:42:41 +04:00
StkId t;
const TObject *value;
int n;
2001-03-02 20:27:50 +03:00
lua_lock(L);
2001-04-11 18:42:41 +04:00
t = luaA_index(L, index);
api_check(L, ttype(t) == LUA_TTABLE);
value = luaH_getstr(hvalue(t), luaS_newliteral(L, l_s("n"))); /* = t.n */
2000-10-05 16:14:08 +04:00
if (ttype(value) == LUA_TNUMBER)
2001-08-31 23:46:07 +04:00
n = cast(int, nvalue(value));
else {
2001-10-25 23:14:14 +04:00
Node *nd;
Table *a = hvalue(t);
lua_Number max = 0;
2001-10-25 23:14:14 +04:00
int i;
i = sizearray(a);
while (i--) {
if (ttype(&a->array[i]) != LUA_TNIL)
break;
}
max = i+1;
i = sizenode(a);
nd = a->node;
while (i--) {
if (ttype(key(nd)) == LUA_TNUMBER &&
ttype(val(nd)) != LUA_TNIL &&
nvalue(key(nd)) > max)
max = nvalue(key(nd));
nd++;
}
2001-08-31 23:46:07 +04:00
n = cast(int, max);
}
2001-03-02 20:27:50 +03:00
lua_unlock(L);
return n;
}
2000-09-05 23:33:32 +04:00
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_strconc(L, n, L->top);
L->top -= (n-1);
luaC_checkGC(L);
}
else if (n == 0) { /* push null string */
setsvalue(L->top, luaS_newlstr(L, NULL, 0));
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
static Udata *pushnewudata (lua_State *L, size_t size) {
Udata *u = luaS_newudata(L, size);
setuvalue(L->top, u);
api_incr_top(L);
return uvalue(L->top-1);
}
2000-10-26 16:47:05 +04:00
LUA_API void *lua_newuserdata (lua_State *L, size_t size) {
Udata *u;
void *p;
2001-03-02 20:27:50 +03:00
lua_lock(L);
u = pushnewudata(L, size);
p = u->uv.value;
2001-03-02 20:27:50 +03:00
lua_unlock(L);
return p;
2000-10-26 16:47:05 +04:00
}
2001-04-11 18:42:41 +04:00
LUA_API void lua_newuserdatabox (lua_State *L, void *p) {
Udata *u;
lua_lock(L);
u = pushnewudata(L, 0);
u->uv.value = p;
lua_unlock(L);
}
2001-04-11 18:42:41 +04:00
LUA_API int lua_getweakmode (lua_State *L, int index) {
StkId t;
int mode;
lua_lock(L);
t = luaA_index(L, index);
api_check(L, ttype(t) == LUA_TTABLE);
mode = hvalue(t)->weakmode;
lua_unlock(L);
return mode;
}
LUA_API void lua_setweakmode (lua_State *L, int mode) {
lua_lock(L);
api_check(L, ttype(L->top-1) == LUA_TTABLE);
2001-10-25 23:14:14 +04:00
hvalue(L->top-1)->weakmode = cast(lu_byte, mode);
2001-04-11 18:42:41 +04:00
lua_unlock(L);
}
LUA_API void lua_pushupvalues (lua_State *L) {
TObject *func;
int n, i;
lua_lock(L);
func = (L->ci->base - 1);
api_check(L, iscfunction(func));
n = clvalue(func)->c.nupvalues;
if (LUA_MINSTACK+n > lua_stackspace(L))
luaD_error(L, l_s("stack overflow"));
for (i=0; i<n; i++) {
setobj(L->top, &clvalue(func)->c.upvalue[i]);
L->top++;
}
lua_unlock(L);
}