summaryrefslogtreecommitdiff
path: root/tests/Bug_3953_Regression/server_i.cpp
blob: d0a374dc038fb1166daf63bdb8f12ffa92744517 (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
// $Id$

#include "server_i.h"

server_i::server_i (int quiet,
                    CORBA::ORB_ptr orb)
  : quiet_ (quiet),
    orb_ (CORBA::ORB::_duplicate (orb)),
    exception_ (false)
{
}

void
server_i::start (client_ptr c,
                 CORBA::UShort time_to_live)
{
  this->client_ = client::_duplicate (c);
  this->ping (time_to_live);
}

bool
server_i::exception (void) const
{
  return this->exception_;
}

void
server_i::ping (CORBA::UShort time_to_live)
{
  if (!this->quiet_)
    ACE_DEBUG ((LM_DEBUG,
                "(%t) server_i::ping -> time to live = %d\n",
                time_to_live));

  try
    {
      --time_to_live;

      if (time_to_live > 0)
        {
          this->client_->ping (time_to_live);
        }
    }
  catch (const CORBA::TIMEOUT&)
    {
      this->exception_ = true;
      ACE_DEBUG ((LM_DEBUG,
                  "server ping received an expected except.\n"));
    }
}

void
server_i::shutdown (void)
{
  this->orb_->shutdown (0);
}