1997-09-16 23:25:59 +04:00
|
|
|
/*
|
2000-05-24 17:54:49 +04:00
|
|
|
** $Id: ltm.c,v 1.39 2000/03/30 16:41:51 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>
|
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
#define LUA_REENTRANT
|
|
|
|
|
1997-09-16 23:25:59 +04:00
|
|
|
#include "lauxlib.h"
|
|
|
|
#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"
|
|
|
|
|
|
|
|
|
1999-08-17 00:52:00 +04:00
|
|
|
const char *const luaT_eventname[] = { /* ORDER IM */
|
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-03-28 00:08:02 +04:00
|
|
|
static int luaI_checkevent (lua_State *L, const char *name, int t) {
|
2000-03-20 22:14:54 +03:00
|
|
|
int e = luaL_findstring(name, luaT_eventname);
|
|
|
|
if (e >= IM_N)
|
|
|
|
luaL_verror(L, "event `%.50s' is deprecated", name);
|
2000-03-28 00:10:21 +04:00
|
|
|
if (e == IM_GC && t == TAG_TABLE)
|
2000-03-28 00:08:02 +04:00
|
|
|
luaL_verror(L, "event `gc' for tables is deprecated");
|
1997-09-16 23:25:59 +04:00
|
|
|
if (e < 0)
|
1999-11-22 16:12:07 +03:00
|
|
|
luaL_verror(L, "`%.50s' is not a valid event name", name);
|
1997-09-16 23:25:59 +04:00
|
|
|
return e;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2000-03-10 21:37:44 +03:00
|
|
|
/* events in TAG_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] = {
|
2000-03-28 00:08:02 +04:00
|
|
|
{1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1}, /* TAG_USERDATA */
|
|
|
|
{1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1}, /* TAG_NUMBER */
|
|
|
|
{1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1}, /* TAG_STRING */
|
2000-03-28 00:10:21 +04:00
|
|
|
{0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1}, /* TAG_TABLE */
|
2000-03-30 00:19:20 +04:00
|
|
|
{1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0}, /* TAG_LCLOSURE */
|
|
|
|
{1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0}, /* TAG_CCLOSURE */
|
2000-03-28 00:08:02 +04:00
|
|
|
{1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1} /* TAG_NIL */
|
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-03-20 22:14:54 +03:00
|
|
|
return (t > TAG_NIL) ? 1 : 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;
|
|
|
|
for (i=0; i<IM_N; i++)
|
2000-03-10 21:37:44 +03:00
|
|
|
ttype(luaT_getim(L, tag, i)) = TAG_NIL;
|
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-03-20 22:14:54 +03:00
|
|
|
L->last_tag = NUM_TAGS-1;
|
2000-05-24 17:54:49 +04:00
|
|
|
luaM_growvector(L, L->IMtable, 0, NUM_TAGS, struct IM, "", MAX_INT);
|
2000-03-20 22:14:54 +03:00
|
|
|
for (t=0; t<=L->last_tag; t++)
|
1999-11-22 16:12:07 +03:00
|
|
|
init_entry(L, t);
|
1997-11-04 18:27:53 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
int lua_newtag (lua_State *L) {
|
2000-03-20 22:14:54 +03:00
|
|
|
++L->last_tag;
|
2000-05-24 17:54:49 +04:00
|
|
|
luaM_growvector(L, L->IMtable, L->last_tag, 1, struct IM,
|
|
|
|
"tag table overflow", MAX_INT);
|
1999-11-22 16:12:07 +03:00
|
|
|
init_entry(L, L->last_tag);
|
1997-11-19 20:29:23 +03:00
|
|
|
return L->last_tag;
|
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-03-20 22:14:54 +03:00
|
|
|
if (!(0 <= tag && tag <= L->last_tag))
|
1999-11-22 16:12:07 +03:00
|
|
|
luaL_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-03-20 22:14:54 +03:00
|
|
|
if (!(NUM_TAGS <= tag && tag <= L->last_tag))
|
1999-11-22 16:12:07 +03:00
|
|
|
luaL_verror(L, "tag %d was not created by `newtag'", tag);
|
1997-09-16 23:25:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
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);
|
1997-12-11 20:21:11 +03:00
|
|
|
for (e=0; e<IM_N; e++) {
|
1999-01-15 16:11:57 +03:00
|
|
|
if (luaT_validevent(tagto, e))
|
1999-11-22 16:12:07 +03:00
|
|
|
*luaT_getim(L, tagto, e) = *luaT_getim(L, tagfrom, e);
|
1997-12-11 20:21:11 +03:00
|
|
|
}
|
|
|
|
return tagto;
|
|
|
|
}
|
|
|
|
|
1997-09-16 23:25:59 +04:00
|
|
|
|
2000-03-20 22:14:54 +03:00
|
|
|
int luaT_effectivetag (lua_State *L, const TObject *o) {
|
2000-03-30 00:19:20 +04:00
|
|
|
lua_Type t = ttype(o);
|
|
|
|
switch (t) {
|
2000-03-10 21:37:44 +03:00
|
|
|
case TAG_USERDATA: {
|
1997-10-24 21:17:24 +04:00
|
|
|
int tag = o->value.ts->u.d.tag;
|
2000-03-20 22:14:54 +03:00
|
|
|
return (tag > L->last_tag) ? TAG_USERDATA : tag; /* deprecated test */
|
1997-10-24 21:17:24 +04:00
|
|
|
}
|
2000-03-30 00:19:20 +04:00
|
|
|
case TAG_TABLE: return o->value.a->htag;
|
|
|
|
default: return t;
|
1997-09-16 23:25:59 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
const TObject *luaT_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);
|
1999-01-15 16:11:57 +03:00
|
|
|
if (luaT_validevent(t, e))
|
1999-11-22 16:12:07 +03:00
|
|
|
return luaT_getim(L, t,e);
|
1997-09-16 23:25:59 +04:00
|
|
|
else
|
1997-11-03 23:45:23 +03:00
|
|
|
return &luaO_nilobject;
|
1997-09-16 23:25:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
void luaT_settagmethod (lua_State *L, int t, const char *event, TObject *func) {
|
1999-05-21 23:41:49 +04:00
|
|
|
TObject temp;
|
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);
|
1999-01-15 16:11:57 +03:00
|
|
|
if (!luaT_validevent(t, e))
|
2000-03-03 17:58:26 +03:00
|
|
|
luaL_verror(L, "cannot change `%.20s' tag method for type `%.20s'%.20s",
|
2000-03-20 22:14:54 +03:00
|
|
|
luaT_eventname[e], luaO_typenames[t],
|
2000-03-28 00:10:21 +04:00
|
|
|
(t == TAG_TABLE || t == TAG_USERDATA) ? " with default tag"
|
1998-12-23 17:06:57 +03:00
|
|
|
: "");
|
1999-05-21 23:41:49 +04:00
|
|
|
temp = *func;
|
1999-11-22 16:12:07 +03:00
|
|
|
*func = *luaT_getim(L, t,e);
|
|
|
|
*luaT_getim(L, t, e) = temp;
|
1997-09-16 23:25:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-02-22 21:12:46 +03:00
|
|
|
const char *luaT_travtagmethods (lua_State *L,
|
|
|
|
int (*fn)(lua_State *, 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;
|
2000-03-20 22:14:54 +03:00
|
|
|
for (t=0; t<=L->last_tag; t++)
|
1999-11-22 16:12:07 +03:00
|
|
|
if (fn(L, luaT_getim(L, t,e)))
|
1997-09-16 23:25:59 +04:00
|
|
|
return luaT_eventname[e];
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|