summaryrefslogtreecommitdiff
path: root/source/libs/asura-lib-utils/threading/thread.cpp
blob: d1b055d539725c0a32dd584991a8790c39891af2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#include "thread.h"

#include "thread_impl_win32.h"
#include "thread_impl_posix.h"
#include "thread_impl_sdl.h"
#include "thread_impl_std.h"

namespace AsuraEngine
{
	namespace Threading
	{

		Thread::Thread(const std::string& name)
			: mName(name)
		{
		}

		Thread::~Thread()
		{
			delete mImpl;
		}

#define try_start_thread(impl)\
	if (!mImpl) \
	{ \
		mImpl = new impl(); \
		if (!mImpl->Start(this, stacksize)) \
		{ \
			delete mImpl; \
			mImpl = nullptr; \
		} \
	}

		bool Thread::AddTask(ThreadTask* task)
		{
			mTaskQueue.push(task);
			return true;
		}

		void Thread::Start(uint32 stacksize)
		{
#if ASURA_THREAD_WIN32
			try_start_thread(ThreadImplWin32);
#endif

			assert(mImpl);
		}

		void Thread::Join()
		{
			assert(mImpl); 
			mImpl->Join();
		}

		void Thread::Kill()
		{
			assert(mImpl);
			mImpl->Kill(); 
		}

		bool Thread::IsRunning()
		{
			assert(mImpl);
			return mImpl->IsRunning(); 
		}

		bool Thread::IsCurrent()
		{
			assert(mImpl);
			return mImpl->IsCurrent(); 
		}

		const std::string& Thread::GetName()
		{
			return mName;
		}

		void Thread::Execute()
		{
			while (!mTaskQueue.empty())
			{
				ThreadTask* task = mTaskQueue.front();
				if (task->Execute())
					task->Invoke();

				mMutex.Lock();
				mTaskQueue.pop();
				mMutex.Unlock();
			}
		}

	}
}