summaryrefslogtreecommitdiff
path: root/CIAO/connectors/dds4ccm/tests/QueryCondition/TwoListeners/Receiver/QCTL_Test_Receiver_exec.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/connectors/dds4ccm/tests/QueryCondition/TwoListeners/Receiver/QCTL_Test_Receiver_exec.cpp')
-rw-r--r--CIAO/connectors/dds4ccm/tests/QueryCondition/TwoListeners/Receiver/QCTL_Test_Receiver_exec.cpp593
1 files changed, 0 insertions, 593 deletions
diff --git a/CIAO/connectors/dds4ccm/tests/QueryCondition/TwoListeners/Receiver/QCTL_Test_Receiver_exec.cpp b/CIAO/connectors/dds4ccm/tests/QueryCondition/TwoListeners/Receiver/QCTL_Test_Receiver_exec.cpp
deleted file mode 100644
index 2dd12cfab1e..00000000000
--- a/CIAO/connectors/dds4ccm/tests/QueryCondition/TwoListeners/Receiver/QCTL_Test_Receiver_exec.cpp
+++ /dev/null
@@ -1,593 +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 "QCTL_Test_Receiver_exec.h"
-
-#include "dds4ccm/impl/dds4ccm_conf.h"
-
-#define QUERY_1 "( (iteration > %0) AND (iteration < %1) )"
-#define QUERY_2 "( (iteration < %0) OR (iteration > %1) )"
-
-#define MIN_ITERATION "2"
-#define MAX_ITERATION "5"
-
-#define SAMPLES_PER_KEY_1 2
-
-namespace CIAO_QCTL_Test_Receiver_Impl
-{
-
- /**
- * Facet Executor Implementation Class: info_listen_1_data_listener_exec_i
- */
-
- info_listen_1_data_listener_exec_i::info_listen_1_data_listener_exec_i (
- ::QCTL_Test::CCM_Receiver_Context_ptr ctx,
- ACE_Thread_ID &thread_id,
- Atomic_Long &samples_received)
- : ciao_context_ (
- ::QCTL_Test::CCM_Receiver_Context::_duplicate (ctx))
- , thread_id_1_ (thread_id)
- , samples_received_1_ (samples_received)
- {
- }
-
- info_listen_1_data_listener_exec_i::~info_listen_1_data_listener_exec_i (void)
- {
- }
-
- // Operations from ::QCTL_Test::QueryConditionTwoListenersTestConnector::Listener
-
- void
- info_listen_1_data_listener_exec_i::on_one_data (const ::QueryConditionTwoListenersTest & datum,
- const ::CCM_DDS::ReadInfo & info)
- {
- ACE_Thread_ID t_id;
- this->thread_id_1_ = t_id;
- ++this->samples_received_1_;
-
- ACE_DEBUG ((LM_DEBUG, "QueryConditionTwoListenersTest_Listener_1::on_one_data: "
- "key <%C> - iteration <%d>\n",
- datum.key.in (),
- datum.iteration));
- if (::DDS::HANDLE_NIL == info.instance_handle)
- {
- ACE_ERROR ((LM_ERROR, "ERROR: QueryConditionTwoListenersTest_Listener_1::on_one_data: "
- "instance handle seems to be invalid "
- "key <%C> - iteration <%d>\n",
- datum.key.in (),
- datum.iteration));
- }
- if (info.source_timestamp.sec == 0 &&
- info.source_timestamp.nanosec == 0)
- {
- ACE_ERROR ((LM_ERROR, "ERROR: QueryConditionTwoListenersTest_Listener_1::on_one_data: "
- "source timestamp seems to be invalid (nil) "
- "key <%C> - iteration <%d>\n",
- datum.key.in (),
- datum.iteration));
- }
- if (datum.iteration <= ACE_OS::atoi (MIN_ITERATION) ||
- datum.iteration > ACE_OS::atoi (MAX_ITERATION) )
- {
- ACE_ERROR ((LM_ERROR, "QueryConditionTwoListenersTest_Listener_1::on_one_data: "
- "ERROR: Unexpected iteration received.\n"));
- }
- }
-
- void
- info_listen_1_data_listener_exec_i::on_many_data (const ::QueryConditionTwoListenersTestSeq & /* data */,
- const ::CCM_DDS::ReadInfoSeq & /* infos */)
- {
- /* Your code here. */
- }
-
- /**
- * Facet Executor Implementation Class: info_listen_1_status_exec_i
- */
-
- info_listen_1_status_exec_i::info_listen_1_status_exec_i (
- ::QCTL_Test::CCM_Receiver_Context_ptr ctx)
- : ciao_context_ (
- ::QCTL_Test::CCM_Receiver_Context::_duplicate (ctx))
- {
- }
-
- info_listen_1_status_exec_i::~info_listen_1_status_exec_i (void)
- {
- }
-
- // Operations from ::CCM_DDS::PortStatusListener
-
- void
- info_listen_1_status_exec_i::on_requested_deadline_missed (::DDS::DataReader_ptr /* the_reader */,
- const ::DDS::RequestedDeadlineMissedStatus & /* status */)
- {
- /* Your code here. */
- }
-
- void
- info_listen_1_status_exec_i::on_sample_lost (::DDS::DataReader_ptr /* the_reader */,
- const ::DDS::SampleLostStatus & /* status */)
- {
- /* Your code here. */
- }
-
- /**
- * Facet Executor Implementation Class: info_listen_2_data_listener_exec_i
- */
-
- info_listen_2_data_listener_exec_i::info_listen_2_data_listener_exec_i (
- ::QCTL_Test::CCM_Receiver_Context_ptr ctx,
- ACE_Thread_ID &thread_id,
- Atomic_Long &samples_received)
- : ciao_context_ (
- ::QCTL_Test::CCM_Receiver_Context::_duplicate (ctx))
- , thread_id_2_ (thread_id)
- , samples_received_2_ (samples_received)
- {
- }
-
- info_listen_2_data_listener_exec_i::~info_listen_2_data_listener_exec_i (void)
- {
- }
-
- // Operations from ::QCTL_Test::QueryConditionTwoListenersTestConnector::Listener
-
- void
- info_listen_2_data_listener_exec_i::on_one_data (const ::QueryConditionTwoListenersTest & datum,
- const ::CCM_DDS::ReadInfo & info)
- {
- ACE_Thread_ID t_id;
- this->thread_id_2_ = t_id;
-
- ++this->samples_received_2_;
-
- ACE_DEBUG ((LM_DEBUG, "QueryConditionTwoListenersTest_Listener_2::on_one_data: "
- "key <%C> - iteration <%d>\n",
- datum.key.in (),
- datum.iteration));
- if (::DDS::HANDLE_NIL == info.instance_handle)
- {
- ACE_ERROR ((LM_ERROR, "ERROR: QueryConditionTwoListenersTest_Listener_2::on_one_data: "
- "instance handle seems to be invalid "
- "key <%C> - iteration <%d>\n",
- datum.key.in (),
- datum.iteration));
- }
- if (info.source_timestamp.sec == 0 &&
- info.source_timestamp.nanosec == 0)
- {
- ACE_ERROR ((LM_ERROR, "ERROR: QueryConditionTwoListenersTest_Listener_2::on_one_data: "
- "source timestamp seems to be invalid (nil) "
- "key <%C> - iteration <%d>\n",
- datum.key.in (),
- datum.iteration));
- }
- if (datum.iteration > ACE_OS::atoi (MIN_ITERATION) &&
- datum.iteration < ACE_OS::atoi (MAX_ITERATION) )
- {
- ACE_ERROR ((LM_ERROR, "QueryConditionTwoListenersTest_Listener_2::on_one_data: "
- "ERROR: Unexpected iteration received.\n"));
- }
- }
-
- void
- info_listen_2_data_listener_exec_i::on_many_data (const ::QueryConditionTwoListenersTestSeq & /* data */,
- const ::CCM_DDS::ReadInfoSeq & /* infos */)
- {
- /* Your code here. */
- }
-
- /**
- * Facet Executor Implementation Class: info_listen_2_status_exec_i
- */
-
- info_listen_2_status_exec_i::info_listen_2_status_exec_i (
- ::QCTL_Test::CCM_Receiver_Context_ptr ctx)
- : ciao_context_ (
- ::QCTL_Test::CCM_Receiver_Context::_duplicate (ctx))
- {
- }
-
- info_listen_2_status_exec_i::~info_listen_2_status_exec_i (void)
- {
- }
-
- // Operations from ::CCM_DDS::PortStatusListener
-
- void
- info_listen_2_status_exec_i::on_requested_deadline_missed (::DDS::DataReader_ptr /* the_reader */,
- const ::DDS::RequestedDeadlineMissedStatus & /* status */)
- {
- /* Your code here. */
- }
-
- void
- info_listen_2_status_exec_i::on_sample_lost (::DDS::DataReader_ptr /* the_reader */,
- const ::DDS::SampleLostStatus & /* status */)
- {
- /* Your code here. */
- }
-
- /**
- * Component Executor Implementation Class: Receiver_exec_i
- */
-
- Receiver_exec_i::Receiver_exec_i (void)
- : keys_ (5)
- , iterations_ (10)
- , thread_id_listener_1_ (0, 0)
- , thread_id_listener_2_ (0, 0)
- , samples_expected_1_ (keys_ * SAMPLES_PER_KEY_1)
- , samples_received_1_ (0)
- , samples_expected_2_ (keys_ * (this->iterations_ - 4))
- , samples_received_2_ (0)
- {
- }
-
- Receiver_exec_i::~Receiver_exec_i (void)
- {
- }
-
- // Supported operations and attributes.
- void
- Receiver_exec_i::start ()
- {
- ::CCM_DDS::DataListenerControl_var dlc1 =
- this->ciao_context_->get_connection_info_listen_1_data_control ();
- dlc1->mode (::CCM_DDS::ONE_BY_ONE);
-
- ::CCM_DDS::DataListenerControl_var dlc2 =
- this->ciao_context_->get_connection_info_listen_2_data_control ();
- dlc2->mode (::CCM_DDS::ONE_BY_ONE);
- }
-
- // Component attributes and port operations.
-
- ::QCTL_Test::QueryConditionTwoListenersTestConnector::CCM_Listener_ptr
- Receiver_exec_i::get_info_listen_1_data_listener (void)
- {
- if ( ::CORBA::is_nil (this->ciao_info_listen_1_data_listener_.in ()))
- {
- info_listen_1_data_listener_exec_i *tmp = 0;
- ACE_NEW_RETURN (
- tmp,
- info_listen_1_data_listener_exec_i (
- this->ciao_context_.in (),
- this->thread_id_listener_1_,
- this->samples_received_1_),
- ::QCTL_Test::QueryConditionTwoListenersTestConnector::CCM_Listener::_nil ());
-
- this->ciao_info_listen_1_data_listener_ = tmp;
- }
-
- return
- ::QCTL_Test::QueryConditionTwoListenersTestConnector::CCM_Listener::_duplicate (
- this->ciao_info_listen_1_data_listener_.in ());
- }
-
- ::CCM_DDS::CCM_PortStatusListener_ptr
- Receiver_exec_i::get_info_listen_1_status (void)
- {
- if ( ::CORBA::is_nil (this->ciao_info_listen_1_status_.in ()))
- {
- info_listen_1_status_exec_i *tmp = 0;
- ACE_NEW_RETURN (
- tmp,
- info_listen_1_status_exec_i (
- this->ciao_context_.in ()),
- ::CCM_DDS::CCM_PortStatusListener::_nil ());
-
- this->ciao_info_listen_1_status_ = tmp;
- }
-
- return
- ::CCM_DDS::CCM_PortStatusListener::_duplicate (
- this->ciao_info_listen_1_status_.in ());
- }
-
- ::QCTL_Test::QueryConditionTwoListenersTestConnector::CCM_Listener_ptr
- Receiver_exec_i::get_info_listen_2_data_listener (void)
- {
- if ( ::CORBA::is_nil (this->ciao_info_listen_2_data_listener_.in ()))
- {
- info_listen_2_data_listener_exec_i *tmp = 0;
- ACE_NEW_RETURN (
- tmp,
- info_listen_2_data_listener_exec_i (
- this->ciao_context_.in (),
- this->thread_id_listener_2_,
- this->samples_received_2_),
- ::QCTL_Test::QueryConditionTwoListenersTestConnector::CCM_Listener::_nil ());
-
- this->ciao_info_listen_2_data_listener_ = tmp;
- }
-
- return
- ::QCTL_Test::QueryConditionTwoListenersTestConnector::CCM_Listener::_duplicate (
- this->ciao_info_listen_2_data_listener_.in ());
- }
-
- ::CCM_DDS::CCM_PortStatusListener_ptr
- Receiver_exec_i::get_info_listen_2_status (void)
- {
- if ( ::CORBA::is_nil (this->ciao_info_listen_2_status_.in ()))
- {
- info_listen_2_status_exec_i *tmp = 0;
- ACE_NEW_RETURN (
- tmp,
- info_listen_2_status_exec_i (
- this->ciao_context_.in ()),
- ::CCM_DDS::CCM_PortStatusListener::_nil ());
-
- this->ciao_info_listen_2_status_ = tmp;
- }
-
- return
- ::CCM_DDS::CCM_PortStatusListener::_duplicate (
- this->ciao_info_listen_2_status_.in ());
- }
-
- ::CORBA::UShort
- Receiver_exec_i::keys (void)
- {
- return this->keys_;
- }
-
- void
- Receiver_exec_i::keys (
- const ::CORBA::UShort keys)
- {
- this->keys_ = keys;
- }
-
- ::CORBA::UShort
- Receiver_exec_i::iterations (void)
- {
- return this->iterations_;
- }
-
- void
- Receiver_exec_i::iterations (
- const ::CORBA::UShort iterations)
- {
- this->iterations_ = iterations;
- // Iterations between min and max (including min and max) are not received.
- this->samples_expected_2_ = keys_ * (this->iterations_ - 4);
- }
-
- // Operations from Components::SessionComponent.
-
- void
- Receiver_exec_i::set_session_context (
- ::Components::SessionContext_ptr ctx)
- {
- this->ciao_context_ =
- ::QCTL_Test::CCM_Receiver_Context::_narrow (ctx);
-
- if ( ::CORBA::is_nil (this->ciao_context_.in ()))
- {
- throw ::CORBA::INTERNAL ();
- }
- }
-
- void
- Receiver_exec_i::configuration_complete (void)
- {
- /* Your code here. */
- }
-
- void
- Receiver_exec_i::ccm_activate (void)
- {
- ACE_DEBUG ((LM_DEBUG, "Receiver_exec_i::ccm_activate - "
- "Set filter 1.\n"));
-
- CCM_DDS::QueryFilter filter_1;
- filter_1.expression = CORBA::string_dup (QUERY_1);
- filter_1.parameters.length (2);
- filter_1.parameters[0] = CORBA::string_dup (MIN_ITERATION);
- filter_1.parameters[1] = CORBA::string_dup (MAX_ITERATION);
-
- ::QCTL_Test::QueryConditionTwoListenersTestConnector::Reader_var reader_1 =
- this->ciao_context_->get_connection_info_listen_1_data ();
-
- reader_1->query (filter_1);
-
- ACE_DEBUG ((LM_DEBUG, "Receiver_exec_i::ccm_activate - "
- "Set filter 2.\n"));
-
- CCM_DDS::QueryFilter filter_2;
- filter_2.expression = CORBA::string_dup (QUERY_2);
- filter_2.parameters.length (2);
- filter_2.parameters[0] = CORBA::string_dup (MIN_ITERATION);
- filter_2.parameters[1] = CORBA::string_dup (MAX_ITERATION);
-
- ::QCTL_Test::QueryConditionTwoListenersTestConnector::Reader_var reader_2 =
- this->ciao_context_->get_connection_info_listen_2_data ();
-
- reader_2->query (filter_2);
-
- ACE_DEBUG ((LM_DEBUG, "Receiver_exec_i::ccm_activate - "
- "Start listening on both listeners.\n"));
- start ();
- }
-
- void
- Receiver_exec_i::ccm_passivate (void)
- {
- /* Your code here. */
- }
-
- void
- Receiver_exec_i::ccm_remove (void)
- {
- // get current thread
- char ccm_buf [65];
- ACE_Thread_ID ccm_thread_id;
- ccm_thread_id.to_string (ccm_buf);
-
- char list_buf_1 [65];
- this->thread_id_listener_1_.to_string (list_buf_1);
-
- if (this->thread_id_listener_1_.id () == 0)
- {
- ACE_ERROR ((LM_ERROR, "ERROR: "
- "Thread ID for ReaderListener not set!\n"));
- }
- #if (CIAO_DDS4CCM_CONTEXT_SWITCH == 1)
- else if (this->thread_id_listener_1_ == ccm_thread_id)
- {
- ACE_DEBUG ((LM_DEBUG, "QF_TWO_LISTENERS: "
- "Thread switch for ReaderListener seems OK. "
- "(DDS uses the CCM thread for its callback) "
- "listener <%C> - component <%C>\n",
- list_buf_1,
- ccm_buf));
- }
- else
- {
- ACE_ERROR ((LM_ERROR, "ERROR: QF_TWO_LISTENERS: "
- "Thread switch for ReaderListener "
- "doesn't seem to work! "
- "listener <%C> - component <%C>\n",
- list_buf_1,
- ccm_buf));
- }
- #else
- else if (this->thread_id_listener_1_ == ccm_thread_id)
- {
- ACE_ERROR ((LM_ERROR, "ERROR: QF_TWO_LISTENERS: ReaderListener: "
- "DDS seems to use a CCM thread for its callback: "
- "listener <%C> - component <%C>\n",
- list_buf_1,
- ccm_buf));
- }
- else
- {
- ACE_DEBUG ((LM_DEBUG, "QF_TWO_LISTENERS: ReaderListener: "
- "DDS seems to use its own thread for its callback: "
- "listener <%C> - component <%C>\n",
- list_buf_1,
- ccm_buf));
- }
- #endif
- char list_buf_2 [65];
- this->thread_id_listener_2_.to_string (list_buf_2);
- if (this->thread_id_listener_2_.id () == 0)
- {
- ACE_ERROR ((LM_ERROR, "ERROR: "
- "Thread ID for ReaderListener not set!\n"));
- }
- #if (CIAO_DDS4CCM_CONTEXT_SWITCH == 1)
- else if (this->thread_id_listener_2_ == ccm_thread_id)
- {
- ACE_DEBUG ((LM_DEBUG, "QF_TWO_LISTENERS: "
- "Thread switch for ReaderListener seems OK. "
- "(DDS uses the CCM thread for its callback) "
- "listener <%C> - component <%C>\n",
- list_buf_2,
- ccm_buf));
- }
- else
- {
- ACE_ERROR ((LM_ERROR, "ERROR: QF_TWO_LISTENERS: "
- "Thread switch for ReaderListener "
- "doesn't seem to work! "
- "listener <%C> - component <%C>\n",
- list_buf_2,
- ccm_buf));
- }
- #else
- else if (this->thread_id_listener_2_ == ccm_thread_id)
- {
- ACE_ERROR ((LM_ERROR, "ERROR: QF_TWO_LISTENERS: ReaderListener: "
- "DDS seems to use a CCM thread for its callback: "
- "listener <%C> - component <%C>\n",
- list_buf_2,
- ccm_buf));
- }
- else
- {
- ACE_DEBUG ((LM_DEBUG, "QF_TWO_LISTENERS: ReaderListener: "
- "DDS seems to use its own thread for its callback: "
- "listener <%C> - component <%C>\n",
- list_buf_2,
- ccm_buf));
- }
- #endif
- //first listener
- if (this->samples_received_1_ != this->samples_expected_1_)
- {
- ACE_ERROR ((LM_ERROR, "ERROR: QF_TWO_LISTENERS: ReaderListener: "
- "Unexpected number of samples received "
- "on first listener : "
- "expected <%d> - received <%d>\n",
- this->samples_expected_1_,
- this->samples_received_1_.value ()));
- }
- else
- {
- ACE_DEBUG ((LM_DEBUG, "QF_TWO_LISTENERS: ReaderListener: "
- "Expected number of samples received "
- "on first listener : "
- "expected <%d> - received <%d>\n",
- this->samples_expected_1_,
- this->samples_received_1_.value ()));
- }
- //Second listener
- if (this->samples_received_2_ != this->samples_expected_2_)
- {
- ACE_ERROR ((LM_ERROR, "ERROR: QF_TWO_LISTENERS: ReaderListener: "
- "Unexpected number of samples received` "
- "on second listener : "
- "expected <%d> - received <%d>\n",
- this->samples_expected_2_,
- this->samples_received_2_.value ()));
- }
- else
- {
- ACE_DEBUG ((LM_DEBUG, "QF_TWO_LISTENERS: ReaderListener: "
- "Expected number of samples received "
- "on second listener : "
- "expected <%d> - received <%d>\n",
- this->samples_expected_2_,
- this->samples_received_2_.value ()));
- }
- }
-
- extern "C" RECEIVER_EXEC_Export ::Components::EnterpriseComponent_ptr
- create_QCTL_Test_Receiver_Impl (void)
- {
- ::Components::EnterpriseComponent_ptr retval =
- ::Components::EnterpriseComponent::_nil ();
-
- ACE_NEW_NORETURN (
- retval,
- Receiver_exec_i);
-
- return retval;
- }
-}