luaengineapp/src/luaenginecore/lua54/lapi.c

1425 lines
34 KiB
C
Raw Normal View History

2018-08-22 21:33:38 +02:00
/*
2020-07-02 16:09:52 +02:00
** $Id: lapi.c $
2018-08-22 21:33:38 +02:00
** Lua API
** See Copyright Notice in lua.h
*/
#define lapi_c
#define LUA_CORE
#include "lprefix.h"
2020-07-02 16:09:52 +02:00
#include <limits.h>
2018-08-22 21:33:38 +02:00
#include <stdarg.h>
#include <string.h>
#include "lua.h"
#include "lapi.h"
#include "ldebug.h"
#include "ldo.h"
#include "lfunc.h"
#include "lgc.h"
#include "lmem.h"
#include "lobject.h"
#include "lstate.h"
#include "lstring.h"
#include "ltable.h"
#include "ltm.h"
#include "lundump.h"
#include "lvm.h"
const char lua_ident[] =
"$LuaVersion: " LUA_COPYRIGHT " $"
"$LuaAuthors: " LUA_AUTHORS " $";
2020-07-02 16:09:52 +02:00
/*
** Test for a valid index.
** '!ttisnil(o)' implies 'o != &G(L)->nilvalue', so it is not needed.
** However, it covers the most common cases in a faster way.
*/
#define isvalid(L, o) (!ttisnil(o) || o != &G(L)->nilvalue)
2018-08-22 21:33:38 +02:00
/* test for pseudo index */
#define ispseudo(i) ((i) <= LUA_REGISTRYINDEX)
/* test for upvalue */
#define isupvalue(i) ((i) < LUA_REGISTRYINDEX)
2020-07-02 16:09:52 +02:00
static TValue *index2value (lua_State *L, int idx) {
2018-08-22 21:33:38 +02:00
CallInfo *ci = L->ci;
if (idx > 0) {
2020-07-02 16:09:52 +02:00
StkId o = ci->func + idx;
api_check(L, idx <= L->ci->top - (ci->func + 1), "unacceptable index");
if (o >= L->top) return &G(L)->nilvalue;
else return s2v(o);
2018-08-22 21:33:38 +02:00
}
else if (!ispseudo(idx)) { /* negative index */
api_check(L, idx != 0 && -idx <= L->top - (ci->func + 1), "invalid index");
2020-07-02 16:09:52 +02:00
return s2v(L->top + idx);
2018-08-22 21:33:38 +02:00
}
else if (idx == LUA_REGISTRYINDEX)
return &G(L)->l_registry;
else { /* upvalues */
idx = LUA_REGISTRYINDEX - idx;
api_check(L, idx <= MAXUPVAL + 1, "upvalue index too large");
2020-07-02 16:09:52 +02:00
if (ttislcf(s2v(ci->func))) /* light C function? */
return &G(L)->nilvalue; /* it has no upvalues */
2018-08-22 21:33:38 +02:00
else {
2020-07-02 16:09:52 +02:00
CClosure *func = clCvalue(s2v(ci->func));
return (idx <= func->nupvalues) ? &func->upvalue[idx-1] : &G(L)->nilvalue;
2018-08-22 21:33:38 +02:00
}
}
}
2020-07-02 16:09:52 +02:00
static StkId index2stack (lua_State *L, int idx) {
CallInfo *ci = L->ci;
if (idx > 0) {
StkId o = ci->func + idx;
api_check(L, o < L->top, "unacceptable index");
return o;
}
else { /* non-positive index */
api_check(L, idx != 0 && -idx <= L->top - (ci->func + 1), "invalid index");
api_check(L, !ispseudo(idx), "invalid index");
return L->top + idx;
}
2018-08-22 21:33:38 +02:00
}
LUA_API int lua_checkstack (lua_State *L, int n) {
int res;
2020-11-26 04:07:09 +01:00
CallInfo *ci;
2018-08-22 21:33:38 +02:00
lua_lock(L);
2020-11-26 04:07:09 +01:00
ci = L->ci;
2018-08-22 21:33:38 +02:00
api_check(L, n >= 0, "negative 'n'");
if (L->stack_last - L->top > n) /* stack large enough? */
res = 1; /* yes; check is OK */
else { /* no; need to grow stack */
int inuse = cast_int(L->top - L->stack) + EXTRA_STACK;
if (inuse > LUAI_MAXSTACK - n) /* can grow without overflow? */
res = 0; /* no */
else /* try to grow stack */
2020-07-02 16:09:52 +02:00
res = luaD_growstack(L, n, 0);
2018-08-22 21:33:38 +02:00
}
if (res && ci->top < L->top + n)
ci->top = L->top + n; /* adjust frame top */
lua_unlock(L);
return res;
}
LUA_API void lua_xmove (lua_State *from, lua_State *to, int n) {
int i;
if (from == to) return;
lua_lock(to);
api_checknelems(from, n);
api_check(from, G(from) == G(to), "moving among independent states");
api_check(from, to->ci->top - to->top >= n, "stack overflow");
from->top -= n;
for (i = 0; i < n; i++) {
2020-07-02 16:09:52 +02:00
setobjs2s(to, to->top, from->top + i);
2018-08-22 21:33:38 +02:00
to->top++; /* stack already checked by previous 'api_check' */
}
lua_unlock(to);
}
LUA_API lua_CFunction lua_atpanic (lua_State *L, lua_CFunction panicf) {
lua_CFunction old;
lua_lock(L);
old = G(L)->panic;
G(L)->panic = panicf;
lua_unlock(L);
return old;
}
2020-07-02 16:09:52 +02:00
LUA_API lua_Number lua_version (lua_State *L) {
UNUSED(L);
return LUA_VERSION_NUM;
2018-08-22 21:33:38 +02:00
}
/*
** basic stack manipulation
*/
/*
** convert an acceptable stack index into an absolute index
*/
LUA_API int lua_absindex (lua_State *L, int idx) {
return (idx > 0 || ispseudo(idx))
? idx
: cast_int(L->top - L->ci->func) + idx;
}
LUA_API int lua_gettop (lua_State *L) {
return cast_int(L->top - (L->ci->func + 1));
}
LUA_API void lua_settop (lua_State *L, int idx) {
2020-11-26 04:07:09 +01:00
CallInfo *ci;
StkId func;
2020-07-02 16:09:52 +02:00
ptrdiff_t diff; /* difference for new top */
2018-08-22 21:33:38 +02:00
lua_lock(L);
2020-11-26 04:07:09 +01:00
ci = L->ci;
func = ci->func;
2018-08-22 21:33:38 +02:00
if (idx >= 0) {
2020-07-02 16:09:52 +02:00
api_check(L, idx <= ci->top - (func + 1), "new top too large");
diff = ((func + 1) + idx) - L->top;
for (; diff > 0; diff--)
setnilvalue(s2v(L->top++)); /* clear new slots */
2018-08-22 21:33:38 +02:00
}
else {
api_check(L, -(idx+1) <= (L->top - (func + 1)), "invalid new top");
2020-07-02 16:09:52 +02:00
diff = idx + 1; /* will "subtract" index (as it is negative) */
2018-08-22 21:33:38 +02:00
}
2020-07-02 16:09:52 +02:00
if (diff < 0 && hastocloseCfunc(ci->nresults))
luaF_close(L, L->top + diff, LUA_OK);
L->top += diff; /* correct top only after closing any upvalue */
2018-08-22 21:33:38 +02:00
lua_unlock(L);
}
/*
** Reverse the stack segment from 'from' to 'to'
** (auxiliary to 'lua_rotate')
2020-07-02 16:09:52 +02:00
** Note that we move(copy) only the value inside the stack.
** (We do not move additional fields that may exist.)
2018-08-22 21:33:38 +02:00
*/
static void reverse (lua_State *L, StkId from, StkId to) {
for (; from < to; from++, to--) {
TValue temp;
2020-07-02 16:09:52 +02:00
setobj(L, &temp, s2v(from));
2018-08-22 21:33:38 +02:00
setobjs2s(L, from, to);
setobj2s(L, to, &temp);
}
}
/*
** Let x = AB, where A is a prefix of length 'n'. Then,
** rotate x n == BA. But BA == (A^r . B^r)^r.
*/
LUA_API void lua_rotate (lua_State *L, int idx, int n) {
StkId p, t, m;
lua_lock(L);
t = L->top - 1; /* end of stack segment being rotated */
2020-07-02 16:09:52 +02:00
p = index2stack(L, idx); /* start of segment */
2018-08-22 21:33:38 +02:00
api_check(L, (n >= 0 ? n : -n) <= (t - p + 1), "invalid 'n'");
m = (n >= 0 ? t - n : p - n - 1); /* end of prefix */
reverse(L, p, m); /* reverse the prefix with length 'n' */
reverse(L, m + 1, t); /* reverse the suffix */
reverse(L, p, t); /* reverse the entire segment */
lua_unlock(L);
}
LUA_API void lua_copy (lua_State *L, int fromidx, int toidx) {
TValue *fr, *to;
lua_lock(L);
2020-07-02 16:09:52 +02:00
fr = index2value(L, fromidx);
to = index2value(L, toidx);
api_check(L, isvalid(L, to), "invalid index");
2018-08-22 21:33:38 +02:00
setobj(L, to, fr);
if (isupvalue(toidx)) /* function upvalue? */
2020-07-02 16:09:52 +02:00
luaC_barrier(L, clCvalue(s2v(L->ci->func)), fr);
2018-08-22 21:33:38 +02:00
/* LUA_REGISTRYINDEX does not need gc barrier
(collector revisits it before finishing collection) */
lua_unlock(L);
}
LUA_API void lua_pushvalue (lua_State *L, int idx) {
lua_lock(L);
2020-07-02 16:09:52 +02:00
setobj2s(L, L->top, index2value(L, idx));
2018-08-22 21:33:38 +02:00
api_incr_top(L);
lua_unlock(L);
}
/*
** access functions (stack -> C)
*/
LUA_API int lua_type (lua_State *L, int idx) {
2020-07-02 16:09:52 +02:00
const TValue *o = index2value(L, idx);
return (isvalid(L, o) ? ttype(o) : LUA_TNONE);
2018-08-22 21:33:38 +02:00
}
LUA_API const char *lua_typename (lua_State *L, int t) {
UNUSED(L);
2020-07-02 16:09:52 +02:00
api_check(L, LUA_TNONE <= t && t < LUA_NUMTYPES, "invalid type");
2018-08-22 21:33:38 +02:00
return ttypename(t);
}
LUA_API int lua_iscfunction (lua_State *L, int idx) {
2020-07-02 16:09:52 +02:00
const TValue *o = index2value(L, idx);
2018-08-22 21:33:38 +02:00
return (ttislcf(o) || (ttisCclosure(o)));
}
LUA_API int lua_isinteger (lua_State *L, int idx) {
2020-07-02 16:09:52 +02:00
const TValue *o = index2value(L, idx);
2018-08-22 21:33:38 +02:00
return ttisinteger(o);
}
LUA_API int lua_isnumber (lua_State *L, int idx) {
lua_Number n;
2020-07-02 16:09:52 +02:00
const TValue *o = index2value(L, idx);
2018-08-22 21:33:38 +02:00
return tonumber(o, &n);
}
LUA_API int lua_isstring (lua_State *L, int idx) {
2020-07-02 16:09:52 +02:00
const TValue *o = index2value(L, idx);
2018-08-22 21:33:38 +02:00
return (ttisstring(o) || cvt2str(o));
}
LUA_API int lua_isuserdata (lua_State *L, int idx) {
2020-07-02 16:09:52 +02:00
const TValue *o = index2value(L, idx);
2018-08-22 21:33:38 +02:00
return (ttisfulluserdata(o) || ttislightuserdata(o));
}
LUA_API int lua_rawequal (lua_State *L, int index1, int index2) {
2020-07-02 16:09:52 +02:00
const TValue *o1 = index2value(L, index1);
const TValue *o2 = index2value(L, index2);
return (isvalid(L, o1) && isvalid(L, o2)) ? luaV_rawequalobj(o1, o2) : 0;
2018-08-22 21:33:38 +02:00
}
LUA_API void lua_arith (lua_State *L, int op) {
lua_lock(L);
if (op != LUA_OPUNM && op != LUA_OPBNOT)
api_checknelems(L, 2); /* all other operations expect two operands */
else { /* for unary operations, add fake 2nd operand */
api_checknelems(L, 1);
setobjs2s(L, L->top, L->top - 1);
api_incr_top(L);
}
/* first operand at top - 2, second at top - 1; result go to top - 2 */
2020-07-02 16:09:52 +02:00
luaO_arith(L, op, s2v(L->top - 2), s2v(L->top - 1), L->top - 2);
2018-08-22 21:33:38 +02:00
L->top--; /* remove second operand */
lua_unlock(L);
}
LUA_API int lua_compare (lua_State *L, int index1, int index2, int op) {
2020-07-02 16:09:52 +02:00
const TValue *o1;
const TValue *o2;
2018-08-22 21:33:38 +02:00
int i = 0;
lua_lock(L); /* may call tag method */
2020-07-02 16:09:52 +02:00
o1 = index2value(L, index1);
o2 = index2value(L, index2);
if (isvalid(L, o1) && isvalid(L, o2)) {
2018-08-22 21:33:38 +02:00
switch (op) {
case LUA_OPEQ: i = luaV_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, "invalid option");
}
}
lua_unlock(L);
return i;
}
LUA_API size_t lua_stringtonumber (lua_State *L, const char *s) {
2020-07-02 16:09:52 +02:00
size_t sz = luaO_str2num(s, s2v(L->top));
2018-08-22 21:33:38 +02:00
if (sz != 0)
api_incr_top(L);
return sz;
}
LUA_API lua_Number lua_tonumberx (lua_State *L, int idx, int *pisnum) {
2020-07-02 16:09:52 +02:00
lua_Number n = 0;
const TValue *o = index2value(L, idx);
2018-08-22 21:33:38 +02:00
int isnum = tonumber(o, &n);
2020-07-02 16:09:52 +02:00
if (pisnum)
*pisnum = isnum;
2018-08-22 21:33:38 +02:00
return n;
}
LUA_API lua_Integer lua_tointegerx (lua_State *L, int idx, int *pisnum) {
2020-07-02 16:09:52 +02:00
lua_Integer res = 0;
const TValue *o = index2value(L, idx);
2018-08-22 21:33:38 +02:00
int isnum = tointeger(o, &res);
2020-07-02 16:09:52 +02:00
if (pisnum)
*pisnum = isnum;
2018-08-22 21:33:38 +02:00
return res;
}
LUA_API int lua_toboolean (lua_State *L, int idx) {
2020-07-02 16:09:52 +02:00
const TValue *o = index2value(L, idx);
2018-08-22 21:33:38 +02:00
return !l_isfalse(o);
}
LUA_API const char *lua_tolstring (lua_State *L, int idx, size_t *len) {
2020-11-26 04:07:09 +01:00
TValue *o;
lua_lock(L);
o = index2value(L, idx);
2018-08-22 21:33:38 +02:00
if (!ttisstring(o)) {
if (!cvt2str(o)) { /* not convertible? */
if (len != NULL) *len = 0;
2020-11-26 04:07:09 +01:00
lua_unlock(L);
2018-08-22 21:33:38 +02:00
return NULL;
}
luaO_tostring(L, o);
luaC_checkGC(L);
2020-07-02 16:09:52 +02:00
o = index2value(L, idx); /* previous call may reallocate the stack */
2018-08-22 21:33:38 +02:00
}
if (len != NULL)
*len = vslen(o);
2020-11-26 04:07:09 +01:00
lua_unlock(L);
2018-08-22 21:33:38 +02:00
return svalue(o);
}
2020-07-02 16:09:52 +02:00
LUA_API lua_Unsigned lua_rawlen (lua_State *L, int idx) {
const TValue *o = index2value(L, idx);
switch (ttypetag(o)) {
case LUA_VSHRSTR: return tsvalue(o)->shrlen;
case LUA_VLNGSTR: return tsvalue(o)->u.lnglen;
case LUA_VUSERDATA: return uvalue(o)->len;
case LUA_VTABLE: return luaH_getn(hvalue(o));
2018-08-22 21:33:38 +02:00
default: return 0;
}
}
LUA_API lua_CFunction lua_tocfunction (lua_State *L, int idx) {
2020-07-02 16:09:52 +02:00
const TValue *o = index2value(L, idx);
2018-08-22 21:33:38 +02:00
if (ttislcf(o)) return fvalue(o);
else if (ttisCclosure(o))
return clCvalue(o)->f;
else return NULL; /* not a C function */
}
2020-07-02 16:09:52 +02:00
static void *touserdata (const TValue *o) {
switch (ttype(o)) {
2018-08-22 21:33:38 +02:00
case LUA_TUSERDATA: return getudatamem(uvalue(o));
case LUA_TLIGHTUSERDATA: return pvalue(o);
default: return NULL;
}
}
2020-07-02 16:09:52 +02:00
LUA_API void *lua_touserdata (lua_State *L, int idx) {
const TValue *o = index2value(L, idx);
return touserdata(o);
}
2018-08-22 21:33:38 +02:00
LUA_API lua_State *lua_tothread (lua_State *L, int idx) {
2020-07-02 16:09:52 +02:00
const TValue *o = index2value(L, idx);
2018-08-22 21:33:38 +02:00
return (!ttisthread(o)) ? NULL : thvalue(o);
}
2020-07-02 16:09:52 +02:00
/*
** Returns a pointer to the internal representation of an object.
** Note that ANSI C does not allow the conversion of a pointer to
** function to a 'void*', so the conversion here goes through
** a 'size_t'. (As the returned pointer is only informative, this
** conversion should not be a problem.)
*/
2018-08-22 21:33:38 +02:00
LUA_API const void *lua_topointer (lua_State *L, int idx) {
2020-07-02 16:09:52 +02:00
const TValue *o = index2value(L, idx);
switch (ttypetag(o)) {
case LUA_VLCF: return cast_voidp(cast_sizet(fvalue(o)));
case LUA_VUSERDATA: case LUA_VLIGHTUSERDATA:
return touserdata(o);
default: {
if (iscollectable(o))
return gcvalue(o);
else
return NULL;
}
2018-08-22 21:33:38 +02:00
}
}
/*
** push functions (C -> stack)
*/
LUA_API void lua_pushnil (lua_State *L) {
lua_lock(L);
2020-07-02 16:09:52 +02:00
setnilvalue(s2v(L->top));
2018-08-22 21:33:38 +02:00
api_incr_top(L);
lua_unlock(L);
}
LUA_API void lua_pushnumber (lua_State *L, lua_Number n) {
lua_lock(L);
2020-07-02 16:09:52 +02:00
setfltvalue(s2v(L->top), n);
2018-08-22 21:33:38 +02:00
api_incr_top(L);
lua_unlock(L);
}
LUA_API void lua_pushinteger (lua_State *L, lua_Integer n) {
lua_lock(L);
2020-07-02 16:09:52 +02:00
setivalue(s2v(L->top), n);
2018-08-22 21:33:38 +02:00
api_incr_top(L);
lua_unlock(L);
}
/*
** Pushes on the stack a string with given length. Avoid using 's' when
** 'len' == 0 (as 's' can be NULL in that case), due to later use of
** 'memcmp' and 'memcpy'.
*/
LUA_API const char *lua_pushlstring (lua_State *L, const char *s, size_t len) {
TString *ts;
lua_lock(L);
ts = (len == 0) ? luaS_new(L, "") : luaS_newlstr(L, s, len);
setsvalue2s(L, L->top, ts);
api_incr_top(L);
luaC_checkGC(L);
lua_unlock(L);
return getstr(ts);
}
LUA_API const char *lua_pushstring (lua_State *L, const char *s) {
lua_lock(L);
if (s == NULL)
2020-07-02 16:09:52 +02:00
setnilvalue(s2v(L->top));
2018-08-22 21:33:38 +02:00
else {
TString *ts;
ts = luaS_new(L, s);
setsvalue2s(L, L->top, ts);
s = getstr(ts); /* internal copy's address */
}
api_incr_top(L);
luaC_checkGC(L);
lua_unlock(L);
return s;
}
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);
luaC_checkGC(L);
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);
luaC_checkGC(L);
lua_unlock(L);
return ret;
}
LUA_API void lua_pushcclosure (lua_State *L, lua_CFunction fn, int n) {
lua_lock(L);
if (n == 0) {
2020-07-02 16:09:52 +02:00
setfvalue(s2v(L->top), fn);
2018-08-22 21:33:38 +02:00
api_incr_top(L);
}
else {
CClosure *cl;
api_checknelems(L, n);
api_check(L, n <= MAXUPVAL, "upvalue index too large");
cl = luaF_newCclosure(L, n);
cl->f = fn;
L->top -= n;
while (n--) {
2020-07-02 16:09:52 +02:00
setobj2n(L, &cl->upvalue[n], s2v(L->top + n));
2018-08-22 21:33:38 +02:00
/* does not need barrier because closure is white */
2020-11-26 04:07:09 +01:00
lua_assert(iswhite(cl));
2018-08-22 21:33:38 +02:00
}
2020-07-02 16:09:52 +02:00
setclCvalue(L, s2v(L->top), cl);
2018-08-22 21:33:38 +02:00
api_incr_top(L);
luaC_checkGC(L);
}
lua_unlock(L);
}
LUA_API void lua_pushboolean (lua_State *L, int b) {
lua_lock(L);
2020-07-02 16:09:52 +02:00
if (b)
setbtvalue(s2v(L->top));
else
setbfvalue(s2v(L->top));
2018-08-22 21:33:38 +02:00
api_incr_top(L);
lua_unlock(L);
}
LUA_API void lua_pushlightuserdata (lua_State *L, void *p) {
lua_lock(L);
2020-07-02 16:09:52 +02:00
setpvalue(s2v(L->top), p);
2018-08-22 21:33:38 +02:00
api_incr_top(L);
lua_unlock(L);
}
LUA_API int lua_pushthread (lua_State *L) {
lua_lock(L);
2020-07-02 16:09:52 +02:00
setthvalue(L, s2v(L->top), L);
2018-08-22 21:33:38 +02:00
api_incr_top(L);
lua_unlock(L);
return (G(L)->mainthread == L);
}
/*
** get functions (Lua -> stack)
*/
static int auxgetstr (lua_State *L, const TValue *t, const char *k) {
const TValue *slot;
TString *str = luaS_new(L, k);
if (luaV_fastget(L, t, str, slot, luaH_getstr)) {
setobj2s(L, L->top, slot);
api_incr_top(L);
}
else {
setsvalue2s(L, L->top, str);
api_incr_top(L);
2020-07-02 16:09:52 +02:00
luaV_finishget(L, t, s2v(L->top - 1), L->top - 1, slot);
2018-08-22 21:33:38 +02:00
}
lua_unlock(L);
2020-07-02 16:09:52 +02:00
return ttype(s2v(L->top - 1));
2018-08-22 21:33:38 +02:00
}
LUA_API int lua_getglobal (lua_State *L, const char *name) {
2020-11-26 04:07:09 +01:00
Table *reg;
2018-08-22 21:33:38 +02:00
lua_lock(L);
2020-11-26 04:07:09 +01:00
reg = hvalue(&G(L)->l_registry);
2018-08-22 21:33:38 +02:00
return auxgetstr(L, luaH_getint(reg, LUA_RIDX_GLOBALS), name);
}
LUA_API int lua_gettable (lua_State *L, int idx) {
2020-07-02 16:09:52 +02:00
const TValue *slot;
TValue *t;
2018-08-22 21:33:38 +02:00
lua_lock(L);
2020-07-02 16:09:52 +02:00
t = index2value(L, idx);
if (luaV_fastget(L, t, s2v(L->top - 1), slot, luaH_get)) {
setobj2s(L, L->top - 1, slot);
}
else
luaV_finishget(L, t, s2v(L->top - 1), L->top - 1, slot);
2018-08-22 21:33:38 +02:00
lua_unlock(L);
2020-07-02 16:09:52 +02:00
return ttype(s2v(L->top - 1));
2018-08-22 21:33:38 +02:00
}
LUA_API int lua_getfield (lua_State *L, int idx, const char *k) {
lua_lock(L);
2020-07-02 16:09:52 +02:00
return auxgetstr(L, index2value(L, idx), k);
2018-08-22 21:33:38 +02:00
}
LUA_API int lua_geti (lua_State *L, int idx, lua_Integer n) {
2020-07-02 16:09:52 +02:00
TValue *t;
2018-08-22 21:33:38 +02:00
const TValue *slot;
lua_lock(L);
2020-07-02 16:09:52 +02:00
t = index2value(L, idx);
if (luaV_fastgeti(L, t, n, slot)) {
2018-08-22 21:33:38 +02:00
setobj2s(L, L->top, slot);
}
else {
2020-07-02 16:09:52 +02:00
TValue aux;
setivalue(&aux, n);
luaV_finishget(L, t, &aux, L->top, slot);
2018-08-22 21:33:38 +02:00
}
2020-07-02 16:09:52 +02:00
api_incr_top(L);
2018-08-22 21:33:38 +02:00
lua_unlock(L);
2020-07-02 16:09:52 +02:00
return ttype(s2v(L->top - 1));
}
static int finishrawget (lua_State *L, const TValue *val) {
if (isempty(val)) /* avoid copying empty items to the stack */
setnilvalue(s2v(L->top));
else
setobj2s(L, L->top, val);
api_incr_top(L);
lua_unlock(L);
return ttype(s2v(L->top - 1));
}
static Table *gettable (lua_State *L, int idx) {
TValue *t = index2value(L, idx);
api_check(L, ttistable(t), "table expected");
return hvalue(t);
2018-08-22 21:33:38 +02:00
}
LUA_API int lua_rawget (lua_State *L, int idx) {
2020-07-02 16:09:52 +02:00
Table *t;
const TValue *val;
2018-08-22 21:33:38 +02:00
lua_lock(L);
2020-07-02 16:09:52 +02:00
api_checknelems(L, 1);
t = gettable(L, idx);
val = luaH_get(t, s2v(L->top - 1));
L->top--; /* remove key */
return finishrawget(L, val);
2018-08-22 21:33:38 +02:00
}
LUA_API int lua_rawgeti (lua_State *L, int idx, lua_Integer n) {
2020-07-02 16:09:52 +02:00
Table *t;
2018-08-22 21:33:38 +02:00
lua_lock(L);
2020-07-02 16:09:52 +02:00
t = gettable(L, idx);
return finishrawget(L, luaH_getint(t, n));
2018-08-22 21:33:38 +02:00
}
LUA_API int lua_rawgetp (lua_State *L, int idx, const void *p) {
2020-07-02 16:09:52 +02:00
Table *t;
2018-08-22 21:33:38 +02:00
TValue k;
lua_lock(L);
2020-07-02 16:09:52 +02:00
t = gettable(L, idx);
setpvalue(&k, cast_voidp(p));
return finishrawget(L, luaH_get(t, &k));
2018-08-22 21:33:38 +02:00
}
LUA_API void lua_createtable (lua_State *L, int narray, int nrec) {
Table *t;
lua_lock(L);
t = luaH_new(L);
2020-07-02 16:09:52 +02:00
sethvalue2s(L, L->top, t);
2018-08-22 21:33:38 +02:00
api_incr_top(L);
if (narray > 0 || nrec > 0)
luaH_resize(L, t, narray, nrec);
luaC_checkGC(L);
lua_unlock(L);
}
LUA_API int lua_getmetatable (lua_State *L, int objindex) {
const TValue *obj;
Table *mt;
int res = 0;
lua_lock(L);
2020-07-02 16:09:52 +02:00
obj = index2value(L, objindex);
switch (ttype(obj)) {
2018-08-22 21:33:38 +02:00
case LUA_TTABLE:
mt = hvalue(obj)->metatable;
break;
case LUA_TUSERDATA:
mt = uvalue(obj)->metatable;
break;
default:
2020-07-02 16:09:52 +02:00
mt = G(L)->mt[ttype(obj)];
2018-08-22 21:33:38 +02:00
break;
}
if (mt != NULL) {
2020-07-02 16:09:52 +02:00
sethvalue2s(L, L->top, mt);
2018-08-22 21:33:38 +02:00
api_incr_top(L);
res = 1;
}
lua_unlock(L);
return res;
}
2020-07-02 16:09:52 +02:00
LUA_API int lua_getiuservalue (lua_State *L, int idx, int n) {
TValue *o;
int t;
2018-08-22 21:33:38 +02:00
lua_lock(L);
2020-07-02 16:09:52 +02:00
o = index2value(L, idx);
2018-08-22 21:33:38 +02:00
api_check(L, ttisfulluserdata(o), "full userdata expected");
2020-07-02 16:09:52 +02:00
if (n <= 0 || n > uvalue(o)->nuvalue) {
setnilvalue(s2v(L->top));
t = LUA_TNONE;
}
else {
setobj2s(L, L->top, &uvalue(o)->uv[n - 1].uv);
t = ttype(s2v(L->top));
}
2018-08-22 21:33:38 +02:00
api_incr_top(L);
lua_unlock(L);
2020-07-02 16:09:52 +02:00
return t;
2018-08-22 21:33:38 +02:00
}
/*
** set functions (stack -> Lua)
*/
/*
** t[k] = value at the top of the stack (where 'k' is a string)
*/
static void auxsetstr (lua_State *L, const TValue *t, const char *k) {
const TValue *slot;
TString *str = luaS_new(L, k);
api_checknelems(L, 1);
2020-07-02 16:09:52 +02:00
if (luaV_fastget(L, t, str, slot, luaH_getstr)) {
luaV_finishfastset(L, t, slot, s2v(L->top - 1));
2018-08-22 21:33:38 +02:00
L->top--; /* pop value */
2020-07-02 16:09:52 +02:00
}
2018-08-22 21:33:38 +02:00
else {
setsvalue2s(L, L->top, str); /* push 'str' (to make it a TValue) */
api_incr_top(L);
2020-07-02 16:09:52 +02:00
luaV_finishset(L, t, s2v(L->top - 1), s2v(L->top - 2), slot);
2018-08-22 21:33:38 +02:00
L->top -= 2; /* pop value and key */
}
lua_unlock(L); /* lock done by caller */
}
LUA_API void lua_setglobal (lua_State *L, const char *name) {
2020-11-26 04:07:09 +01:00
Table *reg;
2018-08-22 21:33:38 +02:00
lua_lock(L); /* unlock done in 'auxsetstr' */
2020-11-26 04:07:09 +01:00
reg = hvalue(&G(L)->l_registry);
2018-08-22 21:33:38 +02:00
auxsetstr(L, luaH_getint(reg, LUA_RIDX_GLOBALS), name);
}
LUA_API void lua_settable (lua_State *L, int idx) {
2020-07-02 16:09:52 +02:00
TValue *t;
const TValue *slot;
2018-08-22 21:33:38 +02:00
lua_lock(L);
api_checknelems(L, 2);
2020-07-02 16:09:52 +02:00
t = index2value(L, idx);
if (luaV_fastget(L, t, s2v(L->top - 2), slot, luaH_get)) {
luaV_finishfastset(L, t, slot, s2v(L->top - 1));
}
else
luaV_finishset(L, t, s2v(L->top - 2), s2v(L->top - 1), slot);
2018-08-22 21:33:38 +02:00
L->top -= 2; /* pop index and value */
lua_unlock(L);
}
LUA_API void lua_setfield (lua_State *L, int idx, const char *k) {
lua_lock(L); /* unlock done in 'auxsetstr' */
2020-07-02 16:09:52 +02:00
auxsetstr(L, index2value(L, idx), k);
2018-08-22 21:33:38 +02:00
}
LUA_API void lua_seti (lua_State *L, int idx, lua_Integer n) {
2020-07-02 16:09:52 +02:00
TValue *t;
2018-08-22 21:33:38 +02:00
const TValue *slot;
lua_lock(L);
api_checknelems(L, 1);
2020-07-02 16:09:52 +02:00
t = index2value(L, idx);
if (luaV_fastgeti(L, t, n, slot)) {
luaV_finishfastset(L, t, slot, s2v(L->top - 1));
}
2018-08-22 21:33:38 +02:00
else {
2020-07-02 16:09:52 +02:00
TValue aux;
setivalue(&aux, n);
luaV_finishset(L, t, &aux, s2v(L->top - 1), slot);
2018-08-22 21:33:38 +02:00
}
2020-07-02 16:09:52 +02:00
L->top--; /* pop value */
2018-08-22 21:33:38 +02:00
lua_unlock(L);
}
2020-07-02 16:09:52 +02:00
static void aux_rawset (lua_State *L, int idx, TValue *key, int n) {
Table *t;
2018-08-22 21:33:38 +02:00
TValue *slot;
lua_lock(L);
2020-07-02 16:09:52 +02:00
api_checknelems(L, n);
t = gettable(L, idx);
slot = luaH_set(L, t, key);
setobj2t(L, slot, s2v(L->top - 1));
invalidateTMcache(t);
luaC_barrierback(L, obj2gco(t), s2v(L->top - 1));
L->top -= n;
2018-08-22 21:33:38 +02:00
lua_unlock(L);
}
2020-07-02 16:09:52 +02:00
LUA_API void lua_rawset (lua_State *L, int idx) {
aux_rawset(L, idx, s2v(L->top - 2), 2);
2018-08-22 21:33:38 +02:00
}
LUA_API void lua_rawsetp (lua_State *L, int idx, const void *p) {
2020-07-02 16:09:52 +02:00
TValue k;
setpvalue(&k, cast_voidp(p));
aux_rawset(L, idx, &k, 1);
}
LUA_API void lua_rawseti (lua_State *L, int idx, lua_Integer n) {
Table *t;
2018-08-22 21:33:38 +02:00
lua_lock(L);
api_checknelems(L, 1);
2020-07-02 16:09:52 +02:00
t = gettable(L, idx);
luaH_setint(L, t, n, s2v(L->top - 1));
luaC_barrierback(L, obj2gco(t), s2v(L->top - 1));
2018-08-22 21:33:38 +02:00
L->top--;
lua_unlock(L);
}
LUA_API int lua_setmetatable (lua_State *L, int objindex) {
TValue *obj;
Table *mt;
lua_lock(L);
api_checknelems(L, 1);
2020-07-02 16:09:52 +02:00
obj = index2value(L, objindex);
if (ttisnil(s2v(L->top - 1)))
2018-08-22 21:33:38 +02:00
mt = NULL;
else {
2020-07-02 16:09:52 +02:00
api_check(L, ttistable(s2v(L->top - 1)), "table expected");
mt = hvalue(s2v(L->top - 1));
2018-08-22 21:33:38 +02:00
}
2020-07-02 16:09:52 +02:00
switch (ttype(obj)) {
2018-08-22 21:33:38 +02:00
case LUA_TTABLE: {
hvalue(obj)->metatable = mt;
if (mt) {
luaC_objbarrier(L, gcvalue(obj), mt);
luaC_checkfinalizer(L, gcvalue(obj), mt);
}
break;
}
case LUA_TUSERDATA: {
uvalue(obj)->metatable = mt;
if (mt) {
luaC_objbarrier(L, uvalue(obj), mt);
luaC_checkfinalizer(L, gcvalue(obj), mt);
}
break;
}
default: {
2020-07-02 16:09:52 +02:00
G(L)->mt[ttype(obj)] = mt;
2018-08-22 21:33:38 +02:00
break;
}
}
L->top--;
lua_unlock(L);
return 1;
}
2020-07-02 16:09:52 +02:00
LUA_API int lua_setiuservalue (lua_State *L, int idx, int n) {
TValue *o;
int res;
2018-08-22 21:33:38 +02:00
lua_lock(L);
api_checknelems(L, 1);
2020-07-02 16:09:52 +02:00
o = index2value(L, idx);
2018-08-22 21:33:38 +02:00
api_check(L, ttisfulluserdata(o), "full userdata expected");
2020-07-02 16:09:52 +02:00
if (!(cast_uint(n) - 1u < cast_uint(uvalue(o)->nuvalue)))
res = 0; /* 'n' not in [1, uvalue(o)->nuvalue] */
else {
setobj(L, &uvalue(o)->uv[n - 1].uv, s2v(L->top - 1));
luaC_barrierback(L, gcvalue(o), s2v(L->top - 1));
res = 1;
}
2018-08-22 21:33:38 +02:00
L->top--;
lua_unlock(L);
2020-07-02 16:09:52 +02:00
return res;
2018-08-22 21:33:38 +02:00
}
/*
** 'load' and 'call' functions (run Lua code)
*/
#define checkresults(L,na,nr) \
api_check(L, (nr) == LUA_MULTRET || (L->ci->top - L->top >= (nr) - (na)), \
"results from function overflow current stack size")
LUA_API void lua_callk (lua_State *L, int nargs, int nresults,
lua_KContext ctx, lua_KFunction k) {
StkId func;
lua_lock(L);
api_check(L, k == NULL || !isLua(L->ci),
"cannot use continuations inside hooks");
api_checknelems(L, nargs+1);
api_check(L, L->status == LUA_OK, "cannot do calls on non-normal thread");
checkresults(L, nargs, nresults);
func = L->top - (nargs+1);
2020-07-02 16:09:52 +02:00
if (k != NULL && yieldable(L)) { /* need to prepare continuation? */
2018-08-22 21:33:38 +02:00
L->ci->u.c.k = k; /* save continuation */
L->ci->u.c.ctx = ctx; /* save context */
luaD_call(L, func, nresults); /* do the call */
}
else /* no continuation or no yieldable */
luaD_callnoyield(L, func, nresults); /* just do the call */
adjustresults(L, nresults);
lua_unlock(L);
}
/*
** 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_callnoyield(L, c->func, c->nresults);
}
LUA_API int lua_pcallk (lua_State *L, int nargs, int nresults, int errfunc,
lua_KContext ctx, lua_KFunction k) {
struct CallS c;
int status;
ptrdiff_t func;
lua_lock(L);
api_check(L, k == NULL || !isLua(L->ci),
"cannot use continuations inside hooks");
api_checknelems(L, nargs+1);
api_check(L, L->status == LUA_OK, "cannot do calls on non-normal thread");
checkresults(L, nargs, nresults);
if (errfunc == 0)
func = 0;
else {
2020-07-02 16:09:52 +02:00
StkId o = index2stack(L, errfunc);
api_check(L, ttisfunction(s2v(o)), "error handler must be a function");
2018-08-22 21:33:38 +02:00
func = savestack(L, o);
}
c.func = L->top - (nargs+1); /* function to be called */
2020-07-02 16:09:52 +02:00
if (k == NULL || !yieldable(L)) { /* no continuation or no yieldable? */
2018-08-22 21:33:38 +02:00
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 */
2020-07-02 16:09:52 +02:00
ci->u2.funcidx = cast_int(savestack(L, c.func));
2018-08-22 21:33:38 +02:00
ci->u.c.old_errfunc = L->errfunc;
L->errfunc = func;
setoah(ci->callstatus, L->allowhook); /* save value of 'allowhook' */
ci->callstatus |= CIST_YPCALL; /* function can do error recovery */
luaD_call(L, c.func, nresults); /* 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);
lua_unlock(L);
return status;
}
LUA_API int lua_load (lua_State *L, lua_Reader reader, void *data,
const char *chunkname, const char *mode) {
ZIO z;
int status;
lua_lock(L);
if (!chunkname) chunkname = "?";
luaZ_init(L, &z, reader, data);
status = luaD_protectedparser(L, &z, chunkname, mode);
if (status == LUA_OK) { /* no errors? */
2020-07-02 16:09:52 +02:00
LClosure *f = clLvalue(s2v(L->top - 1)); /* get newly created function */
2018-08-22 21:33:38 +02:00
if (f->nupvalues >= 1) { /* does it have an upvalue? */
/* get global table from registry */
Table *reg = hvalue(&G(L)->l_registry);
const TValue *gt = luaH_getint(reg, LUA_RIDX_GLOBALS);
/* set global table as 1st upvalue of 'f' (may be LUA_ENV) */
setobj(L, f->upvals[0]->v, gt);
2020-07-02 16:09:52 +02:00
luaC_barrier(L, f->upvals[0], gt);
2018-08-22 21:33:38 +02:00
}
}
lua_unlock(L);
return status;
}
LUA_API int lua_dump (lua_State *L, lua_Writer writer, void *data, int strip) {
int status;
TValue *o;
lua_lock(L);
api_checknelems(L, 1);
2020-07-02 16:09:52 +02:00
o = s2v(L->top - 1);
2018-08-22 21:33:38 +02:00
if (isLfunction(o))
status = luaU_dump(L, getproto(o), writer, data, strip);
else
status = 1;
lua_unlock(L);
return status;
}
LUA_API int lua_status (lua_State *L) {
return L->status;
}
/*
** Garbage-collection function
*/
2020-07-02 16:09:52 +02:00
LUA_API int lua_gc (lua_State *L, int what, ...) {
va_list argp;
2018-08-22 21:33:38 +02:00
int res = 0;
2020-11-26 04:07:09 +01:00
global_State *g;
2018-08-22 21:33:38 +02:00
lua_lock(L);
2020-11-26 04:07:09 +01:00
g = G(L);
2020-07-02 16:09:52 +02:00
va_start(argp, what);
2018-08-22 21:33:38 +02:00
switch (what) {
case LUA_GCSTOP: {
g->gcrunning = 0;
break;
}
case LUA_GCRESTART: {
luaE_setdebt(g, 0);
g->gcrunning = 1;
break;
}
case LUA_GCCOLLECT: {
luaC_fullgc(L, 0);
break;
}
case LUA_GCCOUNT: {
/* GC values are expressed in Kbytes: #bytes/2^10 */
res = cast_int(gettotalbytes(g) >> 10);
break;
}
case LUA_GCCOUNTB: {
res = cast_int(gettotalbytes(g) & 0x3ff);
break;
}
case LUA_GCSTEP: {
2020-07-02 16:09:52 +02:00
int data = va_arg(argp, int);
2018-08-22 21:33:38 +02:00
l_mem debt = 1; /* =1 to signal that it did an actual step */
lu_byte oldrunning = g->gcrunning;
g->gcrunning = 1; /* allow GC to run */
if (data == 0) {
2020-07-02 16:09:52 +02:00
luaE_setdebt(g, 0); /* do a basic step */
2018-08-22 21:33:38 +02:00
luaC_step(L);
}
else { /* add 'data' to total debt */
debt = cast(l_mem, data) * 1024 + g->GCdebt;
luaE_setdebt(g, debt);
luaC_checkGC(L);
}
g->gcrunning = oldrunning; /* restore previous state */
if (debt > 0 && g->gcstate == GCSpause) /* end of cycle? */
res = 1; /* signal it */
break;
}
case LUA_GCSETPAUSE: {
2020-07-02 16:09:52 +02:00
int data = va_arg(argp, int);
res = getgcparam(g->gcpause);
setgcparam(g->gcpause, data);
2018-08-22 21:33:38 +02:00
break;
}
case LUA_GCSETSTEPMUL: {
2020-07-02 16:09:52 +02:00
int data = va_arg(argp, int);
res = getgcparam(g->gcstepmul);
setgcparam(g->gcstepmul, data);
2018-08-22 21:33:38 +02:00
break;
}
case LUA_GCISRUNNING: {
res = g->gcrunning;
break;
}
2020-07-02 16:09:52 +02:00
case LUA_GCGEN: {
int minormul = va_arg(argp, int);
int majormul = va_arg(argp, int);
res = isdecGCmodegen(g) ? LUA_GCGEN : LUA_GCINC;
if (minormul != 0)
g->genminormul = minormul;
if (majormul != 0)
setgcparam(g->genmajormul, majormul);
luaC_changemode(L, KGC_GEN);
break;
}
case LUA_GCINC: {
int pause = va_arg(argp, int);
int stepmul = va_arg(argp, int);
int stepsize = va_arg(argp, int);
res = isdecGCmodegen(g) ? LUA_GCGEN : LUA_GCINC;
if (pause != 0)
setgcparam(g->gcpause, pause);
if (stepmul != 0)
setgcparam(g->gcstepmul, stepmul);
if (stepsize != 0)
g->gcstepsize = stepsize;
luaC_changemode(L, KGC_INC);
break;
}
2018-08-22 21:33:38 +02:00
default: res = -1; /* invalid option */
}
2020-07-02 16:09:52 +02:00
va_end(argp);
2018-08-22 21:33:38 +02:00
lua_unlock(L);
return res;
}
/*
** miscellaneous functions
*/
LUA_API int lua_error (lua_State *L) {
2020-11-26 04:07:09 +01:00
TValue *errobj;
2018-08-22 21:33:38 +02:00
lua_lock(L);
2020-11-26 04:07:09 +01:00
errobj = s2v(L->top - 1);
2018-08-22 21:33:38 +02:00
api_checknelems(L, 1);
2020-11-26 04:07:09 +01:00
/* error object is the memory error message? */
if (ttisshrstring(errobj) && eqshrstr(tsvalue(errobj), G(L)->memerrmsg))
luaM_error(L); /* raise a memory error */
else
luaG_errormsg(L); /* raise a regular error */
2018-08-22 21:33:38 +02:00
/* code unreachable; will unlock when control actually leaves the kernel */
return 0; /* to avoid warnings */
}
LUA_API int lua_next (lua_State *L, int idx) {
2020-07-02 16:09:52 +02:00
Table *t;
2018-08-22 21:33:38 +02:00
int more;
lua_lock(L);
2020-07-02 16:09:52 +02:00
api_checknelems(L, 1);
t = gettable(L, idx);
more = luaH_next(L, t, L->top - 1);
2018-08-22 21:33:38 +02:00
if (more) {
api_incr_top(L);
}
else /* no more elements */
L->top -= 1; /* remove key */
lua_unlock(L);
return more;
}
2020-07-02 16:09:52 +02:00
LUA_API void lua_toclose (lua_State *L, int idx) {
int nresults;
StkId o;
lua_lock(L);
o = index2stack(L, idx);
nresults = L->ci->nresults;
api_check(L, L->openupval == NULL || uplevel(L->openupval) <= o,
"marked index below or equal new one");
luaF_newtbcupval(L, o); /* create new to-be-closed upvalue */
if (!hastocloseCfunc(nresults)) /* function not marked yet? */
L->ci->nresults = codeNresults(nresults); /* mark it */
lua_assert(hastocloseCfunc(L->ci->nresults));
lua_unlock(L);
}
2018-08-22 21:33:38 +02:00
LUA_API void lua_concat (lua_State *L, int n) {
lua_lock(L);
api_checknelems(L, n);
2020-11-26 04:07:09 +01:00
if (n > 0)
2018-08-22 21:33:38 +02:00
luaV_concat(L, n);
2020-11-26 04:07:09 +01:00
else { /* nothing to concatenate */
setsvalue2s(L, L->top, luaS_newlstr(L, "", 0)); /* push empty string */
2018-08-22 21:33:38 +02:00
api_incr_top(L);
}
luaC_checkGC(L);
lua_unlock(L);
}
LUA_API void lua_len (lua_State *L, int idx) {
2020-07-02 16:09:52 +02:00
TValue *t;
2018-08-22 21:33:38 +02:00
lua_lock(L);
2020-07-02 16:09:52 +02:00
t = index2value(L, idx);
2018-08-22 21:33:38 +02:00
luaV_objlen(L, L->top, t);
api_incr_top(L);
lua_unlock(L);
}
LUA_API lua_Alloc lua_getallocf (lua_State *L, void **ud) {
lua_Alloc f;
lua_lock(L);
if (ud) *ud = G(L)->ud;
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);
}
2020-07-02 16:09:52 +02:00
void lua_setwarnf (lua_State *L, lua_WarnFunction f, void *ud) {
lua_lock(L);
G(L)->ud_warn = ud;
G(L)->warnf = f;
lua_unlock(L);
}
void lua_warning (lua_State *L, const char *msg, int tocont) {
lua_lock(L);
luaE_warning(L, msg, tocont);
lua_unlock(L);
}
LUA_API void *lua_newuserdatauv (lua_State *L, size_t size, int nuvalue) {
2018-08-22 21:33:38 +02:00
Udata *u;
lua_lock(L);
2020-07-02 16:09:52 +02:00
api_check(L, 0 <= nuvalue && nuvalue < USHRT_MAX, "invalid value");
u = luaS_newudata(L, size, nuvalue);
setuvalue(L, s2v(L->top), u);
2018-08-22 21:33:38 +02:00
api_incr_top(L);
luaC_checkGC(L);
lua_unlock(L);
return getudatamem(u);
}
2020-07-02 16:09:52 +02:00
static const char *aux_upvalue (TValue *fi, int n, TValue **val,
GCObject **owner) {
switch (ttypetag(fi)) {
case LUA_VCCL: { /* C closure */
2018-08-22 21:33:38 +02:00
CClosure *f = clCvalue(fi);
2020-07-02 16:09:52 +02:00
if (!(cast_uint(n) - 1u < cast_uint(f->nupvalues)))
return NULL; /* 'n' not in [1, f->nupvalues] */
2018-08-22 21:33:38 +02:00
*val = &f->upvalue[n-1];
2020-07-02 16:09:52 +02:00
if (owner) *owner = obj2gco(f);
2018-08-22 21:33:38 +02:00
return "";
}
2020-07-02 16:09:52 +02:00
case LUA_VLCL: { /* Lua closure */
2018-08-22 21:33:38 +02:00
LClosure *f = clLvalue(fi);
TString *name;
Proto *p = f->p;
2020-07-02 16:09:52 +02:00
if (!(cast_uint(n) - 1u < cast_uint(p->sizeupvalues)))
return NULL; /* 'n' not in [1, p->sizeupvalues] */
2018-08-22 21:33:38 +02:00
*val = f->upvals[n-1]->v;
2020-07-02 16:09:52 +02:00
if (owner) *owner = obj2gco(f->upvals[n - 1]);
2018-08-22 21:33:38 +02:00
name = p->upvalues[n-1].name;
2020-07-02 16:09:52 +02:00
return (name == NULL) ? "(no name)" : getstr(name);
2018-08-22 21:33:38 +02:00
}
default: return NULL; /* not a closure */
}
}
LUA_API const char *lua_getupvalue (lua_State *L, int funcindex, int n) {
const char *name;
TValue *val = NULL; /* to avoid warnings */
lua_lock(L);
2020-07-02 16:09:52 +02:00
name = aux_upvalue(index2value(L, funcindex), n, &val, NULL);
2018-08-22 21:33:38 +02:00
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 = NULL; /* to avoid warnings */
2020-07-02 16:09:52 +02:00
GCObject *owner = NULL; /* to avoid warnings */
TValue *fi;
2018-08-22 21:33:38 +02:00
lua_lock(L);
2020-07-02 16:09:52 +02:00
fi = index2value(L, funcindex);
2018-08-22 21:33:38 +02:00
api_checknelems(L, 1);
2020-07-02 16:09:52 +02:00
name = aux_upvalue(fi, n, &val, &owner);
2018-08-22 21:33:38 +02:00
if (name) {
L->top--;
2020-07-02 16:09:52 +02:00
setobj(L, val, s2v(L->top));
luaC_barrier(L, owner, val);
2018-08-22 21:33:38 +02:00
}
lua_unlock(L);
return name;
}
static UpVal **getupvalref (lua_State *L, int fidx, int n, LClosure **pf) {
LClosure *f;
2020-07-02 16:09:52 +02:00
TValue *fi = index2value(L, fidx);
2018-08-22 21:33:38 +02:00
api_check(L, ttisLclosure(fi), "Lua function expected");
f = clLvalue(fi);
api_check(L, (1 <= n && n <= f->p->sizeupvalues), "invalid upvalue index");
if (pf) *pf = f;
return &f->upvals[n - 1]; /* get its upvalue pointer */
}
LUA_API void *lua_upvalueid (lua_State *L, int fidx, int n) {
2020-07-02 16:09:52 +02:00
TValue *fi = index2value(L, fidx);
switch (ttypetag(fi)) {
case LUA_VLCL: { /* lua closure */
2018-08-22 21:33:38 +02:00
return *getupvalref(L, fidx, n, NULL);
}
2020-07-02 16:09:52 +02:00
case LUA_VCCL: { /* C closure */
2018-08-22 21:33:38 +02:00
CClosure *f = clCvalue(fi);
api_check(L, 1 <= n && n <= f->nupvalues, "invalid upvalue index");
return &f->upvalue[n - 1];
}
default: {
api_check(L, 0, "closure expected");
return NULL;
}
}
}
LUA_API void lua_upvaluejoin (lua_State *L, int fidx1, int n1,
int fidx2, int n2) {
LClosure *f1;
UpVal **up1 = getupvalref(L, fidx1, n1, &f1);
UpVal **up2 = getupvalref(L, fidx2, n2, NULL);
*up1 = *up2;
2020-07-02 16:09:52 +02:00
luaC_objbarrier(L, f1, *up1);
2018-08-22 21:33:38 +02:00
}