2009-05-21 19:01:41 +00:00
|
|
|
/*
|
2014-04-02 18:46:06 +00:00
|
|
|
** $Id: lapi.c,v 2.55.1.5 2008/07/04 18:41:18 roberto Exp $
|
2009-05-21 19:01:41 +00:00
|
|
|
** Lua API
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
/* #include <assert.h> */
|
|
|
|
#include <math.h>
|
2009-05-21 19:01:41 +00:00
|
|
|
#include <stdarg.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#define lapi_c
|
|
|
|
#define LUA_CORE
|
|
|
|
|
|
|
|
#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[] =
|
2014-04-02 18:46:06 +00:00
|
|
|
"$Lua: " LUA_RELEASE " " LUA_COPYRIGHT " $\n"
|
|
|
|
"$Authors: " LUA_AUTHORS " $\n"
|
|
|
|
"$URL: www.lua.org $\n";
|
2009-05-21 19:01:41 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
#define api_checknelems(L, n) api_check(L, (n) <= (L->top - L->base))
|
2009-05-21 19:01:41 +00:00
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
#define api_checkvalidindex(L, i) api_check(L, (i) != luaO_nilobject)
|
2009-05-21 19:01:41 +00:00
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
#define api_incr_top(L) {api_check(L, L->top < L->ci->top); L->top++;}
|
2009-05-21 19:01:41 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
static TValue *index2adr (lua_State *L, int idx) {
|
2009-05-21 19:01:41 +00:00
|
|
|
if (idx > 0) {
|
2014-04-02 18:46:06 +00:00
|
|
|
TValue *o = L->base + (idx - 1);
|
|
|
|
api_check(L, idx <= L->ci->top - L->base);
|
|
|
|
if (o >= L->top) return cast(TValue *, luaO_nilobject);
|
2009-05-21 19:01:41 +00:00
|
|
|
else return o;
|
|
|
|
}
|
2014-04-02 18:46:06 +00:00
|
|
|
else if (idx > LUA_REGISTRYINDEX) {
|
|
|
|
api_check(L, idx != 0 && -idx <= L->top - L->base);
|
2009-05-21 19:01:41 +00:00
|
|
|
return L->top + idx;
|
|
|
|
}
|
2014-04-02 18:46:06 +00:00
|
|
|
else switch (idx) { /* pseudo-indices */
|
|
|
|
case LUA_REGISTRYINDEX: return registry(L);
|
|
|
|
case LUA_ENVIRONINDEX: {
|
|
|
|
Closure *func = curr_func(L);
|
|
|
|
sethvalue(L, &L->env, func->c.env);
|
|
|
|
return &L->env;
|
|
|
|
}
|
|
|
|
case LUA_GLOBALSINDEX: return gt(L);
|
|
|
|
default: {
|
|
|
|
Closure *func = curr_func(L);
|
|
|
|
idx = LUA_GLOBALSINDEX - idx;
|
|
|
|
return (idx <= func->c.nupvalues)
|
|
|
|
? &func->c.upvalue[idx-1]
|
|
|
|
: cast(TValue *, luaO_nilobject);
|
2009-05-21 19:01:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
static Table *getcurrenv (lua_State *L) {
|
|
|
|
if (L->ci == L->base_ci) /* no enclosing function? */
|
|
|
|
return hvalue(gt(L)); /* use global table as environment */
|
|
|
|
else {
|
|
|
|
Closure *func = curr_func(L);
|
|
|
|
return func->c.env;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void luaA_pushobject (lua_State *L, const TValue *o) {
|
|
|
|
setobj2s(L, L->top, o);
|
|
|
|
api_incr_top(L);
|
2009-05-21 19:01:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API int lua_checkstack (lua_State *L, int size) {
|
2014-04-02 18:46:06 +00:00
|
|
|
int res = 1;
|
2009-05-21 19:01:41 +00:00
|
|
|
lua_lock(L);
|
2014-04-02 18:46:06 +00:00
|
|
|
if (size > LUAI_MAXCSTACK || (L->top - L->base + size) > LUAI_MAXCSTACK)
|
|
|
|
res = 0; /* stack overflow */
|
|
|
|
else if (size > 0) {
|
|
|
|
luaD_checkstack(L, size);
|
|
|
|
if (L->ci->top < L->top + size)
|
|
|
|
L->ci->top = L->top + size;
|
2009-05-21 19:01:41 +00:00
|
|
|
}
|
|
|
|
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);
|
2014-04-02 18:46:06 +00:00
|
|
|
api_check(from, G(from) == G(to));
|
|
|
|
api_check(from, to->ci->top - to->top >= n);
|
2009-05-21 19:01:41 +00:00
|
|
|
from->top -= n;
|
|
|
|
for (i = 0; i < n; i++) {
|
|
|
|
setobj2s(to, to->top++, from->top + i);
|
|
|
|
}
|
|
|
|
lua_unlock(to);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
LUA_API void lua_setlevel (lua_State *from, lua_State *to) {
|
|
|
|
to->nCcalls = from->nCcalls;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-05-21 19:01:41 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
LUA_API lua_State *lua_newthread (lua_State *L) {
|
|
|
|
lua_State *L1;
|
|
|
|
lua_lock(L);
|
|
|
|
luaC_checkGC(L);
|
|
|
|
L1 = luaE_newthread(L);
|
|
|
|
setthvalue(L, L->top, L1);
|
|
|
|
api_incr_top(L);
|
|
|
|
lua_unlock(L);
|
|
|
|
luai_userstatethread(L, L1);
|
|
|
|
return L1;
|
2009-05-21 19:01:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
** basic stack manipulation
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API int lua_gettop (lua_State *L) {
|
2014-04-02 18:46:06 +00:00
|
|
|
return cast_int(L->top - L->base);
|
2009-05-21 19:01:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API void lua_settop (lua_State *L, int idx) {
|
|
|
|
lua_lock(L);
|
|
|
|
if (idx >= 0) {
|
2014-04-02 18:46:06 +00:00
|
|
|
api_check(L, idx <= L->stack_last - L->base);
|
|
|
|
while (L->top < L->base + idx)
|
2009-05-21 19:01:41 +00:00
|
|
|
setnilvalue(L->top++);
|
2014-04-02 18:46:06 +00:00
|
|
|
L->top = L->base + idx;
|
2009-05-21 19:01:41 +00:00
|
|
|
}
|
|
|
|
else {
|
2014-04-02 18:46:06 +00:00
|
|
|
api_check(L, -(idx+1) <= (L->top - L->base));
|
2009-05-21 19:01:41 +00:00
|
|
|
L->top += idx+1; /* `subtract' index (index is negative) */
|
|
|
|
}
|
|
|
|
lua_unlock(L);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API void lua_remove (lua_State *L, int idx) {
|
|
|
|
StkId p;
|
|
|
|
lua_lock(L);
|
2014-04-02 18:46:06 +00:00
|
|
|
p = index2adr(L, idx);
|
|
|
|
api_checkvalidindex(L, p);
|
2009-05-21 19:01:41 +00:00
|
|
|
while (++p < L->top) setobjs2s(L, p-1, p);
|
|
|
|
L->top--;
|
|
|
|
lua_unlock(L);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API void lua_insert (lua_State *L, int idx) {
|
|
|
|
StkId p;
|
|
|
|
StkId q;
|
|
|
|
lua_lock(L);
|
2014-04-02 18:46:06 +00:00
|
|
|
p = index2adr(L, idx);
|
|
|
|
api_checkvalidindex(L, p);
|
|
|
|
for (q = L->top; q>p; q--) setobjs2s(L, q, q-1);
|
2009-05-21 19:01:41 +00:00
|
|
|
setobjs2s(L, p, L->top);
|
|
|
|
lua_unlock(L);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API void lua_replace (lua_State *L, int idx) {
|
2014-04-02 18:46:06 +00:00
|
|
|
StkId o;
|
2009-05-21 19:01:41 +00:00
|
|
|
lua_lock(L);
|
2014-04-02 18:46:06 +00:00
|
|
|
/* explicit test for incompatible code */
|
|
|
|
if (idx == LUA_ENVIRONINDEX && L->ci == L->base_ci)
|
|
|
|
luaG_runerror(L, "no calling environment");
|
2009-05-21 19:01:41 +00:00
|
|
|
api_checknelems(L, 1);
|
2014-04-02 18:46:06 +00:00
|
|
|
o = index2adr(L, idx);
|
|
|
|
api_checkvalidindex(L, o);
|
|
|
|
if (idx == LUA_ENVIRONINDEX) {
|
|
|
|
Closure *func = curr_func(L);
|
|
|
|
api_check(L, ttistable(L->top - 1));
|
|
|
|
func->c.env = hvalue(L->top - 1);
|
|
|
|
luaC_barrier(L, func, L->top - 1);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
setobj(L, o, L->top - 1);
|
|
|
|
if (idx < LUA_GLOBALSINDEX) /* function upvalue? */
|
|
|
|
luaC_barrier(L, curr_func(L), L->top - 1);
|
|
|
|
}
|
2009-05-21 19:01:41 +00:00
|
|
|
L->top--;
|
|
|
|
lua_unlock(L);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API void lua_pushvalue (lua_State *L, int idx) {
|
|
|
|
lua_lock(L);
|
2014-04-02 18:46:06 +00:00
|
|
|
setobj2s(L, L->top, index2adr(L, idx));
|
2009-05-21 19:01:41 +00:00
|
|
|
api_incr_top(L);
|
|
|
|
lua_unlock(L);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
** access functions (stack -> C)
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API int lua_type (lua_State *L, int idx) {
|
2014-04-02 18:46:06 +00:00
|
|
|
StkId o = index2adr(L, idx);
|
|
|
|
return (o == luaO_nilobject) ? LUA_TNONE : ttype(o);
|
2009-05-21 19:01:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API const char *lua_typename (lua_State *L, int t) {
|
|
|
|
UNUSED(L);
|
2014-04-02 18:46:06 +00:00
|
|
|
return (t == LUA_TNONE) ? "no value" : luaT_typenames[t];
|
2009-05-21 19:01:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API int lua_iscfunction (lua_State *L, int idx) {
|
2014-04-02 18:46:06 +00:00
|
|
|
StkId o = index2adr(L, idx);
|
|
|
|
return iscfunction(o);
|
2009-05-21 19:01:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API int lua_isnumber (lua_State *L, int idx) {
|
|
|
|
TValue n;
|
2014-04-02 18:46:06 +00:00
|
|
|
const TValue *o = index2adr(L, idx);
|
2009-05-21 19:01:41 +00:00
|
|
|
return tonumber(o, &n);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API int lua_isstring (lua_State *L, int idx) {
|
|
|
|
int t = lua_type(L, idx);
|
|
|
|
return (t == LUA_TSTRING || t == LUA_TNUMBER);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API int lua_isuserdata (lua_State *L, int idx) {
|
2014-04-02 18:46:06 +00:00
|
|
|
const TValue *o = index2adr(L, idx);
|
2009-05-21 19:01:41 +00:00
|
|
|
return (ttisuserdata(o) || ttislightuserdata(o));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API int lua_rawequal (lua_State *L, int index1, int index2) {
|
2014-04-02 18:46:06 +00:00
|
|
|
StkId o1 = index2adr(L, index1);
|
|
|
|
StkId o2 = index2adr(L, index2);
|
|
|
|
return (o1 == luaO_nilobject || o2 == luaO_nilobject) ? 0
|
|
|
|
: luaO_rawequalObj(o1, o2);
|
2009-05-21 19:01:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
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 = index2adr(L, index1);
|
|
|
|
o2 = index2adr(L, index2);
|
|
|
|
i = (o1 == luaO_nilobject || o2 == luaO_nilobject) ? 0 : equalobj(L, o1, o2);
|
2009-05-21 19:01:41 +00:00
|
|
|
lua_unlock(L);
|
2014-04-02 18:46:06 +00:00
|
|
|
return i;
|
2009-05-21 19:01:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
LUA_API int lua_lessthan (lua_State *L, int index1, int index2) {
|
2009-05-21 19:01:41 +00:00
|
|
|
StkId o1, o2;
|
2014-04-02 18:46:06 +00:00
|
|
|
int i;
|
2009-05-21 19:01:41 +00:00
|
|
|
lua_lock(L); /* may call tag method */
|
2014-04-02 18:46:06 +00:00
|
|
|
o1 = index2adr(L, index1);
|
|
|
|
o2 = index2adr(L, index2);
|
|
|
|
i = (o1 == luaO_nilobject || o2 == luaO_nilobject) ? 0
|
|
|
|
: luaV_lessthan(L, o1, o2);
|
2009-05-21 19:01:41 +00:00
|
|
|
lua_unlock(L);
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
|
|
|
|
LUA_API lua_Number lua_tonumber (lua_State *L, int idx) {
|
2009-05-21 19:01:41 +00:00
|
|
|
TValue n;
|
2014-04-02 18:46:06 +00:00
|
|
|
const TValue *o = index2adr(L, idx);
|
|
|
|
if (tonumber(o, &n))
|
2009-05-21 19:01:41 +00:00
|
|
|
return nvalue(o);
|
2014-04-02 18:46:06 +00:00
|
|
|
else
|
2009-05-21 19:01:41 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
LUA_API lua_Integer lua_tointeger (lua_State *L, int idx) {
|
2009-05-21 19:01:41 +00:00
|
|
|
TValue n;
|
2014-04-02 18:46:06 +00:00
|
|
|
const TValue *o = index2adr(L, idx);
|
2009-05-21 19:01:41 +00:00
|
|
|
if (tonumber(o, &n)) {
|
|
|
|
lua_Integer res;
|
|
|
|
lua_Number num = nvalue(o);
|
|
|
|
lua_number2integer(res, num);
|
Update lua plugin to 5.2.3
Prior to this patch the Lua plugin used version 5.1.4. This change
reduces the number of modifications in the Lua source using some new
defines and because the upstream source is now more flexible.
Unless otherwise stated, l*.[ch] files are taken unmodified from the
upstream lua-5.2.3.
fscanf.c:
file descriptors in rockbox are just ints, they are hidden behind a
void* now so liolib requires less modifications. fscanf is updated to
use void* too.
getc.c: this is a new file required for getc implementation in lauxlib.c
lauxlib.c: LoadF replaced FILE* with int, the rockbox file
descriptor int are cast to FILE* (actually void* due to typedef).
getc uses the PREFIX version. stdin is not used, as per 5.1.4.
lbaselib.c: now uses strspn in the number parsing. print uses DEBUGF now
rather than being commented out.
lbitlib.c: use the built-in version from 5.2.3 rather than Reuben
Thomas's external library. Backwards compatible and adds some new bit
operations.
ldo.c: the LUAI_THROW/TRY defines are now in the core lua code, so have
been removed from rockconf.h
liolib.c: here the implementation has changed to use the LStream from
the original source, and cast the FILE* pointers to int. This has
reduced the number of modifications from the upstream version.
llex.c: the only change from upstream is to remove the locale include.
lmathlib.c: updated from the 5.2.3 version and re-applied the changes
that were made vs 5.1.4 for random numbers and to remove unsupported
float functions.
loadlib.c: upstream version, with the 5.1.4 changes for missing
functions.
lobject.c: upstream version, with ctype.h added and sprintf changed to
snprintf.
loslib.c: upstream version with locale.h removed and 5.1.4 changes for
unsupportable functions.
lstrlib.c: sprintf changed to snprintf.
ltable.c: upstream with the hashnum function from 5.1.4 to avoid frexp
in luai_hashnum.
luaconf.h: updated to 5.2.3 version, restored relevant parts from the
original 5.1.4 configuration. The COMPAT defines that are no longer
available are not included.
lundump.c: VERSION macro conflicts with the core Rockbox equivalent.
rocklib.c: luaL_reg is no longer available, replaced by luaL_Reg
equivalent. Moved checkboolean/optboolean functions to this file and out
of core lua files. luaL_getn is no longer available, replaced by
luaL_rawlen. luaL_register is deprecated, use the newlib/setfuncs
replacements. rli_init has to be called before setting up the newlib to
avoid overwriting the rb table.
rocklib_aux.pl: use rli_checkboolean from rocklib.c.
rocklua.c: new default bits library used, update the library loading
code with idiomatic 5.2 code.
strcspn.c: no longer needed, but strspn.c is required for strspn in
lbaselib.c
Change-Id: I0c7945c755f79083afe98ec117e1e8cf13de2651
Reviewed-on: http://gerrit.rockbox.org/774
Tested: Richard Quirk <richard.quirk@gmail.com>
Reviewed-by: Marcin Bukat <marcin.bukat@gmail.com>
2014-03-19 18:31:31 +00:00
|
|
|
return res;
|
|
|
|
}
|
2014-04-02 18:46:06 +00:00
|
|
|
else
|
2009-05-21 19:01:41 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API int lua_toboolean (lua_State *L, int idx) {
|
2014-04-02 18:46:06 +00:00
|
|
|
const TValue *o = index2adr(L, idx);
|
2009-05-21 19:01:41 +00:00
|
|
|
return !l_isfalse(o);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API const char *lua_tolstring (lua_State *L, int idx, size_t *len) {
|
2014-04-02 18:46:06 +00:00
|
|
|
StkId o = index2adr(L, idx);
|
2009-05-21 19:01:41 +00:00
|
|
|
if (!ttisstring(o)) {
|
|
|
|
lua_lock(L); /* `luaV_tostring' may create a new string */
|
|
|
|
if (!luaV_tostring(L, o)) { /* conversion failed? */
|
|
|
|
if (len != NULL) *len = 0;
|
|
|
|
lua_unlock(L);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
luaC_checkGC(L);
|
2014-04-02 18:46:06 +00:00
|
|
|
o = index2adr(L, idx); /* previous call may reallocate the stack */
|
2009-05-21 19:01:41 +00:00
|
|
|
lua_unlock(L);
|
|
|
|
}
|
|
|
|
if (len != NULL) *len = tsvalue(o)->len;
|
|
|
|
return svalue(o);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
LUA_API size_t lua_objlen (lua_State *L, int idx) {
|
|
|
|
StkId o = index2adr(L, idx);
|
|
|
|
switch (ttype(o)) {
|
2009-05-21 19:01:41 +00:00
|
|
|
case LUA_TSTRING: return tsvalue(o)->len;
|
|
|
|
case LUA_TUSERDATA: return uvalue(o)->len;
|
|
|
|
case LUA_TTABLE: return luaH_getn(hvalue(o));
|
2014-04-02 18:46:06 +00:00
|
|
|
case LUA_TNUMBER: {
|
|
|
|
size_t l;
|
|
|
|
lua_lock(L); /* `luaV_tostring' may create a new string */
|
|
|
|
l = (luaV_tostring(L, o) ? tsvalue(o)->len : 0);
|
|
|
|
lua_unlock(L);
|
|
|
|
return l;
|
|
|
|
}
|
2009-05-21 19:01:41 +00:00
|
|
|
default: return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API lua_CFunction lua_tocfunction (lua_State *L, int idx) {
|
2014-04-02 18:46:06 +00:00
|
|
|
StkId o = index2adr(L, idx);
|
|
|
|
return (!iscfunction(o)) ? NULL : clvalue(o)->c.f;
|
2009-05-21 19:01:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API void *lua_touserdata (lua_State *L, int idx) {
|
2014-04-02 18:46:06 +00:00
|
|
|
StkId o = index2adr(L, idx);
|
|
|
|
switch (ttype(o)) {
|
2009-05-21 19:01:41 +00:00
|
|
|
case LUA_TUSERDATA: return (rawuvalue(o) + 1);
|
|
|
|
case LUA_TLIGHTUSERDATA: return pvalue(o);
|
|
|
|
default: return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API lua_State *lua_tothread (lua_State *L, int idx) {
|
2014-04-02 18:46:06 +00:00
|
|
|
StkId o = index2adr(L, idx);
|
2009-05-21 19:01:41 +00:00
|
|
|
return (!ttisthread(o)) ? NULL : thvalue(o);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API const void *lua_topointer (lua_State *L, int idx) {
|
2014-04-02 18:46:06 +00:00
|
|
|
StkId o = index2adr(L, idx);
|
2009-05-21 19:01:41 +00:00
|
|
|
switch (ttype(o)) {
|
|
|
|
case LUA_TTABLE: return hvalue(o);
|
2014-04-02 18:46:06 +00:00
|
|
|
case LUA_TFUNCTION: return clvalue(o);
|
2009-05-21 19:01:41 +00:00
|
|
|
case LUA_TTHREAD: return thvalue(o);
|
|
|
|
case LUA_TUSERDATA:
|
|
|
|
case LUA_TLIGHTUSERDATA:
|
|
|
|
return lua_touserdata(L, idx);
|
|
|
|
default: return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
** push functions (C -> stack)
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API void lua_pushnil (lua_State *L) {
|
|
|
|
lua_lock(L);
|
|
|
|
setnilvalue(L->top);
|
|
|
|
api_incr_top(L);
|
|
|
|
lua_unlock(L);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API void lua_pushnumber (lua_State *L, lua_Number n) {
|
|
|
|
lua_lock(L);
|
|
|
|
setnvalue(L->top, n);
|
|
|
|
api_incr_top(L);
|
|
|
|
lua_unlock(L);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API void lua_pushinteger (lua_State *L, lua_Integer n) {
|
|
|
|
lua_lock(L);
|
|
|
|
setnvalue(L->top, cast_num(n));
|
|
|
|
api_incr_top(L);
|
|
|
|
lua_unlock(L);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
LUA_API void lua_pushlstring (lua_State *L, const char *s, size_t len) {
|
2009-05-21 19:01:41 +00:00
|
|
|
lua_lock(L);
|
|
|
|
luaC_checkGC(L);
|
2014-04-02 18:46:06 +00:00
|
|
|
setsvalue2s(L, L->top, luaS_newlstr(L, s, len));
|
2009-05-21 19:01:41 +00:00
|
|
|
api_incr_top(L);
|
|
|
|
lua_unlock(L);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
LUA_API void lua_pushstring (lua_State *L, const char *s) {
|
|
|
|
if (s == NULL)
|
2009-05-21 19:01:41 +00:00
|
|
|
lua_pushnil(L);
|
2014-04-02 18:46:06 +00:00
|
|
|
else
|
|
|
|
lua_pushlstring(L, s, strlen(s));
|
2009-05-21 19:01:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API const char *lua_pushvfstring (lua_State *L, const char *fmt,
|
|
|
|
va_list argp) {
|
|
|
|
const char *ret;
|
|
|
|
lua_lock(L);
|
|
|
|
luaC_checkGC(L);
|
|
|
|
ret = luaO_pushvfstring(L, fmt, argp);
|
|
|
|
lua_unlock(L);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API const char *lua_pushfstring (lua_State *L, const char *fmt, ...) {
|
|
|
|
const char *ret;
|
|
|
|
va_list argp;
|
|
|
|
lua_lock(L);
|
|
|
|
luaC_checkGC(L);
|
|
|
|
va_start(argp, fmt);
|
|
|
|
ret = luaO_pushvfstring(L, fmt, argp);
|
|
|
|
va_end(argp);
|
|
|
|
lua_unlock(L);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API void lua_pushcclosure (lua_State *L, lua_CFunction fn, int n) {
|
2014-04-02 18:46:06 +00:00
|
|
|
Closure *cl;
|
2009-05-21 19:01:41 +00:00
|
|
|
lua_lock(L);
|
2014-04-02 18:46:06 +00:00
|
|
|
luaC_checkGC(L);
|
|
|
|
api_checknelems(L, n);
|
|
|
|
cl = luaF_newCclosure(L, n, getcurrenv(L));
|
|
|
|
cl->c.f = fn;
|
|
|
|
L->top -= n;
|
|
|
|
while (n--)
|
|
|
|
setobj2n(L, &cl->c.upvalue[n], L->top+n);
|
|
|
|
setclvalue(L, L->top, cl);
|
|
|
|
lua_assert(iswhite(obj2gco(cl)));
|
2009-05-21 19:01:41 +00:00
|
|
|
api_incr_top(L);
|
|
|
|
lua_unlock(L);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API void lua_pushboolean (lua_State *L, int b) {
|
|
|
|
lua_lock(L);
|
|
|
|
setbvalue(L->top, (b != 0)); /* ensure that true is 1 */
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API int lua_pushthread (lua_State *L) {
|
|
|
|
lua_lock(L);
|
|
|
|
setthvalue(L, L->top, L);
|
|
|
|
api_incr_top(L);
|
|
|
|
lua_unlock(L);
|
|
|
|
return (G(L)->mainthread == L);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
** get functions (Lua -> stack)
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API void lua_gettable (lua_State *L, int idx) {
|
|
|
|
StkId t;
|
|
|
|
lua_lock(L);
|
2014-04-02 18:46:06 +00:00
|
|
|
t = index2adr(L, idx);
|
|
|
|
api_checkvalidindex(L, t);
|
2009-05-21 19:01:41 +00:00
|
|
|
luaV_gettable(L, t, L->top - 1, L->top - 1);
|
|
|
|
lua_unlock(L);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API void lua_getfield (lua_State *L, int idx, const char *k) {
|
|
|
|
StkId t;
|
2014-04-02 18:46:06 +00:00
|
|
|
TValue key;
|
2009-05-21 19:01:41 +00:00
|
|
|
lua_lock(L);
|
2014-04-02 18:46:06 +00:00
|
|
|
t = index2adr(L, idx);
|
|
|
|
api_checkvalidindex(L, t);
|
2019-07-12 10:23:52 +00:00
|
|
|
fixedstack(L);
|
2014-04-02 18:46:06 +00:00
|
|
|
setsvalue(L, &key, luaS_new(L, k));
|
2019-07-12 10:23:52 +00:00
|
|
|
unfixedstack(L);
|
2014-04-02 18:46:06 +00:00
|
|
|
luaV_gettable(L, t, &key, L->top);
|
2009-05-21 19:01:41 +00:00
|
|
|
api_incr_top(L);
|
|
|
|
lua_unlock(L);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API void lua_rawget (lua_State *L, int idx) {
|
|
|
|
StkId t;
|
|
|
|
lua_lock(L);
|
2014-04-02 18:46:06 +00:00
|
|
|
t = index2adr(L, idx);
|
|
|
|
api_check(L, ttistable(t));
|
2009-05-21 19:01:41 +00:00
|
|
|
setobj2s(L, L->top - 1, luaH_get(hvalue(t), L->top - 1));
|
|
|
|
lua_unlock(L);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API void lua_rawgeti (lua_State *L, int idx, int n) {
|
2014-04-02 18:46:06 +00:00
|
|
|
StkId o;
|
Update lua plugin to 5.2.3
Prior to this patch the Lua plugin used version 5.1.4. This change
reduces the number of modifications in the Lua source using some new
defines and because the upstream source is now more flexible.
Unless otherwise stated, l*.[ch] files are taken unmodified from the
upstream lua-5.2.3.
fscanf.c:
file descriptors in rockbox are just ints, they are hidden behind a
void* now so liolib requires less modifications. fscanf is updated to
use void* too.
getc.c: this is a new file required for getc implementation in lauxlib.c
lauxlib.c: LoadF replaced FILE* with int, the rockbox file
descriptor int are cast to FILE* (actually void* due to typedef).
getc uses the PREFIX version. stdin is not used, as per 5.1.4.
lbaselib.c: now uses strspn in the number parsing. print uses DEBUGF now
rather than being commented out.
lbitlib.c: use the built-in version from 5.2.3 rather than Reuben
Thomas's external library. Backwards compatible and adds some new bit
operations.
ldo.c: the LUAI_THROW/TRY defines are now in the core lua code, so have
been removed from rockconf.h
liolib.c: here the implementation has changed to use the LStream from
the original source, and cast the FILE* pointers to int. This has
reduced the number of modifications from the upstream version.
llex.c: the only change from upstream is to remove the locale include.
lmathlib.c: updated from the 5.2.3 version and re-applied the changes
that were made vs 5.1.4 for random numbers and to remove unsupported
float functions.
loadlib.c: upstream version, with the 5.1.4 changes for missing
functions.
lobject.c: upstream version, with ctype.h added and sprintf changed to
snprintf.
loslib.c: upstream version with locale.h removed and 5.1.4 changes for
unsupportable functions.
lstrlib.c: sprintf changed to snprintf.
ltable.c: upstream with the hashnum function from 5.1.4 to avoid frexp
in luai_hashnum.
luaconf.h: updated to 5.2.3 version, restored relevant parts from the
original 5.1.4 configuration. The COMPAT defines that are no longer
available are not included.
lundump.c: VERSION macro conflicts with the core Rockbox equivalent.
rocklib.c: luaL_reg is no longer available, replaced by luaL_Reg
equivalent. Moved checkboolean/optboolean functions to this file and out
of core lua files. luaL_getn is no longer available, replaced by
luaL_rawlen. luaL_register is deprecated, use the newlib/setfuncs
replacements. rli_init has to be called before setting up the newlib to
avoid overwriting the rb table.
rocklib_aux.pl: use rli_checkboolean from rocklib.c.
rocklua.c: new default bits library used, update the library loading
code with idiomatic 5.2 code.
strcspn.c: no longer needed, but strspn.c is required for strspn in
lbaselib.c
Change-Id: I0c7945c755f79083afe98ec117e1e8cf13de2651
Reviewed-on: http://gerrit.rockbox.org/774
Tested: Richard Quirk <richard.quirk@gmail.com>
Reviewed-by: Marcin Bukat <marcin.bukat@gmail.com>
2014-03-19 18:31:31 +00:00
|
|
|
lua_lock(L);
|
2014-04-02 18:46:06 +00:00
|
|
|
o = index2adr(L, idx);
|
|
|
|
api_check(L, ttistable(o));
|
|
|
|
setobj2s(L, L->top, luaH_getnum(hvalue(o), n));
|
2009-05-21 19:01:41 +00:00
|
|
|
api_incr_top(L);
|
|
|
|
lua_unlock(L);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API void lua_createtable (lua_State *L, int narray, int nrec) {
|
|
|
|
lua_lock(L);
|
|
|
|
luaC_checkGC(L);
|
2014-04-02 18:46:06 +00:00
|
|
|
sethvalue(L, L->top, luaH_new(L, narray, nrec));
|
2009-05-21 19:01:41 +00:00
|
|
|
api_incr_top(L);
|
|
|
|
lua_unlock(L);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API int lua_getmetatable (lua_State *L, int objindex) {
|
|
|
|
const TValue *obj;
|
|
|
|
Table *mt = NULL;
|
|
|
|
int res;
|
|
|
|
lua_lock(L);
|
2014-04-02 18:46:06 +00:00
|
|
|
obj = index2adr(L, objindex);
|
|
|
|
switch (ttype(obj)) {
|
2009-05-21 19:01:41 +00:00
|
|
|
case LUA_TTABLE:
|
|
|
|
mt = hvalue(obj)->metatable;
|
|
|
|
break;
|
|
|
|
case LUA_TUSERDATA:
|
|
|
|
mt = uvalue(obj)->metatable;
|
|
|
|
break;
|
|
|
|
default:
|
2014-04-02 18:46:06 +00:00
|
|
|
mt = G(L)->mt[ttype(obj)];
|
2009-05-21 19:01:41 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (mt == NULL)
|
|
|
|
res = 0;
|
|
|
|
else {
|
|
|
|
sethvalue(L, L->top, mt);
|
|
|
|
api_incr_top(L);
|
|
|
|
res = 1;
|
|
|
|
}
|
|
|
|
lua_unlock(L);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
LUA_API void lua_getfenv (lua_State *L, int idx) {
|
2009-05-21 19:01:41 +00:00
|
|
|
StkId o;
|
|
|
|
lua_lock(L);
|
2014-04-02 18:46:06 +00:00
|
|
|
o = index2adr(L, idx);
|
|
|
|
api_checkvalidindex(L, o);
|
|
|
|
switch (ttype(o)) {
|
|
|
|
case LUA_TFUNCTION:
|
|
|
|
sethvalue(L, L->top, clvalue(o)->c.env);
|
|
|
|
break;
|
|
|
|
case LUA_TUSERDATA:
|
|
|
|
sethvalue(L, L->top, uvalue(o)->env);
|
|
|
|
break;
|
|
|
|
case LUA_TTHREAD:
|
|
|
|
setobj2s(L, L->top, gt(thvalue(o)));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
setnilvalue(L->top);
|
|
|
|
break;
|
|
|
|
}
|
2009-05-21 19:01:41 +00:00
|
|
|
api_incr_top(L);
|
|
|
|
lua_unlock(L);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
** set functions (stack -> Lua)
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API void lua_settable (lua_State *L, int idx) {
|
|
|
|
StkId t;
|
|
|
|
lua_lock(L);
|
|
|
|
api_checknelems(L, 2);
|
2014-04-02 18:46:06 +00:00
|
|
|
t = index2adr(L, idx);
|
|
|
|
api_checkvalidindex(L, t);
|
2009-05-21 19:01:41 +00:00
|
|
|
luaV_settable(L, t, L->top - 2, L->top - 1);
|
|
|
|
L->top -= 2; /* pop index and value */
|
|
|
|
lua_unlock(L);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API void lua_setfield (lua_State *L, int idx, const char *k) {
|
|
|
|
StkId t;
|
|
|
|
lua_lock(L);
|
|
|
|
api_checknelems(L, 1);
|
2014-04-02 18:46:06 +00:00
|
|
|
t = index2adr(L, idx);
|
|
|
|
api_checkvalidindex(L, t);
|
2019-07-12 10:23:52 +00:00
|
|
|
setsvalue2s(L, L->top, luaS_new(L, k));
|
|
|
|
api_incr_top(L);
|
|
|
|
luaV_settable(L, t, L->top - 1, L->top - 2);
|
|
|
|
L->top -= 2; /* pop key and value */
|
2009-05-21 19:01:41 +00:00
|
|
|
lua_unlock(L);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API void lua_rawset (lua_State *L, int idx) {
|
|
|
|
StkId t;
|
|
|
|
lua_lock(L);
|
|
|
|
api_checknelems(L, 2);
|
2014-04-02 18:46:06 +00:00
|
|
|
t = index2adr(L, idx);
|
|
|
|
api_check(L, ttistable(t));
|
2019-07-12 10:23:52 +00:00
|
|
|
fixedstack(L);
|
2009-05-21 19:01:41 +00:00
|
|
|
setobj2t(L, luaH_set(L, hvalue(t), L->top-2), L->top-1);
|
2019-07-12 10:23:52 +00:00
|
|
|
unfixedstack(L);
|
2014-04-02 18:46:06 +00:00
|
|
|
luaC_barriert(L, hvalue(t), L->top-1);
|
2009-05-21 19:01:41 +00:00
|
|
|
L->top -= 2;
|
|
|
|
lua_unlock(L);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API void lua_rawseti (lua_State *L, int idx, int n) {
|
2014-04-02 18:46:06 +00:00
|
|
|
StkId o;
|
2009-05-21 19:01:41 +00:00
|
|
|
lua_lock(L);
|
|
|
|
api_checknelems(L, 1);
|
2014-04-02 18:46:06 +00:00
|
|
|
o = index2adr(L, idx);
|
|
|
|
api_check(L, ttistable(o));
|
2019-07-12 10:23:52 +00:00
|
|
|
fixedstack(L);
|
2014-04-02 18:46:06 +00:00
|
|
|
setobj2t(L, luaH_setnum(L, hvalue(o), n), L->top-1);
|
2019-07-12 10:23:52 +00:00
|
|
|
unfixedstack(L);
|
2014-04-02 18:46:06 +00:00
|
|
|
luaC_barriert(L, hvalue(o), L->top-1);
|
2009-05-21 19:01:41 +00: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);
|
2014-04-02 18:46:06 +00:00
|
|
|
obj = index2adr(L, objindex);
|
|
|
|
api_checkvalidindex(L, obj);
|
2009-05-21 19:01:41 +00:00
|
|
|
if (ttisnil(L->top - 1))
|
|
|
|
mt = NULL;
|
|
|
|
else {
|
2014-04-02 18:46:06 +00:00
|
|
|
api_check(L, ttistable(L->top - 1));
|
2009-05-21 19:01:41 +00:00
|
|
|
mt = hvalue(L->top - 1);
|
|
|
|
}
|
2014-04-02 18:46:06 +00:00
|
|
|
switch (ttype(obj)) {
|
2009-05-21 19:01:41 +00:00
|
|
|
case LUA_TTABLE: {
|
|
|
|
hvalue(obj)->metatable = mt;
|
2014-04-02 18:46:06 +00:00
|
|
|
if (mt)
|
|
|
|
luaC_objbarriert(L, hvalue(obj), mt);
|
2009-05-21 19:01:41 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case LUA_TUSERDATA: {
|
|
|
|
uvalue(obj)->metatable = mt;
|
2014-04-02 18:46:06 +00:00
|
|
|
if (mt)
|
2009-05-21 19:01:41 +00:00
|
|
|
luaC_objbarrier(L, rawuvalue(obj), mt);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default: {
|
2014-04-02 18:46:06 +00:00
|
|
|
G(L)->mt[ttype(obj)] = mt;
|
2009-05-21 19:01:41 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
L->top--;
|
|
|
|
lua_unlock(L);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
LUA_API int lua_setfenv (lua_State *L, int idx) {
|
2009-05-21 19:01:41 +00:00
|
|
|
StkId o;
|
2014-04-02 18:46:06 +00:00
|
|
|
int res = 1;
|
2009-05-21 19:01:41 +00:00
|
|
|
lua_lock(L);
|
|
|
|
api_checknelems(L, 1);
|
2014-04-02 18:46:06 +00:00
|
|
|
o = index2adr(L, idx);
|
|
|
|
api_checkvalidindex(L, o);
|
|
|
|
api_check(L, ttistable(L->top - 1));
|
|
|
|
switch (ttype(o)) {
|
|
|
|
case LUA_TFUNCTION:
|
|
|
|
clvalue(o)->c.env = hvalue(L->top - 1);
|
|
|
|
break;
|
|
|
|
case LUA_TUSERDATA:
|
|
|
|
uvalue(o)->env = hvalue(L->top - 1);
|
|
|
|
break;
|
|
|
|
case LUA_TTHREAD:
|
|
|
|
sethvalue(L, gt(thvalue(o)), hvalue(L->top - 1));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
res = 0;
|
|
|
|
break;
|
2009-05-21 19:01:41 +00:00
|
|
|
}
|
2014-04-02 18:46:06 +00:00
|
|
|
if (res) luaC_objbarrier(L, gcvalue(o), hvalue(L->top - 1));
|
2009-05-21 19:01:41 +00:00
|
|
|
L->top--;
|
|
|
|
lua_unlock(L);
|
2014-04-02 18:46:06 +00:00
|
|
|
return res;
|
2009-05-21 19:01:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
** `load' and `call' functions (run Lua code)
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
#define adjustresults(L,nres) \
|
|
|
|
{ if (nres == LUA_MULTRET && L->top >= L->ci->top) L->ci->top = L->top; }
|
2009-05-21 19:01:41 +00:00
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
#define checkresults(L,na,nr) \
|
|
|
|
api_check(L, (nr) == LUA_MULTRET || (L->ci->top - L->top >= (nr) - (na)))
|
|
|
|
|
Update lua plugin to 5.2.3
Prior to this patch the Lua plugin used version 5.1.4. This change
reduces the number of modifications in the Lua source using some new
defines and because the upstream source is now more flexible.
Unless otherwise stated, l*.[ch] files are taken unmodified from the
upstream lua-5.2.3.
fscanf.c:
file descriptors in rockbox are just ints, they are hidden behind a
void* now so liolib requires less modifications. fscanf is updated to
use void* too.
getc.c: this is a new file required for getc implementation in lauxlib.c
lauxlib.c: LoadF replaced FILE* with int, the rockbox file
descriptor int are cast to FILE* (actually void* due to typedef).
getc uses the PREFIX version. stdin is not used, as per 5.1.4.
lbaselib.c: now uses strspn in the number parsing. print uses DEBUGF now
rather than being commented out.
lbitlib.c: use the built-in version from 5.2.3 rather than Reuben
Thomas's external library. Backwards compatible and adds some new bit
operations.
ldo.c: the LUAI_THROW/TRY defines are now in the core lua code, so have
been removed from rockconf.h
liolib.c: here the implementation has changed to use the LStream from
the original source, and cast the FILE* pointers to int. This has
reduced the number of modifications from the upstream version.
llex.c: the only change from upstream is to remove the locale include.
lmathlib.c: updated from the 5.2.3 version and re-applied the changes
that were made vs 5.1.4 for random numbers and to remove unsupported
float functions.
loadlib.c: upstream version, with the 5.1.4 changes for missing
functions.
lobject.c: upstream version, with ctype.h added and sprintf changed to
snprintf.
loslib.c: upstream version with locale.h removed and 5.1.4 changes for
unsupportable functions.
lstrlib.c: sprintf changed to snprintf.
ltable.c: upstream with the hashnum function from 5.1.4 to avoid frexp
in luai_hashnum.
luaconf.h: updated to 5.2.3 version, restored relevant parts from the
original 5.1.4 configuration. The COMPAT defines that are no longer
available are not included.
lundump.c: VERSION macro conflicts with the core Rockbox equivalent.
rocklib.c: luaL_reg is no longer available, replaced by luaL_Reg
equivalent. Moved checkboolean/optboolean functions to this file and out
of core lua files. luaL_getn is no longer available, replaced by
luaL_rawlen. luaL_register is deprecated, use the newlib/setfuncs
replacements. rli_init has to be called before setting up the newlib to
avoid overwriting the rb table.
rocklib_aux.pl: use rli_checkboolean from rocklib.c.
rocklua.c: new default bits library used, update the library loading
code with idiomatic 5.2 code.
strcspn.c: no longer needed, but strspn.c is required for strspn in
lbaselib.c
Change-Id: I0c7945c755f79083afe98ec117e1e8cf13de2651
Reviewed-on: http://gerrit.rockbox.org/774
Tested: Richard Quirk <richard.quirk@gmail.com>
Reviewed-by: Marcin Bukat <marcin.bukat@gmail.com>
2014-03-19 18:31:31 +00:00
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
LUA_API void lua_call (lua_State *L, int nargs, int nresults) {
|
2009-05-21 19:01:41 +00:00
|
|
|
StkId func;
|
|
|
|
lua_lock(L);
|
|
|
|
api_checknelems(L, nargs+1);
|
|
|
|
checkresults(L, nargs, nresults);
|
|
|
|
func = L->top - (nargs+1);
|
2014-04-02 18:46:06 +00:00
|
|
|
luaD_call(L, func, nresults);
|
2009-05-21 19:01:41 +00:00
|
|
|
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);
|
2014-04-02 18:46:06 +00:00
|
|
|
luaD_call(L, c->func, c->nresults);
|
2009-05-21 19:01:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
LUA_API int lua_pcall (lua_State *L, int nargs, int nresults, int errfunc) {
|
2009-05-21 19:01:41 +00:00
|
|
|
struct CallS c;
|
|
|
|
int status;
|
|
|
|
ptrdiff_t func;
|
|
|
|
lua_lock(L);
|
|
|
|
api_checknelems(L, nargs+1);
|
|
|
|
checkresults(L, nargs, nresults);
|
|
|
|
if (errfunc == 0)
|
|
|
|
func = 0;
|
|
|
|
else {
|
2014-04-02 18:46:06 +00:00
|
|
|
StkId o = index2adr(L, errfunc);
|
|
|
|
api_checkvalidindex(L, o);
|
2009-05-21 19:01:41 +00:00
|
|
|
func = savestack(L, o);
|
|
|
|
}
|
|
|
|
c.func = L->top - (nargs+1); /* function to be called */
|
2014-04-02 18:46:06 +00:00
|
|
|
c.nresults = nresults;
|
|
|
|
status = luaD_pcall(L, f_call, &c, savestack(L, c.func), func);
|
2009-05-21 19:01:41 +00:00
|
|
|
adjustresults(L, nresults);
|
|
|
|
lua_unlock(L);
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
/*
|
|
|
|
** Execute a protected C call.
|
|
|
|
*/
|
|
|
|
struct CCallS { /* data to `f_Ccall' */
|
|
|
|
lua_CFunction func;
|
|
|
|
void *ud;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static void f_Ccall (lua_State *L, void *ud) {
|
|
|
|
struct CCallS *c = cast(struct CCallS *, ud);
|
|
|
|
Closure *cl;
|
|
|
|
cl = luaF_newCclosure(L, 0, getcurrenv(L));
|
|
|
|
cl->c.f = c->func;
|
|
|
|
setclvalue(L, L->top, cl); /* push function */
|
|
|
|
api_incr_top(L);
|
|
|
|
setpvalue(L->top, c->ud); /* push only argument */
|
|
|
|
api_incr_top(L);
|
|
|
|
luaD_call(L, L->top - 2, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API int lua_cpcall (lua_State *L, lua_CFunction func, void *ud) {
|
|
|
|
struct CCallS c;
|
|
|
|
int status;
|
|
|
|
lua_lock(L);
|
|
|
|
c.func = func;
|
|
|
|
c.ud = ud;
|
|
|
|
status = luaD_pcall(L, f_Ccall, &c, savestack(L, L->top), 0);
|
|
|
|
lua_unlock(L);
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-05-21 19:01:41 +00:00
|
|
|
LUA_API int lua_load (lua_State *L, lua_Reader reader, void *data,
|
2014-04-02 18:46:06 +00:00
|
|
|
const char *chunkname) {
|
2009-05-21 19:01:41 +00:00
|
|
|
ZIO z;
|
|
|
|
int status;
|
|
|
|
lua_lock(L);
|
|
|
|
if (!chunkname) chunkname = "?";
|
|
|
|
luaZ_init(L, &z, reader, data);
|
2014-04-02 18:46:06 +00:00
|
|
|
status = luaD_protectedparser(L, &z, chunkname);
|
2009-05-21 19:01:41 +00:00
|
|
|
lua_unlock(L);
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API int lua_dump (lua_State *L, lua_Writer writer, void *data) {
|
|
|
|
int status;
|
|
|
|
TValue *o;
|
|
|
|
lua_lock(L);
|
|
|
|
api_checknelems(L, 1);
|
|
|
|
o = L->top - 1;
|
|
|
|
if (isLfunction(o))
|
2014-04-02 18:46:06 +00:00
|
|
|
status = luaU_dump(L, clvalue(o)->l.p, writer, data, 0);
|
2009-05-21 19:01:41 +00:00
|
|
|
else
|
|
|
|
status = 1;
|
|
|
|
lua_unlock(L);
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
LUA_API int lua_status (lua_State *L) {
|
2009-05-21 19:01:41 +00:00
|
|
|
return L->status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Garbage-collection function
|
|
|
|
*/
|
|
|
|
|
|
|
|
LUA_API int lua_gc (lua_State *L, int what, int data) {
|
|
|
|
int res = 0;
|
|
|
|
global_State *g;
|
|
|
|
lua_lock(L);
|
|
|
|
g = G(L);
|
|
|
|
switch (what) {
|
|
|
|
case LUA_GCSTOP: {
|
2019-07-12 10:23:52 +00:00
|
|
|
set_block_gc(L);
|
2009-05-21 19:01:41 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case LUA_GCRESTART: {
|
2019-07-12 10:23:52 +00:00
|
|
|
unset_block_gc(L);
|
2009-05-21 19:01:41 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case LUA_GCCOLLECT: {
|
2014-04-02 18:46:06 +00:00
|
|
|
luaC_fullgc(L);
|
2009-05-21 19:01:41 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case LUA_GCCOUNT: {
|
|
|
|
/* GC values are expressed in Kbytes: #bytes/2^10 */
|
2014-04-02 18:46:06 +00:00
|
|
|
res = cast_int(g->totalbytes >> 10);
|
2009-05-21 19:01:41 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case LUA_GCCOUNTB: {
|
2014-04-02 18:46:06 +00:00
|
|
|
res = cast_int(g->totalbytes & 0x3ff);
|
2009-05-21 19:01:41 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case LUA_GCSTEP: {
|
2019-07-12 10:23:52 +00:00
|
|
|
if(is_block_gc(L)) {
|
|
|
|
res = 1; /* gc is block so we need to pretend that the collection cycle finished. */
|
|
|
|
break;
|
|
|
|
}
|
2014-04-02 18:46:06 +00:00
|
|
|
lu_mem a = (cast(lu_mem, data) << 10);
|
|
|
|
if (a <= g->totalbytes)
|
|
|
|
g->GCthreshold = g->totalbytes - a;
|
|
|
|
else
|
|
|
|
g->GCthreshold = 0;
|
|
|
|
while (g->GCthreshold <= g->totalbytes) {
|
|
|
|
luaC_step(L);
|
|
|
|
if (g->gcstate == GCSpause) { /* end of cycle? */
|
|
|
|
res = 1; /* signal it */
|
|
|
|
break;
|
|
|
|
}
|
2009-05-21 19:01:41 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case LUA_GCSETPAUSE: {
|
|
|
|
res = g->gcpause;
|
|
|
|
g->gcpause = data;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case LUA_GCSETSTEPMUL: {
|
|
|
|
res = g->gcstepmul;
|
|
|
|
g->gcstepmul = data;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default: res = -1; /* invalid option */
|
|
|
|
}
|
|
|
|
lua_unlock(L);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
** miscellaneous functions
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API int lua_error (lua_State *L) {
|
|
|
|
lua_lock(L);
|
|
|
|
api_checknelems(L, 1);
|
|
|
|
luaG_errormsg(L);
|
2014-04-02 18:46:06 +00:00
|
|
|
lua_unlock(L);
|
2009-05-21 19:01:41 +00:00
|
|
|
return 0; /* to avoid warnings */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API int lua_next (lua_State *L, int idx) {
|
|
|
|
StkId t;
|
|
|
|
int more;
|
|
|
|
lua_lock(L);
|
2014-04-02 18:46:06 +00:00
|
|
|
t = index2adr(L, idx);
|
|
|
|
api_check(L, ttistable(t));
|
2009-05-21 19:01:41 +00:00
|
|
|
more = luaH_next(L, hvalue(t), L->top - 1);
|
|
|
|
if (more) {
|
|
|
|
api_incr_top(L);
|
|
|
|
}
|
|
|
|
else /* no more elements */
|
|
|
|
L->top -= 1; /* remove key */
|
|
|
|
lua_unlock(L);
|
|
|
|
return more;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API void lua_concat (lua_State *L, int n) {
|
|
|
|
lua_lock(L);
|
|
|
|
api_checknelems(L, n);
|
|
|
|
if (n >= 2) {
|
|
|
|
luaC_checkGC(L);
|
2014-04-02 18:46:06 +00:00
|
|
|
luaV_concat(L, n, cast_int(L->top - L->base) - 1);
|
|
|
|
L->top -= (n-1);
|
2009-05-21 19:01:41 +00:00
|
|
|
}
|
|
|
|
else if (n == 0) { /* push empty string */
|
|
|
|
setsvalue2s(L, L->top, luaS_newlstr(L, "", 0));
|
|
|
|
api_incr_top(L);
|
|
|
|
}
|
|
|
|
/* else n == 1; nothing to do */
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API void *lua_newuserdata (lua_State *L, size_t size) {
|
|
|
|
Udata *u;
|
|
|
|
lua_lock(L);
|
|
|
|
luaC_checkGC(L);
|
2014-04-02 18:46:06 +00:00
|
|
|
u = luaS_newudata(L, size, getcurrenv(L));
|
2009-05-21 19:01:41 +00:00
|
|
|
setuvalue(L, L->top, u);
|
|
|
|
api_incr_top(L);
|
|
|
|
lua_unlock(L);
|
|
|
|
return u + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
|
|
|
|
static const char *aux_upvalue (StkId fi, int n, TValue **val) {
|
|
|
|
Closure *f;
|
|
|
|
if (!ttisfunction(fi)) return NULL;
|
|
|
|
f = clvalue(fi);
|
|
|
|
if (f->c.isC) {
|
|
|
|
if (!(1 <= n && n <= f->c.nupvalues)) return NULL;
|
|
|
|
*val = &f->c.upvalue[n-1];
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
Proto *p = f->l.p;
|
|
|
|
if (!(1 <= n && n <= p->sizeupvalues)) return NULL;
|
|
|
|
*val = f->l.upvals[n-1]->v;
|
|
|
|
return getstr(p->upvalues[n-1]);
|
2009-05-21 19:01:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API const char *lua_getupvalue (lua_State *L, int funcindex, int n) {
|
|
|
|
const char *name;
|
2014-04-02 18:46:06 +00:00
|
|
|
TValue *val;
|
2009-05-21 19:01:41 +00:00
|
|
|
lua_lock(L);
|
2014-04-02 18:46:06 +00:00
|
|
|
name = aux_upvalue(index2adr(L, funcindex), n, &val);
|
2009-05-21 19:01:41 +00: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;
|
2014-04-02 18:46:06 +00:00
|
|
|
TValue *val;
|
2009-05-21 19:01:41 +00:00
|
|
|
StkId fi;
|
|
|
|
lua_lock(L);
|
2014-04-02 18:46:06 +00:00
|
|
|
fi = index2adr(L, funcindex);
|
2009-05-21 19:01:41 +00:00
|
|
|
api_checknelems(L, 1);
|
2014-04-02 18:46:06 +00:00
|
|
|
name = aux_upvalue(fi, n, &val);
|
2009-05-21 19:01:41 +00:00
|
|
|
if (name) {
|
|
|
|
L->top--;
|
|
|
|
setobj(L, val, L->top);
|
2014-04-02 18:46:06 +00:00
|
|
|
luaC_barrier(L, clvalue(fi), L->top);
|
2009-05-21 19:01:41 +00:00
|
|
|
}
|
|
|
|
lua_unlock(L);
|
|
|
|
return name;
|
|
|
|
}
|
|
|
|
|