blob: 8f88421e8a0ac342feae2cf66e37244fd3779b71 (
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
|
//
// $Id$
//
#include "Client_Task.h"
ACE_RCSID(Thread_Pool_Latency, Client_Task, "$Id$")
Client_Task::Client_Task (Test::Roundtrip_ptr roundtrip,
int niterations)
: roundtrip_ (Test::Roundtrip::_duplicate (roundtrip))
, niterations_ (niterations)
{
}
int
Client_Task::svc (void)
{
ACE_DECLARE_NEW_CORBA_ENV;
ACE_TRY
{
this->validate_connection (ACE_TRY_ENV);
ACE_TRY_CHECK;
for (int i = 0; i != this->niterations_; ++i)
{
CORBA::ULongLong start = ACE_OS::gethrtime ();
(void) this->roundtrip_->test_method (start, ACE_TRY_ENV);
ACE_TRY_CHECK;
ACE_hrtime_t now = ACE_OS::gethrtime ();
this->latency_.sample (now - start);
}
}
ACE_CATCHANY
{
return 0;
}
ACE_ENDTRY;
return 0;
}
void
Client_Task::accumulate_and_dump (ACE_Basic_Stats &totals,
const char *msg,
ACE_UINT32 gsf)
{
totals.accumulate (this->latency_);
this->latency_.dump_results (msg, gsf);
}
void
Client_Task::validate_connection (CORBA::Environment &ACE_TRY_ENV)
{
CORBA::ULongLong dummy = 0;
for (int i = 0; i != 100; ++i)
{
ACE_TRY
{
(void) this->roundtrip_->test_method (dummy, ACE_TRY_ENV);
ACE_TRY_CHECK;
}
ACE_CATCHANY {} ACE_ENDTRY;
}
}
|