Skip to content

Commit

Permalink
Lua: Stability improvements on script reset
Browse files Browse the repository at this point in the history
  • Loading branch information
praydog committed Mar 16, 2024
1 parent 18e7b9e commit 2c44167
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 14 deletions.
8 changes: 5 additions & 3 deletions lua-api/lib/include/ScriptContext.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,10 @@ namespace uevr {
class ScriptContext : public std::enable_shared_from_this<ScriptContext> {
public:
static std::shared_ptr<ScriptContext> create(lua_State* l, UEVR_PluginInitializeParam* param = nullptr) {
return std::make_shared<ScriptContext>(l, param);
return std::shared_ptr<ScriptContext>(new ScriptContext(l, param));
}

ScriptContext(lua_State* l, UEVR_PluginInitializeParam* param = nullptr);

ScriptContext() = delete;
virtual ~ScriptContext();

int setup_bindings();
Expand Down Expand Up @@ -85,6 +84,9 @@ class ScriptContext : public std::enable_shared_from_this<ScriptContext> {
}

private:
// Private constructor to prevent direct instantiation
ScriptContext(lua_State* l, UEVR_PluginInitializeParam* param = nullptr);

std::vector<void*> m_callbacks_to_remove{};

sol::state_view m_lua;
Expand Down
27 changes: 17 additions & 10 deletions lua-api/lib/src/ScriptContext.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
namespace uevr {
class ScriptContexts {
public:
void add(std::shared_ptr<ScriptContext> ctx) {
void add(ScriptContext* ctx) {
std::scoped_lock _{mtx};

// Check if the context is already in the list
for (auto& c : list) {
for (ScriptContext* c : list) {
if (c == ctx) {
return;
}
Expand All @@ -24,29 +24,36 @@ class ScriptContexts {
list.push_back(ctx);
}

void remove(std::shared_ptr<ScriptContext> ctx) {
void remove(ScriptContext* ctx) {
std::scoped_lock _{mtx};
list.erase(std::remove(list.begin(), list.end(), ctx), list.end());

ScriptContext::log("Removing context from list");
std::erase_if(list, [ctx](ScriptContext* c) {
return c == ctx;
});
ScriptContext::log(std::format("New context count: {}", list.size()));
}

template<typename T>
void for_each(T&& fn) {
std::scoped_lock _{mtx};
for (auto& ctx : list) {
fn(ctx);
fn(ctx->shared_from_this());
}
}

private:
std::vector<std::shared_ptr<ScriptContext>> list{};
std::vector<ScriptContext*> list{};
std::mutex mtx{};
} g_contexts{};

ScriptContext::ScriptContext(lua_State* l, UEVR_PluginInitializeParam* param)
: m_lua{l}
: m_lua{l}
{
std::scoped_lock _{m_mtx};

g_contexts.add(this);

if (param != nullptr) {
m_plugin_initialize_param = param;
uevr::API::initialize(m_plugin_initialize_param);
Expand All @@ -65,6 +72,7 @@ ScriptContext::ScriptContext(lua_State* l, UEVR_PluginInitializeParam* param)

ScriptContext::~ScriptContext() {
std::scoped_lock _{m_mtx};
ScriptContext::log("ScriptContext destructor called");

// TODO: this probably does not support multiple states
if (m_plugin_initialize_param != nullptr) {
Expand All @@ -75,11 +83,12 @@ ScriptContext::~ScriptContext() {
m_callbacks_to_remove.clear();
}

g_contexts.remove(shared_from_this());
g_contexts.remove(this);
}

void ScriptContext::log(const std::string& message) {
std::cout << "[LuaVR] " << message << std::endl;
API::get()->log_info("[LuaVR] %s", message.c_str());
}

void ScriptContext::test_function() {
Expand Down Expand Up @@ -149,8 +158,6 @@ void ScriptContext::setup_callback_bindings() {
}

int ScriptContext::setup_bindings() {
g_contexts.add(shared_from_this());

m_lua.registry()["uevr_context"] = this;

m_lua.set_function("test_function", ScriptContext::test_function);
Expand Down
4 changes: 3 additions & 1 deletion src/mods/LuaLoader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ void LuaLoader::reset_scripts() {
m_last_script_error.clear();
}

if (!m_states.empty()) {
if (m_main_state != nullptr) {
/*auto& mods = g_framework->get_mods()->get_mods();
for (auto& mod : mods) {
Expand All @@ -239,6 +239,8 @@ void LuaLoader::reset_scripts() {
m_main_state.reset();
m_states.clear();

spdlog::info("[LuaLoader] Destroyed all Lua states.");

m_main_state = std::make_shared<ScriptState>(make_gc_data(), &g_plugin_initialize_param, true);
m_states.insert(m_states.begin(), m_main_state);

Expand Down

0 comments on commit 2c44167

Please sign in to comment.