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 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762
|
// Copyright (C) 2015-2017 Phil Rosenberg
// Copyright (C) 2017 Alan W. Irwin
//
// This file is part of PLplot.
//
// PLplot is free software; you can redistribute it and/or modify
// it under the terms of the GNU Library General Public License as published
// by the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// PLplot 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 Library General Public License for more details.
//
// You should have received a copy of the GNU Library General Public License
// along with PLplot; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
//
#include "wxwidgets_comms.h"
#include <assert.h>
#ifdef PL_WXWIDGETS_IPC3
// Default constructor: Initialize m_wsem, m_rsem, and m_tsem to
// NULL to mark those as invalid semaphore locations.
PLThreeSemaphores::PLThreeSemaphores()
{
m_wsem = NULL;
m_rsem = NULL;
m_tsem = NULL;
}
// Named semaphores.
// Create three semaphore names from basename, and open and (only
// on creation which happens automatically for both the Windows
// and POSIX API cases) initialize the corresponding named
// semaphores with the read and write semaphores initially blocked
// and the transmit semaphore initially unblocked.
void PLThreeSemaphores::initializeToValid( const char * baseName )
{
// For POSIX named semaphores, name has to start with "/".
// FIXME. Remove following comment if this works for Windows.
// Does this leading slash affect the Windows case?
strcpy( m_wsemName, "/wsem" );
strncpy( m_wsemName + 5, baseName, PL_SEMAPHORE_NAME_LENGTH - 5 );
m_wsemName[PL_SEMAPHORE_NAME_LENGTH] = '\0';
strcpy( m_rsemName, "/rsem" );
strncpy( m_rsemName + 5, baseName, PL_SEMAPHORE_NAME_LENGTH - 5 );
m_rsemName[PL_SEMAPHORE_NAME_LENGTH] = '\0';
strcpy( m_tsemName, "/tsem" );
strncpy( m_tsemName + 5, baseName, PL_SEMAPHORE_NAME_LENGTH - 5 );
m_tsemName[PL_SEMAPHORE_NAME_LENGTH] = '\0';
#ifdef _WIN32
// Windows named semaphores.
m_wsem = CreateSemaphoreA( NULL, 0, 1, m_wsemName );
m_rsem = CreateSemaphoreA( NULL, 0, 1, m_rsemName );
m_tsem = CreateSemaphoreA( NULL, 1, 1, m_tsemName );
#else // #ifdef _WIN32
// POSIX named semaphores.
m_wsem = sem_open( m_wsemName, O_CREAT, S_IRWXU, 0 );
m_rsem = sem_open( m_rsemName, O_CREAT, S_IRWXU, 0 );
m_tsem = sem_open( m_tsemName, O_CREAT, S_IRWXU, 1 );
#endif // #ifdef _WIN32
}
// Only destructor
PLThreeSemaphores::~PLThreeSemaphores()
{
initializeToInvalid();
}
// If the m_wsem, m_rsem, and m_tsem locations are non-NULL
// destroy those semaphores. Also, unconditionally set
// m_wsem, m_rsem, and m_tsem to NULL to mark those as invalid
// semaphore locations.
void PLThreeSemaphores::initializeToInvalid()
{
if ( areSemaphoresValid() )
{
#ifdef _WIN32
// Windows named semaphores.
CloseHandle( m_wsem );
CloseHandle( m_rsem );
CloseHandle( m_tsem );
#else // #ifdef _WIN32
// POSIX named semaphores.
// sem_unlink calls needed to release shared memory resources
// used by named semaphores.
sem_close( m_wsem );
sem_unlink( m_wsemName );
sem_close( m_rsem );
sem_unlink( m_rsemName );
sem_close( m_tsem );
sem_unlink( m_tsemName );
#endif // #ifdef _WIN32
}
m_wsem = NULL;
m_rsem = NULL;
m_tsem = NULL;
}
// Attempts to test semaphore validity using sem_getvalue on Linux
// proved fruitless since as far as I can tell with gdb that function
// always returns zero, i.e., always signals success ___so long as its
// sem_t * argument points to _any_ non-NULL accessible memory area that is
// cast to sem_t *__! And when called with a NULL argument sem_getvalue
// segfaults rather than returning with a non-zero value! So Linux
// sem_getvalue is pretty crude.
// So instead of checking the return value of sem_getvalue, we instead
// only check whether m_wsem and m_rsem are not NULL (signalling
// valid) or NULL (signalling invalid).
// N.B. the default PLThreeSemaphores constructor sets these locations
// to NULL, and the alternative constructor or initializeToValid must
// be called with mustExist argument false to change these locations
// to valid semaphores that are initially blocked.
bool PLThreeSemaphores::isWriteSemaphoreValid()
{
return m_wsem != NULL;
}
bool PLThreeSemaphores::isReadSemaphoreValid()
{
return m_rsem != NULL;
}
bool PLThreeSemaphores::isTransmitSemaphoreValid()
{
return m_tsem != NULL;
}
// Return true if all semaphores are valid.
// Return false if all semaphores are invalid.
// Throw an exception otherwise.
bool PLThreeSemaphores::areSemaphoresValid()
{
if ( isWriteSemaphoreValid() && isReadSemaphoreValid() && isTransmitSemaphoreValid() )
{
return true;
}
else if ( !isWriteSemaphoreValid() && !isReadSemaphoreValid() && !isTransmitSemaphoreValid() )
{
return false;
}
throw( "PLThreeSemaphores::areSemaphoresValid: invalid combination of read, write, and transmit semaphore validity" );
// Should never reach this statement, but include it anyway to quiet possible compiler warnings.
return false;
}
// Check whether write and read semaphores are valid and blocked.
bool PLThreeSemaphores::areWriteReadSemaphoresBlocked()
{
if ( areSemaphoresValid() )
{
#ifdef _WIN32
// There is no non-destructive way to get the value of Windows named semaphores
// so return true when the semaphores are all valid on the assumption that
// the write and read semaphore values are zero, i.e., correctly blocked.
return true;
#else // #ifdef _WIN32
int wvalue, rvalue;
// We want to test that these are semaphore locations that
// have already been properly initialized in blocked state as above.
// Attempt to test that assumption with sem_getvalue, but I
// have gdb evidence that at least one OS implementation (that on Linux)
// of sem_getvalue does not check that the given location is
// a valid semaphore, and it is fairly likely in that case that
// you will return a value of 0 so this test is not as rigourous as
// it should be.
if ( sem_getvalue( m_wsem, &wvalue ) != 0 || sem_getvalue( m_rsem, &rvalue ) != 0 )
throw( "PLThreeSemaphores::areSemaphoresBlocked: sem_getvalue error on one of the write or read semaphores" );
if ( wvalue == 0 && rvalue == 0 )
return true;
else
return false;
#endif // #ifdef _WIN32
}
else
{
return false;
}
}
#ifndef _WIN32
// Get value of Write semaphore.
int PLThreeSemaphores::getValueWriteSemaphore()
{
// Initialize to wacko value to quiet compiler uninitialized complaints
// for the case of the throws below.
int ret_value = -42;
if ( !isWriteSemaphoreValid() )
{
throw( "PLThreeSemaphores::getValueWriteSemaphore: attempt to get value for invalid semaphore." );
}
else
{
if ( sem_getvalue( m_wsem, &ret_value ) != 0 )
throw( "PLThreeSemaphores::getValueWriteSemaphore: sem_getvalue failed" );
}
return ret_value;
}
// Get value of Read semaphore.
int PLThreeSemaphores::getValueReadSemaphore()
{
// Initialize to wacko value to quiet compiler uninitialized complaints
// for the case of the throws below.
int ret_value = -42;
if ( !isReadSemaphoreValid() )
{
throw( "PLThreeSemaphores::getValueReadSemaphore: attempt to get value for invalid semaphore." );
}
else
{
if ( sem_getvalue( m_rsem, &ret_value ) != 0 )
throw( "PLThreeSemaphores::getValueReadSemaphore: sem_getvalue failed" );
}
return ret_value;
}
#endif // #ifndef _WIN32
void PLThreeSemaphores::postWriteSemaphore()
{
if ( !isWriteSemaphoreValid() )
throw( "PLThreeSemaphores::postWriteSemaphore: invalid write semaphore" );
#ifdef _WIN32
if ( !ReleaseSemaphore( m_wsem, 1, NULL ) )
throw( "PLThreeSemaphores::postWriteSemaphore: ReleaseSemaphore failed for write semaphore" );
#else // #ifdef _WIN32
if ( sem_post( m_wsem ) )
throw( "PLThreeSemaphores::postWriteSemaphore: sem_post failed for write semaphore" );
#endif // #ifdef _WIN32
}
void PLThreeSemaphores::postReadSemaphore()
{
if ( !isReadSemaphoreValid() )
throw( "PLThreeSemaphores::postReadSemaphore: invalid read semaphore" );
#ifdef _WIN32
if ( !ReleaseSemaphore( m_rsem, 1, NULL ) )
throw( "PLThreeSemaphores::postReadSemaphore: ReleaseSemaphore failed for read semaphore" );
#else // #ifdef _WIN32
if ( sem_post( m_rsem ) )
throw( "PLThreeSemaphores::postReadSemaphore: sem_post failed for read semaphore" );
#endif // #ifdef _WIN32
}
void PLThreeSemaphores::postTransmitSemaphore()
{
if ( !isTransmitSemaphoreValid() )
throw( "PLThreeSemaphores::postTransmitSemaphore: invalid transmit semaphore" );
#ifdef _WIN32
if ( !ReleaseSemaphore( m_tsem, 1, NULL ) )
throw( "PLThreeSemaphores::postTransmitSemaphore: ReleaseSemaphore failed for transmit semaphore" );
#else // #ifdef _WIN32
if ( sem_post( m_tsem ) )
throw( "PLThreeSemaphores::postTransmitSemaphore: sem_post failed for transmit semaphore" );
#endif // #ifdef _WIN32
}
void PLThreeSemaphores::waitWriteSemaphore()
{
if ( !isWriteSemaphoreValid() )
throw( "PLThreeSemaphores::waitWriteSemaphore: invalid write semaphore" );
#ifdef _WIN32
DWORD result = WaitForSingleObject( m_wsem, INFINITE );
if ( result == WAIT_FAILED )
throw( "PLThreeSemaphores::waitWriteSemaphore: WaitForSingleObject failed for write semaphore" );
#else // #ifdef _WIN32
if ( sem_wait( m_wsem ) )
throw( "PLThreeSemaphores::waitWriteSemaphore: sem_wait failed for write semaphore" );
#endif // #ifdef _WIN32
}
void PLThreeSemaphores::waitReadSemaphore()
{
if ( !isReadSemaphoreValid() )
throw( "PLThreeSemaphores::waitReadSemaphore: invalid read semaphore" );
#ifdef _WIN32
DWORD result = WaitForSingleObject( m_rsem, INFINITE );
if ( result == WAIT_FAILED )
throw( "PLThreeSemaphores::waitReadSemaphore: WaitForSingleObject failed for read semaphore" );
#else // #ifdef _WIN32
if ( sem_wait( m_rsem ) )
throw( "PLThreeSemaphores::waitReadSemaphore: sem_wait failed for read semaphore" );
#endif // #ifdef _WIN32
}
void PLThreeSemaphores::waitTransmitSemaphore()
{
if ( !isTransmitSemaphoreValid() )
throw( "PLThreeSemaphores::waitTransmitSemaphore: invalid transmit semaphore" );
#ifdef _WIN32
DWORD result = WaitForSingleObject( m_tsem, INFINITE );
if ( result == WAIT_FAILED )
throw( "PLThreeSemaphores::waitTransmitSemaphore: WaitForSingleObject failed for transmit semaphore" );
#else // #ifdef _WIN32
if ( sem_wait( m_tsem ) )
throw( "PLThreeSemaphores::waitTransmitSemaphore: sem_wait failed for transmit semaphore" );
#endif // #ifdef _WIN32
}
#endif //#ifdef PL_WXWIDGETS_IPC3
//--------------------------------------------------------------------------
// Constructor, creates the object but does not actually create or link to
// any shared memory.
//--------------------------------------------------------------------------
PLMemoryMap::PLMemoryMap()
{
#ifdef _WIN32
m_mapFile = NULL;
#else
m_mapFile = -1;
m_name = NULL;
#endif
m_buffer = NULL;
m_size = 0;
}
//--------------------------------------------------------------------------
// Constructor, creates the shared memory area. If onlyIfExists is true
// then we will try to access an existing shared memory area rather than
// creating a new one.
//--------------------------------------------------------------------------
PLMemoryMap::PLMemoryMap( const char *name, PLINT size, bool mustExist, bool mustNotExist )
{
#ifdef _WIN32
m_mapFile = NULL;
#else
m_mapFile = -1;
m_name = NULL;
#endif
m_buffer = NULL;
m_size = 0;
create( name, size, mustExist, mustNotExist );
}
//--------------------------------------------------------------------------
// create does most of the work in trying to create the memory map it is
// called by the constructor or by the user. If the object already has a
// shared memory area then that is closed before a new area of memory is
// created or connected to. As per the constructor if onlyIfExists is true
// then we will try to access an existing shared memory area rather than
// creating a new one.
//--------------------------------------------------------------------------
void PLMemoryMap::create( const char *name, PLINT size, bool mustExist, bool mustNotExist )
{
close();
assert( !( mustExist && mustNotExist ) );
if ( mustExist && mustNotExist )
return;
#ifdef _WIN32
if ( mustExist )
m_mapFile = OpenFileMappingA( FILE_MAP_ALL_ACCESS, FALSE, name );
else if ( mustNotExist )
{
m_mapFile = CreateFileMappingA( INVALID_HANDLE_VALUE, NULL,
PAGE_READWRITE, 0, size, name );
if ( GetLastError() == ERROR_ALREADY_EXISTS )
close();
}
else
m_mapFile = CreateFileMappingA( INVALID_HANDLE_VALUE, NULL,
PAGE_READWRITE, 0, size, name );
if ( m_mapFile )
m_buffer = MapViewOfFile( m_mapFile, FILE_MAP_ALL_ACCESS, 0, 0, size );
#else
if ( mustExist )
{
m_mapFile = shm_open( name, O_RDWR, 0 );
}
else if ( mustNotExist )
{
m_mapFile = shm_open( name, O_RDWR | O_CREAT | O_EXCL, S_IRWXU ); //S_IRWXU gives user wrx permissions
if ( ftruncate( m_mapFile, size ) == -1 )
close( );
}
else
{
m_mapFile = shm_open( name, O_RDWR | O_CREAT, S_IRWXU ); //S_IRWXU gives user wrx permissions
if ( ftruncate( m_mapFile, size ) == -1 )
close( );
}
if ( m_mapFile != -1 )
{
m_buffer = mmap( NULL, size, PROT_READ | PROT_WRITE, MAP_SHARED, m_mapFile, 0 );
m_name = new char[strlen( name ) + 1];
strcpy( m_name, name );
}
#endif
if ( isValid() )
m_size = size;
}
#ifdef PL_WXWIDGETS_IPC3
// This IPC method is an adaptation of the method used in
// cmake/test_linux_ipc/pshm_write.c.
// This transmitBytes method on the transmitting side should be used
// in tandem with the receiveBytes method on the receiving side.
// Transmit data via three-semaphore IPC from the transmitting side to
// the receiving side. It is the responsibility of transmitBytes to
// check the semaphores are in the correct blocked state at the start
// and end of the transmission of data.
// In the three-semaphores method of IPC, the shared memory area must
// correspond to the shmbuf struct which contains some control data
// explicitly used for the communication, e.g., at least the total
// number of bytes of data to be transferred, and limited size
// non-control data areas to be used for transferring an unlimited
// number of data bytes.
// If ifHeader is true, then src is a MemoryMapHeader header
// which is transferred to the corresponding area of shared memory
// (the internal dest in this case). Otherwise, src is a char array
// of unlimited size whose transfer is staged through the data area
// (the internal dest in this case) of shared memory.
// The src argument must always be a pointer to general rather than
// shared memory to avoid overlaps between src and internal dest in
// shared memory not only for code logic clarity but also because
// memcpy rather than memmove is used inside transmitBytes.
// n is the total number of bytes that will be moved.
void PLMemoryMap::transmitBytes( bool ifHeader, const void *src, size_t n )
{
size_t chunk, nbytes_chunk, transmitted_bytes;
const char * csrc = (const char *) src;
void * hdest = (void *) getHeader();
void * bdest = (void *) getBuffer();
if ( !isValid() )
throw ( "PLMemoryMap::transmitBytes: invalid memory map" );
size_t size_area;
if ( ifHeader )
size_area = sizeof ( MemoryMapHeader );
else
size_area = PL_SHARED_ARRAY_SIZE;
if ( ifHeader && n != sizeof ( MemoryMapHeader ) )
throw( "PLMemoryMap::transmitBytes: ifHeader true has invalid n value" );
// Wait until previous call (by either side) of transmitBytes has been completed
// to avoid a potential race condition.
m_threeSemaphores.waitTransmitSemaphore();
if ( !m_threeSemaphores.areWriteReadSemaphoresBlocked() )
throw( "PLMemoryMap::transmitBytes: attempt to start transfer with semaphores not in correct blocked state." );
// Receiving side is blocked and initialize this transmitting side to go first.
m_threeSemaphores.postWriteSemaphore();
for ( chunk = 0, transmitted_bytes = 0;; chunk++, csrc += nbytes_chunk )
{
// Wait for our turn to change the shared memory shmbuf.
m_threeSemaphores.waitWriteSemaphore();
if ( chunk == 0 )
{
// Update nbytes control data part of that shared memory shmbuf.
( (shmbuf *) m_buffer )->nbytes = n;
}
nbytes_chunk = MIN( size_area, n - transmitted_bytes );
if ( nbytes_chunk > 0 )
{
if ( ifHeader )
memcpy( hdest, csrc, nbytes_chunk );
else
memcpy( bdest, csrc, nbytes_chunk );
}
// Give the receiveBytes method a turn to process the shared
// memory shmbuf we have just changed.
m_threeSemaphores.postReadSemaphore();
if ( !( nbytes_chunk > 0 ) )
{
break;
}
transmitted_bytes += nbytes_chunk;
}
// All shared memory shmbuf changes have been transmitted so wait
// for receiveBytes to process the last of those.
m_threeSemaphores.waitWriteSemaphore();
// If the transfer has been a success, then write and read semaphores should
// end up as blocked. Check that:
if ( !m_threeSemaphores.areWriteReadSemaphoresBlocked() )
throw( "PLMemoryMap::transmitBytes (internal error): transfer finished with write and read semaphores not in correct blocked state." );
// Allow a subsequent call of transmitBytes (by either side) to start executing.
m_threeSemaphores.postTransmitSemaphore();
}
// This IPC method is an adaptation of the method used in
// cmake/test_linux_ipc/pshm_read.c.
// This receiveBytes method on the receiving side should be used in
// tandem with the transmitBytes method on the transmitting side.
// Receive data via three-semaphore IPC from the transmitting side.
// In the three-semaphores method of IPC, the shared memory area must
// correspond to the shmbuf struct which contains some control data
// explicitly used for the communication, e.g., at least the total
// number of bytes of data to be transferred, and limited size
// non-control data areas to be used for transferring an unlimited
// number of data bytes.
// if ifHeader is true, then (the internal) src is the MemoryMapHeader
// header area of shared memory which is transferred to a
// corresponding area
// pointed to by the dest argument. Otherwise, (the internal) src is
// the char * data area of shared memory which is a staging area for
// the transfer of n bytes into the location pointed to by dest.
// The dest argument must always be a pointer to general rather than
// shared memory to avoid overlaps between internal src in shared
// memory and dest not only for code logic clarity but also because
// memcpy rather than memmove is used inside receiveBytes.
// n is the total number of bytes that will be moved.
void PLMemoryMap::receiveBytes( bool ifHeader, void *dest, size_t n )
{
size_t chunk, nbytes, nbytes_chunk, received_bytes;
char * cdest = (char *) dest;
void * hsrc = (void *) getHeader();
void * bsrc = (void *) getBuffer();
if ( !isValid() )
throw( "PLMemoryMap::receiveBytes: invalid memory map" );
size_t size_area;
if ( ifHeader )
size_area = sizeof ( MemoryMapHeader );
else
size_area = PL_SHARED_ARRAY_SIZE;
if ( ifHeader && n != sizeof ( MemoryMapHeader ) )
throw( "PLMemoryMap::receiveBytes: ifHeader true has invalid n value" );
// N.B. it is the responsibility of transmitBytes to initialize the semaphores
// to the correct values, but we at least check here that the semaphores are valid.
m_threeSemaphores.areSemaphoresValid();
for ( chunk = 0, received_bytes = 0;; chunk++, cdest += nbytes_chunk )
{
// Wait for our turn to process the shared memory shmbuf that has been updated
// by transmitBytes.
m_threeSemaphores.waitReadSemaphore();
if ( chunk == 0 )
{
// Update *nbytes from the nbytes control data part of that shared memory shmbuf.
nbytes = ( (shmbuf *) m_buffer )->nbytes;
if ( nbytes > n )
throw ( "PLMemoryMap::receiveBytes: n too small to receive results" );
}
nbytes_chunk = MIN( size_area, nbytes - received_bytes );
if ( !( nbytes_chunk > 0 ) )
{
break;
}
else
{
received_bytes += nbytes_chunk;
if ( ifHeader )
memcpy( cdest, hsrc, nbytes_chunk );
else
memcpy( cdest, bsrc, nbytes_chunk );
// Give the transmitter a turn to send another chunk of bytes.
m_threeSemaphores.postWriteSemaphore();
}
}
// All chunks have been received and processed so signal transmitter
// we are done.
m_threeSemaphores.postWriteSemaphore();
// The transmitBytes checks after all transactions with this
// receiveBytes routine are completed that the semaphores are in
// the correct blocked state. So there is nothing further for us
// to check here.
}
#endif // #ifdef PL_WXWIDGETS_IPC3
//--------------------------------------------------------------------------
// Close an area of mapped memory. When all processes have closed their
// connections the area will be removed by the OS.
//--------------------------------------------------------------------------
void PLMemoryMap::close()
{
#ifdef _WIN32
if ( m_buffer )
UnmapViewOfFile( m_buffer );
if ( m_mapFile )
CloseHandle( m_mapFile );
m_mapFile = NULL;
#else
if ( m_buffer )
{
munmap( m_buffer, m_size );
}
if ( m_mapFile != -1 )
{
shm_unlink( m_name );
}
if ( m_name )
{
delete[] m_name;
}
m_mapFile = -1;
m_name = NULL;
#endif
m_buffer = NULL;
m_size = 0;
}
//--------------------------------------------------------------------------
// Destructor, closes the connection to the mapped memory.
//--------------------------------------------------------------------------
PLMemoryMap::~PLMemoryMap()
{
close();
}
#ifndef PL_WXWIDGETS_IPC3
PLNamedMutex::PLNamedMutex()
{
m_mutex = NULL;
m_haveLock = false;
}
PLNamedMutex::PLNamedMutex( const char *name, bool aquireOnCreate )
{
m_mutex = NULL;
m_haveLock = false;
create( name, aquireOnCreate );
}
void PLNamedMutex::create( const char *name, bool aquireOnCreate )
{
#ifdef _WIN32
m_mutex = CreateMutexA( NULL, aquireOnCreate ? TRUE : FALSE, name );
#else
m_mutex = NULL;
m_mutexName[0] = '/';
strncpy( m_mutexName + 1, name, 250 );
m_mutexName[250] = '\0';
m_mutex = sem_open( m_mutexName, O_CREAT, S_IRWXU, 1 );
#endif
}
void PLNamedMutex::aquire()
{
#ifdef _WIN32
DWORD result = WaitForSingleObject( m_mutex, INFINITE );
m_haveLock = ( result == WAIT_OBJECT_0 || result == WAIT_ABANDONED );
#else
m_haveLock = sem_wait( m_mutex ) == 0;
int result = errno;
#endif
if ( !m_haveLock )
throw( result );
}
bool PLNamedMutex::aquire( unsigned long millisecs )
{
#ifdef _WIN32
DWORD result = WaitForSingleObject( m_mutex, millisecs );
m_haveLock = ( result == WAIT_OBJECT_0 || result == WAIT_ABANDONED );
#else
#endif
return m_haveLock;
}
bool PLNamedMutex::aquireNoWait()
{
#ifdef _WIN32
m_haveLock = ( WAIT_OBJECT_0 == WaitForSingleObject( m_mutex, 0 ) );
#else
m_haveLock = sem_trywait( m_mutex ) == 0;
#endif
return m_haveLock;
}
void PLNamedMutex::release()
{
if ( !m_haveLock )
return;
#ifdef _WIN32
if ( m_mutex )
ReleaseMutex( m_mutex );
#else
sem_post( m_mutex );
#endif
m_haveLock = false;
}
void PLNamedMutex::clear()
{
release();
#ifdef _WIN32
CloseHandle( m_mutex );
#else
sem_close( m_mutex );
// Needed to release shared memory resources used by named semaphores.
sem_unlink( m_mutexName );
#endif
}
PLNamedMutex::~PLNamedMutex()
{
clear();
}
PLNamedMutexLocker::PLNamedMutexLocker( PLNamedMutex *mutex )
{
m_mutex = mutex;
m_mutex->aquire();
}
bool PLNamedMutex::isValid()
{
return m_mutex != NULL;
}
PLNamedMutexLocker::~PLNamedMutexLocker( )
{
m_mutex->release();
m_mutex = NULL;
}
#endif //#ifndef PL_WXWIDGETS_IPC3
|