lua/ltm.c

69 lines
1.5 KiB
C
Raw Normal View History

1997-09-17 03:25:59 +08:00
/*
2002-04-30 21:01:48 +08:00
** $Id: ltm.c,v 1.89 2002/04/05 18:54:31 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"
1997-09-17 03:25:59 +08:00
#include "lobject.h"
#include "lstate.h"
2001-01-26 00:45:36 +08:00
#include "lstring.h"
#include "ltable.h"
1997-09-17 03:25:59 +08:00
#include "ltm.h"
2001-12-06 04:15:18 +08:00
const char *const luaT_typenames[] = {
"nil", "number", "string", "boolean", "table",
"userdata", "userdata", "function"
1997-09-17 03:25:59 +08:00
};
void luaT_init (lua_State *L) {
2001-12-06 04:15:18 +08:00
static const char *const luaT_eventname[] = { /* ORDER TM */
2002-03-19 04:24:14 +08:00
"__gettable", "__settable", "__index",
"__gc", "__weakmode",
"__add", "__sub", "__mul", "__div",
"__pow", "__unm", "__lt", "__concat",
"__call"
2001-01-26 00:45:36 +08:00
};
int i;
2001-12-06 04:15:18 +08:00
for (i=0; i<TM_N; i++) {
G(L)->tmname[i] = luaS_new(L, luaT_eventname[i]);
2002-04-30 21:01:48 +08:00
luaS_fix(G(L)->tmname[i]); /* never collect these names */
2001-01-26 00:45:36 +08:00
}
1997-09-17 03:25:59 +08:00
}
/*
** function to be used with macro "fasttm": optimized for absence of
** tag methods
*/
2001-12-06 04:15:18 +08:00
const TObject *luaT_gettm (Table *events, TMS event, TString *ename) {
const TObject *tm = luaH_getstr(events, ename);
if (ttype(tm) == LUA_TNIL) { /* no tag method? */
events->flags |= (1<<event); /* cache this fact */
return NULL;
1997-09-17 03:25:59 +08:00
}
2001-12-06 04:15:18 +08:00
else return tm;
1997-09-17 03:25:59 +08:00
}
2001-12-06 04:15:18 +08:00
const TObject *luaT_gettmbyobj (lua_State *L, const TObject *o, TMS event) {
TString *ename = G(L)->tmname[event];
2001-12-06 04:15:18 +08:00
switch (ttype(o)) {
2001-01-26 00:45:36 +08:00
case LUA_TTABLE:
2002-01-31 01:26:44 +08:00
return luaH_getstr(hvalue(o)->metatable, ename);
2001-12-06 04:15:18 +08:00
case LUA_TUSERDATA:
2002-01-31 01:26:44 +08:00
return luaH_getstr(uvalue(o)->uv.metatable, ename);
default:
return &luaO_nilobject;
}
1997-09-17 03:25:59 +08:00
}