summaryrefslogtreecommitdiff
path: root/CIAO/connectors/dds4ccm/tests/Proxies/ReadWrite/Sender/Proxy_RW_Test_Sender_exec.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/connectors/dds4ccm/tests/Proxies/ReadWrite/Sender/Proxy_RW_Test_Sender_exec.cpp')
-rw-r--r--CIAO/connectors/dds4ccm/tests/Proxies/ReadWrite/Sender/Proxy_RW_Test_Sender_exec.cpp420
1 files changed, 0 insertions, 420 deletions
diff --git a/CIAO/connectors/dds4ccm/tests/Proxies/ReadWrite/Sender/Proxy_RW_Test_Sender_exec.cpp b/CIAO/connectors/dds4ccm/tests/Proxies/ReadWrite/Sender/Proxy_RW_Test_Sender_exec.cpp
deleted file mode 100644
index e895270cd84..00000000000
--- a/CIAO/connectors/dds4ccm/tests/Proxies/ReadWrite/Sender/Proxy_RW_Test_Sender_exec.cpp
+++ /dev/null
@@ -1,420 +0,0 @@
-// -*- C++ -*-
-/**
- * Code generated by the The ACE ORB (TAO) IDL Compiler v1.8.3
- * TAO and the TAO IDL Compiler have been developed by:
- * Center for Distributed Object Computing
- * Washington University
- * St. Louis, MO
- * USA
- * http://www.cs.wustl.edu/~schmidt/doc-center.html
- * and
- * Distributed Object Computing Laboratory
- * University of California at Irvine
- * Irvine, CA
- * USA
- * and
- * Institute for Software Integrated Systems
- * Vanderbilt University
- * Nashville, TN
- * USA
- * http://www.isis.vanderbilt.edu/
- *
- * Information about TAO is available at:
- * http://www.dre.vanderbilt.edu/~schmidt/TAO.html
- **/
-
-#include "Proxy_RW_Test_Sender_exec.h"
-
-namespace CIAO_Proxy_RW_Test_Sender_Impl
-{
-
- /**
- * Facet Executor Implementation Class: restart_writer_exec_i
- */
-
- restart_writer_exec_i::restart_writer_exec_i (
- ::Proxy_RW_Test::CCM_Sender_Context_ptr ctx,
- Sender_exec_i &callback)
- : ciao_context_ (
- ::Proxy_RW_Test::CCM_Sender_Context::_duplicate (ctx))
- , callback_ (callback)
- {
- }
-
- restart_writer_exec_i::~restart_writer_exec_i (void)
- {
- }
-
- // Operations from ::ReadGetRestarter
-
- void
- restart_writer_exec_i::restart_write (::ReaderStarter::assignment task)
- {
- this->callback_.restart_write (task);
- }
-
- /**
- * Facet Executor Implementation Class: info_out_connector_status_exec_i
- */
-
- info_out_connector_status_exec_i::info_out_connector_status_exec_i (
- ::Proxy_RW_Test::CCM_Sender_Context_ptr ctx,
- Sender_exec_i &callback)
- : ciao_context_ (
- ::Proxy_RW_Test::CCM_Sender_Context::_duplicate (ctx))
- , callback_ (callback)
- {
- }
-
- info_out_connector_status_exec_i::~info_out_connector_status_exec_i (void)
- {
- }
-
- // Operations from ::CCM_DDS::ConnectorStatusListener
-
- void
- info_out_connector_status_exec_i::on_inconsistent_topic (::DDS::Topic_ptr /* the_topic */,
- const ::DDS::InconsistentTopicStatus & /* status */)
- {
- /* Your code here. */
- }
-
- void
- info_out_connector_status_exec_i::on_requested_incompatible_qos (::DDS::DataReader_ptr /* the_reader */,
- const ::DDS::RequestedIncompatibleQosStatus & /* status */)
- {
- /* Your code here. */
- }
-
- void
- info_out_connector_status_exec_i::on_sample_rejected (::DDS::DataReader_ptr /* the_reader */,
- const ::DDS::SampleRejectedStatus & /* status */)
- {
- /* Your code here. */
- }
-
- void
- info_out_connector_status_exec_i::on_offered_deadline_missed (::DDS::DataWriter_ptr /* the_writer */,
- const ::DDS::OfferedDeadlineMissedStatus & /* status */)
- {
- /* Your code here. */
- }
-
- void
- info_out_connector_status_exec_i::on_offered_incompatible_qos (::DDS::DataWriter_ptr /* the_writer */,
- const ::DDS::OfferedIncompatibleQosStatus & /* status */)
- {
- /* Your code here. */
- }
-
- void
- info_out_connector_status_exec_i::on_unexpected_status (::DDS::Entity_ptr /* the_entity */,
- ::DDS::StatusKind status_kind)
- {
- if (status_kind == ::DDS::PUBLICATION_MATCHED_STATUS)
- this->callback_.start ();
- }
-
- /**
- * Component Executor Implementation Class: Sender_exec_i
- */
-
- Sender_exec_i::Sender_exec_i (void)
- : keys_ (0)
- , iterations_ (0)
- , done_ (false)
- , ccm_activated_ (false)
- {
- }
-
- Sender_exec_i::~Sender_exec_i (void)
- {
- }
-
- // Supported operations and attributes.
- Sender_exec_i::TypedDataWriter::_ptr_type
- Sender_exec_i::get_typed_idl_writer (void)
- {
- TypedDataWriter::_var_type idl_writer;
- ::DDS::DataWriter_var dds_dw =
- this->ciao_context_->get_connection_info_write_dds_entity ();
-
- if (::CORBA::is_nil (dds_dw.in ()))
- {
- ACE_ERROR ((LM_ERROR, "ERROR : Sender_exec_i::get_typed_idl_writer - "
- "Datawriter connection is NIL.\n"));
- return TypedDataWriter::_nil ();
- }
-
- ::CIAO::DDS4CCM::CCM_DataWriter * ccm_dw =
- dynamic_cast < ::CIAO::DDS4CCM::CCM_DataWriter * > (dds_dw.in ());
-
- if (ccm_dw)
- {
- ::DDS::DataWriter_var tmp = ccm_dw->get_dds_entity ();
- if (! ::CORBA::is_nil (tmp.in ()))
- {
- idl_writer =
- ::CIAO_Proxy_RW_Test_ProxyReadWriteTestConnector_DDS_Event_Impl
- ::ProxyReadWriteTest_DDS_Traits::typed_writer_type::_narrow (tmp.in ());
- return idl_writer._retn ();
- }
- else
- {
- ACE_ERROR ((LM_ERROR, "Sender_exec_i::get_typed_idl_writer - "
- "ERROR: CCM DataWriter returned NIL as DDS entity\n"));
- return TypedDataWriter::_nil ();
- }
- }
- else
- {
- ACE_ERROR ((LM_ERROR, "Sender_exec_i::get_typed_idl_writer - "
- "ERROR: Unable to cast to CCM DataWriter\n"));
- return TypedDataWriter::_nil ();
- }
- }
-
- void
- Sender_exec_i::write_using_idl_proxy_for_read (void)
- {
- TypedDataWriter::_var_type idl_writer = this->get_typed_idl_writer ();
-
- if (!::CORBA::is_nil (idl_writer.in ()))
- {
- ReaderStarter_var starter =
- this->ciao_context_->get_connection_start_reader ();
-
- if (! ::CORBA::is_nil (starter.in ()))
- {
- starter->set_reader_properties (this->keys_, this->iterations_);
- }
- else
- {
- ACE_ERROR ((LM_ERROR, ACE_TEXT ("ERROR: Unable to start the sender\n")));
- return;
- }
- for (CORBA::UShort iter_key = 1; iter_key < this->keys_ + 1; ++iter_key)
- {
- char key[7];
- ProxyReadWriteTest *new_key = new ProxyReadWriteTest;
- ACE_OS::sprintf (key, "KEY_%d", iter_key);
- new_key->key = CORBA::string_dup(key);
-
- const ::CORBA::UShort offset =
- ::ReaderStarter::READ_USING_IDL_PROXY * this->iterations_ + 1;
- for (CORBA::UShort iter = offset;
- iter < offset + this->iterations_;
- ++iter)
- {
- new_key->iteration = iter;
- idl_writer->write (*new_key, ::DDS::HANDLE_NIL);
- ACE_DEBUG ((LM_DEBUG, "Sender_exec_i::write_using_idl_proxy_for_read - "
- "Written key <%C> with <%d>\n",
- key, iter));
- }
- delete new_key;
- }
- starter->start_read (::ReaderStarter::READ_USING_IDL_PROXY);
- }
- else
- {
- ACE_ERROR ((LM_ERROR, "Sender_exec_i::write_using_idl_proxy_for_read - "
- "ERROR: Error retrieving IDL DataWriter\n"));
- }
- ACE_DEBUG ((LM_DEBUG, "Sender_exec_i::write_using_idl_proxy_for_read - "
- "Finished writing sample for read.\n"));
- }
-
- void
- Sender_exec_i::write_using_idl_proxy_for_take (void)
- {
- TypedDataWriter::_var_type idl_writer = this->get_typed_idl_writer ();
-
- if (!::CORBA::is_nil (idl_writer.in ()))
- {
- ReaderStarter_var starter =
- this->ciao_context_->get_connection_start_reader ();
-
- if (! ::CORBA::is_nil (starter.in ()))
- {
- starter->set_reader_properties (this->keys_, this->iterations_);
- }
- else
- {
- ACE_ERROR ((LM_ERROR, ACE_TEXT ("ERROR: Unable to start the sender\n")));
- return;
- }
- for (CORBA::UShort iter_key = 1; iter_key < this->keys_ + 1; ++iter_key)
- {
- char key[7];
- ProxyReadWriteTest *new_key = new ProxyReadWriteTest;
- ACE_OS::sprintf (key, "KEY_%d", iter_key);
- new_key->key = CORBA::string_dup(key);
-
- const ::CORBA::UShort offset =
- ::ReaderStarter::TAKE_USING_IDL_PROXY * this->iterations_ + 1;
- for (CORBA::UShort iter = offset;
- iter < offset + this->iterations_;
- ++iter)
- {
- new_key->iteration = iter;
- idl_writer->write (*new_key, ::DDS::HANDLE_NIL);
- ACE_DEBUG ((LM_DEBUG, "Sender_exec_i::write_using_idl_proxy_for_take - "
- "Written key <%C> with <%d>\n",
- key, iter));
- }
- delete new_key;
- }
- starter->start_read (::ReaderStarter::TAKE_USING_IDL_PROXY);
- }
- else
- {
- ACE_ERROR ((LM_ERROR, "Sender_exec_i::write_using_idl_proxy_for_take - "
- "ERROR: Error retrieving IDL DataWriter\n"));
- }
- }
-
- void
- Sender_exec_i::start (void)
- {
- if (!this->done_ && this->ccm_activated_)
- {
- this->done_ = true;
- this->write_using_idl_proxy_for_read ();
- }
- }
-
- void
- Sender_exec_i::restart_write (::ReaderStarter::assignment task)
- {
- ACE_DEBUG ((LM_DEBUG, "Sender_exec_i::restart_write - "
- "New assignment received <%d>", task));
- if (task == ::ReaderStarter::TAKE_USING_IDL_PROXY)
- {
- this->write_using_idl_proxy_for_take ();
- }
- }
-
- // Component attributes and port operations.
-
- ::CCM_DDS::CCM_ConnectorStatusListener_ptr
- Sender_exec_i::get_info_out_connector_status (void)
- {
- if ( ::CORBA::is_nil (this->ciao_info_out_connector_status_.in ()))
- {
- info_out_connector_status_exec_i *tmp = 0;
- ACE_NEW_RETURN (
- tmp,
- info_out_connector_status_exec_i (
- this->ciao_context_.in (),
- *this),
- ::CCM_DDS::CCM_ConnectorStatusListener::_nil ());
-
- this->ciao_info_out_connector_status_ = tmp;
- }
-
- return
- ::CCM_DDS::CCM_ConnectorStatusListener::_duplicate (
- this->ciao_info_out_connector_status_.in ());
- }
-
- ::CCM_WriterRestarter_ptr
- Sender_exec_i::get_restart_writer (void)
- {
- if ( ::CORBA::is_nil (this->ciao_restart_writer_.in ()))
- {
- restart_writer_exec_i *tmp = 0;
- ACE_NEW_RETURN (
- tmp,
- restart_writer_exec_i (
- this->ciao_context_.in (),
- *this),
- ::CCM_WriterRestarter::_nil ());
-
- this->ciao_restart_writer_ = tmp;
- }
-
- return
- ::CCM_WriterRestarter::_duplicate (
- this->ciao_restart_writer_.in ());
- }
-
-
- ::CORBA::UShort
- Sender_exec_i::keys (void)
- {
- return this->keys_;
- }
-
- void
- Sender_exec_i::keys (
- const ::CORBA::UShort keys)
- {
- this->keys_ = keys;
- }
-
- ::CORBA::UShort
- Sender_exec_i::iterations (void)
- {
- return this->iterations_;
- }
-
- void
- Sender_exec_i::iterations (
- const ::CORBA::UShort iterations)
- {
- this->iterations_ = iterations;
- }
-
- // Operations from Components::SessionComponent.
-
- void
- Sender_exec_i::set_session_context (
- ::Components::SessionContext_ptr ctx)
- {
- this->ciao_context_ =
- ::Proxy_RW_Test::CCM_Sender_Context::_narrow (ctx);
-
- if ( ::CORBA::is_nil (this->ciao_context_.in ()))
- {
- throw ::CORBA::INTERNAL ();
- }
- }
-
- void
- Sender_exec_i::configuration_complete (void)
- {
- /* Your code here. */
- }
-
- void
- Sender_exec_i::ccm_activate (void)
- {
- this->ccm_activated_ = true;
- }
-
- void
- Sender_exec_i::ccm_passivate (void)
- {
- /* Your code here. */
- }
-
- void
- Sender_exec_i::ccm_remove (void)
- {
- /* Your code here. */
- }
-
- extern "C" SENDER_EXEC_Export ::Components::EnterpriseComponent_ptr
- create_Proxy_RW_Test_Sender_Impl (void)
- {
- ::Components::EnterpriseComponent_ptr retval =
- ::Components::EnterpriseComponent::_nil ();
-
- ACE_NEW_NORETURN (
- retval,
- Sender_exec_i);
-
- return retval;
- }
-}