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
|
//=============================================================================
/**
* @file Handle_Close.cpp
*
* $Id: Handle_Close.cpp 93639 2011-03-24 13:32:13Z johnnyw $
*
*
* This application tests whether handle_close gets called and if
* the correct masks are passed along. The handler should get
* handle_close called for all three masks (READ, WRITE, and
* EXCEPT).
*
*
* @author Irfan Pyarali
*/
//=============================================================================
#include "ace/Get_Opt.h"
#include "ace/Reactor.h"
#include "ace/WFMO_Reactor.h"
#include "ace/Select_Reactor.h"
#include "ace/Auto_Ptr.h"
#include "ace/Pipe.h"
#include "ace/OS_main.h"
// Use the WFMO_Reactor
static int opt_wfmo_reactor = 0;
// Use the Select_Reactor
static int opt_select_reactor = 0;
// Make pipe readable in main()
static int write_to_pipe_in_main = 0;
// Cancel reads
static int cancel_reads = 0;
// Write some data to the pipe. This will cause handle_input to get
// called.
void
write_to_pipe (ACE_Pipe &pipe)
{
const char *data = "hello";
size_t len = ACE_OS::strlen (data);
ssize_t result = ACE::send (pipe.write_handle (),
data,
len);
ACE_ASSERT ((size_t)result == len);
ACE_UNUSED_ARG (result);
}
// Simple handler class
class Handler : public ACE_Event_Handler
{
public:
Handler (ACE_Pipe &pipe)
: pipe_ (pipe)
{
}
~Handler (void)
{
this->reactor (0);
}
ACE_HANDLE get_handle (void) const
{
return this->pipe_.read_handle ();
}
int handle_close (ACE_HANDLE handle,
ACE_Reactor_Mask close_mask)
{
ACE_UNUSED_ARG (handle);
ACE_DEBUG ((LM_DEBUG,
"Handler::handle_close called with mask = %d\n",
close_mask));
return 0;
}
int handle_input (ACE_HANDLE handle)
{
ACE_UNUSED_ARG (handle);
ACE_DEBUG ((LM_DEBUG, "Handler::handle_input\n"));
// Remove for reading
return -1;
}
int handle_output (ACE_HANDLE handle)
{
ACE_UNUSED_ARG (handle);
ACE_DEBUG ((LM_DEBUG, "Handler::handle_output\n"));
// Optionally cancel reads
if (cancel_reads)
{
int result = this->reactor ()->cancel_wakeup (this,
ACE_Event_Handler::READ_MASK);
ACE_ASSERT (result != -1);
ACE_UNUSED_ARG (result);
}
// Write to the pipe; this causes handle_input to get called.
if (!write_to_pipe_in_main)
write_to_pipe (this->pipe_);
// Remove for writing
return -1;
}
protected:
ACE_Pipe &pipe_;
};
class Different_Handler : public ACE_Event_Handler
{
public:
Different_Handler (ACE_Pipe &pipe)
: pipe_ (pipe)
{
}
~Different_Handler (void)
{
this->reactor (0);
}
ACE_HANDLE get_handle (void) const
{
return this->pipe_.read_handle ();
}
int handle_close (ACE_HANDLE handle,
ACE_Reactor_Mask close_mask)
{
ACE_UNUSED_ARG (handle);
ACE_DEBUG ((LM_DEBUG,
"Different_Handler::handle_close called with mask = %d\n",
close_mask));
return 0;
}
int handle_input (ACE_HANDLE handle)
{
ACE_UNUSED_ARG (handle);
ACE_DEBUG ((LM_DEBUG, "Different_Handler::handle_input\n"));
// Remove for reading
int result = this->reactor ()->remove_handler (this,
ACE_Event_Handler::READ_MASK);
ACE_ASSERT (result == 0);
ACE_UNUSED_ARG (result);
return 0;
}
int handle_output (ACE_HANDLE handle)
{
ACE_UNUSED_ARG (handle);
ACE_DEBUG ((LM_DEBUG, "Different_Handler::handle_output\n"));
// Add for reading
int result = this->reactor ()->mask_ops (this,
ACE_Event_Handler::READ_MASK,
ACE_Reactor::ADD_MASK);
ACE_ASSERT (result != -1);
ACE_Reactor_Mask old_masks =
ACE_Event_Handler::WRITE_MASK |
ACE_Event_Handler::EXCEPT_MASK;
ACE_ASSERT (old_masks ==
static_cast<ACE_Reactor_Mask> (result));
ACE_UNUSED_ARG (old_masks);
// Get new masks
result = this->reactor ()->mask_ops (this,
ACE_Event_Handler::NULL_MASK,
ACE_Reactor::GET_MASK);
ACE_ASSERT (result != -1);
ACE_Reactor_Mask current_masks =
ACE_Event_Handler::READ_MASK |
ACE_Event_Handler::WRITE_MASK |
ACE_Event_Handler::EXCEPT_MASK;
ACE_ASSERT (current_masks ==
static_cast<ACE_Reactor_Mask> (result));
ACE_UNUSED_ARG (current_masks);
// Remove for writing
ACE_Reactor_Mask mask = ACE_Event_Handler::WRITE_MASK | ACE_Event_Handler::DONT_CALL;
result = this->reactor ()->remove_handler (this,
mask);
ACE_ASSERT (result == 0);
// Write to the pipe; this causes handle_input to get called.
if (!write_to_pipe_in_main)
write_to_pipe (this->pipe_);
return 0;
}
protected:
ACE_Pipe &pipe_;
};
//
// Selection of which reactor should get created
//
ACE_Reactor *
create_reactor (void)
{
ACE_Reactor_Impl *impl = 0;
if (opt_wfmo_reactor)
{
#if defined (ACE_WIN32) && !defined (ACE_HAS_WINCE)
ACE_NEW_RETURN (impl,
ACE_WFMO_Reactor,
0);
#endif /* ACE_WIN32 */
}
else if (opt_select_reactor)
{
ACE_NEW_RETURN (impl,
ACE_Select_Reactor,
0);
}
else
{
ACE_Reactor *singleton_reactor =
ACE_Reactor::instance ();
ACE_Reactor::instance (0);
return singleton_reactor;
}
ACE_Reactor *reactor = 0;
ACE_NEW_RETURN (reactor,
ACE_Reactor (impl,
1),
0);
return reactor;
}
int
ACE_TMAIN (int argc, ACE_TCHAR *argv[])
{
int result = 0;
//FUZZ: disable check_for_lack_ACE_OS
// Parse args
ACE_Get_Opt getopt (argc, argv, ACE_TEXT ("swmc"), 1);
for (int c; (c = getopt ()) != -1; )
//FUZZ: enable check_for_lack_ACE_OS
switch (c)
{
case 's':
opt_select_reactor = 1;
break;
case 'w':
opt_wfmo_reactor = 1;
break;
case 'm':
write_to_pipe_in_main = 1;
break;
case 'c':
cancel_reads = 1;
break;
}
// Create pipes
ACE_Pipe pipe1, pipe2;
result = pipe1.open ();
ACE_ASSERT (result == 0);
result = pipe2.open ();
ACE_ASSERT (result == 0);
// Create handlers
Handler handler (pipe1);
Different_Handler different_handler (pipe2);
// Manage memory automagically.
auto_ptr<ACE_Reactor> reactor (create_reactor ());
// Register handlers
ACE_Reactor_Mask handler_mask =
ACE_Event_Handler::READ_MASK |
ACE_Event_Handler::WRITE_MASK |
ACE_Event_Handler::EXCEPT_MASK;
ACE_Reactor_Mask different_handler_mask =
ACE_Event_Handler::WRITE_MASK |
ACE_Event_Handler::EXCEPT_MASK;
result = reactor->register_handler (&handler,
handler_mask);
ACE_ASSERT (result == 0);
result = reactor->register_handler (&different_handler,
different_handler_mask);
ACE_ASSERT (result == 0);
// Write to the pipe; this causes handle_input to get called.
if (write_to_pipe_in_main)
{
write_to_pipe (pipe1);
write_to_pipe (pipe2);
}
// Note that handle_output will get called automatically since the
// pipe is writable!
//FUZZ: disable check_for_lack_ACE_OS
// Run for three seconds
ACE_Time_Value time (3);
//FUZZ: enable check_for_lack_ACE_OS
reactor->run_reactor_event_loop (time);
ACE_DEBUG ((LM_DEBUG, "\nClosing down the application\n\n"));
return 0;
}
|