mirror of
https://codeberg.org/1414codeforge/lua-osx.git
synced 2025-04-05 22:01:04 +02:00
[osx.c] Add directory __tostring() metamethod.
This commit is contained in:
parent
672f94e73d
commit
0f893a4682
21
osx.c
21
osx.c
@ -276,6 +276,26 @@ static int os_dir_open(lua_State *L)
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int os_dir_tostring(lua_State *L)
|
||||||
|
{
|
||||||
|
df_os_dir *dir = luaL_checkudata(L, 1, DF_LUA_DIRHANDLE);
|
||||||
|
|
||||||
|
if (dir->closeflag) {
|
||||||
|
lua_pushliteral(L, "directory (closed)");
|
||||||
|
} else {
|
||||||
|
df_os_dirhn hn = dir->hn;
|
||||||
|
void *p;
|
||||||
|
|
||||||
|
#ifdef _WIN32
|
||||||
|
p = (void *) hn->dirh;
|
||||||
|
#else
|
||||||
|
p = hn;
|
||||||
|
#endif
|
||||||
|
lua_pushfstring(L, "directory (%p)", p);
|
||||||
|
}
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
static int os_dir_close(lua_State *L)
|
static int os_dir_close(lua_State *L)
|
||||||
{
|
{
|
||||||
df_os_dir *dir = todir(L);
|
df_os_dir *dir = todir(L);
|
||||||
@ -624,6 +644,7 @@ static void createmeta(lua_State *L)
|
|||||||
{
|
{
|
||||||
static const luaL_Reg metameth[] = {
|
static const luaL_Reg metameth[] = {
|
||||||
{ "__index", NULL }, // placeholder
|
{ "__index", NULL }, // placeholder
|
||||||
|
{ "__tostring", os_dir_tostring },
|
||||||
{ "__gc", os_dir_gc },
|
{ "__gc", os_dir_gc },
|
||||||
#if LUA_VERSION_NUM >= 504
|
#if LUA_VERSION_NUM >= 504
|
||||||
{ "__close", os_dir_gc},
|
{ "__close", os_dir_gc},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user