You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.0 KiB
46 lines
1.0 KiB
#ifndef SMXHelperThread_h
|
|
#define SMXHelperThread_h
|
|
|
|
#include "Helpers.h"
|
|
|
|
#include <functional>
|
|
#include <vector>
|
|
#include <memory>
|
|
using namespace std;
|
|
|
|
namespace SMX
|
|
{
|
|
class SMXHelperThread
|
|
{
|
|
public:
|
|
SMXHelperThread(const string &sThreadName);
|
|
~SMXHelperThread();
|
|
|
|
// Raise the priority of the helper thread.
|
|
void SetHighPriority(bool bHighPriority);
|
|
|
|
// Shut down the thread. Any calls queued by RunInThread will complete before
|
|
// this returns.
|
|
void Shutdown();
|
|
|
|
// Call func asynchronously from the helper thread.
|
|
void RunInThread(function<void()> func);
|
|
|
|
// Return the Win32 thread ID, or INVALID_HANDLE_VALUE if the thread has been
|
|
// shut down.
|
|
DWORD GetThreadId() const { return m_iThreadId; }
|
|
|
|
private:
|
|
static DWORD WINAPI ThreadMainStart(void *self_);
|
|
void ThreadMain();
|
|
|
|
DWORD m_iThreadId = 0;
|
|
SMX::Mutex m_Lock;
|
|
shared_ptr<SMX::AutoCloseHandle> m_hEvent;
|
|
bool m_bShutdown = false;
|
|
HANDLE m_hThread = INVALID_HANDLE_VALUE;
|
|
vector<function<void()>> m_FunctionsToCall;
|
|
};
|
|
}
|
|
|
|
#endif
|
|
|