From b305fb6411939bf6afbe2ecf2c1bdf765c9247a9 Mon Sep 17 00:00:00 2001 From: Mnikolenko Productengine Date: Tue, 20 Feb 2024 14:25:56 +0200 Subject: Initial require implementation --- indra/llcommon/lua_function.cpp | 9 --------- indra/llcommon/lua_function.h | 9 +++++++++ 2 files changed, 9 insertions(+), 9 deletions(-) (limited to 'indra/llcommon') diff --git a/indra/llcommon/lua_function.cpp b/indra/llcommon/lua_function.cpp index 07e0c1fac2..17d81e8fc7 100644 --- a/indra/llcommon/lua_function.cpp +++ b/indra/llcommon/lua_function.cpp @@ -25,15 +25,6 @@ #include "llsdutil.h" #include "lualistener.h" -namespace -{ - // can't specify free function free() as a unique_ptr deleter - struct freer - { - void operator()(void* ptr){ free(ptr); } - }; -} // anonymous namespace - int lluau::dostring(lua_State* L, const std::string& desc, const std::string& text) { { diff --git a/indra/llcommon/lua_function.h b/indra/llcommon/lua_function.h index c23bf533ba..f549137c3e 100644 --- a/indra/llcommon/lua_function.h +++ b/indra/llcommon/lua_function.h @@ -22,6 +22,15 @@ #define lua_register(L, n, f) (lua_pushcfunction(L, (f), n), lua_setglobal(L, (n))) #define lua_rawlen lua_objlen +namespace +{ + // can't specify free function free() as a unique_ptr deleter + struct freer + { + void operator()(void *ptr) { free(ptr); } + }; +} + namespace lluau { // luau defines luaL_error() as void, but we want to use the Lua idiom of -- cgit v1.2.3 From 32bf9c7b7a9d2b2428b052d74389ec48ccc427cf Mon Sep 17 00:00:00 2001 From: Mnikolenko Productengine Date: Wed, 21 Feb 2024 17:11:33 +0200 Subject: Add the option to use clean lua_State in "Lua debug" floater --- indra/llcommon/lua_function.cpp | 9 +++++++-- indra/llcommon/lua_function.h | 2 ++ 2 files changed, 9 insertions(+), 2 deletions(-) (limited to 'indra/llcommon') diff --git a/indra/llcommon/lua_function.cpp b/indra/llcommon/lua_function.cpp index 17d81e8fc7..e9b4bf0b89 100644 --- a/indra/llcommon/lua_function.cpp +++ b/indra/llcommon/lua_function.cpp @@ -406,9 +406,14 @@ void lua_pushllsd(lua_State* L, const LLSD& data) } LuaState::LuaState(script_finished_fn cb): - mCallback(cb), - mState(luaL_newstate()) + mCallback(cb) { + initLuaState(); +} + +void LuaState::initLuaState() +{ + mState = luaL_newstate(); luaL_openlibs(mState); LuaFunction::init(mState); // Try to make print() write to our log. diff --git a/indra/llcommon/lua_function.h b/indra/llcommon/lua_function.h index f549137c3e..54db92f73e 100644 --- a/indra/llcommon/lua_function.h +++ b/indra/llcommon/lua_function.h @@ -78,6 +78,8 @@ public: ~LuaState(); + void initLuaState(); + bool checkLua(const std::string& desc, int r); // expr() is for when we want to capture any results left on the stack -- cgit v1.2.3 From 49785357e07f6309e2504b56829d9916f75168b2 Mon Sep 17 00:00:00 2001 From: Mnikolenko Productengine Date: Fri, 23 Feb 2024 16:57:00 +0200 Subject: require() code clean-up --- indra/llcommon/lua_function.cpp | 39 ++++++++++++++++++++++++++++----------- indra/llcommon/lua_function.h | 10 +--------- 2 files changed, 29 insertions(+), 20 deletions(-) (limited to 'indra/llcommon') diff --git a/indra/llcommon/lua_function.cpp b/indra/llcommon/lua_function.cpp index e9b4bf0b89..41bb7bac12 100644 --- a/indra/llcommon/lua_function.cpp +++ b/indra/llcommon/lua_function.cpp @@ -25,18 +25,20 @@ #include "llsdutil.h" #include "lualistener.h" -int lluau::dostring(lua_State* L, const std::string& desc, const std::string& text) +namespace { + // can't specify free function free() as a unique_ptr deleter + struct freer { - size_t bytecodeSize = 0; - // The char* returned by luau_compile() must be freed by calling free(). - // Use unique_ptr so the memory will be freed even if luau_load() throws. - std::unique_ptr bytecode{ - luau_compile(text.data(), text.length(), nullptr, &bytecodeSize)}; - auto r = luau_load(L, desc.data(), bytecode.get(), bytecodeSize, 0); - if (r != LUA_OK) - return r; - } // free bytecode + void operator()(void* ptr){ free(ptr); } + }; +} // anonymous namespace + +int lluau::dostring(lua_State* L, const std::string& desc, const std::string& text) +{ + auto r = loadstring(L, desc, text); + if (r != LUA_OK) + return r; // It's important to pass LUA_MULTRET as the expected number of return // values: if we pass any fixed number, we discard any returned values @@ -44,6 +46,16 @@ int lluau::dostring(lua_State* L, const std::string& desc, const std::string& te return lua_pcall(L, 0, LUA_MULTRET, 0); } +int lluau::loadstring(lua_State *L, const std::string &desc, const std::string &text) +{ + size_t bytecodeSize = 0; + // The char* returned by luau_compile() must be freed by calling free(). + // Use unique_ptr so the memory will be freed even if luau_load() throws. + std::unique_ptr bytecode{ + luau_compile(text.data(), text.length(), nullptr, &bytecodeSize)}; + return luau_load(L, desc.data(), bytecode.get(), bytecodeSize, 0); +} + std::string lua_tostdstring(lua_State* L, int index) { size_t len; @@ -406,13 +418,18 @@ void lua_pushllsd(lua_State* L, const LLSD& data) } LuaState::LuaState(script_finished_fn cb): - mCallback(cb) + mCallback(cb), + mState(nullptr) { initLuaState(); } void LuaState::initLuaState() { + if (mState) + { + lua_close(mState); + } mState = luaL_newstate(); luaL_openlibs(mState); LuaFunction::init(mState); diff --git a/indra/llcommon/lua_function.h b/indra/llcommon/lua_function.h index 54db92f73e..0605eb12a6 100644 --- a/indra/llcommon/lua_function.h +++ b/indra/llcommon/lua_function.h @@ -22,15 +22,6 @@ #define lua_register(L, n, f) (lua_pushcfunction(L, (f), n), lua_setglobal(L, (n))) #define lua_rawlen lua_objlen -namespace -{ - // can't specify free function free() as a unique_ptr deleter - struct freer - { - void operator()(void *ptr) { free(ptr); } - }; -} - namespace lluau { // luau defines luaL_error() as void, but we want to use the Lua idiom of @@ -56,6 +47,7 @@ namespace lluau // rather than string_views because dostring() needs pointers to nul- // terminated char arrays. int dostring(lua_State* L, const std::string& desc, const std::string& text); + int loadstring(lua_State* L, const std::string& desc, const std::string& text); } // namespace lluau std::string lua_tostdstring(lua_State* L, int index); -- cgit v1.2.3