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
|
/**
* @file Reactor_Notification_Queue_Test.cpp
*
* $Id: Reactor_Notification_Queue_Test.cpp 91626 2010-09-07 10:59:20Z johnnyw $
*
* Verify that the notification queue can be used with large numbers
* of events.
*
* Normally the ACE_Reactor uses a pipe to implement the notify()
* methods. ACE can be compiled with
* ACE_HAS_REACTOR_NOTIFICATION_QUEUE, with this configuration flag
* the Reactor uses a user-space queue to contain the notifications.
* A single message is sent through the pipe to indicate "pipe not
* empty."
*
* @author Carlos O'Ryan <coryan@atdesk.com>
*
*/
#include "test_config.h"
#include "ace/Reactor.h"
#include "ace/TP_Reactor.h"
#include "ace/Select_Reactor.h"
#include "ace/WFMO_Reactor.h"
class Event_Handler : public ACE_Event_Handler
{
public:
Event_Handler(ACE_Reactor * reactor,
int max_notifications,
char const *test_name);
/// Run the test
void run(void);
/// Receive the notifications.
virtual int handle_exception(ACE_HANDLE);
private:
/**
* @brief Implement a single iteration.
*
* Each iteration of the test consists of sending multiple
* notifications simultaneously.
*/
void send_notifications (void);
/**
* @brief Return true if the test is finished.
*/
bool done (void) const;
private:
/**
* @brief The maximum number of notifications in any single
* iteration.
*/
int max_notifications_;
/**
* @brief The name of the test
*/
char const * test_name_;
/**
* @brief Number of notifications received
*/
int notifications_sent_;
/**
* @brief Number of notifications sent
*/
int notifications_recv_;
/**
* @brief Number of notifications sent on each iteration
*/
int notifications_curr_;
};
int
run_main (int, ACE_TCHAR *[])
{
ACE_START_TEST (ACE_TEXT ("Reactor_Notification_Queue_Test"));
#if !defined(ACE_HAS_REACTOR_NOTIFICATION_QUEUE)
ACE_DEBUG ((LM_INFO,
ACE_TEXT ("Notification queue disabled, ")
ACE_TEXT ("small test version, ")
ACE_TEXT ("which is of no practical use\n")));
int max_notifications = 16;
#else
int max_notifications = 1024 * 1024;
#endif /* ACE_HAS_THREADS */
{
ACE_Reactor select_reactor (
new ACE_Select_Reactor,
1);
Event_Handler handler(&select_reactor,
max_notifications,
"Select_Reactor");
handler.run ();
}
{
ACE_Reactor tp_reactor (new ACE_TP_Reactor,
1);
Event_Handler handler(&tp_reactor,
max_notifications,
"TP_Reactor");
handler.run();
}
#if 0
/// @@todo: Need to talk to Irfan to see how the WFMO handles this.
#if defined (ACE_WIN32)
{
ACE_Reactor wfmo_reactor (new ACE_WFMO_Reactor,
1);
Event_Handler handler(&wfmo_reactor,
max_notifications,
"WFMO_Reactor");
handler.run();
}
#endif /*ACE_WIN32*/
#endif /*if 0 */
ACE_END_TEST;
return 0;
}
Event_Handler::Event_Handler (
ACE_Reactor * reactor,
int max_notifications,
char const * test_name)
: ACE_Event_Handler(reactor)
, max_notifications_(max_notifications)
, test_name_(test_name)
, notifications_sent_(0)
, notifications_recv_(0)
, notifications_curr_(1)
{
}
void
Event_Handler::run (void)
{
send_notifications ();
// Run for 30 seconds or until the test is done.
for(int i = 0; i != 30 && !done(); ++i)
{
ACE_Time_Value tv (1,0);
reactor ()->run_reactor_event_loop(tv);
}
if(!done())
{
ACE_ERROR ((LM_ERROR,
ACE_TEXT ("Test %C failed due to timeout ")
ACE_TEXT (" sent=%d,recv=%d\n"),
test_name_,
notifications_sent_,
notifications_recv_));
}
else
{
ACE_DEBUG ((LM_INFO,
ACE_TEXT ("Test %C passed sent=%d, recv=%d\n"),
test_name_,
notifications_sent_,
notifications_recv_));
}
}
int
Event_Handler::handle_exception (ACE_HANDLE)
{
++notifications_recv_;
if(notifications_recv_ == notifications_sent_)
{
if(notifications_curr_ >= max_notifications_)
{
return 0;
}
send_notifications();
}
return 0;
}
void
Event_Handler::send_notifications (void)
{
for (int i = 0; i != notifications_curr_; ++i)
{
if(reactor()->notify (this) == -1)
{
ACE_ERROR((LM_ERROR,
ACE_TEXT ("Cannot send notifications in %C test (%d/%d)\n"),
test_name_, i, notifications_curr_));
return;
}
++notifications_sent_;
}
// ACE_ERROR((LM_ERROR,
// "Started iteration with %d notify() calls in test %C\n",
// notifications_curr_, test_name_));
notifications_curr_ *= 2;
}
bool
Event_Handler::done (void) const
{
return (notifications_curr_ >= max_notifications_)
&& (notifications_sent_ == notifications_recv_);
}
|