|
|
@ -1,5 +1,5 @@ |
|
|
|
/*
|
|
|
|
** $Id: lapi.c,v 1.123 2001/02/01 13:56:49 roberto Exp roberto $ |
|
|
|
** $Id: lapi.c,v 1.124 2001/02/01 16:03:38 roberto Exp roberto $ |
|
|
|
** Lua API |
|
|
|
** See Copyright Notice in lua.h |
|
|
|
*/ |
|
|
@ -55,9 +55,9 @@ void luaA_pushobject (lua_State *L, const TObject *o) { |
|
|
|
|
|
|
|
LUA_API int lua_stackspace (lua_State *L) { |
|
|
|
int i; |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
i = (L->stack_last - L->top); |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
return i; |
|
|
|
} |
|
|
|
|
|
|
@ -70,49 +70,49 @@ LUA_API int lua_stackspace (lua_State *L) { |
|
|
|
|
|
|
|
LUA_API int lua_gettop (lua_State *L) { |
|
|
|
int i; |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
i = (L->top - L->Cbase); |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
return i; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
LUA_API void lua_settop (lua_State *L, int index) { |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
if (index >= 0) |
|
|
|
luaD_adjusttop(L, L->Cbase, index); |
|
|
|
else |
|
|
|
L->top = L->top+index+1; /* index is negative */ |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
LUA_API void lua_remove (lua_State *L, int index) { |
|
|
|
StkId p; |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
p = luaA_index(L, index); |
|
|
|
while (++p < L->top) setobj(p-1, p); |
|
|
|
L->top--; |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
LUA_API void lua_insert (lua_State *L, int index) { |
|
|
|
StkId p; |
|
|
|
StkId q; |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
p = luaA_index(L, index); |
|
|
|
for (q = L->top; q>p; q--) setobj(q, q-1); |
|
|
|
setobj(p, L->top); |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
LUA_API void lua_pushvalue (lua_State *L, int index) { |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
setobj(L->top, luaA_index(L, index)); |
|
|
|
api_incr_top(L); |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -125,19 +125,19 @@ LUA_API void lua_pushvalue (lua_State *L, int index) { |
|
|
|
LUA_API int lua_type (lua_State *L, int index) { |
|
|
|
StkId o; |
|
|
|
int i; |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
o = luaA_indexAcceptable(L, index); |
|
|
|
i = (o == NULL) ? LUA_TNONE : ttype(o); |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
return i; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
LUA_API const char *lua_typename (lua_State *L, int t) { |
|
|
|
const char *s; |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
s = (t == LUA_TNONE) ? "no value" : basictypename(G(L), t); |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
return s; |
|
|
|
} |
|
|
|
|
|
|
@ -145,10 +145,10 @@ LUA_API const char *lua_typename (lua_State *L, int t) { |
|
|
|
LUA_API const char *lua_xtype (lua_State *L, int index) { |
|
|
|
StkId o; |
|
|
|
const char *type; |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
o = luaA_indexAcceptable(L, index); |
|
|
|
type = (o == NULL) ? "no value" : luaT_typename(G(L), o); |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
return type; |
|
|
|
} |
|
|
|
|
|
|
@ -156,20 +156,20 @@ LUA_API const char *lua_xtype (lua_State *L, int index) { |
|
|
|
LUA_API int lua_iscfunction (lua_State *L, int index) { |
|
|
|
StkId o; |
|
|
|
int i; |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
o = luaA_indexAcceptable(L, index); |
|
|
|
i = (o == NULL) ? 0 : iscfunction(o); |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
return i; |
|
|
|
} |
|
|
|
|
|
|
|
LUA_API int lua_isnumber (lua_State *L, int index) { |
|
|
|
TObject *o; |
|
|
|
int i; |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
o = luaA_indexAcceptable(L, index); |
|
|
|
i = (o == NULL) ? 0 : (tonumber(o) == 0); |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
return i; |
|
|
|
} |
|
|
|
|
|
|
@ -182,34 +182,34 @@ LUA_API int lua_isstring (lua_State *L, int index) { |
|
|
|
LUA_API int lua_tag (lua_State *L, int index) { |
|
|
|
StkId o; |
|
|
|
int i; |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
o = luaA_indexAcceptable(L, index); |
|
|
|
i = (o == NULL) ? LUA_NOTAG : luaT_tag(o); |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
return i; |
|
|
|
} |
|
|
|
|
|
|
|
LUA_API int lua_equal (lua_State *L, int index1, int index2) { |
|
|
|
StkId o1, o2; |
|
|
|
int i; |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
o1 = luaA_indexAcceptable(L, index1); |
|
|
|
o2 = luaA_indexAcceptable(L, index2); |
|
|
|
i = (o1 == NULL || o2 == NULL) ? 0 /* index out-of-range */ |
|
|
|
: luaO_equalObj(o1, o2); |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
return i; |
|
|
|
} |
|
|
|
|
|
|
|
LUA_API int lua_lessthan (lua_State *L, int index1, int index2) { |
|
|
|
StkId o1, o2; |
|
|
|
int i; |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
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, L->top); |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
return i; |
|
|
|
} |
|
|
|
|
|
|
@ -218,58 +218,58 @@ LUA_API int lua_lessthan (lua_State *L, int index1, int index2) { |
|
|
|
LUA_API lua_Number lua_tonumber (lua_State *L, int index) { |
|
|
|
StkId o; |
|
|
|
lua_Number n; |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
o = luaA_indexAcceptable(L, index); |
|
|
|
n = (o == NULL || tonumber(o)) ? 0 : nvalue(o); |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
return n; |
|
|
|
} |
|
|
|
|
|
|
|
LUA_API const char *lua_tostring (lua_State *L, int index) { |
|
|
|
StkId o; |
|
|
|
const char *s; |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
o = luaA_indexAcceptable(L, index); |
|
|
|
s = (o == NULL || tostring(L, o)) ? NULL : svalue(o); |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
return s; |
|
|
|
} |
|
|
|
|
|
|
|
LUA_API size_t lua_strlen (lua_State *L, int index) { |
|
|
|
StkId o; |
|
|
|
size_t l; |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
o = luaA_indexAcceptable(L, index); |
|
|
|
l = (o == NULL || tostring(L, o)) ? 0 : tsvalue(o)->len; |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
return l; |
|
|
|
} |
|
|
|
|
|
|
|
LUA_API lua_CFunction lua_tocfunction (lua_State *L, int index) { |
|
|
|
StkId o; |
|
|
|
lua_CFunction f; |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
o = luaA_indexAcceptable(L, index); |
|
|
|
f = (o == NULL || !iscfunction(o)) ? NULL : clvalue(o)->f.c; |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
return f; |
|
|
|
} |
|
|
|
|
|
|
|
LUA_API void *lua_touserdata (lua_State *L, int index) { |
|
|
|
StkId o; |
|
|
|
void *p; |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
o = luaA_indexAcceptable(L, index); |
|
|
|
p = (o == NULL || ttype(o) != LUA_TUSERDATA) ? NULL : |
|
|
|
tsvalue(o)->u.d.value; |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
return p; |
|
|
|
} |
|
|
|
|
|
|
|
LUA_API const void *lua_topointer (lua_State *L, int index) { |
|
|
|
StkId o; |
|
|
|
const void *p; |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
o = luaA_indexAcceptable(L, index); |
|
|
|
if (o == NULL) p = NULL; |
|
|
|
else { |
|
|
@ -285,7 +285,7 @@ LUA_API const void *lua_topointer (lua_State *L, int index) { |
|
|
|
break; |
|
|
|
} |
|
|
|
} |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
return p; |
|
|
|
} |
|
|
|
|
|
|
@ -297,26 +297,26 @@ LUA_API const void *lua_topointer (lua_State *L, int index) { |
|
|
|
|
|
|
|
|
|
|
|
LUA_API void lua_pushnil (lua_State *L) { |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
setnilvalue(L->top); |
|
|
|
api_incr_top(L); |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
LUA_API void lua_pushnumber (lua_State *L, lua_Number n) { |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
setnvalue(L->top, n); |
|
|
|
api_incr_top(L); |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
LUA_API void lua_pushlstring (lua_State *L, const char *s, size_t len) { |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
setsvalue(L->top, luaS_newlstr(L, s, len)); |
|
|
|
api_incr_top(L); |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -329,20 +329,20 @@ LUA_API void lua_pushstring (lua_State *L, const char *s) { |
|
|
|
|
|
|
|
|
|
|
|
LUA_API void lua_pushcclosure (lua_State *L, lua_CFunction fn, int n) { |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
luaV_Cclosure(L, fn, n); |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
LUA_API void lua_pushusertag (lua_State *L, void *u, int tag) { |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
/* ORDER LUA_T */ |
|
|
|
if (!(tag == LUA_ANYTAG || tag == LUA_TUSERDATA || validtag(G(L), tag))) |
|
|
|
luaO_verror(L, "invalid tag for a userdata (%d)", tag); |
|
|
|
setuvalue(L->top, luaS_createudata(L, u, tag)); |
|
|
|
api_incr_top(L); |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -353,54 +353,54 @@ LUA_API void lua_pushusertag (lua_State *L, void *u, int tag) { |
|
|
|
|
|
|
|
|
|
|
|
LUA_API void lua_getglobal (lua_State *L, const char *name) { |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
luaV_getglobal(L, luaS_new(L, name), L->top); |
|
|
|
api_incr_top(L); |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
LUA_API void lua_gettable (lua_State *L, int index) { |
|
|
|
StkId t; |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
t = Index(L, index); |
|
|
|
luaV_gettable(L, t, L->top, L->top-1); |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
LUA_API void lua_rawget (lua_State *L, int index) { |
|
|
|
StkId t; |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
t = Index(L, index); |
|
|
|
lua_assert(ttype(t) == LUA_TTABLE); |
|
|
|
setobj(L->top - 1, luaH_get(hvalue(t), L->top - 1)); |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
LUA_API void lua_rawgeti (lua_State *L, int index, int n) { |
|
|
|
StkId o; |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
o = Index(L, index); |
|
|
|
lua_assert(ttype(o) == LUA_TTABLE); |
|
|
|
setobj(L->top, luaH_getnum(hvalue(o), n)); |
|
|
|
api_incr_top(L); |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
LUA_API void lua_getglobals (lua_State *L) { |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
sethvalue(L->top, L->gt); |
|
|
|
api_incr_top(L); |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
LUA_API int lua_getref (lua_State *L, int ref) { |
|
|
|
int status = 1; |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
if (ref == LUA_REFNIL) { |
|
|
|
setnilvalue(L->top); |
|
|
|
api_incr_top(L); |
|
|
@ -412,16 +412,16 @@ LUA_API int lua_getref (lua_State *L, int ref) { |
|
|
|
} |
|
|
|
else |
|
|
|
status = 0; |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
return status; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
LUA_API void lua_newtable (lua_State *L) { |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
sethvalue(L->top, luaH_new(L, 0)); |
|
|
|
api_incr_top(L); |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -432,58 +432,58 @@ LUA_API void lua_newtable (lua_State *L) { |
|
|
|
|
|
|
|
|
|
|
|
LUA_API void lua_setglobal (lua_State *L, const char *name) { |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
luaV_setglobal(L, luaS_new(L, name), L->top); |
|
|
|
L->top--; /* remove element from the top */ |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
LUA_API void lua_settable (lua_State *L, int index) { |
|
|
|
StkId t; |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
t = Index(L, index); |
|
|
|
luaV_settable(L, t, L->top - 2, L->top); |
|
|
|
L->top -= 2; /* pop index and value */ |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
LUA_API void lua_rawset (lua_State *L, int index) { |
|
|
|
StkId t; |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
t = Index(L, index); |
|
|
|
lua_assert(ttype(t) == LUA_TTABLE); |
|
|
|
setobj(luaH_set(L, hvalue(t), L->top-2), (L->top-1)); |
|
|
|
L->top -= 2; |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
LUA_API void lua_rawseti (lua_State *L, int index, int n) { |
|
|
|
StkId o; |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
o = Index(L, index); |
|
|
|
lua_assert(ttype(o) == LUA_TTABLE); |
|
|
|
setobj(luaH_setnum(L, hvalue(o), n), (L->top-1)); |
|
|
|
L->top--; |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
LUA_API void lua_setglobals (lua_State *L) { |
|
|
|
StkId newtable; |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
newtable = --L->top; |
|
|
|
lua_assert(ttype(newtable) == LUA_TTABLE); |
|
|
|
L->gt = hvalue(newtable); |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
LUA_API int lua_ref (lua_State *L, int lock) { |
|
|
|
int ref; |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
if (ttype(L->top-1) == LUA_TNIL) |
|
|
|
ref = LUA_REFNIL; |
|
|
|
else { |
|
|
@ -500,7 +500,7 @@ LUA_API int lua_ref (lua_State *L, int lock) { |
|
|
|
G(L)->refArray[ref].st = lock ? LOCK : HOLD; |
|
|
|
} |
|
|
|
L->top--; |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
return ref; |
|
|
|
} |
|
|
|
|
|
|
@ -511,9 +511,9 @@ LUA_API int lua_ref (lua_State *L, int lock) { |
|
|
|
*/ |
|
|
|
|
|
|
|
LUA_API void lua_rawcall (lua_State *L, int nargs, int nresults) { |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
luaD_call(L, L->top-(nargs+1), nresults); |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -527,28 +527,28 @@ LUA_API void lua_rawcall (lua_State *L, int nargs, int nresults) { |
|
|
|
|
|
|
|
LUA_API int lua_getgcthreshold (lua_State *L) { |
|
|
|
int threshold; |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
threshold = GCscale(G(L)->GCthreshold); |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
return threshold; |
|
|
|
} |
|
|
|
|
|
|
|
LUA_API int lua_getgccount (lua_State *L) { |
|
|
|
int count; |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
count = GCscale(G(L)->nblocks); |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
return count; |
|
|
|
} |
|
|
|
|
|
|
|
LUA_API void lua_setgcthreshold (lua_State *L, int newthreshold) { |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
if (newthreshold > GCscale(ULONG_MAX)) |
|
|
|
G(L)->GCthreshold = ULONG_MAX; |
|
|
|
else |
|
|
|
G(L)->GCthreshold = GCunscale(newthreshold); |
|
|
|
luaC_checkGC(L); |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -558,7 +558,7 @@ LUA_API void lua_setgcthreshold (lua_State *L, int newthreshold) { |
|
|
|
|
|
|
|
LUA_API int lua_newtype (lua_State *L, const char *name, int basictype) { |
|
|
|
int tag; |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
if (basictype != LUA_TNONE && |
|
|
|
basictype != LUA_TTABLE && |
|
|
|
basictype != LUA_TUSERDATA) |
|
|
@ -566,7 +566,7 @@ LUA_API int lua_newtype (lua_State *L, const char *name, int basictype) { |
|
|
|
tag = luaT_newtag(L, name, basictype); |
|
|
|
if (tag == LUA_TNONE) |
|
|
|
luaO_verror(L, "type name '%.30s' already exists", name); |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
return tag; |
|
|
|
} |
|
|
|
|
|
|
@ -574,7 +574,7 @@ LUA_API int lua_newtype (lua_State *L, const char *name, int basictype) { |
|
|
|
LUA_API int lua_type2tag (lua_State *L, const char *name) { |
|
|
|
int tag; |
|
|
|
const TObject *v; |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
v = luaH_getstr(G(L)->type2tag, luaS_new(L, name)); |
|
|
|
if (ttype(v) == LUA_TNIL) |
|
|
|
tag = LUA_TNONE; |
|
|
@ -582,14 +582,14 @@ LUA_API int lua_type2tag (lua_State *L, const char *name) { |
|
|
|
lua_assert(ttype(v) == LUA_TNUMBER); |
|
|
|
tag = (int)nvalue(v); |
|
|
|
} |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
return tag; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
LUA_API void lua_settag (lua_State *L, int tag) { |
|
|
|
int basictype; |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
if (tag < 0 || tag >= G(L)->ntag) |
|
|
|
luaO_verror(L, "%d is not a valid tag", tag); |
|
|
|
basictype = G(L)->TMtable[tag].basictype; |
|
|
@ -607,25 +607,25 @@ LUA_API void lua_settag (lua_State *L, int tag) { |
|
|
|
luaO_verror(L, "cannot change the tag of a %.20s", |
|
|
|
luaT_typename(G(L), L->top-1)); |
|
|
|
} |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
LUA_API void lua_error (lua_State *L, const char *s) { |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
luaD_error(L, s); |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
LUA_API void lua_unref (lua_State *L, int ref) { |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
if (ref >= 0) { |
|
|
|
lua_assert(ref < G(L)->nref && G(L)->refArray[ref].st < 0); |
|
|
|
G(L)->refArray[ref].st = G(L)->refFree; |
|
|
|
G(L)->refFree = ref; |
|
|
|
} |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -633,7 +633,7 @@ LUA_API int lua_next (lua_State *L, int index) { |
|
|
|
StkId t; |
|
|
|
Node *n; |
|
|
|
int more; |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
t = luaA_index(L, index); |
|
|
|
lua_assert(ttype(t) == LUA_TTABLE); |
|
|
|
n = luaH_next(L, hvalue(t), luaA_index(L, -1)); |
|
|
@ -647,7 +647,7 @@ LUA_API int lua_next (lua_State *L, int index) { |
|
|
|
L->top -= 1; /* remove key */ |
|
|
|
more = 0; |
|
|
|
} |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
return more; |
|
|
|
} |
|
|
|
|
|
|
@ -656,7 +656,7 @@ LUA_API int lua_getn (lua_State *L, int index) { |
|
|
|
Hash *h; |
|
|
|
const TObject *value; |
|
|
|
int n; |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
h = hvalue(luaA_index(L, index)); |
|
|
|
value = luaH_getstr(h, luaS_newliteral(L, "n")); /* = h.n */ |
|
|
|
if (ttype(value) == LUA_TNUMBER) |
|
|
@ -674,32 +674,32 @@ LUA_API int lua_getn (lua_State *L, int index) { |
|
|
|
} |
|
|
|
n = (int)max; |
|
|
|
} |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
return n; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
LUA_API void lua_concat (lua_State *L, int n) { |
|
|
|
StkId top; |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
top = L->top; |
|
|
|
luaV_strconc(L, n, top); |
|
|
|
L->top = top-(n-1); |
|
|
|
luaC_checkGC(L); |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
LUA_API void *lua_newuserdata (lua_State *L, size_t size) { |
|
|
|
TString *ts; |
|
|
|
void *p; |
|
|
|
LUA_LOCK; |
|
|
|
LUA_LOCK(L); |
|
|
|
if (size == 0) size = 1; |
|
|
|
ts = luaS_newudata(L, size, NULL); |
|
|
|
setuvalue(L->top, ts); |
|
|
|
api_incr_top(L); |
|
|
|
p = ts->u.d.value; |
|
|
|
LUA_UNLOCK; |
|
|
|
LUA_UNLOCK(L); |
|
|
|
return p; |
|
|
|
} |
|
|
|
|
|
|
|