fix(util/script_state): deadlock
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
ddd980aa63
commit
739f98b642
3 changed files with 20 additions and 15 deletions
|
@ -40,8 +40,8 @@ void open_extra(lua_State * L);
|
||||||
static char g_weak_ptr_key; // key for Lua registry (used at get_weak_ptr and save_weak_ptr)
|
static char g_weak_ptr_key; // key for Lua registry (used at get_weak_ptr and save_weak_ptr)
|
||||||
|
|
||||||
struct script_state::imp {
|
struct script_state::imp {
|
||||||
lua_State * m_state;
|
lua_State * m_state;
|
||||||
recursive_mutex m_mutex;
|
mutex m_mutex;
|
||||||
std::unordered_set<std::string> m_imported_modules;
|
std::unordered_set<std::string> m_imported_modules;
|
||||||
|
|
||||||
static std::weak_ptr<imp> * get_weak_ptr(lua_State * L) {
|
static std::weak_ptr<imp> * get_weak_ptr(lua_State * L) {
|
||||||
|
@ -100,12 +100,12 @@ struct script_state::imp {
|
||||||
}
|
}
|
||||||
|
|
||||||
void dofile(char const * fname) {
|
void dofile(char const * fname) {
|
||||||
lock_guard<recursive_mutex> lock(m_mutex);
|
lock_guard<mutex> lock(m_mutex);
|
||||||
::lean::dofile(m_state, fname);
|
::lean::dofile(m_state, fname);
|
||||||
}
|
}
|
||||||
|
|
||||||
void dostring(char const * str) {
|
void dostring(char const * str) {
|
||||||
lock_guard<recursive_mutex> lock(m_mutex);
|
lock_guard<mutex> lock(m_mutex);
|
||||||
::lean::dostring(m_state, str);
|
::lean::dostring(m_state, str);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -162,7 +162,7 @@ bool script_state::import_explicit(char const * str) {
|
||||||
return m_ptr->import_explicit(str);
|
return m_ptr->import_explicit(str);
|
||||||
}
|
}
|
||||||
|
|
||||||
recursive_mutex & script_state::get_mutex() {
|
mutex & script_state::get_mutex() {
|
||||||
return m_ptr->m_mutex;
|
return m_ptr->m_mutex;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -454,8 +454,7 @@ public:
|
||||||
m_thread.join();
|
m_thread.join();
|
||||||
}
|
}
|
||||||
|
|
||||||
int wait(lua_State * src) {
|
int copy_result(lua_State * src) {
|
||||||
m_thread.join();
|
|
||||||
if (m_exception)
|
if (m_exception)
|
||||||
m_exception->rethrow();
|
m_exception->rethrow();
|
||||||
return m_state.apply([&](lua_State * S) {
|
return m_state.apply([&](lua_State * S) {
|
||||||
|
@ -468,6 +467,10 @@ public:
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void wait() {
|
||||||
|
m_thread.join();
|
||||||
|
}
|
||||||
|
|
||||||
void request_interrupt() {
|
void request_interrupt() {
|
||||||
m_thread.request_interrupt();
|
m_thread.request_interrupt();
|
||||||
}
|
}
|
||||||
|
@ -552,7 +555,10 @@ static int thread_interrupt(lua_State * L) {
|
||||||
}
|
}
|
||||||
|
|
||||||
int thread_wait(lua_State * L) {
|
int thread_wait(lua_State * L) {
|
||||||
return to_thread(L, 1).wait(L);
|
auto & t = to_thread(L, 1);
|
||||||
|
script_state st = to_script_state(L);
|
||||||
|
st.exec_unprotected([&]() { t.wait(); });
|
||||||
|
return t.copy_result(L);
|
||||||
}
|
}
|
||||||
|
|
||||||
static const struct luaL_Reg thread_m[] = {
|
static const struct luaL_Reg thread_m[] = {
|
||||||
|
|
|
@ -20,7 +20,7 @@ public:
|
||||||
private:
|
private:
|
||||||
std::shared_ptr<imp> m_ptr;
|
std::shared_ptr<imp> m_ptr;
|
||||||
friend script_state to_script_state(lua_State * L);
|
friend script_state to_script_state(lua_State * L);
|
||||||
recursive_mutex & get_mutex();
|
mutex & get_mutex();
|
||||||
lua_State * get_state();
|
lua_State * get_state();
|
||||||
friend class data_channel;
|
friend class data_channel;
|
||||||
public:
|
public:
|
||||||
|
@ -60,7 +60,7 @@ public:
|
||||||
*/
|
*/
|
||||||
template<typename F>
|
template<typename F>
|
||||||
typename std::result_of<F(lua_State * L)>::type apply(F && f) {
|
typename std::result_of<F(lua_State * L)>::type apply(F && f) {
|
||||||
lock_guard<recursive_mutex> lock(get_mutex());
|
lock_guard<mutex> lock(get_mutex());
|
||||||
return f(get_state());
|
return f(get_state());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -74,13 +74,13 @@ public:
|
||||||
*/
|
*/
|
||||||
template<typename F>
|
template<typename F>
|
||||||
void exec_unprotected(F && f) {
|
void exec_unprotected(F && f) {
|
||||||
unlock_guard<recursive_mutex> unlock(get_mutex());
|
unlock_guard unlock(get_mutex());
|
||||||
f();
|
f();
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename F>
|
template<typename F>
|
||||||
void exec_protected(F && f) {
|
void exec_protected(F && f) {
|
||||||
lock_guard<recursive_mutex> lock(get_mutex());
|
lock_guard<mutex> lock(get_mutex());
|
||||||
f();
|
f();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -29,11 +29,10 @@ namespace lean {
|
||||||
|
|
||||||
\warning The calling thread must own the lock to m_mutex
|
\warning The calling thread must own the lock to m_mutex
|
||||||
*/
|
*/
|
||||||
template<typename Mutex>
|
|
||||||
class unlock_guard {
|
class unlock_guard {
|
||||||
Mutex & m_mutex;
|
mutex & m_mutex;
|
||||||
public:
|
public:
|
||||||
explicit unlock_guard(Mutex & m):m_mutex(m) { m_mutex.unlock(); }
|
explicit unlock_guard(mutex & m):m_mutex(m) { m_mutex.unlock(); }
|
||||||
unlock_guard(unlock_guard const &) = delete;
|
unlock_guard(unlock_guard const &) = delete;
|
||||||
unlock_guard(unlock_guard &&) = delete;
|
unlock_guard(unlock_guard &&) = delete;
|
||||||
unlock_guard & operator=(unlock_guard const &) = delete;
|
unlock_guard & operator=(unlock_guard const &) = delete;
|
||||||
|
|
Loading…
Reference in a new issue