summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/performance-tests/EC_Federated_Scalability/Consumer.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/performance-tests/EC_Federated_Scalability/Consumer.h')
-rw-r--r--TAO/orbsvcs/performance-tests/EC_Federated_Scalability/Consumer.h69
1 files changed, 69 insertions, 0 deletions
diff --git a/TAO/orbsvcs/performance-tests/EC_Federated_Scalability/Consumer.h b/TAO/orbsvcs/performance-tests/EC_Federated_Scalability/Consumer.h
new file mode 100644
index 00000000000..cd1d7428edc
--- /dev/null
+++ b/TAO/orbsvcs/performance-tests/EC_Federated_Scalability/Consumer.h
@@ -0,0 +1,69 @@
+/**
+ * @file Consumer.h
+ *
+ * $Id$
+ *
+ */
+
+#ifndef ECFS_CONSUMER_H
+#define ECFS_CONSUMER_H
+
+#include "ControlC.h"
+#include "orbsvcs/RtecEventCommS.h"
+#include "orbsvcs/RtecEventChannelAdminC.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+# pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+/**
+ * @class ECFS_Consumer
+ *
+ * @brief Implement a simple consumer to keep track of the latency
+ *
+ */
+class ECFS_Consumer
+ : public virtual POA_RtecEventComm::PushConsumer
+ , public virtual PortableServer::RefCountServantBase
+
+{
+public:
+ /// Constructor
+ ECFS_Consumer (CORBA::Long experiment_id,
+ CORBA::ULong iterations);
+
+ /// Connect to the event channel
+ void connect (RtecEventChannelAdmin::EventChannel_ptr ec,
+ CORBA::Environment &ACE_TRY_ENV);
+
+ /// Disconnect from the event channel
+ void disconnect (CORBA::Environment &ACE_TRY_ENV);
+
+ /// Get the samples
+ const Control::Samples &samples (void) const;
+
+ //@{
+ /** @name The RtecEventComm::PushConsumer methods
+ */
+ virtual void push (const RtecEventComm::EventSet& events,
+ CORBA::Environment &_env)
+ ACE_THROW_SPEC ((CORBA::SystemException));
+ virtual void disconnect_push_consumer (CORBA::Environment &)
+ ACE_THROW_SPEC ((CORBA::SystemException));
+ //@}
+
+private:
+ /// Synchronize access to the internal data
+ TAO_SYNCH_MUTEX mutex_;
+
+ /// The experiment id
+ CORBA::Long experiment_id_;
+
+ /// The samples recorded so far
+ Control::Samples samples_;
+
+ /// The proxy this object is connected to
+ RtecEventChannelAdmin::ProxyPushSupplier_var proxy_supplier_;
+};
+
+#endif /* ECFS_CONSUMER_H */