summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/RTCORBA_ProxySupplier.cpp
blob: ec8a7f337eb1e3a3287dee4bd658c9e299d7ba1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
// $Id$

#include "RTCORBA_ProxySupplier.h"

#include "ace/Refcounted_Auto_Ptr.h"
#include "tao/debug.h"
#include "RTCORBA_Properties.h"
#include "Event.h"
#include "Types.h"
#include "Structured/StructuredEvent.h"
#include "Method_Request_Dispatch.h"
#include "Method_Request_Dispatch_No_Filtering.h"
#include "Worker_Task.h"

#if ! defined (__ACE_INLINE__)
#include "RTCORBA_ProxySupplier.inl"
#endif /* __ACE_INLINE__ */

ACE_RCSID(RT_Notify, TAO_NS_RTCORBA_ProxySupplier, "$Id$")

TAO_NS_RTCORBA_ProxySupplier::TAO_NS_RTCORBA_ProxySupplier (void)
{
}

TAO_NS_RTCORBA_ProxySupplier::~TAO_NS_RTCORBA_ProxySupplier ()
{
}

void
TAO_NS_RTCORBA_ProxySupplier::init_ps (ACE_ENV_SINGLE_ARG_DECL)
{
  // Obtain our ref.
  CORBA::Object_var obj = this->ref (ACE_ENV_SINGLE_ARG_PARAMETER);
  ACE_CHECK;

  this->event_forwarder_ = Notify_Internal::Event_Forwarder::_narrow (obj.in () ACE_ENV_ARG_PARAMETER);
}

void
TAO_NS_RTCORBA_ProxySupplier::push (TAO_NS_Event_var &event)
{
  event->push (this->event_forwarder_.in () ACE_ENV_ARG_PARAMETER);
}

void
TAO_NS_RTCORBA_ProxySupplier::push_no_filtering (TAO_NS_Event_var &event)
{
  event->push_no_filtering (this->event_forwarder_.in () ACE_ENV_ARG_PARAMETER);
}

void
TAO_NS_RTCORBA_ProxySupplier::forward (const CosNotification::StructuredEvent& notification ACE_ENV_ARG_DECL)
  ACE_THROW_SPEC ((
                   CORBA::SystemException
                   ))
{
  if (TAO_debug_level > 0)
  ACE_DEBUG ((LM_DEBUG, "(%x,%P,%t) TAO_NS_RTCORBA_ProxySupplier::forward received event priority %d\n", this,
              TAO_NS_RTCORBA_PROPERTIES::instance()->current ()->the_priority ()));

  TAO_NS_Event_var event (new TAO_NS_StructuredEvent (notification));

  TAO_NS_Method_Request_Dispatch request (event, this);

  this->worker_task ()->exec (request);
}

void
TAO_NS_RTCORBA_ProxySupplier::forward_no_filtering (const CosNotification::StructuredEvent& notification ACE_ENV_ARG_DECL)
  ACE_THROW_SPEC ((
                   CORBA::SystemException
                   ))
{
  if (TAO_debug_level > 0)
  ACE_DEBUG ((LM_DEBUG, "(%x,%P,%t) TAO_NS_RTCORBA_ProxySupplier::forward_no_filtering received event priority %d\n", this,
              TAO_NS_RTCORBA_PROPERTIES::instance()->current ()->the_priority ()));

  TAO_NS_Event_var event (new TAO_NS_StructuredEvent (notification));

  TAO_NS_Method_Request_Dispatch_No_Filtering request (event, this);

  this->worker_task ()->exec (request);
}