summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/Any/AnyEvent.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Notify/Any/AnyEvent.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/Notify/Any/AnyEvent.cpp87
1 files changed, 87 insertions, 0 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Notify/Any/AnyEvent.cpp b/TAO/orbsvcs/orbsvcs/Notify/Any/AnyEvent.cpp
new file mode 100644
index 00000000000..4eaaa2555b9
--- /dev/null
+++ b/TAO/orbsvcs/orbsvcs/Notify/Any/AnyEvent.cpp
@@ -0,0 +1,87 @@
+// $Id$
+
+#include "AnyEvent.h"
+
+#if ! defined (__ACE_INLINE__)
+#include "AnyEvent.inl"
+#endif /* __ACE_INLINE__ */
+
+ACE_RCSID(Notify, TAO_NS_AnyEvent, "$id$")
+
+#include "../Consumer.h"
+#include "tao/debug.h"
+
+TAO_NS_EventType TAO_NS_AnyEvent::event_type_;
+
+TAO_NS_AnyEvent::TAO_NS_AnyEvent (const CORBA::Any &event)
+ : event_ (event)
+{
+}
+
+TAO_NS_AnyEvent::~TAO_NS_AnyEvent ()
+{
+}
+
+const TAO_NS_EventType&
+TAO_NS_AnyEvent::type (void) const
+{
+ return this->event_type_;
+}
+
+void
+TAO_NS_AnyEvent::convert (CosNotification::StructuredEvent& notification)
+{
+ TAO_NS_Event::translate (this->event_, notification);
+}
+
+CORBA::Boolean
+TAO_NS_AnyEvent::do_match (CosNotifyFilter::Filter_ptr filter ACE_ENV_ARG_DECL)
+{
+ if (TAO_debug_level > 0)
+ ACE_DEBUG ((LM_DEBUG, "Notify (%P|%t) - "
+ "TAO_Notify_AnyEvent::do_match ()\n"));
+
+ return filter->match(this->event_ ACE_ENV_ARG_PARAMETER);
+}
+
+void
+TAO_NS_AnyEvent::push (TAO_NS_Consumer* consumer ACE_ENV_ARG_DECL) const
+{
+ if (TAO_debug_level > 0)
+ ACE_DEBUG ((LM_DEBUG, "Notify (%P|%t) - "
+ "TAO_Notify_AnyEvent::push \n"));
+
+ consumer->push (this->event_ ACE_ENV_ARG_PARAMETER);
+}
+
+void
+TAO_NS_AnyEvent::push (Event_Forwarder::StructuredProxyPushSupplier_ptr forwarder ACE_ENV_ARG_DECL)
+{
+ CosNotification::StructuredEvent notification;
+
+ TAO_NS_Event::translate (this->event_, notification);
+
+ forwarder->forward_structured (notification ACE_ENV_ARG_PARAMETER);
+}
+
+void
+TAO_NS_AnyEvent::push_no_filtering (Event_Forwarder::StructuredProxyPushSupplier_ptr forwarder ACE_ENV_ARG_DECL)
+{
+ CosNotification::StructuredEvent notification;
+
+ TAO_NS_Event::translate (this->event_, notification);
+
+ forwarder->forward_structured_no_filtering (notification ACE_ENV_ARG_PARAMETER);
+}
+
+void
+TAO_NS_AnyEvent::push (Event_Forwarder::ProxyPushSupplier_ptr forwarder ACE_ENV_ARG_DECL)
+{
+ forwarder->forward_any (this->event_ ACE_ENV_ARG_PARAMETER);
+}
+
+void
+TAO_NS_AnyEvent::push_no_filtering (Event_Forwarder::ProxyPushSupplier_ptr forwarder ACE_ENV_ARG_DECL)
+{
+ forwarder->forward_any_no_filtering (this->event_ ACE_ENV_ARG_PARAMETER);
+}