2012-11-14 23:39:56 +00:00
|
|
|
#include "stdafx.h"
|
2014-06-17 15:44:03 +00:00
|
|
|
#include "Utilities/Log.h"
|
2014-07-11 11:59:13 +00:00
|
|
|
#include "Emu/Memory/Memory.h"
|
2014-06-02 17:27:24 +00:00
|
|
|
|
2012-11-14 23:39:56 +00:00
|
|
|
#include "Thread.h"
|
|
|
|
|
2014-06-19 13:50:18 +00:00
|
|
|
thread_local NamedThreadBase* g_tls_this_thread = nullptr;
|
2014-06-20 11:00:36 +00:00
|
|
|
std::atomic<u32> g_thread_count(0);
|
2014-01-31 18:40:18 +00:00
|
|
|
|
|
|
|
NamedThreadBase* GetCurrentNamedThread()
|
|
|
|
{
|
2014-02-02 19:42:32 +00:00
|
|
|
return g_tls_this_thread;
|
2013-06-30 08:46:29 +00:00
|
|
|
}
|
|
|
|
|
2014-01-31 18:40:18 +00:00
|
|
|
std::string NamedThreadBase::GetThreadName() const
|
2013-06-30 08:46:29 +00:00
|
|
|
{
|
2014-01-31 18:40:18 +00:00
|
|
|
return m_name;
|
2013-06-30 08:46:29 +00:00
|
|
|
}
|
|
|
|
|
2014-01-31 18:40:18 +00:00
|
|
|
void NamedThreadBase::SetThreadName(const std::string& name)
|
2012-11-14 23:39:56 +00:00
|
|
|
{
|
2014-01-31 18:40:18 +00:00
|
|
|
m_name = name;
|
|
|
|
}
|
2012-11-14 23:39:56 +00:00
|
|
|
|
2014-01-31 18:40:18 +00:00
|
|
|
ThreadBase::ThreadBase(const std::string& name)
|
|
|
|
: NamedThreadBase(name)
|
|
|
|
, m_executor(nullptr)
|
|
|
|
, m_destroy(false)
|
|
|
|
, m_alive(false)
|
|
|
|
{
|
2012-11-14 23:39:56 +00:00
|
|
|
}
|
|
|
|
|
2014-01-31 18:40:18 +00:00
|
|
|
ThreadBase::~ThreadBase()
|
2013-06-30 08:46:29 +00:00
|
|
|
{
|
2014-01-31 18:40:18 +00:00
|
|
|
if(IsAlive())
|
|
|
|
Stop(false);
|
2014-04-15 14:12:15 +00:00
|
|
|
|
|
|
|
safe_delete(m_executor);
|
2013-06-30 08:46:29 +00:00
|
|
|
}
|
|
|
|
|
2014-01-31 18:40:18 +00:00
|
|
|
void ThreadBase::Start()
|
2013-06-30 08:46:29 +00:00
|
|
|
{
|
2014-01-31 18:40:18 +00:00
|
|
|
if(m_executor) Stop();
|
|
|
|
|
|
|
|
std::lock_guard<std::mutex> lock(m_main_mutex);
|
|
|
|
|
|
|
|
m_destroy = false;
|
|
|
|
m_alive = true;
|
|
|
|
|
|
|
|
m_executor = new std::thread(
|
|
|
|
[this]()
|
|
|
|
{
|
2014-02-02 19:42:32 +00:00
|
|
|
g_tls_this_thread = this;
|
2014-06-19 13:50:18 +00:00
|
|
|
g_thread_count++;
|
2014-01-31 18:40:18 +00:00
|
|
|
|
2014-07-07 17:22:36 +00:00
|
|
|
try
|
|
|
|
{
|
|
|
|
Task();
|
|
|
|
}
|
|
|
|
catch (const std::string& e)
|
|
|
|
{
|
|
|
|
LOG_ERROR(GENERAL, "Exception: %s", e.c_str());
|
|
|
|
}
|
|
|
|
catch (const char* e)
|
|
|
|
{
|
|
|
|
LOG_ERROR(GENERAL, "Exception: %s", e);
|
|
|
|
}
|
|
|
|
catch (int exitcode)
|
|
|
|
{
|
|
|
|
LOG_SUCCESS(GENERAL, "Exit Code: %d", exitcode);
|
|
|
|
}
|
2014-01-31 18:40:18 +00:00
|
|
|
|
|
|
|
m_alive = false;
|
2014-06-19 13:50:18 +00:00
|
|
|
g_thread_count--;
|
2014-01-31 18:40:18 +00:00
|
|
|
});
|
2013-06-30 08:46:29 +00:00
|
|
|
}
|
|
|
|
|
2014-02-14 19:50:02 +00:00
|
|
|
void ThreadBase::Stop(bool wait, bool send_destroy)
|
2012-11-14 23:39:56 +00:00
|
|
|
{
|
2014-01-31 18:40:18 +00:00
|
|
|
std::lock_guard<std::mutex> lock(m_main_mutex);
|
2013-06-30 08:46:29 +00:00
|
|
|
|
2014-02-14 19:50:02 +00:00
|
|
|
if (send_destroy)
|
|
|
|
m_destroy = true;
|
2013-06-30 08:46:29 +00:00
|
|
|
|
2014-01-31 18:40:18 +00:00
|
|
|
if(!m_executor)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if(wait && m_executor->joinable() && m_alive)
|
|
|
|
{
|
|
|
|
m_executor->join();
|
2013-06-30 08:46:29 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-01-31 18:40:18 +00:00
|
|
|
m_executor->detach();
|
2013-06-30 08:46:29 +00:00
|
|
|
}
|
2014-01-31 18:40:18 +00:00
|
|
|
|
|
|
|
delete m_executor;
|
|
|
|
m_executor = nullptr;
|
2012-11-14 23:39:56 +00:00
|
|
|
}
|
|
|
|
|
2014-01-31 18:40:18 +00:00
|
|
|
bool ThreadBase::Join() const
|
2013-06-30 08:46:29 +00:00
|
|
|
{
|
2014-01-31 18:40:18 +00:00
|
|
|
std::lock_guard<std::mutex> lock(m_main_mutex);
|
|
|
|
if(m_executor->joinable() && m_alive && m_executor != nullptr)
|
|
|
|
{
|
|
|
|
m_executor->join();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2013-06-30 08:46:29 +00:00
|
|
|
}
|
|
|
|
|
2014-01-31 18:40:18 +00:00
|
|
|
bool ThreadBase::IsAlive() const
|
2013-06-30 08:46:29 +00:00
|
|
|
{
|
2014-01-31 18:40:18 +00:00
|
|
|
std::lock_guard<std::mutex> lock(m_main_mutex);
|
|
|
|
return m_alive;
|
2013-06-30 08:46:29 +00:00
|
|
|
}
|
|
|
|
|
2014-01-31 18:40:18 +00:00
|
|
|
bool ThreadBase::TestDestroy() const
|
2013-06-30 08:46:29 +00:00
|
|
|
{
|
2014-01-31 18:40:18 +00:00
|
|
|
return m_destroy;
|
2013-06-30 08:46:29 +00:00
|
|
|
}
|
|
|
|
|
2014-01-31 18:40:18 +00:00
|
|
|
thread::thread(const std::string& name, std::function<void()> func) : m_name(name)
|
2012-11-14 23:39:56 +00:00
|
|
|
{
|
2014-01-31 18:40:18 +00:00
|
|
|
start(func);
|
2012-11-14 23:39:56 +00:00
|
|
|
}
|
|
|
|
|
2014-01-31 18:40:18 +00:00
|
|
|
thread::thread(const std::string& name) : m_name(name)
|
2012-11-14 23:39:56 +00:00
|
|
|
{
|
2014-01-31 18:40:18 +00:00
|
|
|
}
|
2012-11-14 23:39:56 +00:00
|
|
|
|
2014-01-31 18:40:18 +00:00
|
|
|
thread::thread()
|
|
|
|
{
|
2013-06-30 08:46:29 +00:00
|
|
|
}
|
|
|
|
|
2014-01-31 18:40:18 +00:00
|
|
|
void thread::start(std::function<void()> func)
|
2014-02-27 18:25:32 +00:00
|
|
|
{
|
|
|
|
std::string name = m_name;
|
|
|
|
|
|
|
|
m_thr = std::thread([func, name]()
|
2014-02-19 17:27:52 +00:00
|
|
|
{
|
2014-02-27 18:25:32 +00:00
|
|
|
NamedThreadBase info(name);
|
2014-02-22 12:06:23 +00:00
|
|
|
g_tls_this_thread = &info;
|
2014-06-19 13:50:18 +00:00
|
|
|
g_thread_count++;
|
2014-02-22 12:06:23 +00:00
|
|
|
|
2014-02-19 17:27:52 +00:00
|
|
|
try
|
|
|
|
{
|
|
|
|
func();
|
|
|
|
}
|
|
|
|
catch(...)
|
|
|
|
{
|
2014-06-17 15:44:03 +00:00
|
|
|
LOG_ERROR(HLE, "Crash :(");
|
2014-02-27 18:25:32 +00:00
|
|
|
//std::terminate();
|
2014-02-19 17:27:52 +00:00
|
|
|
}
|
2014-06-19 13:50:18 +00:00
|
|
|
|
|
|
|
g_thread_count--;
|
2014-02-19 17:27:52 +00:00
|
|
|
});
|
2013-06-30 08:46:29 +00:00
|
|
|
}
|
|
|
|
|
2014-01-31 18:40:18 +00:00
|
|
|
void thread::detach()
|
2013-06-30 08:46:29 +00:00
|
|
|
{
|
2014-01-31 18:40:18 +00:00
|
|
|
m_thr.detach();
|
|
|
|
}
|
|
|
|
|
|
|
|
void thread::join()
|
|
|
|
{
|
|
|
|
m_thr.join();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool thread::joinable() const
|
|
|
|
{
|
|
|
|
return m_thr.joinable();
|
2014-02-23 16:52:52 +00:00
|
|
|
}
|