lua/ltm.c

197 lines
4.9 KiB
C
Raw Normal View History

1997-09-16 23:25:59 +04:00
/*
** $Id: ltm.c,v 1.72 2001/06/06 18:00:19 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>
2001-03-26 18:31:49 +04:00
#define LUA_PRIVATE
#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"
#include "lstate.h"
2001-01-25 19:45:36 +03:00
#include "lstring.h"
#include "ltable.h"
1997-09-16 23:25:59 +04:00
#include "ltm.h"
2001-02-23 20:17:25 +03:00
const l_char *const luaT_eventname[] = { /* ORDER TM */
l_s("gettable"), l_s("settable"), l_s("index"), l_s("getglobal"), l_s("setglobal"), l_s("add"), l_s("sub"),
l_s("mul"), l_s("div"), l_s("pow"), l_s("unm"), l_s("lt"), l_s("concat"), l_s("gc"), l_s("function"),
l_s("le"), l_s("gt"), l_s("ge"), /* deprecated options!! */
2000-03-20 22:14:54 +03:00
NULL
1997-09-16 23:25:59 +04:00
};
2001-02-23 20:17:25 +03:00
static int findevent (const l_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 */
}
2001-02-23 20:17:25 +03:00
static int luaI_checkevent (lua_State *L, const l_char *name, int t) {
int e = findevent(name);
if (e >= TM_N)
2001-02-23 20:17:25 +03:00
luaO_verror(L, l_s("event `%.50s' is deprecated"), name);
if (e == TM_GC && t == LUA_TTABLE)
2001-02-23 20:17:25 +03:00
luaO_verror(L, l_s("event `gc' for tables is deprecated"));
1997-09-16 23:25:59 +04:00
if (e < 0)
2001-02-23 20:17:25 +03:00
luaO_verror(L, l_s("`%.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
2001-02-22 21:59:59 +03:00
* `placeholder' for default fallbacks
1997-09-16 23:25:59 +04:00
*/
/* ORDER LUA_T, ORDER TM */
2001-02-20 21:15:33 +03:00
static const lu_byte 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
};
int luaT_validevent (int t, int e) { /* ORDER LUA_T */
return (t >= NUM_TAGS) ? 1 : (int)luaT_validevents[t][e];
1997-09-16 23:25:59 +04:00
}
void luaT_init (lua_State *L) {
2001-02-23 20:17:25 +03:00
static const l_char *const typenames[NUM_TAGS] = {
l_s("userdata"), l_s("nil"), l_s("number"), l_s("string"), l_s("table"), l_s("function")
2001-01-25 19:45:36 +03:00
};
int i;
for (i=0; i<NUM_TAGS; i++)
luaT_newtag(L, typenames[i], i);
}
2001-02-23 20:17:25 +03:00
int luaT_newtag (lua_State *L, const l_char *name, int basictype) {
int tag;
2001-01-25 19:45:36 +03:00
int i;
TString *ts;
luaM_growvector(L, G(L)->TMtable, G(L)->ntag, G(L)->sizeTM, struct TM,
2001-02-23 20:17:25 +03:00
MAX_INT, l_s("tag table overflow"));
2001-01-25 19:45:36 +03:00
tag = G(L)->ntag;
if (name == NULL)
ts = NULL;
else {
TObject *v;
ts = luaS_new(L, name);
v = luaH_setstr(L, G(L)->type2tag, ts);
if (ttype(v) != LUA_TNIL) return LUA_TNONE; /* invalid name */
setnvalue(v, tag);
}
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++;
return tag;
1997-09-16 23:25:59 +04:00
}
static void checktag (lua_State *L, int tag) {
if (!(0 <= tag && tag < G(L)->ntag))
2001-02-23 20:17:25 +03:00
luaO_verror(L, l_s("%d is not a valid tag"), 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) {
int e;
2001-03-02 20:27:50 +03:00
lua_lock(L);
checktag(L, tagto);
checktag(L, tagfrom);
for (e=0; e<TM_N; e++) {
1999-01-15 16:11:57 +03:00
if (luaT_validevent(tagto, e))
luaT_gettm(G(L), tagto, e) = luaT_gettm(G(L), tagfrom, e);
}
2001-03-02 20:27:50 +03:00
lua_unlock(L);
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);
switch (t) {
case LUA_TUSERDATA: return uvalue(o)->uv.tag;
2000-10-05 16:14:08 +04:00
case LUA_TTABLE: return hvalue(o)->htag;
default: return t;
1997-09-16 23:25:59 +04:00
}
}
2001-02-23 20:17:25 +03:00
const l_char *luaT_typename (global_State *G, const TObject *o) {
2001-01-25 19:45:36 +03:00
int t = ttype(o);
int tag;
TString *ts;
switch (t) {
case LUA_TUSERDATA:
tag = uvalue(o)->uv.tag;
2001-01-25 19:45:36 +03: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;
return getstr(ts);
2001-01-25 19:45:36 +03:00
}
2001-02-23 20:17:25 +03:00
LUA_API void lua_gettagmethod (lua_State *L, int t, const l_char *event) {
int e;
2001-03-02 20:27:50 +03:00
lua_lock(L);
2000-03-28 00:08:02 +04:00
e = luaI_checkevent(L, event, t);
checktag(L, t);
if (luaT_validevent(t, e) && luaT_gettm(G(L), t, e)) {
setclvalue(L->top, luaT_gettm(G(L), t, e));
}
1997-09-16 23:25:59 +04:00
else
setnilvalue(L->top);
2000-09-11 23:45:27 +04:00
incr_top;
2001-03-02 20:27:50 +03:00
lua_unlock(L);
1997-09-16 23:25:59 +04:00
}
2001-02-23 20:17:25 +03:00
LUA_API void lua_settagmethod (lua_State *L, int t, const l_char *event) {
int e;
2001-03-02 20:27:50 +03:00
lua_lock(L);
e = luaI_checkevent(L, event, t);
checktag(L, t);
1999-01-15 16:11:57 +03:00
if (!luaT_validevent(t, e))
2001-02-23 20:17:25 +03:00
luaO_verror(L, l_s("cannot change `%.20s' tag method for type `%.20s'%.20s"),
2001-01-25 19:45:36 +03:00
luaT_eventname[e], basictypename(G(L), t),
(t == LUA_TTABLE || t == LUA_TUSERDATA) ?
2001-02-23 20:17:25 +03:00
l_s(" with default tag") : l_s(""));
switch (ttype(L->top - 1)) {
case LUA_TNIL:
luaT_gettm(G(L), t, e) = NULL;
break;
case LUA_TFUNCTION:
luaT_gettm(G(L), t, e) = clvalue(L->top - 1);
break;
default:
2001-02-23 20:17:25 +03:00
luaD_error(L, l_s("tag method must be a function (or nil)"));
}
L->top--;
2001-03-02 20:27:50 +03:00
lua_unlock(L);
1997-09-16 23:25:59 +04:00
}