summaryrefslogtreecommitdiff
path: root/modules/CIAO/connectors/dds4ccm/tests/CoherentUpdater/Sender/CoherentUpdate_Test_Sender_exec.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/CIAO/connectors/dds4ccm/tests/CoherentUpdater/Sender/CoherentUpdate_Test_Sender_exec.cpp')
-rw-r--r--modules/CIAO/connectors/dds4ccm/tests/CoherentUpdater/Sender/CoherentUpdate_Test_Sender_exec.cpp188
1 files changed, 188 insertions, 0 deletions
diff --git a/modules/CIAO/connectors/dds4ccm/tests/CoherentUpdater/Sender/CoherentUpdate_Test_Sender_exec.cpp b/modules/CIAO/connectors/dds4ccm/tests/CoherentUpdater/Sender/CoherentUpdate_Test_Sender_exec.cpp
new file mode 100644
index 00000000000..7b46b4ece6a
--- /dev/null
+++ b/modules/CIAO/connectors/dds4ccm/tests/CoherentUpdater/Sender/CoherentUpdate_Test_Sender_exec.cpp
@@ -0,0 +1,188 @@
+// -*- C++ -*-
+// $Id$
+
+#include "CoherentUpdate_Test_Sender_exec.h"
+#include "tao/ORB_Core.h"
+#include "ace/Reactor.h"
+#include "ace/Log_Msg.h"
+
+#define SAMPLE_KEY_NAME "KEY_1"
+
+namespace CIAO_CoherentUpdate_Test_Sender_Impl
+{
+ //============================================================
+ // WriteHandler
+ //============================================================
+ WriteHandler::WriteHandler (Sender_exec_i &callback)
+ : callback_ (callback)
+ {
+ }
+
+ int
+ WriteHandler::handle_exception (ACE_HANDLE)
+ {
+ this->callback_.start ();
+ return 0;
+ }
+
+ //============================================================
+ // Restarter_exec_i
+ //============================================================
+ Restarter_exec_i::Restarter_exec_i (Sender_exec_i & callback)
+ : callback_ (callback)
+ {
+ }
+
+ Restarter_exec_i::~Restarter_exec_i (void)
+ {
+ }
+
+ void
+ Restarter_exec_i::restart_update ()
+ {
+ this->callback_.restart ();
+ }
+
+ //============================================================
+ // Component Executor Implementation Class: Sender_exec_i
+ //============================================================
+ Sender_exec_i::Sender_exec_i (void)
+ : iterations_ (3),
+ run_ (1),
+ total_iter (0)
+ {
+ }
+
+ Sender_exec_i::~Sender_exec_i (void)
+ {
+ }
+
+ void
+ Sender_exec_i::restart (void)
+ {
+ ++this->run_;
+ WriteHandler *wh = new WriteHandler (*this);
+ this->context_->get_CCM_object()->_get_orb ()->orb_core ()->reactor ()->notify (wh);
+ }
+
+ void
+ Sender_exec_i::start (void)
+ {
+ if (! ::CORBA::is_nil (this->starter_))
+ {
+ this->starter_->set_reader_properties (this->iterations_);
+ }
+ else
+ {
+ ACE_ERROR ((LM_ERROR, ACE_TEXT ("ERROR: Unable to start the reader\n")));
+ }
+
+ ACE_DEBUG ((LM_DEBUG, "Start run <%d> with <%u> iterations\n",
+ this->run_,
+ this->iterations ()));
+
+ CoherentUpdateTestSeq update_many_seq;
+ update_many_seq.length (this->iterations_);
+ for (int i = 1; i < this->iterations_ + 1; ++i)
+ {
+ CoherentUpdateTest new_key;
+ new_key.symbol = CORBA::string_dup(SAMPLE_KEY_NAME);
+ new_key.iteration = ++total_iter;
+ update_many_seq[i-1] = new_key;
+ }
+ this->updater_->update_many (update_many_seq);
+ ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Written <%u> keys uptil now\n"),
+ total_iter));
+ ACE_OS::sleep (2);
+ this->starter_->start_read (this->run_);
+ }
+
+ ::CORBA::UShort
+ Sender_exec_i::iterations (void)
+ {
+ return this->iterations_;
+ }
+
+ void
+ Sender_exec_i::iterations (::CORBA::UShort iterations)
+ {
+ this->iterations_ = iterations;
+ }
+
+ ::CCM_CoherentUpdateRestarter_ptr
+ Sender_exec_i::get_restart_updater (void)
+ {
+ return new Restarter_exec_i (*this);
+ }
+
+ void
+ Sender_exec_i::set_session_context (::Components::SessionContext_ptr ctx)
+ {
+ this->context_ =
+ ::CoherentUpdate_Test::CCM_Sender_Context::_narrow (ctx);
+
+ if ( ::CORBA::is_nil (this->context_.in ()))
+ {
+ throw ::CORBA::INTERNAL ();
+ }
+ }
+
+ void
+ Sender_exec_i::configuration_complete (void)
+ {
+ }
+
+ void
+ Sender_exec_i::ccm_activate (void)
+ {
+ try
+ {
+ this->updater_ = this->context_->get_connection_info_update_data ();
+ this->updater_->is_coherent_write (true);
+
+ //first create an instance for consecutive updating.
+ CoherentUpdateTest new_key;
+ new_key.symbol = CORBA::string_dup(SAMPLE_KEY_NAME);
+ new_key.iteration = 0;
+ this->updater_->create_one (new_key);
+
+ this->starter_ = this->context_->get_connection_start_reader ();
+ WriteHandler *wh = new WriteHandler (*this);
+ this->context_->get_CCM_object()->_get_orb ()->orb_core ()->reactor ()->notify (wh);
+ }
+ catch (const CORBA::Exception& ex)
+ {
+ ex._tao_print_exception ("Exception caught:");
+ ACE_ERROR ((LM_ERROR,
+ ACE_TEXT ("ERROR: GET_CONNECTION_START_READER : Exception caught\n")));
+ }
+ catch (...)
+ {
+ ACE_ERROR ((LM_ERROR,
+ ACE_TEXT ("ERROR: GET_CONNECTION_START_READER : Unknown exception caught\n")));
+ }
+ }
+
+ void
+ Sender_exec_i::ccm_passivate (void)
+ {
+ }
+
+ void
+ Sender_exec_i::ccm_remove (void)
+ {
+ }
+
+ extern "C" SENDER_EXEC_Export ::Components::EnterpriseComponent_ptr
+ create_CoherentUpdate_Test_Sender_Impl (void)
+ {
+ ::Components::EnterpriseComponent_ptr retval =
+ ::Components::EnterpriseComponent::_nil ();
+
+ ACE_NEW_NORETURN (
+ retval,
+ Sender_exec_i);
+
+ return retval;
+ }
+}