-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
72420ef
commit 7a8fe67
Showing
1 changed file
with
129 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,129 @@ | ||
// SPDX-License-Identifier: BSD-2-Clause | ||
// Copyright CM4all GmbH | ||
// author: Max Kellermann <mk@cm4all.com> | ||
|
||
#pragma once | ||
|
||
#include "Assert.hxx" | ||
#include "Close.hxx" | ||
#include "ForEach.hxx" | ||
#include "Util.hxx" | ||
|
||
#include <cstddef> | ||
|
||
namespace Lua { | ||
|
||
/** | ||
* A unique pointer to be used as LUA_REGISTRYINDEX key. | ||
*/ | ||
inline std::byte auto_close_table; | ||
|
||
inline void | ||
NewTableWithMode(lua_State *L, const char *mode) | ||
{ | ||
const ScopeCheckStack check_stack{L, 1}; | ||
|
||
lua_newtable(L); | ||
lua_newtable(L); | ||
SetTable(L, RelativeStackIndex{-1}, "__mode", mode); | ||
lua_setmetatable(L, -2); | ||
} | ||
|
||
inline void | ||
NewWeakKeyTable(lua_State *L) | ||
{ | ||
NewTableWithMode(L, "k"); | ||
} | ||
|
||
inline void | ||
PushAutoCloseTable(lua_State *L) | ||
{ | ||
const ScopeCheckStack check_stack{L, 1}; | ||
|
||
GetTable(L, LUA_REGISTRYINDEX, LightUserData{&auto_close_table}); | ||
} | ||
|
||
inline void | ||
PushOrMakeAutoCloseTable(lua_State *L) | ||
{ | ||
const ScopeCheckStack check_stack{L, 1}; | ||
|
||
PushAutoCloseTable(L); | ||
|
||
if (lua_isnil(L, -1)) { | ||
lua_pop(L, 1); | ||
|
||
NewWeakKeyTable(L); | ||
SetTable(L, LUA_REGISTRYINDEX, | ||
LightUserData{&auto_close_table}, | ||
RelativeStackIndex{-1}); | ||
} | ||
} | ||
|
||
/** | ||
* Schedule a value to be auto-closed by Close(). | ||
* | ||
* @param key the registry key where the object will be registered | ||
* @param value the object to be closed; only a weak reference will be | ||
* stored | ||
*/ | ||
template<typename K, typename V> | ||
inline void | ||
AddAutoClose(lua_State *L, K &&key, V &&value) | ||
{ | ||
const ScopeCheckStack check_stack{L}; | ||
|
||
// Push(Registry[auto_close_table]) | ||
PushOrMakeAutoCloseTable(L); | ||
StackPushed(key); | ||
StackPushed(value); | ||
|
||
// Push(auto_close_table[key]) | ||
GetTable(L, RelativeStackIndex{-1}, key); | ||
if (lua_isnil(L, -1)) { | ||
lua_pop(L, 1); | ||
NewWeakKeyTable(L); | ||
SetTable(L, RelativeStackIndex{-2}, key, | ||
RelativeStackIndex{-1}); | ||
} | ||
|
||
StackPushed(value); | ||
|
||
// auto_close_table[key][value] = 1 | ||
SetTable(L, RelativeStackIndex{-1}, std::forward<V>(value), lua_Integer{1}); | ||
|
||
// pop auto_close_table[key], auto_close_table | ||
lua_pop(L, 2); | ||
} | ||
|
||
/** | ||
* Close all registered objects for the given key. | ||
*/ | ||
template<typename K> | ||
inline void | ||
AutoClose(lua_State *L, K &&key) | ||
{ | ||
const ScopeCheckStack check_stack{L}; | ||
|
||
PushAutoCloseTable(L); | ||
if (lua_isnil(L, -1)) { | ||
lua_pop(L, 1); | ||
return; | ||
} | ||
|
||
StackPushed(key); | ||
|
||
GetTable(L, RelativeStackIndex{-1}, std::forward<K>(key)); | ||
if (lua_isnil(L, -1)) { | ||
lua_pop(L, 2); | ||
return; | ||
} | ||
|
||
ForEach(L, RelativeStackIndex{-1}, [L](auto key_idx, auto){ | ||
Close(L, key_idx); | ||
}); | ||
|
||
lua_pop(L, 2); | ||
} | ||
|
||
} // namespace Lua |