1997-09-16 12:25:59 -07:00
|
|
|
/*
|
2001-11-28 12:13:13 -08:00
|
|
|
** $Id: ltm.c,v 1.80 2001/10/11 21:41:21 roberto Exp $
|
1997-09-16 12:25:59 -07:00
|
|
|
** Tag methods
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2000-06-12 06:52:05 -07:00
|
|
|
#include "lua.h"
|
|
|
|
|
2000-09-11 12:45:27 -07:00
|
|
|
#include "ldo.h"
|
1997-09-16 12:25:59 -07:00
|
|
|
#include "lmem.h"
|
|
|
|
#include "lobject.h"
|
1997-11-19 09:29:23 -08:00
|
|
|
#include "lstate.h"
|
2001-01-25 08:45:36 -08:00
|
|
|
#include "lstring.h"
|
|
|
|
#include "ltable.h"
|
1997-09-16 12:25:59 -07:00
|
|
|
#include "ltm.h"
|
|
|
|
|
|
|
|
|
2001-11-28 12:13:13 -08:00
|
|
|
const char *const luaT_eventname[] = { /* ORDER TM */
|
|
|
|
"gettable", "settable", "index", "getglobal",
|
|
|
|
"setglobal", "add", "sub", "mul", "div",
|
|
|
|
"pow", "unm", "lt", "concat", "gc",
|
|
|
|
"function",
|
2000-03-20 11:14:54 -08:00
|
|
|
NULL
|
1997-09-16 12:25:59 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2001-11-28 12:13:13 -08:00
|
|
|
static int findevent (const char *name) {
|
2000-09-11 13:29:27 -07:00
|
|
|
int i;
|
|
|
|
for (i=0; luaT_eventname[i]; i++)
|
|
|
|
if (strcmp(luaT_eventname[i], name) == 0)
|
|
|
|
return i;
|
|
|
|
return -1; /* name not found */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-28 12:13:13 -08:00
|
|
|
static int luaI_checkevent (lua_State *L, const char *name) {
|
2000-09-11 13:29:27 -07:00
|
|
|
int e = findevent(name);
|
1997-09-16 12:25:59 -07:00
|
|
|
if (e < 0)
|
2001-11-28 12:13:13 -08:00
|
|
|
luaO_verror(L, "`%.50s' is not a valid event name", name);
|
1997-09-16 12:25:59 -07:00
|
|
|
return e;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2000-10-05 05:14:08 -07:00
|
|
|
/* events in LUA_TNIL are all allowed, since this is used as a
|
2001-02-22 10:59:59 -08:00
|
|
|
* `placeholder' for default fallbacks
|
1997-09-16 12:25:59 -07:00
|
|
|
*/
|
2000-10-05 06:00:17 -07:00
|
|
|
/* ORDER LUA_T, ORDER TM */
|
2001-02-20 10:15:33 -08:00
|
|
|
static const lu_byte luaT_validevents[NUM_TAGS][TM_N] = {
|
2000-10-05 05:14:08 -07: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 12:25:59 -07:00
|
|
|
};
|
|
|
|
|
2001-10-02 09:43:54 -07:00
|
|
|
static int luaT_validevent (int t, int e) { /* ORDER LUA_T */
|
2001-08-31 12:46:07 -07:00
|
|
|
return (t >= NUM_TAGS) ? 1 : cast(int, luaT_validevents[t][e]);
|
1997-09-16 12:25:59 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-22 05:12:07 -08:00
|
|
|
void luaT_init (lua_State *L) {
|
2001-11-28 12:13:13 -08:00
|
|
|
static const char *const typenames[NUM_TAGS] = {
|
|
|
|
"userdata", "nil", "number", "string",
|
|
|
|
"table", "function"
|
2001-01-25 08:45:36 -08:00
|
|
|
};
|
|
|
|
int i;
|
|
|
|
for (i=0; i<NUM_TAGS; i++)
|
|
|
|
luaT_newtag(L, typenames[i], i);
|
1997-11-04 07:27:53 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-28 12:13:13 -08:00
|
|
|
int luaT_newtag (lua_State *L, const char *name, int basictype) {
|
2001-01-24 07:45:33 -08:00
|
|
|
int tag;
|
2001-01-25 08:45:36 -08:00
|
|
|
int i;
|
2001-07-23 12:56:00 -07:00
|
|
|
TString *ts = NULL;
|
2001-01-19 05:20:30 -08:00
|
|
|
luaM_growvector(L, G(L)->TMtable, G(L)->ntag, G(L)->sizeTM, struct TM,
|
2001-11-28 12:13:13 -08:00
|
|
|
MAX_INT, "tag table overflow");
|
2001-01-25 08:45:36 -08:00
|
|
|
tag = G(L)->ntag;
|
2001-07-23 12:56:00 -07:00
|
|
|
if (name) {
|
2001-08-30 13:56:43 -07:00
|
|
|
const TObject *v;
|
|
|
|
TObject otag;
|
2001-01-25 08:45:36 -08:00
|
|
|
ts = luaS_new(L, name);
|
2001-08-30 13:56:43 -07:00
|
|
|
v = luaH_getstr(G(L)->type2tag, ts);
|
2001-08-31 12:46:07 -07:00
|
|
|
if (ttype(v) == LUA_TNUMBER) return cast(int, nvalue(v));
|
2001-08-30 13:56:43 -07:00
|
|
|
setnvalue(&otag, tag);
|
|
|
|
luaH_setstr(L, G(L)->type2tag, ts, &otag);
|
2001-01-25 08:45:36 -08:00
|
|
|
}
|
|
|
|
for (i=0; i<TM_N; i++)
|
|
|
|
luaT_gettm(G(L), tag, i) = NULL;
|
|
|
|
G(L)->TMtable[tag].collected = NULL;
|
|
|
|
G(L)->TMtable[tag].name = ts;
|
|
|
|
G(L)->TMtable[tag].basictype = basictype;
|
|
|
|
G(L)->ntag++;
|
2001-01-24 07:45:33 -08:00
|
|
|
return tag;
|
1997-09-16 12:25:59 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-22 05:12:07 -08:00
|
|
|
static void checktag (lua_State *L, int tag) {
|
2001-01-19 05:20:30 -08:00
|
|
|
if (!(0 <= tag && tag < G(L)->ntag))
|
2001-11-28 12:13:13 -08:00
|
|
|
luaO_verror(L, "%d is not a valid tag", tag);
|
1997-09-16 12:25:59 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-10-05 05:14:08 -07:00
|
|
|
int luaT_tag (const TObject *o) {
|
|
|
|
int t = ttype(o);
|
2000-03-29 12:19:20 -08:00
|
|
|
switch (t) {
|
2001-06-15 13:36:57 -07:00
|
|
|
case LUA_TUSERDATA: return uvalue(o)->uv.tag;
|
2000-10-05 05:14:08 -07:00
|
|
|
case LUA_TTABLE: return hvalue(o)->htag;
|
|
|
|
default: return t;
|
1997-09-16 12:25:59 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-28 12:13:13 -08:00
|
|
|
const char *luaT_typename (global_State *G, const TObject *o) {
|
2001-01-25 08:45:36 -08:00
|
|
|
int t = ttype(o);
|
|
|
|
int tag;
|
|
|
|
TString *ts;
|
|
|
|
switch (t) {
|
|
|
|
case LUA_TUSERDATA:
|
2001-06-15 13:36:57 -07:00
|
|
|
tag = uvalue(o)->uv.tag;
|
2001-01-25 08:45:36 -08:00
|
|
|
break;
|
|
|
|
case LUA_TTABLE:
|
|
|
|
tag = hvalue(o)->htag;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
tag = t;
|
|
|
|
}
|
|
|
|
ts = G->TMtable[tag].name;
|
|
|
|
if (ts == NULL)
|
|
|
|
ts = G->TMtable[t].name;
|
2001-02-09 12:22:29 -08:00
|
|
|
return getstr(ts);
|
2001-01-25 08:45:36 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-28 12:13:13 -08:00
|
|
|
LUA_API void lua_gettagmethod (lua_State *L, int t, const char *event) {
|
2000-02-22 10:12:46 -08:00
|
|
|
int e;
|
2001-03-02 09:27:50 -08:00
|
|
|
lua_lock(L);
|
2001-07-24 15:39:34 -07:00
|
|
|
e = luaI_checkevent(L, event);
|
1999-11-22 05:12:07 -08:00
|
|
|
checktag(L, t);
|
2001-01-19 05:20:30 -08:00
|
|
|
if (luaT_validevent(t, e) && luaT_gettm(G(L), t, e)) {
|
|
|
|
setclvalue(L->top, luaT_gettm(G(L), t, e));
|
2000-10-05 06:00:17 -07:00
|
|
|
}
|
1997-09-16 12:25:59 -07:00
|
|
|
else
|
2001-01-18 07:59:09 -08:00
|
|
|
setnilvalue(L->top);
|
2000-09-11 12:45:27 -07:00
|
|
|
incr_top;
|
2001-03-02 09:27:50 -08:00
|
|
|
lua_unlock(L);
|
1997-09-16 12:25:59 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-28 12:13:13 -08:00
|
|
|
LUA_API void lua_settagmethod (lua_State *L, int t, const char *event) {
|
2001-01-24 07:45:33 -08:00
|
|
|
int e;
|
2001-03-02 09:27:50 -08:00
|
|
|
lua_lock(L);
|
2001-07-24 15:39:34 -07:00
|
|
|
e = luaI_checkevent(L, event);
|
1999-11-22 05:12:07 -08:00
|
|
|
checktag(L, t);
|
1999-01-15 05:11:57 -08:00
|
|
|
if (!luaT_validevent(t, e))
|
2001-11-28 12:13:13 -08:00
|
|
|
luaO_verror(L, "cannot change `%.20s' tag method for type `%.20s'%.20s",
|
2001-07-12 11:11:58 -07:00
|
|
|
luaT_eventname[e], typenamebytag(G(L), t),
|
2000-10-05 06:00:17 -07:00
|
|
|
(t == LUA_TTABLE || t == LUA_TUSERDATA) ?
|
2001-11-28 12:13:13 -08:00
|
|
|
" with default tag" : "");
|
2000-10-05 06:00:17 -07:00
|
|
|
switch (ttype(L->top - 1)) {
|
|
|
|
case LUA_TNIL:
|
2001-01-19 05:20:30 -08:00
|
|
|
luaT_gettm(G(L), t, e) = NULL;
|
2000-10-05 06:00:17 -07:00
|
|
|
break;
|
|
|
|
case LUA_TFUNCTION:
|
2001-01-19 05:20:30 -08:00
|
|
|
luaT_gettm(G(L), t, e) = clvalue(L->top - 1);
|
2000-10-05 06:00:17 -07:00
|
|
|
break;
|
|
|
|
default:
|
2001-11-28 12:13:13 -08:00
|
|
|
luaD_error(L, "tag method must be a function (or nil)");
|
2000-10-05 06:00:17 -07:00
|
|
|
}
|
2000-10-31 05:10:24 -08:00
|
|
|
L->top--;
|
2001-03-02 09:27:50 -08:00
|
|
|
lua_unlock(L);
|
1997-09-16 12:25:59 -07:00
|
|
|
}
|
|
|
|
|