-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathOSSem.h
335 lines (286 loc) · 8.25 KB
/
OSSem.h
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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
/***************************************************************************************************************:')
OSSem.h
Semaphores handling (not interprocess).
Fabrice Le Bars
Created : 2009-02-10
***************************************************************************************************************:)*/
// Prevent Visual Studio Intellisense from defining _WIN32 and _MSC_VER when we use
// Visual Studio to edit Linux or Borland C++ code.
#ifdef __linux__
# undef _WIN32
#endif // __linux__
#if defined(__GNUC__) || defined(__BORLANDC__)
# undef _MSC_VER
#endif // defined(__GNUC__) || defined(__BORLANDC__)
#ifndef OSSEM_H
#define OSSEM_H
#include "OSTime.h"
/*
Debug macros specific to OSSem.
*/
#ifdef _DEBUG_MESSAGES_OSUTILS
# define _DEBUG_MESSAGES_OSSEM
#endif // _DEBUG_MESSAGES_OSUTILS
#ifdef _DEBUG_WARNINGS_OSUTILS
# define _DEBUG_WARNINGS_OSSEM
#endif // _DEBUG_WARNINGS_OSUTILS
#ifdef _DEBUG_ERRORS_OSUTILS
# define _DEBUG_ERRORS_OSSEM
#endif // _DEBUG_ERRORS_OSUTILS
#ifdef _DEBUG_MESSAGES_OSSEM
# define PRINT_DEBUG_MESSAGE_OSSEM(params) PRINT_DEBUG_MESSAGE(params)
#else
# define PRINT_DEBUG_MESSAGE_OSSEM(params)
#endif // _DEBUG_MESSAGES_OSSEM
#ifdef _DEBUG_WARNINGS_OSSEM
# define PRINT_DEBUG_WARNING_OSSEM(params) PRINT_DEBUG_WARNING(params)
#else
# define PRINT_DEBUG_WARNING_OSSEM(params)
#endif // _DEBUG_WARNINGS_OSSEM
#ifdef _DEBUG_ERRORS_OSSEM
# define PRINT_DEBUG_ERROR_OSSEM(params) PRINT_DEBUG_ERROR(params)
#else
# define PRINT_DEBUG_ERROR_OSSEM(params)
#endif // _DEBUG_ERRORS_OSSEM
#define MAX_SEM_TIMEOUT (LONG_MAX-2)
#define MAX_SEM_COUNT 2147483646
#ifdef _WIN32
#else
#include <semaphore.h>
#endif // _WIN32
#ifdef _WIN32
typedef HANDLE SEMAPHORE;
#else
typedef sem_t SEMAPHORE;
#endif // _WIN32
/*
Create a default semaphore (not interprocess). Use DeleteSemaphore() to delete it at the end.
SEMAPHORE* pSemaphore : (INOUT) Valid pointer that will receive a structure
corresponding to a semaphore.
int InitialCount : (IN) Initial count for the semaphore.
Return : EXIT_SUCCESS or EXIT_FAILURE if there is an error.
*/
inline int CreateDefaultSemaphore(SEMAPHORE* pSemaphore, int InitialCount)
{
#ifdef _WIN32
HANDLE hSemaphore;
hSemaphore = CreateSemaphore(
NULL, // Default security attributes.
InitialCount, // Initial count.
MAX_SEM_COUNT, // Maximum count.
NULL); // Unnamed semaphore.
if (hSemaphore == NULL)
{
PRINT_DEBUG_ERROR_OSSEM(("CreateDefaultSemaphore error (%s) : %s"
"(InitialCount=%d)\n",
strtime_m(),
GetLastErrorMsg(),
InitialCount));
return EXIT_FAILURE;
}
*pSemaphore = hSemaphore;
#else
// The pshared argument indicates whether the semaphore is local to the
// current process (pshared is zero) or is to be shared between several
// processes (pshared is not zero).
if (sem_init(pSemaphore, 0, InitialCount) != EXIT_SUCCESS)
{
PRINT_DEBUG_ERROR_OSSEM(("CreateDefaultSemaphore error (%s) : %s"
"(InitialCount=%d)\n",
strtime_m(),
GetLastErrorMsg(),
InitialCount));
return EXIT_FAILURE;
}
#endif // _WIN32
return EXIT_SUCCESS;
}
/*
Delete a semaphore created by CreateDefaultSemaphore().
SEMAPHORE* pSemaphore : (INOUT) Valid pointer to a structure corresponding to
a semaphore.
Return : EXIT_SUCCESS or EXIT_FAILURE if there is an error.
*/
inline int DeleteSemaphore(SEMAPHORE* pSemaphore)
{
#ifdef _WIN32
if (!CloseHandle(*pSemaphore))
{
PRINT_DEBUG_ERROR_OSSEM(("DeleteSemaphore error (%s) : %s"
"(pSemaphore=%#x)\n",
strtime_m(),
GetLastErrorMsg(),
pSemaphore));
return EXIT_FAILURE;
}
#else
if (sem_destroy(pSemaphore) != EXIT_SUCCESS)
{
PRINT_DEBUG_ERROR_OSSEM(("DeleteSemaphore error (%s) : %s"
"(pSemaphore=%#x)\n",
strtime_m(),
GetLastErrorMsg(),
pSemaphore));
return EXIT_FAILURE;
}
#endif // _WIN32
return EXIT_SUCCESS;
}
/*
Increase the count of a semaphore.
SEMAPHORE* pSemaphore : (INOUT) Valid pointer to a structure corresponding to
a semaphore.
Return : EXIT_SUCCESS or EXIT_FAILURE if there is an error.
*/
inline int PostSemaphore(SEMAPHORE* pSemaphore)
{
#ifdef _WIN32
if (!ReleaseSemaphore(
*pSemaphore, // Handle to semaphore.
1, // Increase count by 1.
NULL)) // Not interested in previous count.
{
PRINT_DEBUG_ERROR_OSSEM(("PostSemaphore error (%s) : %s"
"(pSemaphore=%#x)\n",
strtime_m(),
GetLastErrorMsg(),
pSemaphore));
return EXIT_FAILURE;
}
#else
if (sem_post(pSemaphore) != EXIT_SUCCESS)
{
PRINT_DEBUG_ERROR_OSSEM(("PostSemaphore error (%s) : %s"
"(pSemaphore=%#x)\n",
strtime_m(),
GetLastErrorMsg(),
pSemaphore));
return EXIT_FAILURE;
}
#endif // _WIN32
return EXIT_SUCCESS;
}
/*
Decrease the count of a semaphore without blocking if the semaphore is not
available.
SEMAPHORE* pSemaphore : (INOUT) Valid pointer to a structure corresponding to
a semaphore.
Return : EXIT_SUCCESS if the semaphore is successfully decreased,
EXIT_OBJECT_NONSIGNALED if it is not available or EXIT_FAILURE if there is
an error.
*/
inline int TryAndGetSemaphore(SEMAPHORE* pSemaphore)
{
#ifdef _WIN32
DWORD dwWaitResult = WAIT_FAILED;
// Return when the specified object is in the signaled state or the time-out interval elapses.
// In this case, we just check if the semaphore is available.
dwWaitResult = WaitForSingleObject(
*pSemaphore, // Handle to the semaphore.
(DWORD)0); // Time-out interval (ms).
switch (dwWaitResult)
{
case WAIT_OBJECT_0:
// The semaphore object was signaled.
break;
case WAIT_TIMEOUT:
// The semaphore was nonsignaled, so a time-out occurred.
return EXIT_OBJECT_NONSIGNALED;
default:
PRINT_DEBUG_ERROR_OSSEM(("TryAndGetSemaphore error (%s) : %s"
"(pSemaphore=%#x)\n",
strtime_m(),
GetLastErrorMsg(),
pSemaphore));
return EXIT_FAILURE;
}
#else
if (sem_trywait(pSemaphore) != EXIT_SUCCESS)
{
switch (errno)
{
case EAGAIN:
return EXIT_OBJECT_NONSIGNALED;
default:
PRINT_DEBUG_ERROR_OSSEM(("TryAndGetSemaphore error (%s) : %s"
"(pSemaphore=%#x)\n",
strtime_m(),
GetLastErrorMsg(),
pSemaphore));
return EXIT_FAILURE;
}
}
#endif // _WIN32
return EXIT_SUCCESS;
}
#if defined(_WIN32) || !defined(USE_OLD_CHRONO)
/*
Decrease the count of a semaphore or block until the semaphore be available or
a timeout elapses.
SEMAPHORE* pSemaphore : (INOUT) Valid pointer to a structure corresponding to
a semaphore.
int timeout : (IN) Timeout in ms (max is MAX_SEM_TIMEOUT).
Return : EXIT_SUCCESS if the semaphore is successfully decreased,
EXIT_TIMEOUT if it is not available after the timeout elapses or EXIT_FAILURE if
there is an error.
*/
inline int WaitAndGetSemaphore(SEMAPHORE* pSemaphore, int timeout)
{
#ifdef _WIN32
DWORD dwWaitResult = WAIT_FAILED;
// Returns when the specified object is in the signaled state or the time-out interval elapses.
dwWaitResult = WaitForSingleObject(
*pSemaphore, // Handle to the semaphore.
(DWORD)timeout); // Time-out interval (ms).
switch (dwWaitResult)
{
case WAIT_OBJECT_0:
// The semaphore object was signaled.
break;
case WAIT_TIMEOUT:
// The semaphore was nonsignaled, so a time-out occurred.
return EXIT_TIMEOUT;
default:
PRINT_DEBUG_ERROR_OSSEM(("WaitAndGetSemaphore error (%s) : %s"
"(pSemaphore=%#x, timeout=%d)\n",
strtime_m(),
GetLastErrorMsg(),
pSemaphore, timeout));
return EXIT_FAILURE;
}
#else
struct timespec abstime;
// Calculate relative interval as current time plus duration given by timeout.
if (clock_gettime(CLOCK_REALTIME, &abstime) != EXIT_SUCCESS)
{
PRINT_DEBUG_ERROR_OSSEM(("WaitAndGetSemaphore error (%s) : %s"
"(pSemaphore=%#x, timeout=%d)\n",
strtime_m(),
GetLastErrorMsg(),
pSemaphore, timeout));
return EXIT_FAILURE;
}
abstime.tv_sec += timeout/1000; // Seconds.
abstime.tv_nsec += (timeout%1000)*1000000; // Additional nanoseconds.
abstime.tv_sec += abstime.tv_nsec/1000000000;
abstime.tv_nsec = abstime.tv_nsec%1000000000;
if (sem_timedwait(pSemaphore, &abstime) != EXIT_SUCCESS)
{
switch (errno)
{
case ETIMEDOUT:
return EXIT_TIMEOUT;
default:
PRINT_DEBUG_ERROR_OSSEM(("WaitAndGetSemaphore error (%s) : %s"
"(pSemaphore=%#x, timeout=%d)\n",
strtime_m(),
GetLastErrorMsg(),
pSemaphore, timeout));
return EXIT_FAILURE;
}
}
#endif // _WIN32
return EXIT_SUCCESS;
}
#endif // defined(_WIN32) || !defined(USE_OLD_CHRONO)
#endif // !OSSEM_H