lua/ltm.c

76 lines
1.6 KiB
C
Raw Normal View History

1997-09-16 23:25:59 +04:00
/*
2005-05-20 19:53:42 +04:00
** $Id: ltm.c,v 2.5 2005/05/05 15:34:03 roberto Exp roberto $
1997-09-16 23:25:59 +04:00
** Tag methods
** See Copyright Notice in lua.h
*/
#include <string.h>
2002-12-04 20:38:31 +03:00
#define ltm_c
#define LUA_CORE
2002-12-04 20:38:31 +03:00
#include "lua.h"
1997-09-16 23:25:59 +04:00
#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-12-05 23:15:18 +03:00
const char *const luaT_typenames[] = {
"nil", "boolean", "userdata", "number",
"string", "table", "function", "userdata", "thread",
"proto", "upval"
1997-09-16 23:25:59 +04:00
};
void luaT_init (lua_State *L) {
2001-12-05 23:15:18 +03:00
static const char *const luaT_eventname[] = { /* ORDER TM */
"__index", "__newindex",
"__gc", "__mode", "__eq",
2005-03-08 21:00:16 +03:00
"__add", "__sub", "__mul", "__div", "__mod",
2005-05-20 19:53:42 +04:00
"__pow", "__unm", "__len", "__lt", "__le",
"__concat", "__call"
2001-01-25 19:45:36 +03:00
};
int i;
2001-12-05 23:15:18 +03:00
for (i=0; i<TM_N; i++) {
G(L)->tmname[i] = luaS_new(L, luaT_eventname[i]);
2002-04-30 17:01:48 +04:00
luaS_fix(G(L)->tmname[i]); /* never collect these names */
2001-01-25 19:45:36 +03:00
}
1997-09-16 23:25:59 +04:00
}
/*
** function to be used with macro "fasttm": optimized for absence of
** tag methods
*/
const TValue *luaT_gettm (Table *events, TMS event, TString *ename) {
const TValue *tm = luaH_getstr(events, ename);
2002-08-06 21:06:56 +04:00
lua_assert(event <= TM_EQ);
2002-08-05 18:50:39 +04:00
if (ttisnil(tm)) { /* no tag method? */
events->flags |= cast(lu_byte, 1u<<event); /* cache this fact */
2001-12-05 23:15:18 +03:00
return NULL;
1997-09-16 23:25:59 +04:00
}
2001-12-05 23:15:18 +03:00
else return tm;
1997-09-16 23:25:59 +04:00
}
const TValue *luaT_gettmbyobj (lua_State *L, const TValue *o, TMS event) {
2003-12-01 21:22:56 +03:00
Table *mt;
2001-12-05 23:15:18 +03:00
switch (ttype(o)) {
2001-01-25 19:45:36 +03:00
case LUA_TTABLE:
2003-12-01 21:22:56 +03:00
mt = hvalue(o)->metatable;
break;
2001-12-05 23:15:18 +03:00
case LUA_TUSERDATA:
mt = uvalue(o)->metatable;
2003-12-01 21:22:56 +03:00
break;
default:
2005-05-05 19:34:03 +04:00
mt = G(L)->mt[ttype(o)];
}
2005-05-05 19:34:03 +04:00
return (mt ? luaH_getstr(mt, G(L)->tmname[event]) : &luaO_nilobject);
1997-09-16 23:25:59 +04:00
}