summaryrefslogtreecommitdiff
path: root/TAO/tests/CSD_Strategy_Tests/TP_Foo_A/Foo_A_i.cpp
blob: a7ca8835eccfa48e6ee1d50a5f1e3aad32e2913a (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
// $Id$
#include "Foo_A_i.h"
#include "AppShutdown.h"


Foo_A_i::Foo_A_i()
{
  for (unsigned i = 0; i < 5; i++)
    {
      this->op_count_[i] = 0;
    }
}


Foo_A_i::~Foo_A_i()
{
}


void
Foo_A_i::op1(void)
{
  this->op_count_[0] ++;
}


void
Foo_A_i::op2(CORBA::Long value)
{
  this->in_values_[1].push_back (value);
  this->op_count_[1] ++;
}


CORBA::Long
Foo_A_i::op3(CORBA::Long value)
{
  this->in_values_[2].push_back (value);
  this->op_count_[2] ++;
  return value;
}


void
Foo_A_i::op4(CORBA::Long value)
{
  this->in_values_[3].push_back (value);
  this->op_count_[3] ++;
}


void
Foo_A_i::op5(void)
{
  this->op_count_[4] ++;
  throw FooException();
}


void
Foo_A_i::done(void)
{
  TheAppShutdown->client_done();
}


void
Foo_A_i::gather_stats(Foo_A_Statistics& stats)
{
  for (unsigned i = 0; i < 5; i++)
    {
      stats.actual (i + 1, this->op_count_[i]);
      stats.actual_in_values (i + 1, this->in_values_[i]);
    }
}