1997-09-16 23:25:59 +04:00
|
|
|
/*
|
2000-12-28 15:55:41 +03:00
|
|
|
** $Id: ltm.c,v 1.58 2000/12/26 18:46:09 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>
|
|
|
|
|
2000-06-12 17:52:05 +04:00
|
|
|
#include "lua.h"
|
|
|
|
|
2000-09-11 23:45:27 +04:00
|
|
|
#include "ldo.h"
|
1997-09-16 23:25:59 +04:00
|
|
|
#include "lmem.h"
|
|
|
|
#include "lobject.h"
|
1997-11-19 20:29:23 +03:00
|
|
|
#include "lstate.h"
|
1997-09-16 23:25:59 +04:00
|
|
|
#include "ltm.h"
|
|
|
|
|
|
|
|
|
2000-10-05 17:00:17 +04:00
|
|
|
const char *const luaT_eventname[] = { /* ORDER TM */
|
2000-02-22 21:12:46 +03:00
|
|
|
"gettable", "settable", "index", "getglobal", "setglobal", "add", "sub",
|
2000-03-20 22:14:54 +03:00
|
|
|
"mul", "div", "pow", "unm", "lt", "concat", "gc", "function",
|
|
|
|
"le", "gt", "ge", /* deprecated options!! */
|
|
|
|
NULL
|
1997-09-16 23:25:59 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2000-09-12 00:29:27 +04: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 00:08:02 +04:00
|
|
|
static int luaI_checkevent (lua_State *L, const char *name, int t) {
|
2000-09-12 00:29:27 +04:00
|
|
|
int e = findevent(name);
|
2000-10-05 17:00:17 +04:00
|
|
|
if (e >= TM_N)
|
2000-09-12 00:29:27 +04:00
|
|
|
luaO_verror(L, "event `%.50s' is deprecated", name);
|
2000-10-05 17:00:17 +04:00
|
|
|
if (e == TM_GC && t == LUA_TTABLE)
|
2000-09-12 00:29:27 +04:00
|
|
|
luaO_verror(L, "event `gc' for tables is deprecated");
|
1997-09-16 23:25:59 +04:00
|
|
|
if (e < 0)
|
2000-09-12 00:29:27 +04:00
|
|
|
luaO_verror(L, "`%.50s' is not a valid event name", name);
|
1997-09-16 23:25:59 +04:00
|
|
|
return e;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2000-10-05 16:14:08 +04:00
|
|
|
/* events in LUA_TNIL are all allowed, since this is used as a
|
1997-09-16 23:25:59 +04:00
|
|
|
* 'placeholder' for "default" fallbacks
|
|
|
|
*/
|
2000-10-05 17:00:17 +04:00
|
|
|
/* ORDER LUA_T, ORDER TM */
|
2000-11-30 21:50:47 +03:00
|
|
|
static const unsigned char luaT_validevents[NUM_TAGS][TM_N] = {
|
2000-10-05 16:14:08 +04: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-16 23:25:59 +04:00
|
|
|
};
|
|
|
|
|
2000-03-30 20:41:51 +04:00
|
|
|
int luaT_validevent (int t, int e) { /* ORDER LUA_T */
|
2000-11-30 21:50:47 +03:00
|
|
|
return (t >= NUM_TAGS) ? 1 : (int)luaT_validevents[t][e];
|
1997-09-16 23:25:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
static void init_entry (lua_State *L, int tag) {
|
1997-09-16 23:25:59 +04:00
|
|
|
int i;
|
2000-10-05 17:00:17 +04:00
|
|
|
for (i=0; i<TM_N; i++)
|
|
|
|
luaT_gettm(L, tag, i) = NULL;
|
|
|
|
L->TMtable[tag].collected = NULL;
|
1997-09-16 23:25:59 +04:00
|
|
|
}
|
|
|
|
|
1997-11-04 18:27:53 +03:00
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
void luaT_init (lua_State *L) {
|
1997-11-04 18:27:53 +03:00
|
|
|
int t;
|
2000-12-28 15:55:41 +03:00
|
|
|
L->TMtable = luaM_newvector(L, NUM_TAGS+2, struct TM);
|
2000-12-26 21:46:09 +03:00
|
|
|
L->sizeTM = NUM_TAGS+2;
|
|
|
|
L->ntag = NUM_TAGS;
|
|
|
|
for (t=0; t<L->ntag; t++)
|
1999-11-22 16:12:07 +03:00
|
|
|
init_entry(L, t);
|
1997-11-04 18:27:53 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-10-20 20:39:03 +04:00
|
|
|
LUA_API int lua_newtag (lua_State *L) {
|
2000-12-26 21:46:09 +03:00
|
|
|
luaM_growvector(L, L->TMtable, L->ntag, L->sizeTM, struct TM,
|
|
|
|
MAX_INT, "tag table overflow");
|
|
|
|
init_entry(L, L->ntag);
|
|
|
|
return L->ntag++;
|
1997-09-16 23:25:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
static void checktag (lua_State *L, int tag) {
|
2000-12-26 21:46:09 +03:00
|
|
|
if (!(0 <= tag && tag < L->ntag))
|
2000-09-12 00:29:27 +04:00
|
|
|
luaO_verror(L, "%d is not a valid tag", tag);
|
1997-09-16 23:25:59 +04:00
|
|
|
}
|
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
void luaT_realtag (lua_State *L, int tag) {
|
2000-10-05 16:14:08 +04:00
|
|
|
if (!validtag(tag))
|
2000-09-12 00:29:27 +04:00
|
|
|
luaO_verror(L, "tag %d was not created by `newtag'", tag);
|
1997-09-16 23:25:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-10-20 20:39:03 +04:00
|
|
|
LUA_API int lua_copytagmethods (lua_State *L, int tagto, int tagfrom) {
|
1997-12-11 20:21:11 +03:00
|
|
|
int e;
|
1999-11-22 16:12:07 +03:00
|
|
|
checktag(L, tagto);
|
|
|
|
checktag(L, tagfrom);
|
2000-10-05 17:00:17 +04:00
|
|
|
for (e=0; e<TM_N; e++) {
|
1999-01-15 16:11:57 +03:00
|
|
|
if (luaT_validevent(tagto, e))
|
2000-10-05 17:00:17 +04:00
|
|
|
luaT_gettm(L, tagto, e) = luaT_gettm(L, tagfrom, e);
|
1997-12-11 20:21:11 +03:00
|
|
|
}
|
|
|
|
return tagto;
|
|
|
|
}
|
|
|
|
|
1997-09-16 23:25:59 +04:00
|
|
|
|
2000-10-05 16:14:08 +04:00
|
|
|
int luaT_tag (const TObject *o) {
|
|
|
|
int t = ttype(o);
|
2000-03-30 00:19:20 +04:00
|
|
|
switch (t) {
|
2000-10-05 16:14:08 +04:00
|
|
|
case LUA_TUSERDATA: return tsvalue(o)->u.d.tag;
|
|
|
|
case LUA_TTABLE: return hvalue(o)->htag;
|
|
|
|
default: return t;
|
1997-09-16 23:25:59 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-10-20 20:39:03 +04:00
|
|
|
LUA_API void lua_gettagmethod (lua_State *L, int t, const char *event) {
|
2000-02-22 21:12:46 +03:00
|
|
|
int e;
|
2000-03-28 00:08:02 +04:00
|
|
|
e = luaI_checkevent(L, event, t);
|
1999-11-22 16:12:07 +03:00
|
|
|
checktag(L, t);
|
2000-10-05 17:00:17 +04:00
|
|
|
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-16 23:25:59 +04:00
|
|
|
else
|
2000-10-05 16:14:08 +04:00
|
|
|
ttype(L->top) = LUA_TNIL;
|
2000-09-11 23:45:27 +04:00
|
|
|
incr_top;
|
1997-09-16 23:25:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-10-20 20:39:03 +04:00
|
|
|
LUA_API void lua_settagmethod (lua_State *L, int t, const char *event) {
|
2000-10-05 17:00:17 +04:00
|
|
|
int e = luaI_checkevent(L, event, t);
|
1999-11-22 16:12:07 +03:00
|
|
|
checktag(L, t);
|
1999-01-15 16:11:57 +03:00
|
|
|
if (!luaT_validevent(t, e))
|
2000-09-12 00:29:27 +04:00
|
|
|
luaO_verror(L, "cannot change `%.20s' tag method for type `%.20s'%.20s",
|
2000-10-05 16:14:08 +04:00
|
|
|
luaT_eventname[e], luaO_typenames[t],
|
2000-10-05 17:00:17 +04:00
|
|
|
(t == LUA_TTABLE || t == LUA_TUSERDATA) ?
|
|
|
|
" with default tag" : "");
|
|
|
|
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)");
|
|
|
|
}
|
2000-10-31 16:10:24 +03:00
|
|
|
L->top--;
|
1997-09-16 23:25:59 +04:00
|
|
|
}
|
|
|
|
|