lua/lapi.c

572 lines
12 KiB
C
Raw Normal View History

1997-09-16 23:25:59 +04:00
/*
** $Id: lapi.c,v 1.5 1997/11/19 17:29:23 roberto Exp roberto $
1997-09-16 23:25:59 +04:00
** Lua API
** See Copyright Notice in lua.h
*/
#include <stdlib.h>
#include <string.h>
#include "lapi.h"
#include "lauxlib.h"
#include "ldo.h"
#include "lfunc.h"
#include "lgc.h"
#include "lmem.h"
#include "lobject.h"
#include "lstate.h"
1997-09-16 23:25:59 +04:00
#include "lstring.h"
#include "ltable.h"
#include "ltm.h"
#include "lua.h"
#include "luadebug.h"
#include "lvm.h"
char lua_ident[] = "$Lua: " LUA_VERSION " " LUA_COPYRIGHT " $\n"
"$Autores: " LUA_AUTHORS " $";
TObject *luaA_Address (lua_Object o)
{
return Address(o);
}
void luaA_packresults (void)
{
luaV_pack(L->Cstack.lua2C, L->Cstack.num, L->stack.top);
1997-09-16 23:25:59 +04:00
incr_top;
}
int luaA_passresults (void)
{
luaD_checkstack(L->Cstack.num);
memcpy(L->stack.top, L->Cstack.lua2C+L->stack.stack,
L->Cstack.num*sizeof(TObject));
L->stack.top += L->Cstack.num;
return L->Cstack.num;
1997-09-16 23:25:59 +04:00
}
static void checkCparams (int nParams)
{
if (L->stack.top-L->stack.stack < L->Cstack.base+nParams)
1997-09-16 23:25:59 +04:00
lua_error("API error - wrong number of arguments in C2lua stack");
}
static lua_Object put_luaObject (TObject *o)
{
luaD_openstack((L->stack.top-L->stack.stack)-L->Cstack.base);
L->stack.stack[L->Cstack.base++] = *o;
return L->Cstack.base; /* this is +1 real position (see Ref) */
1997-09-16 23:25:59 +04:00
}
static lua_Object put_luaObjectonTop (void)
{
luaD_openstack((L->stack.top-L->stack.stack)-L->Cstack.base);
L->stack.stack[L->Cstack.base++] = *(--L->stack.top);
return L->Cstack.base; /* this is +1 real position (see Ref) */
1997-09-16 23:25:59 +04:00
}
lua_Object lua_pop (void)
{
checkCparams(1);
return put_luaObjectonTop();
}
/*
** Get a parameter, returning the object handle or LUA_NOOBJECT on error.
** 'number' must be 1 to get the first parameter.
*/
lua_Object lua_lua2C (int number)
{
if (number <= 0 || number > L->Cstack.num) return LUA_NOOBJECT;
/* Ref(L->stack.stack+(L->Cstack.lua2C+number-1)) ==
L->stack.stack+(L->Cstack.lua2C+number-1)-L->stack.stack+1 == */
return L->Cstack.lua2C+number;
1997-09-16 23:25:59 +04:00
}
1997-10-24 21:17:24 +04:00
lua_Object lua_upvalue (int n)
{
TObject *f = L->stack.stack+L->Cstack.lua2C-1;
1997-10-24 21:17:24 +04:00
if (ttype(f) != LUA_T_MARK || n <= 0 || n > clvalue(f)->nelems)
return LUA_NOOBJECT;
if (ttype(protovalue(f)) != LUA_T_CPROTO) lua_error("BAD!!");
*L->stack.top = clvalue(f)->consts[n];
1997-10-24 21:17:24 +04:00
incr_top;
return put_luaObjectonTop();
}
1997-09-16 23:25:59 +04:00
int lua_callfunction (lua_Object function)
{
if (function == LUA_NOOBJECT)
return 1;
else {
luaD_openstack((L->stack.top-L->stack.stack)-L->Cstack.base);
L->stack.stack[L->Cstack.base] = *Address(function);
1997-09-16 23:25:59 +04:00
return luaD_protectedrun(MULT_RET);
}
}
lua_Object lua_gettagmethod (int tag, char *event)
{
return put_luaObject(luaT_gettagmethod(tag, event));
}
lua_Object lua_settagmethod (int tag, char *event)
{
checkCparams(1);
luaT_settagmethod(tag, event, L->stack.top-1);
1997-09-16 23:25:59 +04:00
return put_luaObjectonTop();
}
lua_Object lua_seterrormethod (void)
{
TObject temp = L->errorim;
1997-09-16 23:25:59 +04:00
checkCparams(1);
L->errorim = *(--L->stack.top);
1997-09-16 23:25:59 +04:00
return put_luaObject(&temp);
}
lua_Object lua_gettable (void)
{
checkCparams(2);
luaV_gettable();
return put_luaObjectonTop();
}
lua_Object lua_rawgettable (void)
{
checkCparams(2);
if (ttype(L->stack.top-2) != LUA_T_ARRAY)
1997-09-16 23:25:59 +04:00
lua_error("indexed expression not a table in raw gettable");
else {
TObject *h = luaH_get(avalue(L->stack.top-2), L->stack.top-1);
--L->stack.top;
1997-09-16 23:25:59 +04:00
if (h != NULL)
*(L->stack.top-1) = *h;
1997-09-16 23:25:59 +04:00
else
ttype(L->stack.top-1) = LUA_T_NIL;
1997-09-16 23:25:59 +04:00
}
return put_luaObjectonTop();
}
void lua_settable (void)
{
checkCparams(3);
luaV_settable(L->stack.top-3, 1);
1997-09-16 23:25:59 +04:00
}
void lua_rawsettable (void)
{
checkCparams(3);
luaV_settable(L->stack.top-3, 0);
1997-09-16 23:25:59 +04:00
}
lua_Object lua_createtable (void)
{
TObject o;
luaC_checkGC();
avalue(&o) = luaH_new(0);
ttype(&o) = LUA_T_ARRAY;
return put_luaObject(&o);
}
lua_Object lua_globalbag (void)
{
return put_luaObject(&L->globalbag);
}
1997-09-16 23:25:59 +04:00
lua_Object lua_getglobal (char *name)
{
luaD_checkstack(2); /* may need that to call T.M. */
luaV_getglobal(luaS_new(name));
1997-09-16 23:25:59 +04:00
return put_luaObjectonTop();
}
lua_Object lua_rawgetglobal (char *name)
{
TaggedString *ts = luaS_new(name);
return put_luaObject(&ts->u.globalval);
1997-09-16 23:25:59 +04:00
}
void lua_setglobal (char *name)
{
checkCparams(1);
luaD_checkstack(2); /* may need that to call T.M. */
luaV_setglobal(luaS_new(name));
1997-09-16 23:25:59 +04:00
}
void lua_rawsetglobal (char *name)
{
TaggedString *ts = luaS_new(name);
1997-09-16 23:25:59 +04:00
checkCparams(1);
luaS_rawsetglobal(ts, --L->stack.top);
1997-09-16 23:25:59 +04:00
}
int lua_isnil (lua_Object o)
{
return (o!= LUA_NOOBJECT) && (ttype(Address(o)) == LUA_T_NIL);
}
int lua_istable (lua_Object o)
{
return (o!= LUA_NOOBJECT) && (ttype(Address(o)) == LUA_T_ARRAY);
}
int lua_isuserdata (lua_Object o)
{
return (o!= LUA_NOOBJECT) && (ttype(Address(o)) == LUA_T_USERDATA);
}
int lua_iscfunction (lua_Object o)
{
1997-10-24 21:17:24 +04:00
return (o != LUA_NOOBJECT) && (lua_tag(o) == LUA_T_CPROTO);
1997-09-16 23:25:59 +04:00
}
int lua_isnumber (lua_Object o)
{
return (o!= LUA_NOOBJECT) && (tonumber(Address(o)) == 0);
}
int lua_isstring (lua_Object o)
{
int t = lua_tag(o);
return (t == LUA_T_STRING) || (t == LUA_T_NUMBER);
}
int lua_isfunction (lua_Object o)
{
1997-10-24 21:17:24 +04:00
return (o != LUA_NOOBJECT) && ((ttype(Address(o)) == LUA_T_FUNCTION) ||
(ttype(Address(o)) == LUA_T_MARK));
1997-09-16 23:25:59 +04:00
}
real lua_getnumber (lua_Object object)
{
if (object == LUA_NOOBJECT) return 0.0;
if (tonumber (Address(object))) return 0.0;
else return (nvalue(Address(object)));
}
char *lua_getstring (lua_Object object)
{
if (object == LUA_NOOBJECT || tostring(Address(object)))
return NULL;
else return (svalue(Address(object)));
}
void *lua_getuserdata (lua_Object object)
{
if (object == LUA_NOOBJECT || ttype(Address(object)) != LUA_T_USERDATA)
return NULL;
else return tsvalue(Address(object))->u.d.v;
1997-09-16 23:25:59 +04:00
}
lua_CFunction lua_getcfunction (lua_Object object)
{
1997-10-24 21:17:24 +04:00
if (!lua_iscfunction(object))
return NULL;
else return fvalue(protovalue(Address(object)));
1997-09-16 23:25:59 +04:00
}
void lua_pushnil (void)
{
ttype(L->stack.top) = LUA_T_NIL;
1997-09-16 23:25:59 +04:00
incr_top;
}
void lua_pushnumber (real n)
{
ttype(L->stack.top) = LUA_T_NUMBER;
nvalue(L->stack.top) = n;
1997-09-16 23:25:59 +04:00
incr_top;
}
void lua_pushstring (char *s)
{
if (s == NULL)
ttype(L->stack.top) = LUA_T_NIL;
1997-09-16 23:25:59 +04:00
else {
tsvalue(L->stack.top) = luaS_new(s);
ttype(L->stack.top) = LUA_T_STRING;
1997-09-16 23:25:59 +04:00
}
incr_top;
luaC_checkGC();
}
1997-10-24 21:17:24 +04:00
void lua_pushCclosure (lua_CFunction fn, int n)
1997-09-16 23:25:59 +04:00
{
1997-10-24 21:17:24 +04:00
if (fn == NULL) {
ttype(L->stack.top) = LUA_T_NIL;
1997-10-24 21:17:24 +04:00
incr_top;
}
1997-09-16 23:25:59 +04:00
else {
1997-10-24 21:17:24 +04:00
checkCparams(n);
ttype(L->stack.top) = LUA_T_CPROTO;
fvalue(L->stack.top) = fn;
1997-10-24 21:17:24 +04:00
incr_top;
luaV_closure(n);
1997-09-16 23:25:59 +04:00
}
}
void lua_pushusertag (void *u, int tag)
{
if (tag < 0 && tag != LUA_ANYTAG)
luaT_realtag(tag); /* error if tag is not valid */
tsvalue(L->stack.top) = luaS_createudata(u, tag);
ttype(L->stack.top) = LUA_T_USERDATA;
1997-09-16 23:25:59 +04:00
incr_top;
luaC_checkGC();
}
void luaA_pushobject (TObject *o)
{
*L->stack.top = *o;
1997-09-16 23:25:59 +04:00
incr_top;
}
void lua_pushobject (lua_Object o)
{
if (o == LUA_NOOBJECT)
lua_error("API error - attempt to push a NOOBJECT");
*L->stack.top = *Address(o);
if (ttype(L->stack.top) == LUA_T_MARK)
ttype(L->stack.top) = LUA_T_FUNCTION;
1997-09-16 23:25:59 +04:00
incr_top;
}
int lua_tag (lua_Object lo)
{
if (lo == LUA_NOOBJECT) return LUA_T_NIL;
else {
TObject *o = Address(lo);
1997-10-24 21:17:24 +04:00
int t = luaT_efectivetag(o);
1997-09-16 23:25:59 +04:00
if (t == LUA_T_USERDATA)
return o->value.ts->u.d.tag;
1997-10-24 21:17:24 +04:00
else
return t;
1997-09-16 23:25:59 +04:00
}
}
void lua_settag (int tag)
{
checkCparams(1);
luaT_realtag(tag);
switch (ttype(L->stack.top-1)) {
1997-09-16 23:25:59 +04:00
case LUA_T_ARRAY:
(L->stack.top-1)->value.a->htag = tag;
1997-09-16 23:25:59 +04:00
break;
case LUA_T_USERDATA:
(L->stack.top-1)->value.ts->u.d.tag = tag;
1997-09-16 23:25:59 +04:00
break;
default:
luaL_verror("cannot change the tag of a %.20s",
luaO_typenames[-ttype((L->stack.top-1))]);
1997-09-16 23:25:59 +04:00
}
L->stack.top--;
1997-09-16 23:25:59 +04:00
}
/*
** =======================================================
** Debug interface
** =======================================================
*/
/* Hooks */
lua_CHFunction lua_callhook = NULL;
lua_LHFunction lua_linehook = NULL;
lua_Function lua_stackedfunction (int level)
{
StkId i;
for (i = (L->stack.top-1)-L->stack.stack; i>=0; i--)
if (L->stack.stack[i].ttype == LUA_T_MARK)
1997-09-16 23:25:59 +04:00
if (level-- == 0)
return Ref(L->stack.stack+i);
1997-09-16 23:25:59 +04:00
return LUA_NOOBJECT;
}
int lua_currentline (lua_Function func)
{
TObject *f = Address(func);
return (f+1 < L->stack.top && (f+1)->ttype == LUA_T_LINE) ? (f+1)->value.i : -1;
1997-09-16 23:25:59 +04:00
}
lua_Object lua_getlocal (lua_Function func, int local_number, char **name)
{
TObject *f = luaA_Address(func);
/* check whether func is a Lua function */
1997-10-24 21:17:24 +04:00
if (!(f->ttype == LUA_T_MARK || f->ttype == LUA_T_FUNCTION))
1997-09-16 23:25:59 +04:00
return LUA_NOOBJECT;
1997-10-24 21:17:24 +04:00
else {
TProtoFunc *fp = protovalue(f)->value.tf;
*name = luaF_getlocalname(fp, local_number, lua_currentline(func));
if (*name) {
/* if "*name", there must be a LUA_T_LINE */
/* therefore, f+2 points to function base */
return Ref((f+2)+(local_number-1));
}
else
return LUA_NOOBJECT;
1997-09-16 23:25:59 +04:00
}
}
int lua_setlocal (lua_Function func, int local_number)
{
TObject *f = Address(func);
1997-10-24 21:17:24 +04:00
TProtoFunc *fp = protovalue(f)->value.tf;
char *name = luaF_getlocalname(fp, local_number, lua_currentline(func));
1997-09-16 23:25:59 +04:00
checkCparams(1);
--L->stack.top;
1997-09-16 23:25:59 +04:00
if (name) {
/* if "name", there must be a LUA_T_LINE */
/* therefore, f+2 points to function base */
*((f+2)+(local_number-1)) = *L->stack.top;
1997-09-16 23:25:59 +04:00
return 1;
}
else
return 0;
}
void lua_funcinfo (lua_Object func, char **filename, int *linedefined)
{
TObject *f = Address(func);
1997-10-24 21:17:24 +04:00
if (!(ttype(f) == LUA_T_MARK || ttype(f) == LUA_T_FUNCTION))
lua_error("API - `funcinfo' called with a non-function value");
else {
f = protovalue(f);
if (ttype(f) == LUA_T_PROTO) {
*filename = tfvalue(f)->fileName->str;
*linedefined = tfvalue(f)->lineDefined;
}
else {
*filename = "(C)";
*linedefined = -1;
}
1997-09-16 23:25:59 +04:00
}
}
static int checkfunc (TObject *o)
{
1997-10-24 21:17:24 +04:00
return (o->ttype == LUA_T_FUNCTION) &&
((L->functofind->ttype == LUA_T_FUNCTION) ||
(L->functofind->ttype == LUA_T_MARK)) &&
(L->functofind->value.cl == o->value.cl);
1997-09-16 23:25:59 +04:00
}
char *lua_getobjname (lua_Object o, char **name)
{ /* try to find a name for given function */
L->functofind = Address(o);
1997-09-16 23:25:59 +04:00
if ((*name = luaT_travtagmethods(checkfunc)) != NULL)
return "tag-method";
else if ((*name = luaS_travsymbol(checkfunc)) != NULL)
1997-09-16 23:25:59 +04:00
return "global";
else return "";
}
/*
** =======================================================
** BLOCK mechanism
** =======================================================
*/
void lua_beginblock (void)
{
if (L->numCblocks >= MAX_C_BLOCKS)
1997-09-16 23:25:59 +04:00
lua_error("`lua_beginblock': too many nested blocks");
L->Cblocks[L->numCblocks] = L->Cstack;
L->numCblocks++;
1997-09-16 23:25:59 +04:00
}
void lua_endblock (void)
{
--L->numCblocks;
L->Cstack = L->Cblocks[L->numCblocks];
luaD_adjusttop(L->Cstack.base);
1997-09-16 23:25:59 +04:00
}
int lua_ref (int lock)
{
int ref;
checkCparams(1);
ref = luaC_ref(L->stack.top-1, lock);
L->stack.top--;
1997-09-16 23:25:59 +04:00
return ref;
}
lua_Object lua_getref (int ref)
{
TObject *o = luaC_getref(ref);
return (o ? put_luaObject(o) : LUA_NOOBJECT);
}
#if LUA_COMPAT2_5
/*
** API: set a function as a fallback
*/
static void do_unprotectedrun (lua_CFunction f, int nParams, int nResults)
{
StkId base = (L->stack.top-L->stack.stack)-nParams;
1997-09-16 23:25:59 +04:00
luaD_openstack(nParams);
L->stack.stack[base].ttype = LUA_T_CPROTO;
L->stack.stack[base].value.f = f;
luaF_simpleclosure(L->stack.stack+base);
1997-09-16 23:25:59 +04:00
luaD_call(base+1, nResults);
}
lua_Object lua_setfallback (char *name, lua_CFunction fallback)
{
lua_pushstring(name);
lua_pushcfunction(fallback);
do_unprotectedrun(luaT_setfallback, 2, 1);
return put_luaObjectonTop();
}
#endif