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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
/**
* @file Consumer.cpp
*
* $Id$
*
* @author Carlos O'Ryan <coryan@uci.edu>
*/
#include "Consumer.h"
#include "Implicit_Deactivator.h"
#include "orbsvcs/Event_Service_Constants.h"
#include "ace/OS_NS_unistd.h"
ACE_RCSID (TAO_PERF_RTEC,
Consumer,
"$Id$")
Consumer::Consumer (CORBA::Long experiment_id,
CORBA::Long event_type,
CORBA::ULong iterations,
CORBA::Long workload_in_usecs,
ACE_UINT32 gsf,
PortableServer::POA_ptr poa)
: experiment_id_ (experiment_id)
, event_type_ (event_type)
, sample_history_ (iterations)
, workload_in_usecs_ (workload_in_usecs)
, gsf_ (gsf)
, default_POA_ (PortableServer::POA::_duplicate (poa))
{
}
void
Consumer::connect (RtecEventChannelAdmin::EventChannel_ptr ec)
{
RtecEventChannelAdmin::ConsumerAdmin_var consumer_admin =
ec->for_consumers ();
{
ACE_GUARD (TAO_SYNCH_MUTEX, ace_mon, this->mutex_);
if (!CORBA::is_nil (this->proxy_supplier_.in ()))
return;
this->proxy_supplier_ =
consumer_admin->obtain_push_supplier ();
}
RtecEventComm::PushConsumer_var consumer =
this->_this ();
RtecEventChannelAdmin::ConsumerQOS consumer_qos;
consumer_qos.is_gateway = 0;
consumer_qos.dependencies.length (2);
RtecEventComm::EventHeader& h0 =
consumer_qos.dependencies[0].event.header;
h0.type = ACE_ES_DISJUNCTION_DESIGNATOR;
h0.source = 1;
RtecEventComm::EventHeader& h1 =
consumer_qos.dependencies[1].event.header;
h1.type = this->event_type_;
h1.source = this->experiment_id_;
this->proxy_supplier_->connect_push_consumer (consumer.in (),
consumer_qos);
}
void
Consumer::disconnect (void)
{
RtecEventChannelAdmin::ProxyPushSupplier_var proxy;
{
ACE_GUARD (TAO_SYNCH_MUTEX, ace_mon, this->mutex_);
if (CORBA::is_nil (this->proxy_supplier_.in ()))
return;
proxy = this->proxy_supplier_._retn ();
}
Implicit_Deactivator deactivator (this);
try{
proxy->disconnect_push_supplier ();
} catch (const CORBA::Exception&) {
}
}
ACE_Sample_History &
Consumer::sample_history (void)
{
return this->sample_history_;
}
void
Consumer::push (const RtecEventComm::EventSet &events)
{
ACE_hrtime_t now = ACE_OS::gethrtime ();
ACE_hrtime_t creation;
ORBSVCS_Time::TimeT_to_hrtime (creation,
events[0].header.creation_time);
while (this->workload_in_usecs_ > 0)
{
ACE_hrtime_t elapsed = ACE_OS::gethrtime () - now;
if (elapsed > this->gsf_ * this->workload_in_usecs_)
break;
ACE_OS::sleep (0);
}
ACE_GUARD (TAO_SYNCH_MUTEX, ace_mon, this->mutex_);
if (sample_history_.max_samples () == sample_history_.sample_count ())
return;
this->sample_history_.sample (now - creation);
}
void
Consumer::disconnect_push_consumer (void)
{
ACE_GUARD (TAO_SYNCH_MUTEX, ace_mon, this->mutex_);
this->proxy_supplier_ =
RtecEventChannelAdmin::ProxyPushSupplier::_nil ();
}
PortableServer::POA_ptr
Consumer::_default_POA (void)
{
return PortableServer::POA::_duplicate (this->default_POA_.in ());
}
|