|
|
@ -299,14 +299,54 @@ namespace DFHack
|
|
|
|
friend class CoreService;
|
|
|
|
friend class CoreService;
|
|
|
|
friend class ServerConnection;
|
|
|
|
friend class ServerConnection;
|
|
|
|
friend class CoreSuspender;
|
|
|
|
friend class CoreSuspender;
|
|
|
|
|
|
|
|
friend class CoreSuspenderBase;
|
|
|
|
|
|
|
|
friend struct CoreSuspendClaimMain;
|
|
|
|
|
|
|
|
friend struct CoreSuspendReleaseMain;
|
|
|
|
ServerMain *server;
|
|
|
|
ServerMain *server;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
template<typename Derived>
|
|
|
|
class CoreSuspenderBase : protected std::unique_lock<std::recursive_mutex> {
|
|
|
|
struct ToolIncrement {
|
|
|
|
protected:
|
|
|
|
ToolIncrement(std::atomic<size_t>& toolCount) {
|
|
|
|
using parent_t = std::unique_lock<std::recursive_mutex>;
|
|
|
|
toolCount += 1;
|
|
|
|
std::thread::id tid;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
CoreSuspenderBase(std::defer_lock_t d) : CoreSuspenderBase{&Core::getInstance(), d} {}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
CoreSuspenderBase(Core* core, std::defer_lock_t) :
|
|
|
|
|
|
|
|
/* Lock the core */
|
|
|
|
|
|
|
|
parent_t{core->CoreSuspendMutex,std::defer_lock},
|
|
|
|
|
|
|
|
/* Mark this thread to be the core owner */
|
|
|
|
|
|
|
|
tid{}
|
|
|
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
void lock()
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
auto& core = Core::getInstance();
|
|
|
|
|
|
|
|
parent_t::lock();
|
|
|
|
|
|
|
|
tid = core.ownerThread.exchange(std::this_thread::get_id(),
|
|
|
|
|
|
|
|
std::memory_order_acquire);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void unlock()
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
auto& core = Core::getInstance();
|
|
|
|
|
|
|
|
/* Restore core owner to previous value */
|
|
|
|
|
|
|
|
core.ownerThread.store(tid, std::memory_order_release);
|
|
|
|
|
|
|
|
if (tid == std::thread::id{})
|
|
|
|
|
|
|
|
Lua::Core::Reset(core.getConsole(), "suspend");
|
|
|
|
|
|
|
|
parent_t::unlock();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool owns_lock() const noexcept
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
return parent_t::owns_lock();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
~CoreSuspenderBase() {
|
|
|
|
|
|
|
|
if (owns_lock())
|
|
|
|
|
|
|
|
unlock();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
friend class MainThread;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
/*!
|
|
|
@ -332,37 +372,66 @@ namespace DFHack
|
|
|
|
* no more tools are queued trying to acquire the
|
|
|
|
* no more tools are queued trying to acquire the
|
|
|
|
* Core::CoreSuspenderMutex.
|
|
|
|
* Core::CoreSuspenderMutex.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
class CoreSuspender : protected ToolIncrement<CoreSuspender>,
|
|
|
|
class CoreSuspender : public CoreSuspenderBase {
|
|
|
|
public std::unique_lock<std::recursive_mutex> {
|
|
|
|
using parent_t = CoreSuspenderBase;
|
|
|
|
using parent_t = std::unique_lock<std::recursive_mutex>;
|
|
|
|
|
|
|
|
Core *core;
|
|
|
|
|
|
|
|
std::thread::id tid;
|
|
|
|
|
|
|
|
public:
|
|
|
|
public:
|
|
|
|
CoreSuspender() : CoreSuspender(&Core::getInstance()) { }
|
|
|
|
CoreSuspender() : CoreSuspender{&Core::getInstance()} { }
|
|
|
|
CoreSuspender(bool) : CoreSuspender(&Core::getInstance()) { }
|
|
|
|
CoreSuspender(std::defer_lock_t d) : CoreSuspender{&Core::getInstance(),d} { }
|
|
|
|
CoreSuspender(Core* core, bool) : CoreSuspender(core) { }
|
|
|
|
CoreSuspender(bool) : CoreSuspender{&Core::getInstance()} { }
|
|
|
|
|
|
|
|
CoreSuspender(Core* core, bool) : CoreSuspender{core} { }
|
|
|
|
CoreSuspender(Core* core) :
|
|
|
|
CoreSuspender(Core* core) :
|
|
|
|
/* Increment the wait count */
|
|
|
|
CoreSuspenderBase{core, std::defer_lock}
|
|
|
|
ToolIncrement{core->toolCount},
|
|
|
|
{
|
|
|
|
/* Lock the core */
|
|
|
|
lock();
|
|
|
|
parent_t{core->CoreSuspendMutex},
|
|
|
|
}
|
|
|
|
core{core},
|
|
|
|
CoreSuspender(Core* core, std::defer_lock_t) :
|
|
|
|
/* Mark this thread to be the core owner */
|
|
|
|
CoreSuspenderBase{core, std::defer_lock}
|
|
|
|
tid{core->ownerThread.exchange(std::this_thread::get_id())}
|
|
|
|
{}
|
|
|
|
{ }
|
|
|
|
|
|
|
|
~CoreSuspender() {
|
|
|
|
void lock()
|
|
|
|
/* Restore core owner to previous value */
|
|
|
|
{
|
|
|
|
core->ownerThread.store(tid);
|
|
|
|
auto& core = Core::getInstance();
|
|
|
|
if (tid == std::thread::id{})
|
|
|
|
core.toolCount.fetch_add(1, std::memory_order_relaxed);
|
|
|
|
Lua::Core::Reset(core->getConsole(), "suspend");
|
|
|
|
parent_t::lock();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void unlock()
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
auto& core = Core::getInstance();
|
|
|
|
|
|
|
|
parent_t::unlock();
|
|
|
|
/* Notify core to continue when all queued tools have completed
|
|
|
|
/* Notify core to continue when all queued tools have completed
|
|
|
|
* 0 = None wants to own the core
|
|
|
|
* 0 = None wants to own the core
|
|
|
|
* 1+ = There are tools waiting core access
|
|
|
|
* 1+ = There are tools waiting core access
|
|
|
|
* fetch_add returns old value before subtraction
|
|
|
|
* fetch_add returns old value before subtraction
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
if (core->toolCount.fetch_add(-1) == 1)
|
|
|
|
if (core.toolCount.fetch_add(-1, std::memory_order_relaxed) == 1)
|
|
|
|
core->CoreWakeup.notify_one();
|
|
|
|
core.CoreWakeup.notify_one();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
~CoreSuspender() {
|
|
|
|
|
|
|
|
if (owns_lock())
|
|
|
|
|
|
|
|
unlock();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
|
|
|
* Temporary release main thread ownership to allow alternative thread
|
|
|
|
|
|
|
|
* implement DF logic thread loop
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct DFHACK_EXPORT CoreSuspendReleaseMain {
|
|
|
|
|
|
|
|
CoreSuspendReleaseMain();
|
|
|
|
|
|
|
|
~CoreSuspendReleaseMain();
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
|
|
|
* Temporary claim main thread ownership. This allows caller to call
|
|
|
|
|
|
|
|
* Core::Update from a different thread than original DF logic thread if
|
|
|
|
|
|
|
|
* logic thread has released main thread ownership with
|
|
|
|
|
|
|
|
* CoreSuspendReleaseMain
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct DFHACK_EXPORT CoreSuspendClaimMain {
|
|
|
|
|
|
|
|
CoreSuspendClaimMain();
|
|
|
|
|
|
|
|
~CoreSuspendClaimMain();
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
using CoreSuspendClaimer = CoreSuspender;
|
|
|
|
using CoreSuspendClaimer = CoreSuspender;
|
|
|
|