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
|
//=============================================================================
/**
* @file MT_Reactor_Upcall_Test.cpp
*
* $Id: MT_Reactor_Upcall_Test.cpp 93638 2011-03-24 13:16:05Z johnnyw $
*
* This is a test that shows how to handle upcalls from the
* TP_Reactor and the WFMO_Reactor when the event loop is being run
* by multiple threads.
*
*
* @author Irfan Pyarali <irfan@cs.wustl.edu>
*/
//=============================================================================
#include "test_config.h"
#include "ace/OS_NS_string.h"
#include "ace/OS_NS_unistd.h"
#include "ace/Reactor.h"
#include "ace/TP_Reactor.h"
#include "ace/WFMO_Reactor.h"
#include "ace/Dev_Poll_Reactor.h"
#include "ace/Pipe.h"
#include "ace/Task.h"
#include "ace/Get_Opt.h"
#include "ace/ACE.h"
int number_of_event_loop_threads = 3;
int number_of_messages = 10;
int sleep_time_in_msec = 100;
int lock_upcall = 1;
static const char *message = "Hello there!";
class Guard
{
public:
Guard (ACE_SYNCH_MUTEX &lock)
: lock_ (lock)
{
if (lock_upcall)
lock.acquire ();
}
~Guard (void)
{
if (lock_upcall)
this->lock_.release ();
}
ACE_SYNCH_MUTEX &lock_;
};
struct Message
{
enum Type
{
DATA,
SHUTDOWN
};
Type type_;
size_t size_;
char data_[BUFSIZ];
};
class Handler : public ACE_Event_Handler
{
public:
Handler (ACE_Reactor &reactor);
int handle_input (ACE_HANDLE fd);
ACE_Pipe pipe_;
int number_of_messages_read_;
ACE_SYNCH_MUTEX lock_;
int shutdown_;
};
Handler::Handler (ACE_Reactor &reactor)
: ACE_Event_Handler (&reactor),
number_of_messages_read_ (0),
shutdown_ (1)
{
// Create the pipe.
int result = this->pipe_.open ();
if (result != 0)
ACE_ERROR ((LM_ERROR, ACE_TEXT ("%p\n"), ACE_TEXT ("pipe open")));
else
{
// Register for input events.
result =
this->reactor ()->register_handler (this->pipe_.read_handle (),
this,
ACE_Event_Handler::READ_MASK);
if (result != 0)
ACE_ERROR ((LM_ERROR,
ACE_TEXT ("%p\n"),
ACE_TEXT ("Can't register pipe for READ")));
else
this->shutdown_ = 0;
}
}
int
Handler::handle_input (ACE_HANDLE fd)
{
Guard monitor (this->lock_);
// If we have been shutdown, return.
if (this->shutdown_)
return 0;
// Read fixed parts of message.
Message message;
ssize_t result =
ACE::recv_n (fd,
&message.type_,
sizeof (message.type_));
if (result != static_cast<ssize_t> (sizeof (message.type_)))
ACE_ERROR ((LM_ERROR, ACE_TEXT ("(%t): read %d, %p\n"),
result,
ACE_TEXT ("recv 1")));
result =
ACE::recv_n (fd,
&message.size_,
sizeof (message.size_));
if (result != static_cast<ssize_t> (sizeof (message.size_)))
ACE_ERROR ((LM_ERROR, ACE_TEXT ("(%t): read %d, %p\n"),
result,
ACE_TEXT ("recv 2")));
// On shutdown message, stop the event loop.
if (message.type_ == Message::SHUTDOWN)
{
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("(%t) Shutdown message\n")));
this->shutdown_ = 1;
this->reactor ()->end_reactor_event_loop ();
// Remove self from Reactor.
return -1;
}
// Else it is a data message: read the data.
result =
ACE::recv_n (fd,
&message.data_,
message.size_);
if (result != static_cast<ssize_t> (message.size_))
ACE_ERROR ((LM_ERROR, ACE_TEXT ("(%t): read %d, %p\n"),
result,
ACE_TEXT ("recv 3")));
else
{
message.data_[result] = '\0';
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("(%t) Starting to handle message %d: %s\n"),
this->number_of_messages_read_ + 1,
message.data_));
}
// Process message (sleep).
ACE_OS::sleep (ACE_Time_Value (0,
sleep_time_in_msec * 1000));
// Keep count.
this->number_of_messages_read_++;
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("(%t) Completed handling message %d\n"),
this->number_of_messages_read_));
return 0;
}
class Event_Loop_Task : public ACE_Task_Base
{
public:
Event_Loop_Task (ACE_Reactor &reactor);
int svc (void);
private:
ACE_Reactor &reactor_;
};
Event_Loop_Task::Event_Loop_Task (ACE_Reactor &reactor)
: reactor_ (reactor)
{
}
int
Event_Loop_Task::svc (void)
{
return this->reactor_.run_reactor_event_loop ();
}
void
test_reactor_upcall (ACE_Reactor &reactor)
{
Handler handler (reactor);
if (handler.shutdown_)
{
ACE_ERROR ((LM_ERROR, ACE_TEXT ("Error initializing test; abort.\n")));
return;
}
Event_Loop_Task event_loop_task (reactor);
// Start up the event loop threads.
int result =
event_loop_task.activate (THR_NEW_LWP | THR_JOINABLE,
number_of_event_loop_threads);
if (result != 0)
ACE_ERROR ((LM_ERROR,
ACE_TEXT ("%p\n"),
ACE_TEXT ("test_reactor_upcall, activate")));
// Data message.
Message data_message;
data_message.type_ =
Message::DATA;
data_message.size_ =
ACE_OS::strlen (message);
ACE_OS::strcpy (data_message.data_, message);
// Send in three pieces because the struct members may not be adjacent
// in memory.
for (int i = 0;
i < number_of_messages;
++i)
{
// This should trigger a call to <handle_input>.
ssize_t sent =
ACE::send_n (handler.pipe_.write_handle (),
&data_message.type_,
sizeof (data_message.type_));
if (sent == -1)
ACE_ERROR ((LM_ERROR, ACE_TEXT ("(%t): %p\n"), ACE_TEXT ("send 1")));
sent =
ACE::send_n (handler.pipe_.write_handle (),
&data_message.size_,
sizeof (data_message.size_));
if (sent == -1)
ACE_ERROR ((LM_ERROR, ACE_TEXT ("(%t): %p\n"), ACE_TEXT ("send 2")));
sent =
ACE::send_n (handler.pipe_.write_handle (),
&data_message.data_,
data_message.size_);
if (sent == -1)
ACE_ERROR ((LM_ERROR, ACE_TEXT ("(%t): %p\n"), ACE_TEXT ("send 3")));
}
// We are done: send shutdown message.
Message shutdown_message;
shutdown_message.type_ =
Message::SHUTDOWN;
shutdown_message.size_ = 0;
// This should trigger a call to <handle_input>.
ssize_t sent = ACE::send_n (handler.pipe_.write_handle (),
&shutdown_message.type_,
sizeof (shutdown_message.type_));
if (sent == -1)
ACE_ERROR ((LM_ERROR, ACE_TEXT ("(%t): %p\n"), ACE_TEXT ("send 4")));
sent = ACE::send_n (handler.pipe_.write_handle (),
&shutdown_message.size_,
sizeof (shutdown_message.size_));
if (sent == -1)
ACE_ERROR ((LM_ERROR, ACE_TEXT ("(%t): %p\n"), ACE_TEXT ("send 5")));
// Wait for the event loop tasks to exit.
event_loop_task.wait ();
}
int
parse_args (int argc, ACE_TCHAR *argv[])
{
ACE_Get_Opt get_opt (argc, argv, ACE_TEXT ("t:m:s:l:"));
int c;
while ((c = get_opt ()) != -1)
switch (c)
{
case 't':
number_of_event_loop_threads =
ACE_OS::atoi (get_opt.opt_arg ());
break;
case 'm':
number_of_messages =
ACE_OS::atoi (get_opt.opt_arg ());
break;
case 's':
sleep_time_in_msec =
ACE_OS::atoi (get_opt.opt_arg ());
break;
case 'l':
lock_upcall =
ACE_OS::atoi (get_opt.opt_arg ());
break;
default:
ACE_ERROR_RETURN
((LM_ERROR,
ACE_TEXT ("usage: %s\n")
ACE_TEXT ("\t-m <number of messages> (defaults to %d)\n")
ACE_TEXT ("\t-t <number of event loop threads> (defaults to %d)\n")
ACE_TEXT ("\t-s <sleep time in msec> (defaults to %d)\n")
ACE_TEXT ("\t-l <lock upcall> (defaults to %d)\n")
ACE_TEXT ("\n"),
argv [0],
number_of_messages,
number_of_event_loop_threads,
sleep_time_in_msec,
lock_upcall),
-1);
}
return 0;
}
int
run_main (int argc, ACE_TCHAR *argv[])
{
ACE_START_TEST (ACE_TEXT ("MT_Reactor_Upcall_Test"));
#if defined (ACE_HAS_THREADS)
// ACE_LOG_MSG->clr_flags (ACE_Log_Msg::VERBOSE_LITE);
int result =
parse_args (argc, argv);
if (result != 0)
return result;
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Testing TP Reactor\n")));
ACE_TP_Reactor tp_reactor_impl;
ACE_Reactor tp_reactor (&tp_reactor_impl);
test_reactor_upcall (tp_reactor);
#if defined (ACE_HAS_EVENT_POLL)
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Testing Dev Poll Reactor\n")));
ACE_Dev_Poll_Reactor dev_poll_reactor_impl;
dev_poll_reactor_impl.restart (true);
ACE_Reactor dev_poll_reactor (&dev_poll_reactor_impl);
test_reactor_upcall (dev_poll_reactor);
#endif /* ACE_HAS_EVENT_POLL */
#if defined (ACE_WIN32) && \
(defined (ACE_HAS_WINSOCK2) && (ACE_HAS_WINSOCK2 != 0))
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Testing WFMO Reactor\n")));
ACE_WFMO_Reactor wfmo_reactor_impl;
ACE_Reactor wfmo_reactor (&wfmo_reactor_impl);
test_reactor_upcall (wfmo_reactor);
#endif /* ACE_WIN32 && ACE_HAS_WINSOCK2 */
#else /* ACE_HAS_THREADS */
ACE_UNUSED_ARG(argc);
ACE_UNUSED_ARG(argv);
ACE_ERROR ((LM_INFO,
ACE_TEXT ("threads not supported on this platform\n")));
#endif /* ACE_HAS_THREADS */
ACE_END_TEST;
return 0;
}
|