summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/performance-tests/RTEvent/lib/Loopback_Consumer.cpp
diff options
context:
space:
mode:
authorWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:11 +0000
committerWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:11 +0000
commit6b846cf03c0bcbd8c276cb0af61a181e5f98eaae (patch)
treeda50d054f9c761c3f6a5923f6979e93306c56d68 /TAO/orbsvcs/performance-tests/RTEvent/lib/Loopback_Consumer.cpp
parent0e555b9150d38e3b3473ba325b56db2642e6352b (diff)
downloadATCD-6b846cf03c0bcbd8c276cb0af61a181e5f98eaae.tar.gz
Repo restructuring
Diffstat (limited to 'TAO/orbsvcs/performance-tests/RTEvent/lib/Loopback_Consumer.cpp')
-rw-r--r--TAO/orbsvcs/performance-tests/RTEvent/lib/Loopback_Consumer.cpp116
1 files changed, 0 insertions, 116 deletions
diff --git a/TAO/orbsvcs/performance-tests/RTEvent/lib/Loopback_Consumer.cpp b/TAO/orbsvcs/performance-tests/RTEvent/lib/Loopback_Consumer.cpp
deleted file mode 100644
index 2c3d1f8084e..00000000000
--- a/TAO/orbsvcs/performance-tests/RTEvent/lib/Loopback_Consumer.cpp
+++ /dev/null
@@ -1,116 +0,0 @@
-/**
- * @file Loopback_Consumer.cpp
- *
- * $Id$
- *
- * @author Carlos O'Ryan <coryan@uci.edu>
- */
-
-#include "Loopback_Consumer.h"
-#include "Implicit_Deactivator.h"
-#include "orbsvcs/Event_Service_Constants.h"
-
-ACE_RCSID (PERF_RTEC,
- Loopback_Consumer,
- "$Id$")
-
-Loopback_Consumer::
-Loopback_Consumer (CORBA::Long experiment_id,
- CORBA::Long event_type,
- Loopback_Supplier *supplier,
- PortableServer::POA_ptr poa)
- : experiment_id_ (experiment_id)
- , event_type_ (event_type)
- , supplier_ (TAO::Utils::Servant_Var<Loopback_Supplier>::_duplicate (supplier))
- , default_POA_ (PortableServer::POA::_duplicate (poa))
-{
-}
-
-void
-Loopback_Consumer::connect (RtecEventChannelAdmin::EventChannel_ptr ec
- ACE_ENV_ARG_DECL)
-{
- RtecEventChannelAdmin::ConsumerAdmin_var consumer_admin =
- ec->for_consumers (ACE_ENV_SINGLE_ARG_PARAMETER);
- ACE_CHECK;
-
- {
- ACE_GUARD (TAO_SYNCH_MUTEX, ace_mon, this->mutex_);
- if (!CORBA::is_nil (this->proxy_supplier_.in ()))
- return;
-
- this->proxy_supplier_ =
- consumer_admin->obtain_push_supplier (ACE_ENV_SINGLE_ARG_PARAMETER);
- ACE_CHECK;
- }
-
- RtecEventComm::PushConsumer_var consumer =
- this->_this (ACE_ENV_SINGLE_ARG_PARAMETER);
- ACE_CHECK;
-
- RtecEventChannelAdmin::ConsumerQOS consumer_qos;
- consumer_qos.is_gateway = 0;
- consumer_qos.dependencies.length (2);
- RtecEventComm::EventHeader& h0 =
- consumer_qos.dependencies[0].event.header;
- h0.type = ACE_ES_DISJUNCTION_DESIGNATOR;
- h0.source = 1;
-
- RtecEventComm::EventHeader& h1 =
- consumer_qos.dependencies[1].event.header;
- h1.source = this->experiment_id_;
- h1.type = this->event_type_;
-
- this->proxy_supplier_->connect_push_consumer (consumer.in (),
- consumer_qos
- ACE_ENV_ARG_PARAMETER);
- ACE_CHECK;
-}
-
-void
-Loopback_Consumer::disconnect (ACE_ENV_SINGLE_ARG_DECL)
-{
- RtecEventChannelAdmin::ProxyPushSupplier_var proxy;
- {
- ACE_GUARD (TAO_SYNCH_MUTEX, ace_mon, this->mutex_);
- if (CORBA::is_nil (this->proxy_supplier_.in ()))
- return;
- proxy = this->proxy_supplier_._retn ();
- }
-
- Implicit_Deactivator deactivator (this
- ACE_ENV_ARG_PARAMETER);
- ACE_CHECK;
-
- ACE_TRY
- {
- proxy->disconnect_push_supplier (ACE_ENV_SINGLE_ARG_PARAMETER);
- ACE_TRY_CHECK;
- }
- ACE_CATCHANY {} ACE_ENDTRY;
-}
-
-void
-Loopback_Consumer::push (const RtecEventComm::EventSet &events
- ACE_ENV_ARG_DECL)
- ACE_THROW_SPEC ((CORBA::SystemException))
-{
- // ACE_DEBUG ((LM_DEBUG, "Loopback_Consumer::push (%P|%t)\n"));
- this->supplier_->push (events ACE_ENV_ARG_PARAMETER);
-}
-
-void
-Loopback_Consumer::disconnect_push_consumer (ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
- ACE_THROW_SPEC ((CORBA::SystemException))
-{
- ACE_GUARD (TAO_SYNCH_MUTEX, ace_mon, this->mutex_);
- this->proxy_supplier_ =
- RtecEventChannelAdmin::ProxyPushSupplier::_nil ();
-}
-
-PortableServer::POA_ptr
-Loopback_Consumer::_default_POA (ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
- ACE_THROW_SPEC ((CORBA::SystemException))
-{
- return PortableServer::POA::_duplicate (this->default_POA_.in ());
-}