📄 receiver.cpp
字号:
// Receiver.cpp,v 1.8 2003/11/01 11:15:23 dhinton Exp
#include "ace/OS_main.h"
#include "ace/RMCast/RMCast_UDP_Reliable_Receiver.h"
#include "ace/INET_Addr.h"
#include "ace/FILE_IO.h"
#include "ace/Message_Block.h"
#include "ace/Reactor.h"
ACE_RCSID(tests, RMCast_Examples_Receiver, "Receiver.cpp,v 1.8 2003/11/01 11:15:23 dhinton Exp")
class File_Module : public ACE_RMCast_Module
{
public:
File_Module (void);
/// Return 1 if all the data has been received
int status (void) const;
/// Initialize the module
int init (const ACE_TCHAR *filename);
int close (void);
int data (ACE_RMCast::Data &data);
int ack_join (ACE_RMCast::Ack_Join &ack_join);
int ack_leave (ACE_RMCast::Ack_Leave &ack_leave);
private:
/// Set to 1 when the last block is received
int status_;
/// Used to dump the received data into a file
ACE_FILE_IO file_io_;
};
int
ACE_TMAIN (int argc, ACE_TCHAR *argv[])
{
if (argc != 3)
{
ACE_ERROR_RETURN ((LM_ERROR,
"Usage: %s <filename> <mcastgroup:port>\n",
argv[0]),
1);
}
const ACE_TCHAR *filename = argv[1];
File_Module file_module;
if (file_module.init (filename) == -1)
{
ACE_ERROR_RETURN ((LM_ERROR,
"Cannot init file module\n"),
1);
}
ACE_RMCast_UDP_Reliable_Receiver receiver (&file_module);
ACE_INET_Addr mcast_group;
if (mcast_group.set (argv[2]) != 0)
{
ACE_ERROR_RETURN ((LM_ERROR,
"Cannot setup multicast group <%s>\n",
argv[2]),
1);
}
if (receiver.init (mcast_group) == -1)
{
ACE_ERROR_RETURN ((LM_ERROR,
"Cannot init UDP I/O at <%s:%d> %p\n",
mcast_group.get_host_name (),
mcast_group.get_port_number (),
""),
1);
}
// Use the Reactor to demultiplex all the messages
ACE_Reactor *reactor = ACE_Reactor::instance ();
receiver.reactive_incoming_messages (reactor);
// Wait until all the messages are successfully delivered
do
{
// Try for 50 milliseconds...
ACE_Time_Value tv (5, 0); // 0, 50000);
int r = reactor->handle_events (&tv);
if (r == -1)
break;
}
while (file_module.status () != 2);
ACE_DEBUG ((LM_DEBUG, "event loop completed\n"));
return 0;
}
// ****************************************************************
File_Module::File_Module (void)
: status_ (0)
{
}
int
File_Module::status (void) const
{
return this->status_;
}
int
File_Module::init (const ACE_TCHAR * filename)
{
ACE_HANDLE handle = ACE_OS::open (filename,
O_WRONLY|O_BINARY|O_CREAT,
ACE_DEFAULT_FILE_PERMS);
if (handle == ACE_INVALID_HANDLE)
ACE_ERROR_RETURN ((LM_ERROR,
"Cannot open file <%s> %p\n", filename, ""),
-1);
this->file_io_.set_handle (handle);
return 0;
}
int
File_Module::close (void)
{
ACE_DEBUG ((LM_DEBUG, "File_Module closed\n"));
(void) this->file_io_.close ();
return 0;
}
int
File_Module::data (ACE_RMCast::Data &data)
{
if (this->status_ == 1)
return -1;
size_t length = data.payload->length () - 1;
(void) this->file_io_.send (data.payload->rd_ptr () + 1, length);
if (*(data.payload->rd_ptr ()) == 'E')
{
this->status_ = 1;
return -1;
}
return 0;
}
int
File_Module::ack_join (ACE_RMCast::Ack_Join &)
{
ACE_DEBUG ((LM_DEBUG,
"File_Module::ack_join\n"));
return 0;
}
int
File_Module::ack_leave (ACE_RMCast::Ack_Leave &)
{
ACE_DEBUG ((LM_DEBUG,
"File_Module::ack_leave\n"));
this->status_ = 2;
return 0;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -