2013-11-03 03:49:42 +00:00
|
|
|
/*
|
|
|
|
Copyright (c) 2013 Microsoft Corporation. All rights reserved.
|
|
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
|
|
|
|
Author: Leonardo de Moura
|
|
|
|
*/
|
|
|
|
#ifdef LEAN_USE_LUA
|
|
|
|
#include <lua.hpp>
|
|
|
|
#include "util/debug.h"
|
|
|
|
#include "util/name.h"
|
2013-11-03 20:16:23 +00:00
|
|
|
#include "bindings/lua/util.h"
|
2013-11-03 03:49:42 +00:00
|
|
|
|
|
|
|
namespace lean {
|
|
|
|
static int name_gc(lua_State * L);
|
|
|
|
static int name_tostring(lua_State * L);
|
|
|
|
static int name_eq(lua_State * L);
|
|
|
|
static int name_lt(lua_State * L);
|
|
|
|
|
|
|
|
static const struct luaL_Reg name_m[] = {
|
2013-11-03 22:42:54 +00:00
|
|
|
{"__gc", name_gc}, // never throws
|
|
|
|
{"__tostring", safe_function<name_tostring>},
|
|
|
|
{"__eq", safe_function<name_eq>},
|
|
|
|
{"__lt", safe_function<name_lt>},
|
|
|
|
{0, 0}
|
2013-11-03 03:49:42 +00:00
|
|
|
};
|
|
|
|
|
2013-11-05 02:43:41 +00:00
|
|
|
static name const & to_name(lua_State * L, unsigned idx) {
|
|
|
|
return *static_cast<name*>(luaL_checkudata(L, idx, "name.mt"));
|
|
|
|
}
|
|
|
|
|
2013-11-03 03:49:42 +00:00
|
|
|
static int mk_name(lua_State * L) {
|
|
|
|
int nargs = lua_gettop(L);
|
2013-11-05 02:43:41 +00:00
|
|
|
name r;
|
|
|
|
for (int i = 1; i <= nargs; i++) {
|
|
|
|
if (lua_isnil(L, i)) {
|
|
|
|
// skip
|
|
|
|
} else if (lua_isuserdata(L, i)) {
|
|
|
|
r = r + to_name(L, i);
|
|
|
|
} else if (lua_isstring(L, i)) {
|
|
|
|
r = name(r, luaL_checkstring(L, i));
|
2013-11-03 03:49:42 +00:00
|
|
|
} else {
|
2013-11-05 02:43:41 +00:00
|
|
|
r = name(r, luaL_checkinteger(L, i));
|
2013-11-03 03:49:42 +00:00
|
|
|
}
|
|
|
|
}
|
2013-11-05 02:43:41 +00:00
|
|
|
void * mem = lua_newuserdata(L, sizeof(name));
|
|
|
|
new (mem) name(r);
|
2013-11-03 03:49:42 +00:00
|
|
|
luaL_getmetatable(L, "name.mt");
|
|
|
|
lua_setmetatable(L, -2);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int name_gc(lua_State * L) {
|
2013-11-05 02:43:41 +00:00
|
|
|
to_name(L, 1).~name();
|
2013-11-03 03:49:42 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int name_tostring(lua_State * L) {
|
2013-11-05 02:43:41 +00:00
|
|
|
lua_pushfstring(L, to_name(L, 1).to_string().c_str());
|
2013-11-03 03:49:42 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int name_eq(lua_State * L) {
|
2013-11-05 02:43:41 +00:00
|
|
|
lua_pushboolean(L, to_name(L, 1) == to_name(L, 2));
|
2013-11-03 03:49:42 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int name_lt(lua_State * L) {
|
2013-11-05 02:43:41 +00:00
|
|
|
lua_pushboolean(L, to_name(L, 1) < to_name(L, 2));
|
2013-11-03 03:49:42 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:54:51 +00:00
|
|
|
void open_name(lua_State * L) {
|
2013-11-03 03:49:42 +00:00
|
|
|
luaL_newmetatable(L, "name.mt");
|
2013-11-03 20:16:23 +00:00
|
|
|
setfuncs(L, name_m, 0);
|
2013-11-03 03:49:42 +00:00
|
|
|
|
2013-11-03 22:42:54 +00:00
|
|
|
lua_pushcfunction(L, safe_function<mk_name>);
|
2013-11-03 03:49:42 +00:00
|
|
|
lua_setglobal(L, "name");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|