-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCMutex.cpp
More file actions
244 lines (208 loc) · 5.17 KB
/
CMutex.cpp
File metadata and controls
244 lines (208 loc) · 5.17 KB
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
/*************************************************************************************
cpl - cross-platform library - v. 0.1.0.
Copyright (C) 2016 Janus Lynggaard Thorborg [LightBridge Studios]
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
See \licenses\ for additional details on licenses associated with this program.
**************************************************************************************
file:CMutex.cpp
Implementation of some basic routines to avoid cyclic dependencies.
*************************************************************************************/
#include "CMutex.h"
namespace cpl
{
int AlertUserAboutMutex()
{
return Misc::MsgBox("Deadlock detected in spinlock: Protected resource is not released after max interval. "
"Wait again (try again), release resource (continue) - can create async issues - or exit (cancel)?",
programInfo.name,
Misc::MsgStyle::sConTryCancel | Misc::MsgIcon::iStop,
NULL,
true);
}
void CMutex::release(CMutex::Lockable * l)
{
// default value
if (l->refCount == 0)
{
CPL_RUNTIME_EXCEPTION("Releasing CMutex with a ref-count of zero!");
}
l->refCount--;
if (l->refCount == 0)
{
l->ownerThread = std::thread::id();
if (l)
l->flag.clear();
std::atomic_thread_fence(std::memory_order_release);
resource = nullptr;
}
}
bool CMutex::spinLock(unsigned ms, CMutex::Lockable * bVal)
{
using namespace Misc;
unsigned int start;
int ret = MsgButton::bTryAgain;
loop:
int count = 0;
start = QuickTime();
while (bVal->flag.test_and_set(std::memory_order_relaxed)) {
count++;
if (count > 200)
{
count = 0;
if ((QuickTime() - start) > ms)
goto time_out;
Delay(0);
}
}
// normal exitpoint
return true;
// deadlock occurs
time_out:
// hello - you have reached this point if mutex was frozen.
CPL_BREAKIFDEBUGGED();
ret = AlertUserAboutMutex();
switch (ret)
{
default:
case MsgButton::bTryAgain:
goto loop;
case MsgButton::bContinue:
bVal->flag.clear(); // flip val
// try again
goto loop;
case MsgButton::bCancel:
exit(-1);
}
// not needed (except for warns)
return false;
}
void CMutex::acquire(CMutex::Lockable * l)
{
auto this_id = std::this_thread::get_id();
// TODO: fix race condition
bool lockOwnedByThread = l->ownerThread == this_id;
if (resource)
{
if (lockOwnedByThread && l == resource)
{
// mutex owned by self
return;
}
else
{
release(resource);
}
}
if (!lockOwnedByThread)
{
if (!spinLock(2000, l))
{
//explode here
return;
}
l->ownerThread = this_id;
if (l->refCount != 0)
CPL_RUNTIME_EXCEPTION("Acquired non-recursed mutex had non-zero ref count");
}
l->refCount++;
resource = l;
std::atomic_thread_fence(std::memory_order_acquire);
}
void CFastMutex::acquire(CMutex::Lockable * l)
{
auto this_id = std::this_thread::get_id();
// TODO: fix race condition
bool lockOwnedByThread = l->ownerThread == this_id;
if (resource)
{
if (lockOwnedByThread && l == resource)
{
// mutex owned by self
return;
}
else
{
release(resource);
}
}
if (!lockOwnedByThread)
{
if (!spinLock(l))
{
//explode here
return;
}
l->ownerThread = this_id;
if (l->refCount != 0)
CPL_RUNTIME_EXCEPTION("Acquired non-recursed mutex had non-zero ref count");
}
l->refCount++;
resource = l;
std::atomic_thread_fence(std::memory_order_acquire);
}
void CFastMutex::release(CMutex::Lockable * l)
{
if (l->refCount == 0)
{
CPL_RUNTIME_EXCEPTION("Releasing CMutex with a ref-count of zero!");
}
l->refCount--;
if (l->refCount == 0)
{
l->ownerThread = std::thread::id();
if (l)
l->flag.clear();
resource = nullptr;
std::atomic_thread_fence(std::memory_order_release);
}
}
bool CFastMutex::spinLock(CMutex::Lockable * bVal)
{
using namespace Misc;
unsigned int start;
int ret;
unsigned int ms = 2000;
loop:
start = QuickTime();
int count = 0;
while (bVal->flag.test_and_set(std::memory_order_relaxed)) {
count++;
if (count > 2000)
{
count = 0;
if ((QuickTime() - start) > ms)
goto time_out;
}
}
// normal exitpoint
return true;
// deadlock occurs
time_out:
// hello - you have reached this point if mutex was frozen.
CPL_BREAKIFDEBUGGED();
ret = AlertUserAboutMutex();
switch (ret)
{
default:
case MsgButton::bTryAgain:
goto loop;
case MsgButton::bContinue:
bVal->flag.clear(); // flip val
// try again
goto loop;
case MsgButton::bCancel:
exit(-1);
}
// not needed (except for warns)
return false;
}
};