-
Notifications
You must be signed in to change notification settings - Fork 2
/
OSEv.h
497 lines (433 loc) · 12.5 KB
/
OSEv.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
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
/***************************************************************************************************************:')
OSEv.c
Events handling (not interprocess).
Fabrice Le Bars
Created : 2009-04-09
***************************************************************************************************************:)*/
// 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 OSEV_H
#define OSEV_H
#include "OSThread.h"
/*
Debug macros specific to OSEv.
*/
#ifdef _DEBUG_MESSAGES_OSUTILS
# define _DEBUG_MESSAGES_OSEV
#endif // _DEBUG_MESSAGES_OSUTILS
#ifdef _DEBUG_WARNINGS_OSUTILS
# define _DEBUG_WARNINGS_OSEV
#endif // _DEBUG_WARNINGS_OSUTILS
#ifdef _DEBUG_ERRORS_OSUTILS
# define _DEBUG_ERRORS_OSEV
#endif // _DEBUG_ERRORS_OSUTILS
#ifdef _DEBUG_MESSAGES_OSEV
# define PRINT_DEBUG_MESSAGE_OSEV(params) PRINT_DEBUG_MESSAGE(params)
#else
# define PRINT_DEBUG_MESSAGE_OSEV(params)
#endif // _DEBUG_MESSAGES_OSEV
#ifdef _DEBUG_WARNINGS_OSEV
# define PRINT_DEBUG_WARNING_OSEV(params) PRINT_DEBUG_WARNING(params)
#else
# define PRINT_DEBUG_WARNING_OSEV(params)
#endif // _DEBUG_WARNINGS_OSEV
#ifdef _DEBUG_ERRORS_OSEV
# define PRINT_DEBUG_ERROR_OSEV(params) PRINT_DEBUG_ERROR(params)
#else
# define PRINT_DEBUG_ERROR_OSEV(params)
#endif // _DEBUG_ERRORS_OSEV
#define MAX_EV_TIMEOUT (LONG_MAX-2)
#ifdef _WIN32
typedef HANDLE EVENT;
#else
struct EVENT
{
BOOL flag;
pthread_cond_t cv;
pthread_mutex_t mutex;
};
typedef struct EVENT EVENT;
#endif // _WIN32
/*
Create a default event (not interprocess). Use DeleteEvent() to
delete it at the end.
EVENT* pEvent : (INOUT) Valid pointer that will receive a structure
corresponding to an event.
BOOL bInitialStateSignaled : (IN) TRUE if the initial state of the event must be
signaled, FALSE otherwise.
Return : EXIT_SUCCESS or EXIT_FAILURE.
*/
inline int CreateDefaultEvent(EVENT* pEvent, BOOL bInitialStateSignaled)
{
#ifdef _WIN32
HANDLE hEvent;
hEvent = CreateEvent(
NULL, // Default security attributes.
TRUE, // If this parameter is TRUE, the function creates a manual-reset event object,
// which requires the use of ResetEvent() to set the event state to nonsignaled.
// If this parameter is FALSE, the function creates an auto-reset event object,
// and system automatically resets the event state to nonsignaled after a single waiting
// thread has been released.
bInitialStateSignaled, // If FALSE, it is initially not signaled, otherwise it is signaled.
NULL); // Unnamed event.
if (hEvent == NULL)
{
PRINT_DEBUG_ERROR_OSEV(("CreateDefaultEvent error (%s) : %s"
"(bInitialStateSignaled=%d)\n",
strtime_m(),
GetLastErrorMsg(),
(int)bInitialStateSignaled));
return EXIT_FAILURE;
}
*pEvent = hEvent;
#else
if (pthread_mutex_init(&pEvent->mutex, NULL) != EXIT_SUCCESS)
{
PRINT_DEBUG_ERROR_OSEV(("CreateDefaultEvent error (%s) : %s"
"(bInitialStateSignaled=%d)\n",
strtime_m(),
"pthread_mutex_init failed. ",
(int)bInitialStateSignaled));
return EXIT_FAILURE;
}
if (pthread_cond_init(&pEvent->cv, NULL) != EXIT_SUCCESS)
{
PRINT_DEBUG_ERROR_OSEV(("CreateDefaultEvent error (%s) : %s"
"(bInitialStateSignaled=%d)\n",
strtime_m(),
"pthread_cond_init failed. ",
(int)bInitialStateSignaled));
pthread_mutex_destroy(&pEvent->mutex);
return EXIT_FAILURE;
}
pEvent->flag = bInitialStateSignaled;
#endif // _WIN32
return EXIT_SUCCESS;
}
/*
Delete an event created by CreateDefaultEvent().
EVENT* pEvent : (INOUT) Valid pointer to a structure corresponding to
an event.
Return : EXIT_SUCCESS or EXIT_FAILURE if there is an error.
*/
inline int DeleteEvent(EVENT* pEvent)
{
#ifdef _WIN32
if (!CloseHandle(*pEvent))
{
PRINT_DEBUG_ERROR_OSEV(("DeleteEvent error (%s) : %s"
"(pEvent=%#x)\n",
strtime_m(),
GetLastErrorMsg(),
pEvent));
return EXIT_FAILURE;
}
#else
if (pthread_cond_destroy(&pEvent->cv) != EXIT_SUCCESS)
{
PRINT_DEBUG_ERROR_OSEV(("DeleteEvent error (%s) : %s"
"(pEvent=%#x)\n",
strtime_m(),
"pthread_cond_destroy failed. ",
pEvent));
return EXIT_FAILURE;
}
if (pthread_mutex_destroy(&pEvent->mutex) != EXIT_SUCCESS)
{
PRINT_DEBUG_ERROR_OSEV(("DeleteEvent error (%s) : %s"
"(pEvent=%#x)\n",
strtime_m(),
"pthread_mutex_destroy failed. ",
pEvent));
return EXIT_FAILURE;
}
#endif // _WIN32
return EXIT_SUCCESS;
}
/*
Set an event to a signaled state. All threads that were waiting or
will try to wait or check for the event using CheckEvent() or WaitForEvent()
should be released unless UnSignalEvent() is called between SignalEvent()
and CheckEvent() or WaitForEvent().
EVENT* pEvent : (INOUT) Valid pointer to a structure corresponding to
an event.
Return : EXIT_SUCCESS or EXIT_FAILURE if there is an error.
*/
inline int SignalEvent(EVENT* pEvent)
{
#ifdef _WIN32
if (!SetEvent(*pEvent))
{
PRINT_DEBUG_ERROR_OSEV(("SignalEvent error (%s) : %s"
"(pEvent=%#x)\n",
strtime_m(),
GetLastErrorMsg(),
pEvent));
return EXIT_FAILURE;
}
#else
// Lock the mutex before accessing the flag value.
if (pthread_mutex_lock(&pEvent->mutex) != EXIT_SUCCESS)
{
PRINT_DEBUG_ERROR_OSEV(("SignalEvent error (%s) : %s"
"(pEvent=%#x)\n",
strtime_m(),
"pthread_mutex_lock failed. ",
pEvent));
return EXIT_FAILURE;
}
if (!pEvent->flag)
{
// Set the flag value, and then signal in case a thread is
// blocked, waiting for the flag to become set.
pEvent->flag = TRUE;
if (pthread_cond_broadcast(&pEvent->cv) != EXIT_SUCCESS)
{
PRINT_DEBUG_ERROR_OSEV(("SignalEvent error (%s) : %s"
"(pEvent=%#x)\n",
strtime_m(),
"pthread_cond_broadcast failed. ",
pEvent));
pthread_mutex_unlock(&pEvent->mutex);
return EXIT_FAILURE;
}
}
// Unlock the mutex.
if (pthread_mutex_unlock(&pEvent->mutex) != EXIT_SUCCESS)
{
PRINT_DEBUG_ERROR_OSEV(("SignalEvent error (%s) : %s"
"(pEvent=%#x)\n",
strtime_m(),
"pthread_mutex_unlock failed. ",
pEvent));
return EXIT_FAILURE;
}
#endif // _WIN32
return EXIT_SUCCESS;
}
/*
Set an event to a nonsignaled state.
EVENT* pEvent : (INOUT) Valid pointer to a structure corresponding to
an event.
Return : EXIT_SUCCESS or EXIT_FAILURE if there is an error.
*/
inline int UnSignalEvent(EVENT* pEvent)
{
#ifdef _WIN32
if (!ResetEvent(*pEvent))
{
PRINT_DEBUG_ERROR_OSEV(("UnSignalEvent error (%s) : %s"
"(pEvent=%#x)\n",
strtime_m(),
GetLastErrorMsg(),
pEvent));
return EXIT_FAILURE;
}
#else
// Lock the mutex before accessing the flag value.
if (pthread_mutex_lock(&pEvent->mutex) != EXIT_SUCCESS)
{
PRINT_DEBUG_ERROR_OSEV(("UnSignalEvent error (%s) : %s"
"(pEvent=%#x)\n",
strtime_m(),
"pthread_mutex_lock failed. ",
pEvent));
return EXIT_FAILURE;
}
// Set the flag value. If it was previously signaled, no thread should
// be waiting and if it was nonsignaled, it should not change anything
// so there is no need to call pthread_cond_broadcast().
pEvent->flag = FALSE;
// Unlock the mutex.
if (pthread_mutex_unlock(&pEvent->mutex) != EXIT_SUCCESS)
{
PRINT_DEBUG_ERROR_OSEV(("UnSignalEvent error (%s) : %s"
"(pEvent=%#x)\n",
strtime_m(),
"pthread_mutex_unlock failed. ",
pEvent));
return EXIT_FAILURE;
}
#endif // _WIN32
return EXIT_SUCCESS;
}
/*
Check if an event is signaled.
EVENT* pEvent : (INOUT) Valid pointer to a structure corresponding to
an event.
Return : EXIT_SUCCESS if the event is signaled, EXIT_OBJECT_NONSIGNALED if it
is not signaled or EXIT_FAILURE if there is an error.
*/
inline int CheckEvent(EVENT* pEvent)
{
#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 event is signaled.
dwWaitResult = WaitForSingleObject(
*pEvent, // Handle to the event.
(DWORD)0); // Time-out interval (ms).
switch (dwWaitResult)
{
case WAIT_OBJECT_0:
// The event object was signaled.
break;
case WAIT_TIMEOUT:
// The event was nonsignaled, so a time-out occurred.
return EXIT_OBJECT_NONSIGNALED;
default:
PRINT_DEBUG_ERROR_OSEV(("CheckEvent error (%s) : %s"
"(pEvent=%#x)\n",
strtime_m(),
GetLastErrorMsg(),
pEvent));
return EXIT_FAILURE;
}
#else
// Lock the mutex before accessing the flag value.
if (pthread_mutex_lock(&pEvent->mutex) != EXIT_SUCCESS)
{
PRINT_DEBUG_ERROR_OSEV(("CheckEvent error (%s) : %s"
"(pEvent=%#x)\n",
strtime_m(),
"pthread_mutex_lock failed. ",
pEvent));
return EXIT_FAILURE;
}
if (!pEvent->flag)
{
// The flag is clear. Unlock the mutex and return that the event is nonsignaled.
if (pthread_mutex_unlock(&pEvent->mutex) != EXIT_SUCCESS)
{
PRINT_DEBUG_ERROR_OSEV(("CheckEvent error (%s) : %s"
"(pEvent=%#x)\n",
strtime_m(),
"pthread_mutex_unlock failed. ",
pEvent));
return EXIT_FAILURE;
}
return EXIT_OBJECT_NONSIGNALED;
}
// When we have gotten here, we know the flag must be set. Unlock the mutex.
if (pthread_mutex_unlock(&pEvent->mutex) != EXIT_SUCCESS)
{
PRINT_DEBUG_ERROR_OSEV(("CheckEvent error (%s) : %s"
"(pEvent=%#x)\n",
strtime_m(),
"pthread_mutex_unlock failed. ",
pEvent));
return EXIT_FAILURE;
}
#endif // _WIN32
return EXIT_SUCCESS;
}
#if defined(_WIN32) || !defined(USE_OLD_CHRONO)
/*
Wait for an event to be signaled or a timeout elapse.
EVENT* pEvent : (INOUT) Valid pointer to a structure corresponding to
an event.
int timeout : (IN) Timeout in ms (max is MAX_EV_TIMEOUT).
Return : EXIT_SUCCESS if the event is signaled, EXIT_TIMEOUT if it is not
signaled after the timeout elapses or EXIT_FAILURE if there is an error.
*/
inline int WaitForEvent(EVENT* pEvent, 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(
*pEvent, // Handle to the event.
(DWORD)timeout); // Time-out interval (ms).
switch (dwWaitResult)
{
case WAIT_OBJECT_0:
// The event object was signaled.
break;
case WAIT_TIMEOUT:
// The event was nonsignaled, so a time-out occurred.
return EXIT_TIMEOUT;
default:
PRINT_DEBUG_ERROR_OSEV(("WaitForEvent error (%s) : %s"
"(pEvent=%#x, timeout=%d)\n",
strtime_m(),
GetLastErrorMsg(),
pEvent, 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_OSEV(("WaitForEvent error (%s) : %s"
"(pEvent=%#x, timeout=%d)\n",
strtime_m(),
GetLastErrorMsg(),
pEvent, 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;
// Lock the mutex before accessing the flag value.
if (pthread_mutex_lock(&pEvent->mutex) != EXIT_SUCCESS)
{
PRINT_DEBUG_ERROR_OSEV(("WaitForEvent error (%s) : %s"
"(pEvent=%#x, timeout=%d)\n",
strtime_m(),
"pthread_mutex_lock failed. ",
pEvent, timeout));
return EXIT_FAILURE;
}
if (!pEvent->flag)
{
// Wait for a signal on the condition variable, indicating that the flag
// value has changed.
int iResult = pthread_cond_timedwait(&pEvent->cv, &pEvent->mutex, &abstime);
switch (iResult)
{
case EXIT_SUCCESS:
break;
case ETIMEDOUT:
if (pthread_mutex_unlock(&pEvent->mutex) != EXIT_SUCCESS)
{
PRINT_DEBUG_ERROR_OSEV(("WaitForEvent error (%s) : %s"
"(pEvent=%#x, timeout=%d)\n",
strtime_m(),
"pthread_mutex_unlock failed. ",
pEvent, timeout));
return EXIT_FAILURE;
}
return EXIT_TIMEOUT;
default:
PRINT_DEBUG_ERROR_OSEV(("WaitForEvent error (%s) : %s"
"(pEvent=%#x, timeout=%d)\n",
strtime_m(),
"pthread_cond_timedwait failed. ",
pEvent, timeout));
pthread_mutex_unlock(&pEvent->mutex);
return EXIT_FAILURE;
}
}
// When we have gotten here, we know the flag is set. Unlock the mutex.
if (pthread_mutex_unlock(&pEvent->mutex) != EXIT_SUCCESS)
{
PRINT_DEBUG_ERROR_OSEV(("WaitForEvent error (%s) : %s"
"(pEvent=%#x, timeout=%d)\n",
strtime_m(),
"pthread_mutex_unlock failed. ",
pEvent, timeout));
return EXIT_FAILURE;
}
#endif // _WIN32
return EXIT_SUCCESS;
}
#endif // defined(_WIN32) || !defined(USE_OLD_CHRONO)
#endif // !OSEV_H