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
84
85
86
87
88
89
90
91
92
93
94
95
96
|
#ifndef TAO_Notify_Tests_Consumer_T_CPP
#define TAO_Notify_Tests_Consumer_T_CPP
#include "Consumer_T.h"
template <class Consumer_Traits>
TAO_Notify_Tests_Consumer_T<Consumer_Traits>::TAO_Notify_Tests_Consumer_T (void)
{
}
template <class Consumer_Traits>
TAO_Notify_Tests_Consumer_T<Consumer_Traits>::~TAO_Notify_Tests_Consumer_T ()
{
}
template <class Consumer_Traits> typename TAO_Notify_Tests_Consumer_T<Consumer_Traits>::Proxy_Traits_PTR
TAO_Notify_Tests_Consumer_T<Consumer_Traits>::get_proxy_supplier (void)
{
return this->get_proxy ();
}
template <class Consumer_Traits> typename TAO_Notify_Tests_Consumer_T<Consumer_Traits>::Proxy_Traits_PTR
TAO_Notify_Tests_Consumer_T<Consumer_Traits>::obtain_proxy (typename TAO_Notify_Tests_Consumer_T<Consumer_Traits>::Admin_Traits_PTR admin_ptr)
{
Consumer_Traits traits;
CosNotifyChannelAdmin::ProxySupplier_var proxy_supplier =
admin_ptr->obtain_notification_push_supplier (traits.type_
, this->proxy_id_
);
ACE_ASSERT (!CORBA::is_nil (proxy_supplier.in ()));
return Proxy_Traits_INTERFACE::_narrow (proxy_supplier.in ());
}
template <class Consumer_Traits> typename TAO_Notify_Tests_Consumer_T<Consumer_Traits>::Proxy_Traits_PTR
TAO_Notify_Tests_Consumer_T<Consumer_Traits>::obtain_proxy (typename TAO_Notify_Tests_Consumer_T<Consumer_Traits>::Admin_Ext_Traits_PTR admin_ptr
, CosNotification::QoSProperties& qos)
{
Consumer_Traits traits;
// create the proxy consumer
CosNotifyChannelAdmin::ProxySupplier_var proxy_supplier =
admin_ptr->obtain_notification_push_supplier_with_qos (traits.type_
, this->proxy_id_
, qos);
ACE_ASSERT (!CORBA::is_nil (proxy_supplier.in ()));
return Proxy_Traits_INTERFACE::_narrow (proxy_supplier.in ());
}
template <class Consumer_Traits> void
TAO_Notify_Tests_Consumer_T<Consumer_Traits>::subscription_change (CosNotification::EventTypeSeq &added, CosNotification::EventTypeSeq& removed)
{
// Let the user see what we're subscribed for,
ACE_DEBUG ((LM_DEBUG, "Calling Consumer subscription change: "));
CORBA::ULong i = 0;
for (; i < added.length (); ++i)
{
ACE_DEBUG ((LM_DEBUG, "+(%s,%s), ", added[i].domain_name.in (), added[i].type_name.in ()));
}
for (i = 0; i < removed.length (); ++i)
{
ACE_DEBUG ((LM_DEBUG, "-(%s,%s), ", removed[i].domain_name.in (), removed[i].type_name.in ()));
}
ACE_DEBUG ((LM_DEBUG, "\n"));
/// subscribe
typename Proxy_Traits::PTR proxy_supplier = this->get_proxy ();
if (proxy_supplier != 0)
{
proxy_supplier->subscription_change (added, removed);
}
else
ACE_DEBUG ((LM_DEBUG, "Proxy Supplier not available, subscription change not made."));
}
template <class Consumer_Traits> void
TAO_Notify_Tests_Consumer_T<Consumer_Traits>::offer_change
(const CosNotification::EventTypeSeq & /*added*/,
const CosNotification::EventTypeSeq & /*removed*/
)
{
// No-Op.
}
#endif /* TAO_Notify_Tests_Consumer_T_CPP */
|