lua/ltm.c

167 lines
4.2 KiB
C
Raw Normal View History

1997-09-17 03:25:59 +08:00
/*
** $Id: ltm.c,v 1.53 2000/10/05 12:14:08 roberto Exp roberto $
1997-09-17 03:25:59 +08:00
** Tag methods
** See Copyright Notice in lua.h
*/
#include <stdio.h>
#include <string.h>
#include "lua.h"
2000-09-12 03:45:27 +08:00
#include "ldo.h"
1997-09-17 03:25:59 +08:00
#include "lmem.h"
#include "lobject.h"
#include "lstate.h"
1997-09-17 03:25:59 +08:00
#include "ltm.h"
const char *const luaT_eventname[] = { /* ORDER TM */
"gettable", "settable", "index", "getglobal", "setglobal", "add", "sub",
2000-03-21 03:14:54 +08:00
"mul", "div", "pow", "unm", "lt", "concat", "gc", "function",
"le", "gt", "ge", /* deprecated options!! */
NULL
1997-09-17 03:25:59 +08:00
};
static int findevent (const char *name) {
int i;
for (i=0; luaT_eventname[i]; i++)
if (strcmp(luaT_eventname[i], name) == 0)
return i;
return -1; /* name not found */
}
2000-03-28 04:08:02 +08:00
static int luaI_checkevent (lua_State *L, const char *name, int t) {
int e = findevent(name);
if (e >= TM_N)
luaO_verror(L, "event `%.50s' is deprecated", name);
if (e == TM_GC && t == LUA_TTABLE)
luaO_verror(L, "event `gc' for tables is deprecated");
1997-09-17 03:25:59 +08:00
if (e < 0)
luaO_verror(L, "`%.50s' is not a valid event name", name);
1997-09-17 03:25:59 +08:00
return e;
}
2000-10-05 20:14:08 +08:00
/* events in LUA_TNIL are all allowed, since this is used as a
1997-09-17 03:25:59 +08:00
* 'placeholder' for "default" fallbacks
*/
/* ORDER LUA_T, ORDER TM */
static const char luaT_validevents[NUM_TAGS][TM_N] = {
2000-10-05 20:14:08 +08:00
{1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1}, /* LUA_TUSERDATA */
{1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1}, /* LUA_TNIL */
{1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1}, /* LUA_TNUMBER */
{1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1}, /* LUA_TSTRING */
{0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1}, /* LUA_TTABLE */
{1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0} /* LUA_TFUNCTION */
1997-09-17 03:25:59 +08:00
};
int luaT_validevent (int t, int e) { /* ORDER LUA_T */
2000-10-05 20:14:08 +08:00
return (t >= NUM_TAGS) ? 1 : luaT_validevents[t][e];
1997-09-17 03:25:59 +08:00
}
static void init_entry (lua_State *L, int tag) {
1997-09-17 03:25:59 +08:00
int i;
for (i=0; i<TM_N; i++)
luaT_gettm(L, tag, i) = NULL;
L->TMtable[tag].collected = NULL;
1997-09-17 03:25:59 +08:00
}
void luaT_init (lua_State *L) {
int t;
luaM_growvector(L, L->TMtable, 0, NUM_TAGS, struct TM, "", MAX_INT);
L->nblocks += NUM_TAGS*sizeof(struct TM);
L->last_tag = NUM_TAGS-1;
2000-03-21 03:14:54 +08:00
for (t=0; t<=L->last_tag; t++)
init_entry(L, t);
}
int lua_newtag (lua_State *L) {
luaM_growvector(L, L->TMtable, L->last_tag, 1, struct TM,
2000-05-24 21:54:49 +08:00
"tag table overflow", MAX_INT);
L->nblocks += sizeof(struct TM);
L->last_tag++;
init_entry(L, L->last_tag);
return L->last_tag;
1997-09-17 03:25:59 +08:00
}
static void checktag (lua_State *L, int tag) {
2000-03-21 03:14:54 +08:00
if (!(0 <= tag && tag <= L->last_tag))
luaO_verror(L, "%d is not a valid tag", tag);
1997-09-17 03:25:59 +08:00
}
void luaT_realtag (lua_State *L, int tag) {
2000-10-05 20:14:08 +08:00
if (!validtag(tag))
luaO_verror(L, "tag %d was not created by `newtag'", tag);
1997-09-17 03:25:59 +08:00
}
int lua_copytagmethods (lua_State *L, int tagto, int tagfrom) {
int e;
checktag(L, tagto);
checktag(L, tagfrom);
for (e=0; e<TM_N; e++) {
1999-01-15 21:11:57 +08:00
if (luaT_validevent(tagto, e))
luaT_gettm(L, tagto, e) = luaT_gettm(L, tagfrom, e);
}
return tagto;
}
1997-09-17 03:25:59 +08:00
2000-10-05 20:14:08 +08:00
int luaT_tag (const TObject *o) {
int t = ttype(o);
switch (t) {
2000-10-05 20:14:08 +08:00
case LUA_TUSERDATA: return tsvalue(o)->u.d.tag;
case LUA_TTABLE: return hvalue(o)->htag;
default: return t;
1997-09-17 03:25:59 +08:00
}
}
2000-09-06 03:33:32 +08:00
void lua_gettagmethod (lua_State *L, int t, const char *event) {
int e;
2000-03-28 04:08:02 +08:00
e = luaI_checkevent(L, event, t);
checktag(L, t);
if (luaT_validevent(t, e) && luaT_gettm(L, t, e)) {
clvalue(L->top) = luaT_gettm(L, t, e);
ttype(L->top) = LUA_TFUNCTION;
}
1997-09-17 03:25:59 +08:00
else
2000-10-05 20:14:08 +08:00
ttype(L->top) = LUA_TNIL;
2000-09-12 03:45:27 +08:00
incr_top;
1997-09-17 03:25:59 +08:00
}
2000-09-06 03:33:32 +08:00
void lua_settagmethod (lua_State *L, int t, const char *event) {
Closure *oldtm;
int e = luaI_checkevent(L, event, t);
checktag(L, t);
1999-01-15 21:11:57 +08:00
if (!luaT_validevent(t, e))
luaO_verror(L, "cannot change `%.20s' tag method for type `%.20s'%.20s",
2000-10-05 20:14:08 +08:00
luaT_eventname[e], luaO_typenames[t],
(t == LUA_TTABLE || t == LUA_TUSERDATA) ?
" with default tag" : "");
oldtm = luaT_gettm(L, t, e);
switch (ttype(L->top - 1)) {
case LUA_TNIL:
luaT_gettm(L, t, e) = NULL;
break;
case LUA_TFUNCTION:
luaT_gettm(L, t, e) = clvalue(L->top - 1);
break;
default:
lua_error(L, "tag method must be a function (or nil)");
}
clvalue(L->top - 1) = oldtm;
ttype(L->top - 1) = (oldtm ? LUA_TFUNCTION : LUA_TNIL);
1997-09-17 03:25:59 +08:00
}