lua/ltm.c

162 lines
4.1 KiB
C
Raw Normal View History

1997-09-16 23:25:59 +04:00
/*
** $Id: ltm.c,v 1.27 1999/09/20 14:57:29 roberto Exp roberto $
1997-09-16 23:25:59 +04:00
** Tag methods
** See Copyright Notice in lua.h
*/
#include <stdio.h>
#include <string.h>
#include "lauxlib.h"
#include "lmem.h"
#include "lobject.h"
#include "lstate.h"
1997-09-16 23:25:59 +04:00
#include "ltm.h"
1999-08-17 00:52:00 +04:00
const char *const luaT_eventname[] = { /* ORDER IM */
1997-09-16 23:25:59 +04:00
"gettable", "settable", "index", "getglobal", "setglobal", "add",
"sub", "mul", "div", "pow", "unm", "lt", "le", "gt", "ge",
"concat", "gc", "function", NULL
1997-09-16 23:25:59 +04:00
};
1999-08-17 00:52:00 +04:00
static int luaI_checkevent (const char *name, const char *const list[]) {
int e = luaL_findstring(name, list);
1997-09-16 23:25:59 +04:00
if (e < 0)
luaL_verror("`%.50s' is not a valid event name", name);
return e;
}
/* events in LUA_T_NIL are all allowed, since this is used as a
1997-09-16 23:25:59 +04:00
* 'placeholder' for "default" fallbacks
*/
1999-08-17 00:52:00 +04:00
/* ORDER LUA_T, ORDER IM */
static const char luaT_validevents[NUM_TAGS][IM_N] = {
1997-09-16 23:25:59 +04:00
{1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1}, /* LUA_T_USERDATA */
{1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1}, /* LUA_T_NUMBER */
{1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1}, /* LUA_T_STRING */
{0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1}, /* LUA_T_ARRAY */
1997-10-24 21:17:24 +04:00
{1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0}, /* LUA_T_PROTO */
{1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0}, /* LUA_T_CPROTO */
{1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1} /* LUA_T_NIL */
1997-09-16 23:25:59 +04:00
};
int luaT_validevent (int t, int e) { /* ORDER LUA_T */
#ifdef LUA_COMPAT_GC
if (t == LUA_T_ARRAY && e == IM_GC)
return 1; /* old versions allowed gc tag method for tables */
#endif
1999-01-15 16:11:57 +03:00
return (t < LUA_T_NIL) ? 1 : luaT_validevents[-t][e];
1997-09-16 23:25:59 +04:00
}
1999-01-15 16:11:57 +03:00
static void init_entry (int tag) {
1997-09-16 23:25:59 +04:00
int i;
for (i=0; i<IM_N; i++)
ttype(luaT_getim(tag, i)) = LUA_T_NIL;
}
1999-01-15 16:11:57 +03:00
void luaT_init (void) {
int t;
L->last_tag = -(NUM_TAGS-1);
luaM_growvector(L->IMtable, 0, NUM_TAGS, struct IM, arrEM, MAX_INT);
for (t=L->last_tag; t<=0; t++)
init_entry(t);
}
1999-01-15 16:11:57 +03:00
int lua_newtag (void) {
--L->last_tag;
luaM_growvector(L->IMtable, -(L->last_tag), 1, struct IM, arrEM, MAX_INT);
init_entry(L->last_tag);
return L->last_tag;
1997-09-16 23:25:59 +04:00
}
1999-01-15 16:11:57 +03:00
static void checktag (int tag) {
if (!(L->last_tag <= tag && tag <= 0))
1997-09-16 23:25:59 +04:00
luaL_verror("%d is not a valid tag", tag);
}
1999-01-15 16:11:57 +03:00
void luaT_realtag (int tag) {
if (!(L->last_tag <= tag && tag < LUA_T_NIL))
1999-02-26 00:07:26 +03:00
luaL_verror("tag %d was not created by `newtag'", tag);
1997-09-16 23:25:59 +04:00
}
1999-01-15 16:11:57 +03:00
int lua_copytagmethods (int tagto, int tagfrom) {
int e;
checktag(tagto);
checktag(tagfrom);
for (e=0; e<IM_N; e++) {
1999-01-15 16:11:57 +03:00
if (luaT_validevent(tagto, e))
*luaT_getim(tagto, e) = *luaT_getim(tagfrom, e);
}
return tagto;
}
1997-09-16 23:25:59 +04:00
1999-08-17 00:52:00 +04:00
int luaT_effectivetag (const TObject *o) {
1997-10-24 21:17:24 +04:00
int t;
switch (t = ttype(o)) {
case LUA_T_ARRAY:
return o->value.a->htag;
1997-10-24 21:17:24 +04:00
case LUA_T_USERDATA: {
int tag = o->value.ts->u.d.tag;
return (tag >= 0) ? LUA_T_USERDATA : tag;
}
case LUA_T_CLOSURE:
1997-10-24 21:17:24 +04:00
return o->value.cl->consts[0].ttype;
#ifdef DEBUG
case LUA_T_PMARK: case LUA_T_CMARK:
case LUA_T_CLMARK: case LUA_T_LINE:
1998-03-10 00:49:52 +03:00
LUA_INTERNALERROR("invalid type");
#endif
1997-10-24 21:17:24 +04:00
default:
return t;
1997-09-16 23:25:59 +04:00
}
}
1999-08-17 00:52:00 +04:00
const TObject *luaT_gettagmethod (int t, const char *event) {
1997-09-16 23:25:59 +04:00
int e = luaI_checkevent(event, luaT_eventname);
checktag(t);
1999-01-15 16:11:57 +03:00
if (luaT_validevent(t, e))
1997-09-16 23:25:59 +04:00
return luaT_getim(t,e);
else
1997-11-03 23:45:23 +03:00
return &luaO_nilobject;
1997-09-16 23:25:59 +04:00
}
1999-08-17 00:52:00 +04:00
void luaT_settagmethod (int t, const char *event, TObject *func) {
TObject temp;
1997-09-16 23:25:59 +04:00
int e = luaI_checkevent(event, luaT_eventname);
checktag(t);
1999-01-15 16:11:57 +03:00
if (!luaT_validevent(t, e))
1998-12-23 17:06:57 +03:00
luaL_verror("cannot change tag method `%.20s' for type `%.20s'%.20s",
luaT_eventname[e], luaO_typenames[-t],
(t == LUA_T_ARRAY || t == LUA_T_USERDATA) ? " with default tag"
: "");
temp = *func;
1997-09-16 23:25:59 +04:00
*func = *luaT_getim(t,e);
*luaT_getim(t, e) = temp;
}
1999-08-17 00:52:00 +04:00
const char *luaT_travtagmethods (int (*fn)(TObject *)) { /* ORDER IM */
1997-09-16 23:25:59 +04:00
int e;
1999-01-13 22:08:37 +03:00
for (e=IM_GETTABLE; e<=IM_FUNCTION; e++) {
1997-09-16 23:25:59 +04:00
int t;
for (t=0; t>=L->last_tag; t--)
1997-09-16 23:25:59 +04:00
if (fn(luaT_getim(t,e)))
return luaT_eventname[e];
}
return NULL;
}