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
|
//=============================================================================
/**
* @file Registration.cpp
*
* $Id: Registration.cpp 93639 2011-03-24 13:32:13Z johnnyw $
*
*
* This test application tests a wide range of registration,
* suspension, resumption, and removal of events from Reactor.
*
* The application initially registers two events with Reactor. A
* auxiliary thread is created to do the signaling on the
* events. When the first event is signaled, the event is suspended
* from Reactor. The event is then signaled again, but is "lost"
* since the handler has been suspended. When the second event is
* signal, the first event is resumed and the second is
* suspended. When the first event is signaled again, both events
* are removed from Reactor.
*
* This test shows off the following features of Reactor:
* - Registration
* - Suspension
* - Resumption
* - Removal (while active and while suspended)
*
*
* @author Irfan Pyarali
*/
//=============================================================================
#include "ace/OS_main.h"
#if defined (ACE_WIN32)
#include "ace/Reactor.h"
#include "ace/Auto_Event.h"
#include "ace/OS_NS_unistd.h"
#include "ace/Log_Msg.h"
// Globals for this test
int stop_test = 0;
ACE_Reactor reactor;
class Simple_Handler : public ACE_Event_Handler
{
public:
/// Default constructor
Simple_Handler (void);
virtual int handle_signal (int signum, siginfo_t * = 0, ucontext_t * = 0);
virtual int handle_close (ACE_HANDLE handle,
ACE_Reactor_Mask close_mask);
ACE_Auto_Event event1_;
ACE_Auto_Event event2_;
int handle_signal_count_;
int handle_close_count_;
};
Simple_Handler::Simple_Handler (void)
: handle_signal_count_ (0),
handle_close_count_ (0)
{
}
int
Simple_Handler::handle_signal (int, siginfo_t *s, ucontext_t *)
{
ACE_HANDLE handle = s->si_handle_;
ACE_UNUSED_ARG (handle);
this->handle_signal_count_++;
if (this->handle_signal_count_ == 1)
this->reactor ()->suspend_handler (event1_.handle ());
else if (this->handle_signal_count_ == 2)
{
this->reactor ()->resume_handler (event1_.handle ());
this->reactor ()->suspend_handler (event2_.handle ());
}
else if (this->handle_signal_count_ == 3)
{
this->reactor ()->remove_handler (event1_.handle (),
ACE_Event_Handler::NULL_MASK);
this->reactor ()->remove_handler (event2_.handle (),
ACE_Event_Handler::NULL_MASK);
}
return 0;
}
int
Simple_Handler::handle_close (ACE_HANDLE handle,
ACE_Reactor_Mask)
{
ACE_DEBUG ((LM_DEBUG, "Simple_Handler::handle_close handle = %d\n", handle));
this->handle_close_count_++;
if (this->handle_close_count_ == 1)
stop_test = 0;
else if (this->handle_close_count_ == 2)
stop_test = 1;
return 0;
}
// Globals for this test
Simple_Handler simple_handler;
void
worker (void)
{
ACE_DEBUG ((LM_DEBUG, "(%t) Thread creation\n"));
ACE_DEBUG ((LM_DEBUG, "(%t) Thread sleeping\n"));
ACE_OS::sleep (1);
ACE_DEBUG ((LM_DEBUG, "(%t) Thread signaling %d\n", simple_handler.event1_.handle()));
simple_handler.event1_.signal ();
ACE_DEBUG ((LM_DEBUG, "(%t) Thread sleeping\n"));
ACE_OS::sleep (1);
ACE_DEBUG ((LM_DEBUG, "(%t) Thread signaling %d\n", simple_handler.event1_.handle()));
ACE_DEBUG ((LM_DEBUG, "Note: This signal should be \"lost\" because of the suspended handler\n"));
simple_handler.event1_.signal ();
ACE_DEBUG ((LM_DEBUG, "(%t) Thread sleeping\n"));
ACE_OS::sleep (1);
ACE_DEBUG ((LM_DEBUG, "(%t) Thread resetting %d\n", simple_handler.event1_.handle()));
simple_handler.event1_.reset ();
ACE_DEBUG ((LM_DEBUG, "(%t) Thread signaling %d\n", simple_handler.event2_.handle()));
simple_handler.event2_.signal ();
ACE_DEBUG ((LM_DEBUG, "(%t) Thread sleeping\n"));
ACE_OS::sleep (1);
ACE_DEBUG ((LM_DEBUG, "(%t) Thread signaling %d\n", simple_handler.event1_.handle()));
simple_handler.event1_.signal ();
ACE_DEBUG ((LM_DEBUG, "(%t) Thread death\n"));
}
int
ACE_TMAIN (int, ACE_TCHAR *[])
{
int result = reactor.register_handler (&simple_handler,
simple_handler.event1_.handle ());
ACE_ASSERT (result == 0);
result = reactor.register_handler (&simple_handler,
simple_handler.event2_.handle ());
ACE_ASSERT (result == 0);
result = ACE_OS::thr_create ((ACE_THR_FUNC) worker, 0, 0, 0);
ACE_ASSERT (result == 0);
result = 0;
while (!stop_test && result != -1)
{
result = reactor.handle_events ();
}
return 0;
};
#else /* !ACE_WIN32 */
int
ACE_TMAIN (int, ACE_TCHAR *[])
{
return 0;
}
#endif /* ACE_WIN32 */
|