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
97
98
99
100
101
102
103
104
105
106
|
// $Id$
#include "Counting_Consumer.h"
ACE_RCSID(CEC_Tests, CEC_Count_Consumer, "$Id$")
CEC_Counting_Consumer::CEC_Counting_Consumer (const char* name)
: event_count (0),
disconnect_count (0),
name_ (name)
{
}
void
CEC_Counting_Consumer::connect (CosEventChannelAdmin::ConsumerAdmin_ptr consumer_admin,
CORBA::Environment &ACE_TRY_ENV)
{
// The canonical protocol to connect to the EC
CosEventComm::PushConsumer_var consumer =
this->_this (ACE_TRY_ENV);
ACE_CHECK;
if (CORBA::is_nil (this->supplier_proxy_.in ()))
{
this->supplier_proxy_ =
consumer_admin->obtain_push_supplier (ACE_TRY_ENV);
ACE_CHECK;
}
this->supplier_proxy_->connect_push_consumer (consumer.in (),
ACE_TRY_ENV);
ACE_CHECK;
}
void
CEC_Counting_Consumer::disconnect (CORBA::Environment &ACE_TRY_ENV)
{
if (!CORBA::is_nil (this->supplier_proxy_.in ()))
{
this->supplier_proxy_->disconnect_push_supplier (ACE_TRY_ENV);
ACE_CHECK;
}
PortableServer::POA_var consumer_poa =
this->_default_POA (ACE_TRY_ENV);
ACE_CHECK;
PortableServer::ObjectId_var consumer_id =
consumer_poa->servant_to_id (this, ACE_TRY_ENV);
ACE_CHECK;
consumer_poa->deactivate_object (consumer_id.in (), ACE_TRY_ENV);
ACE_CHECK;
this->supplier_proxy_ =
CosEventChannelAdmin::ProxyPushSupplier::_nil ();
}
void
CEC_Counting_Consumer::dump_results (int expected_count, int tolerance)
{
int diff = this->event_count - expected_count;
if (diff > tolerance || diff < -tolerance)
{
ACE_DEBUG ((LM_DEBUG,
"ERROR - %s unexpected number of events <%d>\n",
this->name_,
this->event_count));
}
else
{
ACE_DEBUG ((LM_DEBUG,
"%s - number of events <%d> within margins\n",
this->name_,
this->event_count));
}
}
void
CEC_Counting_Consumer::push (const CORBA::Any&,
CORBA::Environment &)
ACE_THROW_SPEC ((CORBA::SystemException))
{
this->event_count ++;
#if 0
if (this->event_count % 10 == 0)
{
ACE_DEBUG ((LM_DEBUG,
"%s (%P|%t): %d events received\n",
this->name_,
this->event_count));
}
#endif /* 0 */
}
void
CEC_Counting_Consumer::disconnect_push_consumer (CORBA::Environment &)
ACE_THROW_SPEC ((CORBA::SystemException))
{
this->disconnect_count++;
this->supplier_proxy_ =
CosEventChannelAdmin::ProxyPushSupplier::_nil ();
}
#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)
#elif defined(ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)
#endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */
|