-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathOSIPSem.h
More file actions
395 lines (339 loc) · 10.2 KB
/
OSIPSem.h
File metadata and controls
395 lines (339 loc) · 10.2 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
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
/***************************************************************************************************************:')
OSIPSem.h
Interprocess semaphores handling.
Fabrice Le Bars
Created : 2010-05-23
***************************************************************************************************************:)*/
// 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 OSIPSEM_H
#define OSIPSEM_H
#include "OSTime.h"
/*
Debug macros specific to OSIPSem.
*/
#ifdef _DEBUG_MESSAGES_OSUTILS
# define _DEBUG_MESSAGES_OSIPSEM
#endif // _DEBUG_MESSAGES_OSUTILS
#ifdef _DEBUG_WARNINGS_OSUTILS
# define _DEBUG_WARNINGS_OSIPSEM
#endif // _DEBUG_WARNINGS_OSUTILS
#ifdef _DEBUG_ERRORS_OSUTILS
# define _DEBUG_ERRORS_OSIPSEM
#endif // _DEBUG_ERRORS_OSUTILS
#ifdef _DEBUG_MESSAGES_OSIPSEM
# define PRINT_DEBUG_MESSAGE_OSIPSEM(params) PRINT_DEBUG_MESSAGE(params)
#else
# define PRINT_DEBUG_MESSAGE_OSIPSEM(params)
#endif // _DEBUG_MESSAGES_OSIPSEM
#ifdef _DEBUG_WARNINGS_OSIPSEM
# define PRINT_DEBUG_WARNING_OSIPSEM(params) PRINT_DEBUG_WARNING(params)
#else
# define PRINT_DEBUG_WARNING_OSIPSEM(params)
#endif // _DEBUG_WARNINGS_OSIPSEM
#ifdef _DEBUG_ERRORS_OSIPSEM
# define PRINT_DEBUG_ERROR_OSIPSEM(params) PRINT_DEBUG_ERROR(params)
#else
# define PRINT_DEBUG_ERROR_OSIPSEM(params)
#endif // _DEBUG_ERRORS_OSIPSEM
#ifdef _WIN32
#else
#include <fcntl.h> // For O_* constants.
#include <sys/stat.h> // For mode constants.
#include <semaphore.h>
#endif // _WIN32
#define MAX_IPSEM_TIMEOUT (LONG_MAX-2)
#define MAX_IPSEM_COUNT 2147483646
#define MAX_IPSEM_NAME_LENGTH (128-8)
#ifdef _WIN32
typedef HANDLE IPSEMAPHORE;
#else
struct IPSEMAPHORE
{
sem_t* pSem;
char szSemName[MAX_IPSEM_NAME_LENGTH+8];
};
typedef struct IPSEMAPHORE IPSEMAPHORE;
#endif // _WIN32
/*
Create or open a named interprocess semaphore. Use DeleteIPSemaphore() to
delete it at the end.
IPSEMAPHORE* pSemaphore : (INOUT) Valid pointer that will receive a structure
corresponding to a semaphore.
int InitialCount : (IN) Initial count for the semaphore.
char* szName : (IN) Name of the semaphore.
Return : EXIT_SUCCESS, EXIT_NAME_TOO_LONG or EXIT_FAILURE.
*/
inline int CreateOrOpenIPSemaphore(IPSEMAPHORE* pSemaphore, int InitialCount, char* szName)
{
#ifdef _WIN32
HANDLE hSemaphore = INVALID_HANDLE_VALUE;
char szNameTemp[2*(MAX_IPSEM_NAME_LENGTH+8)];
TCHAR tstr[2*(MAX_IPSEM_NAME_LENGTH+8)];
if (strlen(szName) > MAX_IPSEM_NAME_LENGTH)
{
PRINT_DEBUG_ERROR_OSIPSEM(("CreateOrOpenIPSemaphore error (%s) : %s"
"(InitialCount=%d, szName=%s)\n",
strtime_m(),
szOSUtilsErrMsgs[EXIT_NAME_TOO_LONG],
InitialCount, szName));
return EXIT_NAME_TOO_LONG;
}
// Prefixing the name with "Global\" allows processes to communicate with each
// other even if they are in different terminal server sessions (e.g. several
// remote desktop connections).
memset(szNameTemp, 0, sizeof(szNameTemp));
sprintf(szNameTemp, "Global\\%s", szName);
#ifdef UNICODE
mbstowcs(tstr, szNameTemp, sizeof(szNameTemp)/2);
#else
memcpy(tstr, szNameTemp, sizeof(szNameTemp)/2);
#endif // UNICODE
tstr[sizeof(tstr)-1] = 0;
hSemaphore = CreateSemaphore(
NULL, // Default security attributes.
InitialCount, // Initial count.
MAX_IPSEM_COUNT, // Maximum count.
tstr); // Named semaphore.
if (hSemaphore == NULL)
{
PRINT_DEBUG_ERROR_OSIPSEM(("CreateOrOpenIPSemaphore error (%s) : %s"
"(InitialCount=%d, szName=%s)\n",
strtime_m(),
GetLastErrorMsg(),
InitialCount, szName));
return EXIT_FAILURE;
}
*pSemaphore = hSemaphore;
#else
if (strlen(szName) > MAX_IPSEM_NAME_LENGTH)
{
PRINT_DEBUG_ERROR_OSIPSEM(("CreateOrOpenIPSemaphore error (%s) : %s"
"(InitialCount=%d, szName=%s)\n",
strtime_m(),
szOSUtilsErrMsgs[EXIT_NAME_TOO_LONG],
InitialCount, szName));
return EXIT_NAME_TOO_LONG;
}
// szName must be like "/nameXXX".
sprintf(pSemaphore->szSemName, "/%s", szName);
pSemaphore->pSem = sem_open(pSemaphore->szSemName, O_CREAT, S_IRWXU|S_IRWXG|S_IRWXO, InitialCount);
if (pSemaphore->pSem == SEM_FAILED)
{
PRINT_DEBUG_ERROR_OSIPSEM(("CreateOrOpenIPSemaphore error (%s) : %s"
"(InitialCount=%d, szName=%s)\n",
strtime_m(),
GetLastErrorMsg(),
InitialCount, szName));
return EXIT_FAILURE;
}
#endif // _WIN32
return EXIT_SUCCESS;
}
/*
Delete an interprocess semaphore created by CreateOrOpenIPSemaphore().
IPSEMAPHORE* pSemaphore : (INOUT) Valid pointer to a structure corresponding to
a semaphore.
Return : EXIT_SUCCESS or EXIT_FAILURE if there is an error.
*/
inline int DeleteIPSemaphore(IPSEMAPHORE* pSemaphore)
{
#ifdef _WIN32
if (!CloseHandle(*pSemaphore))
{
PRINT_DEBUG_ERROR_OSIPSEM(("DeleteIPSemaphore error (%s) : %s"
"(pSemaphore=%#x)\n",
strtime_m(),
GetLastErrorMsg(),
pSemaphore));
return EXIT_FAILURE;
}
#else
// Close the named semaphore, allowing any resources that the system has
// allocated to the calling process for this semaphore to be freed.
if (sem_close(pSemaphore->pSem) != EXIT_SUCCESS)
{
PRINT_DEBUG_ERROR_OSIPSEM(("DeleteIPSemaphore error (%s) : %s"
"(pSemaphore=%#x)\n",
strtime_m(),
GetLastErrorMsg(),
pSemaphore));
return EXIT_FAILURE;
}
// The semaphore name is removed immediately. The semaphore is destroyed
// once all other processes that have the semaphore open close it.
sem_unlink(pSemaphore->szSemName);
//if (sem_unlink(pSemaphore->szSemName) != EXIT_SUCCESS)
//{
// PRINT_DEBUG_ERROR_OSIPSEM(("DeleteIPSemaphore error (%s) : %s"
// "(pSemaphore=%#x)\n",
// strtime_m(),
// GetLastErrorMsg(),
// pSemaphore));
// return EXIT_FAILURE;
//}
#endif // _WIN32
return EXIT_SUCCESS;
}
/*
Increase the count of a semaphore.
IPSEMAPHORE* pSemaphore : (INOUT) Valid pointer to a structure corresponding to
a semaphore.
Return : EXIT_SUCCESS or EXIT_FAILURE if there is an error.
*/
inline int PostIPSemaphore(IPSEMAPHORE* pSemaphore)
{
#ifdef _WIN32
if (!ReleaseSemaphore(
*pSemaphore, // Handle to semaphore.
1, // Increase count by 1.
NULL)) // Not interested in previous count.
{
PRINT_DEBUG_ERROR_OSIPSEM(("PostIPSemaphore error (%s) : %s"
"(pSemaphore=%#x)\n",
strtime_m(),
GetLastErrorMsg(),
pSemaphore));
return EXIT_FAILURE;
}
#else
if (sem_post(pSemaphore->pSem) != EXIT_SUCCESS)
{
PRINT_DEBUG_ERROR_OSIPSEM(("PostIPSemaphore 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.
IPSEMAPHORE* 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 TryAndGetIPSemaphore(IPSEMAPHORE* 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_OSIPSEM(("TryAndGetIPSemaphore error (%s) : %s"
"(pSemaphore=%#x)\n",
strtime_m(),
GetLastErrorMsg(),
pSemaphore));
return EXIT_FAILURE;
}
#else
if (sem_trywait(pSemaphore->pSem) != EXIT_SUCCESS)
{
switch (errno)
{
case EAGAIN:
return EXIT_OBJECT_NONSIGNALED;
default:
PRINT_DEBUG_ERROR_OSIPSEM(("TryAndGetIPSemaphore error (%s) : %s"
"(pSemaphore=%#x)\n",
strtime_m(),
GetLastErrorMsg(),
pSemaphore));
return EXIT_FAILURE;
}
}
#endif // _WIN32
return EXIT_SUCCESS;
}
/*
Decrease the count of a semaphore or block until the semaphore be available or
a timeout elapses.
IPSEMAPHORE* pSemaphore : (INOUT) Valid pointer to a structure corresponding to
a semaphore.
int timeout : (IN) Timeout in ms (max is MAX_IPSEMAPHORE_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 WaitAndGetIPSemaphore(IPSEMAPHORE* 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_OSIPSEM(("WaitAndGetIPSemaphore 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_OSIPSEM(("WaitAndGetIPSemaphore 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->pSem, &abstime) != EXIT_SUCCESS)
{
switch (errno)
{
case ETIMEDOUT:
return EXIT_TIMEOUT;
default:
PRINT_DEBUG_ERROR_OSIPSEM(("WaitAndGetIPSemaphore error (%s) : %s"
"(pSemaphore=%#x, timeout=%d)\n",
strtime_m(),
GetLastErrorMsg(),
pSemaphore, timeout));
return EXIT_FAILURE;
}
}
#endif // _WIN32
return EXIT_SUCCESS;
}
#endif // !OSIPSEM_H