📄 sender.cpp
字号:
// sender.cpp,v 1.7 2002/07/27 20:13:18 crodrigu Exp
#include "sender.h"
#include "tao/debug.h"
#include "ace/Get_Opt.h"
#include "ace/High_Res_Timer.h"
typedef ACE_Singleton<Sender, ACE_Null_Mutex> SENDER;
// Create a singleton instance of the Sender.
static FILE *output_file = 0;
// File handle of the file into which received data is written.
static const char *output_file_name = "output";
// File name of the file into which received data is written.
int
Sender_StreamEndPoint::get_callback (const char *,
TAO_AV_Callback *&callback)
{
// Create and return the sender application callback to AVStreams
// for further upcalls.
callback = &this->callback_;
return 0;
}
int
Sender_StreamEndPoint::set_protocol_object (const char *,
TAO_AV_Protocol_Object *object)
{
// Set the sender protocol object corresponding to the transport
// protocol selected.
SENDER::instance ()->protocol_object (object);
return 0;
}
Sender_Callback::Sender_Callback (void)
: frame_count_ (1)
{
}
int
Sender_Callback::receive_frame (ACE_Message_Block *frame,
TAO_AV_frame_info *,
const ACE_Addr &)
{
//
// Upcall from the AVStreams when there is data to be received from
// the sender.
//
ACE_DEBUG ((LM_DEBUG,
"Sender_Callback::receive_frame for frame %d\n",
this->frame_count_++));
while (frame != 0)
{
// Write the received data to the file.
size_t result =
ACE_OS::fwrite (frame->rd_ptr (),
frame->length (),
1,
output_file);
if (result == frame->length ())
ACE_ERROR_RETURN ((LM_ERROR,
"Sender_Callback::fwrite failed\n"),
-1);
frame = frame->cont ();
}
if (SENDER::instance ()->eof () == 1)
SENDER::instance ()->shutdown ();
return 0;
}
Sender::Sender (void)
: sender_mmdevice_ (0),
streamctrl_ (0),
frame_count_ (0),
filename_ ("input"),
input_file_ (0),
protocol_ ("UDP"),
frame_rate_ (30),
mb_ (BUFSIZ),
eof_ (0)
{
}
void
Sender::protocol_object (TAO_AV_Protocol_Object *object)
{
// Set the sender protocol object corresponding to the transport
// protocol selected.
this->protocol_object_ = object;
}
int
Sender::eof (void)
{
return this->eof_;
}
void
Sender::shutdown (void)
{
ACE_DECLARE_NEW_CORBA_ENV;
ACE_TRY
{
// File reading is complete, destroy the stream.
AVStreams::flowSpec stop_spec;
this->streamctrl_->destroy (stop_spec
ACE_ENV_ARG_PARAMETER);
ACE_TRY_CHECK;
// Shut the orb down.
TAO_AV_CORE::instance ()->orb ()->shutdown (0
ACE_ENV_ARG_PARAMETER);
ACE_TRY_CHECK;
}
ACE_CATCHANY
{
ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION, "shutdown\n");
}
ACE_ENDTRY;
}
int
Sender::parse_args (int argc,
char **argv)
{
// Parse command line arguments
ACE_Get_Opt opts (argc, argv, "f:p:r:d");
int c;
while ((c= opts ()) != -1)
{
switch (c)
{
case 'f':
this->filename_ = opts.opt_arg ();
break;
case 'p':
this->protocol_ = opts.opt_arg ();
break;
case 'r':
this->frame_rate_ = ACE_OS::atoi (opts.opt_arg ());
break;
case 'd':
TAO_debug_level++;
break;
default:
ACE_DEBUG ((LM_DEBUG, "Unknown Option\n"));
return -1;
}
}
return 0;
}
// Method to get the object reference of the receiver
int
Sender::bind_to_receiver (ACE_ENV_SINGLE_ARG_DECL)
{
CosNaming::Name name (1);
name.length (1);
name [0].id =
CORBA::string_dup ("Receiver");
// Resolve the receiver object reference from the Naming Service
CORBA::Object_var receiver_mmdevice_obj =
this->naming_client_->resolve (name
ACE_ENV_ARG_PARAMETER);
ACE_CHECK_RETURN (-1);
this->receiver_mmdevice_ =
AVStreams::MMDevice::_narrow (receiver_mmdevice_obj.in ()
ACE_ENV_ARG_PARAMETER);
ACE_CHECK_RETURN (-1);
if (CORBA::is_nil (this->receiver_mmdevice_.in ()))
ACE_ERROR_RETURN ((LM_ERROR,
"Could not resolve Receiver_MMdevice in Naming service <%s>\n"),
-1);
return 0;
}
int
Sender::init (int argc,
char **argv
ACE_ENV_ARG_DECL)
{
// Initialize the endpoint strategy with the orb and poa.
int result =
this->endpoint_strategy_.init (TAO_AV_CORE::instance ()->orb (),
TAO_AV_CORE::instance ()->poa ());
if (result != 0)
return result;
// Initialize the naming services
result =
this->naming_client_.init (TAO_AV_CORE::instance ()->orb ());
if (result != 0)
return result;
// Parse the command line arguments
result =
this->parse_args (argc,
argv);
if (result != 0)
return result;
// Open file to read.
this->input_file_ =
ACE_OS::fopen (this->filename_.c_str (),
"r");
if (this->input_file_ == 0)
ACE_ERROR_RETURN ((LM_DEBUG,
"Cannot open input file %s\n",
this->filename_.c_str ()),
-1);
else
ACE_DEBUG ((LM_DEBUG,
"File opened successfully\n"));
// Resolve the object reference of the receiver from the Naming Service.
result = this->bind_to_receiver (ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_CHECK_RETURN (-1);
if (result != 0)
ACE_ERROR_RETURN ((LM_ERROR,
"(%P|%t) Error binding to the naming service\n"),
-1);
// Initialize the QoS
AVStreams::streamQoS_var the_qos (new AVStreams::streamQoS);
// Create the forward flow specification to describe the flow.
TAO_Forward_FlowSpec_Entry entry ("Data_Receiver",
"IN",
"USER_DEFINED",
"",
this->protocol_.c_str (),
0);
AVStreams::flowSpec flow_spec (1);
flow_spec.length (2);
flow_spec [0] = CORBA::string_dup (entry.entry_to_string ());
// Create the forward flow specification to describe the flow.
TAO_Forward_FlowSpec_Entry entry1 ("Data_Receiver1",
"OUT",
"USER_DEFINED",
"",
this->protocol_.c_str (),
0);
flow_spec [1] = CORBA::string_dup (entry1.entry_to_string ());
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -