forked from catid/libcat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Thread.cpp
264 lines (183 loc) · 5.62 KB
/
Thread.cpp
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
/*
Copyright (c) 2009-2012 Christopher A. Taylor. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of LibCat nor the names of its contributors may be used
to endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
*/
#include "Thread.hpp"
using namespace cat;
//// Thread priority modification
bool cat::SetExecPriority(ThreadPrio prio)
{
#if defined(CAT_OS_WINDOWS)
int level;
// Convert to Windows API constant
switch (prio)
{
case P_IDLE: level = THREAD_PRIORITY_IDLE; break;
case P_LOW: level = THREAD_PRIORITY_LOWEST; break;
case P_NORMAL: level = THREAD_PRIORITY_NORMAL; break;
case P_HIGH: level = THREAD_PRIORITY_ABOVE_NORMAL; break;
case P_HIGHEST: level = THREAD_PRIORITY_HIGHEST; break;
}
return 0 != ::SetThreadPriority(::GetCurrentThread(), level);
#else
return false;
#endif
}
//// GetThreadID
#if !defined(CAT_OS_WINDOWS)
# include <unistd.h>
# include <sys/syscall.h>
# if defined(CAT_OS_LINUX)
# include <linux/unistd.h>
# elif defined(CAT_OS_BSD)
# include <bsd/unistd.h>
# endif
#endif
#if defined(CAT_OS_OSX)
#include <mach/mach.h>
#include <sys/resource.h>
#endif
u32 cat::GetThreadID()
{
#if defined(CAT_OS_WINDOWS)
return GetCurrentThreadId();
#elif defined(CAT_OS_OSX)
return mach_thread_self();
#elif defined(CAT_OS_LINUX) || defined(CAT_OS_BSD)
s32 thread_id = syscall(__NR_gettid);
if (thread_id != -1) return thread_id;
return getpid();
#else
return (u32)pthread_self();
#endif
}
//// Thread
#if defined(CAT_OS_WINDOWS)
#include <process.h>
unsigned int __stdcall Thread::ThreadWrapper(void *this_object)
{
Thread *thread_object = reinterpret_cast<Thread*>( this_object );
bool success = thread_object->Entrypoint(thread_object->_caller_param);
unsigned int exitCode = success ? 0 : 1;
CAT_DEBUG_CHECK_MEMORY();
CAT_FENCE_COMPILER;
thread_object->_thread_running = false;
CAT_FENCE_COMPILER;
// Using _beginthreadex() and _endthreadex() since _endthread() calls CloseHandle()
_endthreadex(exitCode);
// Should not get here
return exitCode;
}
#else
void *Thread::ThreadWrapper(void *this_object)
{
Thread *thread_object = static_cast<Thread*>( this_object );
bool success = thread_object->Entrypoint(thread_object->_caller_param);
CAT_DEBUG_CHECK_MEMORY();
thread_object->_thread_running = false;
return (void*)(success ? 0 : 1);
}
#endif
//// Thread
Thread::Thread()
{
_thread_running = false;
}
bool Thread::StartThread(void *param)
{
if (_thread_running)
return false;
_caller_param = param;
_thread_running = true;
#if defined(CAT_OS_WINDOWS)
// Using _beginthreadex() and _endthreadex() since _endthread() calls CloseHandle()
u32 thread_id;
_thread = (HANDLE)_beginthreadex(0, 0, &Thread::ThreadWrapper, static_cast<void*>( this ), 0, &thread_id);
if (!_thread)
_thread_running = false;
return _thread != 0;
#else
_thread_running = true;
if (pthread_create(&_thread, 0, &Thread::ThreadWrapper, static_cast<void*>( this )))
{
_thread_running = false;
return false;
}
return true;
#endif
}
void Thread::SetIdealCore(u32 index)
{
#if defined(CAT_OS_WINDOWS)
if (_thread)
SetThreadIdealProcessor(_thread, index);
#endif
}
void Thread::AbortThread()
{
if (!_thread_running)
return;
#if defined(CAT_OS_WINDOWS)
if (_thread)
{
DWORD ExitCode;
// If we can get an exit code for the thread,
if (GetExitCodeThread(_thread, &ExitCode) != 0)
{
TerminateThread(_thread, ExitCode);
}
CloseHandle(_thread);
_thread = 0;
}
#elif defined(CAT_OS_ANDROID)
pthread_kill(_thread, SIGUSR1);
#else
pthread_cancel(_thread);
#endif
_thread_running = false;
}
bool Thread::WaitForThread(int ms)
{
if (!_thread_running)
return true;
bool success = false;
#if defined(CAT_OS_WINDOWS)
if (_thread)
{
// Signal termination event and block waiting for thread to signal termination
if (WaitForSingleObject(_thread, (ms >= 0) ? ms : INFINITE) != WAIT_FAILED)
{
success = true;
CloseHandle(_thread);
_thread = 0;
}
}
#else
// TODO: No way to specify a wait timeout for POSIX threads?
if (pthread_join(_thread, 0) == 0)
success = true;
#endif
if (success)
_thread_running = false;
return success;
}