summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/performance-tests/RTEvent/lib/Loopback_Consumer.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/performance-tests/RTEvent/lib/Loopback_Consumer.h')
-rw-r--r--TAO/orbsvcs/performance-tests/RTEvent/lib/Loopback_Consumer.h76
1 files changed, 76 insertions, 0 deletions
diff --git a/TAO/orbsvcs/performance-tests/RTEvent/lib/Loopback_Consumer.h b/TAO/orbsvcs/performance-tests/RTEvent/lib/Loopback_Consumer.h
new file mode 100644
index 00000000000..4ff3203146c
--- /dev/null
+++ b/TAO/orbsvcs/performance-tests/RTEvent/lib/Loopback_Consumer.h
@@ -0,0 +1,76 @@
+/**
+ * @file Loopback_Consumer.h
+ *
+ * $Id$
+ *
+ */
+
+#ifndef TAO_PERF_RTEC_LOOPBACK_CONSUMER_H
+#define TAO_PERF_RTEC_LOOPBACK_CONSUMER_H
+
+#include "Loopback_Supplier.h"
+#include "tao/Utils/Servant_Var.h"
+#include "orbsvcs/RtecEventCommS.h"
+#include "orbsvcs/RtecEventChannelAdminC.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+# pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+/**
+ * @class Loopback_Consumer
+ *
+ * @brief Implement a simple consumer to keep track of the latency
+ *
+ */
+class TAO_RTEC_Perf_Export Loopback_Consumer
+ : public virtual POA_RtecEventComm::PushConsumer
+
+{
+public:
+ /// Constructor
+ Loopback_Consumer (CORBA::Long experiment_id,
+ CORBA::Long event_type,
+ Loopback_Supplier *supplier,
+ PortableServer::POA_ptr poa);
+
+ /// Connect to the event channel
+ void connect (RtecEventChannelAdmin::EventChannel_ptr ec
+ ACE_ENV_ARG_DECL);
+
+ /// Disconnect from the event channel
+ void disconnect (ACE_ENV_SINGLE_ARG_DECL);
+
+ //@{
+ /** @name The RtecEventComm::PushConsumer methods
+ */
+ virtual void push (const RtecEventComm::EventSet& events
+ ACE_ENV_ARG_DECL)
+ ACE_THROW_SPEC ((CORBA::SystemException));
+ virtual void disconnect_push_consumer (ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
+ ACE_THROW_SPEC ((CORBA::SystemException));
+ virtual PortableServer::POA_ptr _default_POA (ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
+ ACE_THROW_SPEC ((CORBA::SystemException));
+ //@}
+
+private:
+ /// Synchronize access to the internal data
+ TAO_SYNCH_MUTEX mutex_;
+
+ /// The experiment id
+ CORBA::Long experiment_id_;
+
+ /// The event type this consumer subscribes to
+ CORBA::Long event_type_;
+
+ /// The supplier used to close the loopback
+ TAO::Utils::Servant_Var<Loopback_Supplier> supplier_;
+
+ /// The proxy this object is connected to
+ RtecEventChannelAdmin::ProxyPushSupplier_var proxy_supplier_;
+
+ /// The default poa
+ PortableServer::POA_var default_POA_;
+};
+
+#endif /* ECFL_LOOPBACK_CONSUMER_H */