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
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
|
/*
* Conduit.cpp
*
* Definition of the Conduit class
*
* Author: Erik Hellström, hellstrom@isy.liu.se, 2008-12-14
* Modified: Emil Larsson, lime@isy.liu.se, 2012-01-13
*/
#include <stdio.h>
#include "Conduit.h"
#include <tchar.h>
// Constructor
Conduit::Conduit() {
ptrShm = NULL;
isServer = false;
iNumSems = 0;
hMapObject = NULL;
for(int i=0; i<MAX_NUM_SEM; i++)
hSemaphore[i] = NULL;
}
// Destructor
Conduit::~Conduit() {
// Issue shutdown function
Shutdown();
}
// Detach and/or remove shared memory segment
bool Conduit::Shutdown() {
bool ret = true;
int i;
if(hMapObject != NULL) {
// Detach shared memory segment
if(!UnmapViewOfFile(ptrShm))
ret = false;
if(isServer) {
// Remove shared memory segment
if(CloseHandle(hMapObject) == FALSE)
ret = false;
// Destroy semaphores
for(i=0; i<iNumSems; i++) {
if(CloseHandle(hSemaphore[i]) == FALSE)
ret = false;
}
}
hMapObject = NULL;
}
ptrShm = NULL;
isServer = false;
return ret;
}
// Server initialization
bool Conduit::StartServer(KeyType* key) {
int i;
bool ret = true;
if(ptrShm != NULL)
return false;
// Calculate number of semaphores
iNumSems = NumberOfSemaphores();
if(iNumSems > MAX_NUM_SEM)
return false;
// WIN32 IPC: Shared memory based on file mapping.
char strKey[KEY_LEN+2];
SECURITY_ATTRIBUTES attr;
// Fill struct with security attributes
attr.nLength = sizeof(SECURITY_ATTRIBUTES);
attr.lpSecurityDescriptor = NULL;
attr.bInheritHandle = FALSE;
// Convert integer array 'key' to char array 'strKey'
for(i=0; i<KEY_LEN; i++)
strKey[i+1] = key[i]+48;
strKey[0] = 'A';
strKey[KEY_LEN+1] = '\0';
// Create shared memory segment
hMapObject = CreateFileMapping(INVALID_HANDLE_VALUE, // Use paging file
&attr, // Security attr.
PAGE_READWRITE, // Read/write access
0, // Size: high 32-bits
GetDataSize(), // Size: low 32-bits
strKey); // Name of map object
if(hMapObject == NULL)
return false;
// Attach to shared memory segment
ptrShm = MapViewOfFile(hMapObject, // Object to map view of
FILE_MAP_WRITE, // Read/write access
0, // High offset: map from
0, // Low offset: beginning
0); // Default: map entire file
if(ptrShm == NULL) {
CloseHandle(hMapObject);
return false;
}
// Create semaphore for mutual exclusion [initial value 1]
strKey[0]++;
hSemaphore[0] = CreateSemaphore(&attr, // Security attributes
1, // Initial count
1, // Maximum count
strKey); // Named semaphore
if(hSemaphore[0] == NULL)
ret = false;
// Create semaphores for event tracking [initial value 0]
for(i=1; i<iNumSems; i++) {
strKey[0]++;
hSemaphore[i] = CreateSemaphore(&attr, // Security attributes
0, // Initial count
1, // Maximum count
strKey); // Named semaphore
if(hSemaphore[i] == NULL)
ret = false;
}
// Making absolutely sure that the semaphores are initialized correctly
Signal(0);
for(i=1; i<iNumSems; i++)
Wait(i,0);
if(ret) {
isServer = true;
return true;
}
else {
isServer = true;
Shutdown();
isServer = false;
return false;
}
}
// Client initialization
bool Conduit::StartClient(KeyType* key) {
int i;
if(ptrShm != NULL)
return false;
// Calculate number of semaphores
iNumSems = NumberOfSemaphores();
// WIN32 IPC: Shared memory based on file mapping.
char strKey[KEY_LEN+2];
// Convert integer array 'key' to char array 'strKey'
for(i=0; i<KEY_LEN; i++)
strKey[i+1] = key[i]+48;
strKey[0] = 'A';
strKey[KEY_LEN+1] = '\0';
// Locate shared memory segment
hMapObject = OpenFileMapping(FILE_MAP_WRITE, // Read/write acces
FALSE, // Handle not inheritable
strKey); // Name of map object
if(hMapObject == NULL)
return false;
// Attach to shared memory segment
ptrShm = MapViewOfFile(hMapObject, // Object to map view of
FILE_MAP_WRITE, // Read/write access
0, // High offset: map from
0, // Low offset: beginning
0); // Default: map entire file
if(ptrShm == NULL)
return false;
// Locate semaphore for mutual exclusion
strKey[0]++;
hSemaphore[0] = OpenSemaphore(SEMAPHORE_MODIFY_STATE |
STANDARD_RIGHTS_ALL, // Desired access
FALSE, // No inheritance
strKey); // Sempahore name
if(hSemaphore[0] == NULL)
return false;
// Locate semaphores for event tracking
for(i=1; i<iNumSems; i++) {
strKey[0]++;
hSemaphore[i] = OpenSemaphore(SEMAPHORE_MODIFY_STATE |
STANDARD_RIGHTS_ALL, // Desired access
FALSE, // No inheritance
strKey); // Sempahore name
if(hSemaphore[i] == NULL)
return false;
}
isServer = false;
return true;
}
// Wait-operation on a semaphore
bool Conduit::Wait(int index) {
if(hSemaphore[index] == NULL)
return false;
if(WaitForSingleObject(hSemaphore[index],INFINITE) != WAIT_OBJECT_0)
return false;
return true;
}
// Wait-operation with timeout [ms] on a semaphore
bool Conduit::Wait(int index, int timeout) {
if(hSemaphore[index] == NULL)
return false;
if(WaitForSingleObject(hSemaphore[index],timeout) != WAIT_OBJECT_0)
return false;
return true;
}
// Signal-operation on semaphore
bool Conduit::Signal(int index) {
if(hSemaphore[index] == NULL)
return false;
if(ReleaseSemaphore(hSemaphore[index],1,NULL) == FALSE) {
if(GetLastError() == ERROR_TOO_MANY_POSTS)
// Already unlocked
return true;
else
// Error
return false;
}
return true;
}
// Request lock on resource
bool Conduit::RequestLock() {
return Wait(0);
}
// Release lock on resource
bool Conduit::ReleaseLock() {
return Signal(0);
}
// Indicate change of flag
bool Conduit::IndicateChangedFlag() {
return Signal(1);
}
// Wait for change of flag
bool Conduit::WaitForChangedFlag() {
return Wait(1);
}
// Wait for change with timeout of flag
bool Conduit::WaitForChangedFlag(int timeout) {
return Wait(1,timeout);
}
// Wait for a flag
WaitResult Conduit::WaitForFlag(FlagType flag) {
bool ret,sflag;
WaitResult wr;
FlagType currentFlag;
do {
if(FlagEqual(flag,currentFlag))
return WAIT_OK;
// Perform wait
ret = WaitForChangedFlag();
wr = WAIT_OK;
if(!ret || !GetShutdownFlag(sflag))
wr = WAIT_FAIL;
if(sflag)
wr = WAIT_CLOSE;
} while(wr == WAIT_OK);
return wr;
}
// Wait for a flag with timeout
WaitResult Conduit::WaitForFlag(FlagType flag, int timeout) {
bool ret,sflag;
WaitResult wr;
FlagType currentFlag;
do {
if(FlagEqual(flag,currentFlag))
return WAIT_OK;
// Perform wait
ret = WaitForChangedFlag(timeout);
wr = WAIT_OK;
if(!ret || !GetShutdownFlag(sflag))
wr = WAIT_FAIL;
if(sflag)
wr = WAIT_CLOSE;
} while(wr == WAIT_OK);
return wr;
}
// Get flag but also check if equal to given parameter. Equal means
// that any of the bits set to one in flag matches a bit set to one in
// the current flag, i.e. if an and-operation gives a positive result.
bool Conduit::FlagEqual(FlagType flag, FlagType& current) {
return(GetFlag(current) &&
((flag == NULL_FLAG && current == NULL_FLAG) ||
((current & flag) > 0)));
}
// Wait for an event (reserve associated semaphore)
WaitResult Conduit::WaitForEvent(int index) {
bool ret,flag;
if(!ValidIndex(index))
return WAIT_FAIL;
// Perform wait
ret = Wait(index + FIRST_EVENT_SEM);
if(!ret || !GetShutdownFlag(flag))
return WAIT_FAIL;
if(flag)
return WAIT_CLOSE;
return WAIT_OK;
}
// Wait for an event with timeout
WaitResult Conduit::WaitForEvent(int index, int timeout) {
bool ret,flag;
if(!ValidIndex(index))
return WAIT_FAIL;
// Perform wait
ret = Wait(index + FIRST_EVENT_SEM,timeout);
if(!ret || !GetShutdownFlag(flag))
return WAIT_FAIL;
if(flag)
return WAIT_CLOSE;
return WAIT_OK;
}
// Cause an event (release associated sempahore)
bool Conduit::CauseEvent(int index) {
if(!ValidIndex(index))
return false;
else
return Signal(index + FIRST_EVENT_SEM);
}
// Cause shutdown event
bool Conduit::CauseShutdown() {
int i;
// Indicate shutdown
if(!SetShutdownFlag(true))
return false;
// Release all semaphores but the mutex
for(i=1; i<iNumSems; i++) {
if(!Signal(i))
return false;
}
return true;
}
// Get state flag
bool Conduit::GetFlag(FlagType& flag) {
bool ret = true;
CommonData *ptr;
// Request lock
if(!RequestLock())
return false;
if((ptr = GetCommonData()) != NULL)
flag = ptr->Flag;
else
ret = false;
// Release lock
if(!ReleaseLock())
return false;
return ret;
}
// Set state flag
bool Conduit::SetFlag(FlagType flag) {
bool ret = true;
CommonData *ptr;
// Request lock
if(!RequestLock())
return false;
if((ptr = GetCommonData()) != NULL)
ptr->Flag = flag;
else
ret = false;
// Release lock
if(!ReleaseLock())
return false;
// Indicate change
if(!IndicateChangedFlag())
return false;
return ret;
}
// Get shutdown boolean
bool Conduit::GetShutdownFlag(bool& flag) {
bool ret = true;
CommonData *ptr;
// Request lock
if(!RequestLock())
return false;
if((ptr = GetCommonData()) != NULL)
flag = ptr->DoShutdown;
else
ret = false;
// Release lock
if(!ReleaseLock())
return false;
return ret;
}
// Set shutdown boolean
bool Conduit::SetShutdownFlag(bool flag) {
bool ret = true;
CommonData *ptr;
// Request lock
if(!RequestLock())
return false;
if((ptr = GetCommonData()) != NULL)
ptr->DoShutdown = flag;
else
ret = false;
// Release lock
if(!ReleaseLock())
return false;
return ret;
}
// Check validity of semaphore index
bool Conduit::ValidIndex(int index) {
if(index < 0 || index > (iNumSems - FIRST_EVENT_SEM))
return false;
return true;
}
// Calculate number of semaphores
int Conduit::NumberOfSemaphores() {
return(FIRST_EVENT_SEM + GetNumEvents());
}
|