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
|
//=============================================================================
/**
* @file MM_Shared_Memory_Test.cpp
*
* $Id: MM_Shared_Memory_Test.cpp 93638 2011-03-24 13:16:05Z johnnyw $
*
* This is a simple test of <ACE_Shared_Memory_MM>. The test
* forks two processes or spawns two threads (depending upon the
* platform) and then executes child and parent allowing them to
* exchange data using shared memory. No user input is required as
* far as command line arguments are concerned.
*
*
* @author Prashant Jain <pjain@cs.wustl.edu> and Douglas C. Schmidt <schmidt@cs.wustl.edu>
*/
//=============================================================================
#include "test_config.h"
#include "ace/Shared_Memory_MM.h"
#include "ace/SV_Semaphore_Simple.h"
#include "ace/Process_Semaphore.h"
#include "ace/Thread_Manager.h"
#include "ace/ACE.h"
#include "ace/OS_NS_string.h"
#include "ace/OS_NS_unistd.h"
#if !defined (ACE_LACKS_MMAP)
static const char ACE_ALPHABET[] = "abcdefghijklmnopqrstuvwxyz";
const int SHMSZ = 27;
static ACE_TCHAR *shm_key;
#if defined (ACE_LACKS_FORK)
#include "ace/Thread_Semaphore.h"
typedef ACE_Thread_Semaphore SYNCHRONIZER;
#elif defined (ACE_HAS_POSIX_SEM) && defined(ACE_HAS_SYSV_IPC)
/**
* @class SYNCHRONIZER
*
* @brief If the platform has native cross-process POSIX semaphores, we
* must *force* this test to use the System V Semaphores in order
* to get the right semantics.
*/
class SYNCHRONIZER : public ACE_SV_Semaphore_Simple
{
public:
SYNCHRONIZER (int initial_value)
: ACE_SV_Semaphore_Simple ((const char *) 0,
ACE_SV_Semaphore_Simple::ACE_CREATE,
initial_value)
{}
};
#else
typedef ACE_Process_Semaphore SYNCHRONIZER;
#endif /* !defined (ACE_LACKS_FORK) */
// Synchronize the start of the parent and the child.
static SYNCHRONIZER *synchronizer = 0;
static void *
child (void * = 0)
{
int result;
// Wait for the parent to be initialized.
result = synchronizer->acquire ();
ACE_TEST_ASSERT (result != -1);
const char *t = ACE_ALPHABET;
ACE_Shared_Memory_MM shm_child;
result = shm_child.open (shm_key);
ACE_TEST_ASSERT (result != -1);
char *shm = (char *) shm_child.malloc ();
ACE_TEST_ASSERT (shm != 0);
for (char *s = shm; *s != '\0'; s++)
{
ACE_TEST_ASSERT (*t == s[0]);
t++;
}
// Indicate to the parent that we're done.
*shm = '*';
return 0;
}
static void *
parent (void * = 0)
{
int result;
ACE_Shared_Memory_MM shm_parent;
result = shm_parent.open (shm_key, SHMSZ);
ACE_TEST_ASSERT (result != -1);
char *shm = (char *) shm_parent.malloc ();
ACE_TEST_ASSERT (shm != 0);
char *s = shm;
for (const char *c = ACE_ALPHABET; *c != '\0'; c++)
*s++ = *c;
*s = '\0';
// Allow the child to proceed.
result = synchronizer->release ();
ACE_TEST_ASSERT (result != -1);
// Perform a "busy wait" until the child sets the character to '*'.
while (*shm != '*')
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("(%P) spinning in parent!\n")));
result = shm_parent.remove ();
ACE_TEST_ASSERT (result != -1);
ACE_OS::unlink (shm_key);
return 0;
}
static int
spawn (void)
{
// Create the synchronizer before spawning the child process/thread,
// to avoid race condition between the creation in the parent and
// use in the child.
ACE_NEW_RETURN (synchronizer,
SYNCHRONIZER ((unsigned int)0), // Locked by default...
-1);
#if !defined (ACE_LACKS_FORK)
switch (ACE_OS::fork (ACE_TEXT ("child")))
{
case -1:
ACE_ERROR_RETURN ((LM_ERROR,
ACE_TEXT ("(%P|%t) %p\n"),
ACE_TEXT ("fork failed")),
1);
/* NOTREACHED */
case 0:
parent ();
// Remove the semaphore.
synchronizer->remove ();
delete synchronizer;
break;
/* NOTREACHED */
default:
child ();
delete synchronizer;
break;
/* NOTREACHED */
}
#elif defined (ACE_HAS_THREADS)
if (ACE_Thread_Manager::instance ()->spawn
(ACE_THR_FUNC (child),
(void *) 0,
THR_NEW_LWP | THR_DETACHED) == -1)
ACE_ERROR_RETURN ((LM_ERROR,
ACE_TEXT ("(%P|%t) %p\n"),
ACE_TEXT ("thread create failed")),
1);
else if (ACE_Thread_Manager::instance ()->spawn
(ACE_THR_FUNC (parent),
(void *) 0,
THR_NEW_LWP | THR_DETACHED) == -1)
ACE_ERROR_RETURN ((LM_ERROR,
ACE_TEXT ("(%P|%t) %p\n"),
ACE_TEXT ("thread create failed")),
1);
ACE_Thread_Manager::instance ()->wait ();
delete synchronizer;
#else
ACE_UNUSED_ARG (synchronizer);
ACE_ERROR_RETURN ((LM_ERROR,
ACE_TEXT ("only one thread may be run in a process on this platform\n")),
1);
#endif /* ACE_HAS_THREADS */
return 0;
}
#endif /* !ACE_LACKS_MMAP */
int
run_main (int, ACE_TCHAR *[])
{
ACE_START_TEST (ACE_TEXT ("MM_Shared_Memory_Test"));
#if !defined (ACE_LACKS_MMAP)
ACE_TCHAR temp_file[MAXPATHLEN + 1];
// Get the temporary directory,
// The - 24 is for the filename, mm_shared_mem_testXXXXXX
if (ACE::get_temp_dir (temp_file, MAXPATHLEN - 24) == -1)
ACE_ERROR_RETURN ((LM_ERROR, ACE_TEXT ("Temporary path too long\n")), -1);
// Add the filename to the end
ACE_OS::strcat (temp_file, ACE_TEXT ("mm_shared_mem_testXXXXXX"));
// Store in the global variable.
shm_key = temp_file;
if (ACE_OS::mktemp (shm_key) == 0
|| (ACE_OS::unlink (shm_key) == -1
&& errno == EPERM))
ACE_ERROR_RETURN ((LM_ERROR,
ACE_TEXT ("(%P|%t) %p\n"),
shm_key),
1);
spawn ();
#else /* !ACE_LACKS_MMAP */
ACE_ERROR ((LM_INFO,
ACE_TEXT ("mmap ")
ACE_TEXT ("is not supported on this platform\n")));
#endif /* !ACE_LACKS_MMAP */
ACE_END_TEST;
return 0;
}
|