lua/ltm.c

142 lines
3.8 KiB
C
Raw Normal View History

1997-09-16 23:25:59 +04:00
/*
2013-04-29 20:56:50 +04:00
** $Id: ltm.c,v 2.18 2013/04/26 13:07:53 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"
2013-04-29 20:56:50 +04:00
#include "ldebug.h"
#include "ldo.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"
#include "lvm.h"
1997-09-16 23:25:59 +04:00
static const char udatatypename[] = "userdata";
1997-09-16 23:25:59 +04:00
2011-02-28 20:32:10 +03:00
LUAI_DDEF const char *const luaT_typenames_[LUA_TOTALTAGS] = {
"no value",
"nil", "boolean", udatatypename, "number",
"string", "table", "function", udatatypename, "thread",
2011-02-28 20:32:10 +03:00
"proto", "upval" /* these last two cases are used for tests only */
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", "__len", "__eq",
2013-04-26 17:08:29 +04:00
"__add", "__sub", "__mul", "__div", "__idiv", "__mod",
"__pow", "__unm", "__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? */
2005-12-22 19:19:56 +03:00
events->flags |= cast_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;
2013-04-12 23:07:09 +04:00
switch (ttnov(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:
2013-04-12 23:07:09 +04:00
mt = G(L)->mt[ttnov(o)];
}
2006-01-10 15:50:00 +03:00
return (mt ? luaH_getstr(mt, G(L)->tmname[event]) : luaO_nilobject);
1997-09-16 23:25:59 +04:00
}
void luaT_callTM (lua_State *L, const TValue *f, const TValue *p1,
const TValue *p2, TValue *p3, int hasres) {
ptrdiff_t result = savestack(L, p3);
setobj2s(L, L->top++, f); /* push function */
setobj2s(L, L->top++, p1); /* 1st argument */
setobj2s(L, L->top++, p2); /* 2nd argument */
if (!hasres) /* no result? 'p3' is third argument */
setobj2s(L, L->top++, p3); /* 3rd argument */
/* metamethod may yield only when called from Lua code */
luaD_call(L, L->top - (4 - hasres), hasres, isLua(L->ci));
if (hasres) { /* if has result, move it to its place */
p3 = restorestack(L, result);
setobjs2s(L, p3, --L->top);
}
}
int luaT_callbinTM (lua_State *L, const TValue *p1, const TValue *p2,
StkId res, TMS event) {
const TValue *tm = luaT_gettmbyobj(L, p1, event); /* try first operand */
if (ttisnil(tm))
tm = luaT_gettmbyobj(L, p2, event); /* try second operand */
if (ttisnil(tm)) return 0;
luaT_callTM(L, tm, p1, p2, res, 1);
return 1;
}
2013-04-29 20:56:50 +04:00
void luaT_trybinTM (lua_State *L, const TValue *p1, const TValue *p2,
StkId res, TMS event) {
if (!luaT_callbinTM(L, p1, p2, res, event)) {
if (event == TM_CONCAT)
luaG_concaterror(L, p1, p2);
else
luaG_aritherror(L, p1, p2);
}
}
const TValue *luaT_getequalTM (lua_State *L, Table *mt1, Table *mt2) {
const TValue *tm1 = fasttm(L, mt1, TM_EQ);
const TValue *tm2;
if (tm1 == NULL) return NULL; /* no metamethod */
if (mt1 == mt2) return tm1; /* same metatables => same metamethods */
tm2 = fasttm(L, mt2, TM_EQ);
if (tm2 == NULL) return NULL; /* no metamethod */
if (luaV_rawequalobj(tm1, tm2)) /* same metamethods? */
return tm1;
return NULL;
}
int luaT_callorderTM (lua_State *L, const TValue *p1, const TValue *p2,
TMS event) {
if (!luaT_callbinTM(L, p1, p2, L->top, event))
return -1; /* no metamethod */
else
return !l_isfalse(L->top);
}