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
|
//=============================================================================
/**
* @file simple_test_proactor.cpp
*
* $Id: simple_test_proactor.cpp 93639 2011-03-24 13:32:13Z johnnyw $
*
* Very simple version of test_proactor.cpp.
*
*
* @author Alexander Babu Arulanthu (alex@cs.wustl.edu)
*/
//=============================================================================
#include "ace/Service_Config.h"
#include "ace/Proactor.h"
#include "ace/Asynch_IO.h"
#include "ace/Asynch_IO_Impl.h"
#include "ace/Message_Block.h"
#include "ace/Get_Opt.h"
#include "ace/OS_main.h"
#if defined (ACE_HAS_WIN32_OVERLAPPED_IO) || defined (ACE_HAS_AIO_CALLS)
// This only works on Win32 platforms and on Unix platforms supporting
// POSIX aio calls.
static ACE_TCHAR *file = ACE_TEXT("simple_test_proactor.cpp");
static ACE_TCHAR *dump_file = ACE_TEXT("simple_output");
/**
* @class Simple_Tester
*
* @brief Simple_Tester
*
* The class will be created by main(). This class reads a block
* from the file and write that to the dump file.
*/
class Simple_Tester : public ACE_Handler
{
public:
/// Constructor.
Simple_Tester (void);
~Simple_Tester (void);
//FUZZ: disable check_for_lack_ACE_OS
/// Open the operations and initiate read from the file.
///FUZZ: enble check_for_lack_ACE_OS
int open (void);
protected:
// = These methods are called by the freamwork.
/// This is called when asynchronous reads from the socket complete.
virtual void handle_read_file (const ACE_Asynch_Read_File::Result &result);
/// This is called when asynchronous writes from the socket complete.
virtual void handle_write_file (const ACE_Asynch_Write_File::Result &result);
private:
int initiate_read_file (void);
/// rf (read file): for writing from the file.
ACE_Asynch_Read_File rf_;
/// ws (write File): for writing to the file.
ACE_Asynch_Write_File wf_;
/// File to read from.
ACE_HANDLE input_file_;
/// File for dumping data.
ACE_HANDLE dump_file_;
// u_long file_offset_;
// Current file offset
// u_long file_size_;
// File size
};
Simple_Tester::Simple_Tester (void)
: input_file_ (ACE_INVALID_HANDLE),
dump_file_ (ACE_INVALID_HANDLE)
{
}
Simple_Tester::~Simple_Tester (void)
{
ACE_OS::close (this->input_file_);
ACE_OS::close (this->dump_file_);
}
int
Simple_Tester::open (void)
{
// Initialize stuff
// Open input file (in OVERLAPPED mode)
this->input_file_ = ACE_OS::open (file,
GENERIC_READ | FILE_FLAG_OVERLAPPED);
if (this->input_file_ == ACE_INVALID_HANDLE)
ACE_ERROR_RETURN ((LM_ERROR, "%p\n", "ACE_OS::open"), -1);
// Open dump file (in OVERLAPPED mode)
this->dump_file_ = ACE_OS::open (dump_file,
O_CREAT | O_RDWR | O_TRUNC | FILE_FLAG_OVERLAPPED,
0644);
if (this->dump_file_ == ACE_INVALID_HANDLE)
ACE_ERROR_RETURN ((LM_ERROR, "%p\n", "ACE_OS::open"), -1);
// Open ACE_Asynch_Read_File
if (this->rf_.open (*this, this->input_file_) == -1)
ACE_ERROR_RETURN ((LM_ERROR, "%p\n", "ACE_Asynch_Read_File::open"), -1);
// Open ACE_Asynch_Write_File
if (this->wf_.open (*this, this->dump_file_) == -1)
ACE_ERROR_RETURN ((LM_ERROR, "%p\n", "ACE_Asynch_Write_File::open"), -1);
ACE_DEBUG ((LM_DEBUG,
"Simple_Tester::open: Files and Asynch Operations opened successfully\n"));
// Start an asynchronous read file
if (this->initiate_read_file () == -1)
return -1;
return 0;
}
int
Simple_Tester::initiate_read_file (void)
{
// Create Message_Block
ACE_Message_Block *mb = 0;
ACE_NEW_RETURN (mb, ACE_Message_Block (BUFSIZ + 1), -1);
// Inititiate an asynchronous read from the file
if (this->rf_.read (*mb, mb->size () - 1) == -1)
ACE_ERROR_RETURN ((LM_ERROR, "%p\n", "ACE_Asynch_Read_File::read"), -1);
ACE_DEBUG ((LM_DEBUG,
"Simple_Tester:initiate_read_file: Asynch Read File issued successfully\n"));
return 0;
}
void
Simple_Tester::handle_read_file (const ACE_Asynch_Read_File::Result &result)
{
ACE_DEBUG ((LM_DEBUG, "handle_read_file called\n"));
result.message_block ().rd_ptr ()[result.bytes_transferred ()] = '\0';
ACE_DEBUG ((LM_DEBUG, "********************\n"));
ACE_DEBUG ((LM_DEBUG, "%s = %d\n", "bytes_to_read", result.bytes_to_read ()));
ACE_DEBUG ((LM_DEBUG, "%s = %d\n", "handle", result.handle ()));
ACE_DEBUG ((LM_DEBUG, "%s = %d\n", "bytes_transfered", result.bytes_transferred ()));
ACE_DEBUG ((LM_DEBUG, "%s = %d\n", "act", (u_long) result.act ()));
ACE_DEBUG ((LM_DEBUG, "%s = %d\n", "success", result.success ()));
ACE_DEBUG ((LM_DEBUG, "%s = %d\n", "completion_key", (u_long) result.completion_key ()));
ACE_DEBUG ((LM_DEBUG, "%s = %d\n", "error", result.error ()));
ACE_DEBUG ((LM_DEBUG, "********************\n"));
// Watch out if you need to enable this... the ACE_Log_Record::MAXLOGMSGLEN
// value controls to max length of a log record, and a large output
// buffer may smash it.
#if 0
ACE_DEBUG ((LM_DEBUG, "%s = %s\n",
"message_block",
result.message_block ().rd_ptr ()));
#endif /* 0 */
if (result.success ())
{
// Read successful: write this to the file.
if (this->wf_.write (result.message_block (),
result.bytes_transferred ()) == -1)
{
ACE_ERROR ((LM_ERROR, "%p\n", "ACE_Asynch_Write_File::write"));
return;
}
}
}
void
Simple_Tester::handle_write_file (const ACE_Asynch_Write_File::Result &result)
{
ACE_DEBUG ((LM_DEBUG, "handle_write_File called\n"));
// Reset pointers
result.message_block ().rd_ptr (result.message_block ().rd_ptr () - result.bytes_transferred ());
result.message_block ().rd_ptr ()[result.bytes_transferred ()] = '\0';
ACE_DEBUG ((LM_DEBUG, "********************\n"));
ACE_DEBUG ((LM_DEBUG, "%s = %d\n", "bytes_to_write", result.bytes_to_write ()));
ACE_DEBUG ((LM_DEBUG, "%s = %d\n", "handle", result.handle ()));
ACE_DEBUG ((LM_DEBUG, "%s = %d\n", "bytes_transfered", result.bytes_transferred ()));
ACE_DEBUG ((LM_DEBUG, "%s = %d\n", "act", (u_long) result.act ()));
ACE_DEBUG ((LM_DEBUG, "%s = %d\n", "success", result.success ()));
ACE_DEBUG ((LM_DEBUG, "%s = %d\n", "completion_key", (u_long) result.completion_key ()));
ACE_DEBUG ((LM_DEBUG, "%s = %d\n", "error", result.error ()));
ACE_DEBUG ((LM_DEBUG, "********************\n"));
// Watch out if you need to enable this... the ACE_Log_Record::MAXLOGMSGLEN
// value controls to max length of a log record, and a large output
// buffer may smash it.
#if 0
ACE_DEBUG ((LM_DEBUG, "%s = %s\n",
"message_block",
result.message_block ().rd_ptr ()));
#endif /* 0 */
ACE_Proactor::end_event_loop ();
}
static int
parse_args (int argc, ACE_TCHAR *argv[])
{
ACE_Get_Opt get_opt (argc, argv, ACE_TEXT("f:d:"));
int c;
while ((c = get_opt ()) != EOF)
switch (c)
{
case 'f':
file = get_opt.opt_arg ();
break;
case 'd':
dump_file = get_opt.opt_arg ();
break;
default:
ACE_ERROR ((LM_ERROR, "%p.\n",
"usage :\n"
"-d <dumpfile>\n"
"-f <file>\n"));
return -1;
}
return 0;
}
int
ACE_TMAIN (int argc, ACE_TCHAR *argv[])
{
if (parse_args (argc, argv) == -1)
return -1;
Simple_Tester Simple_Tester;
if (Simple_Tester.open () == -1)
return -1;
int success = 1;
// dispatch events
success = !(ACE_Proactor::run_event_loop () == -1);
return success ? 0 : 1;
}
#endif /* ACE_HAS_WIN32_OVERLAPPED_IO || ACE_HAS_AIO_CALLS */
|