summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/ImplRepo_Service/LiveCheck.cpp
blob: 3539b4548b0de72f4e3aa42f79545ed69a5995c5 (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
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
// -*- C++ -*-
// $Id$

#include "LiveCheck.h"
#include "tao/ORB_Core.h"
#include "ace/Reactor.h"
#include "ace/OS_NS_time.h"

LiveListener::LiveListener (const char *server)
  : server_(server)
{
}

const char *
LiveListener::server (void) const
{
  return this->server_;
}

//---------------------------------------------------------------------------
//---------------------------------------------------------------------------

const int LiveEntry::reping_msec_[] = {0, 10, 100, 500, 1000, 1000,
                                             1000, 1000, 5000, 5000};
int LiveEntry::reping_limit_ = sizeof (LiveEntry::reping_msec_) / sizeof (int);

void
LiveEntry::set_reping_limit (int max)
{
  LiveEntry::reping_limit_ = max;
}

bool
LiveEntry::reping_available (void)
{
  return this->repings_ < LiveEntry::reping_limit_;
}

int
LiveEntry::next_reping (void)
{
  if ( this->repings_ < LiveEntry::reping_limit_)
    {
      return LiveEntry::reping_msec_[this->repings_++];
    }
  else
    return -1;
}

LiveEntry::LiveEntry (LiveCheck *owner,
                      const char *server,
                      ImplementationRepository::ServerObject_ptr ref)
  : owner_ (owner),
    server_ (server),
    ref_ (ImplementationRepository::ServerObject::_duplicate (ref)),
    liveliness_ (LS_UNKNOWN),
    next_check_ (ACE_OS::time()),
    retry_count_ (0),
    repings_ (0),
    ping_away_ (false),
    listeners_ (),
    lock_ ()
{
}

LiveEntry::~LiveEntry (void)
{
}

void
LiveEntry::add_listener (LiveListener* ll)
{
  ACE_GUARD (TAO_SYNCH_MUTEX, mon, this->lock_);
  this->listeners_.push_back (ll);
}

LiveStatus
LiveEntry::status (void) const
{
  if ( this->liveliness_ == LS_ALIVE &&
       this->owner_->ping_interval() != ACE_Time_Value::zero )
    {
      ACE_Time_Value now (ACE_OS::time());
      if (now >= this->next_check_)
        {
          return LS_UNKNOWN;
        }
    }
  return this->liveliness_;
}

void
LiveEntry::status (LiveStatus l)
{
  ACE_GUARD (TAO_SYNCH_MUTEX, mon, this->lock_);
  this->liveliness_ = l;
  this->ping_away_ = false;

  if (l == LS_ALIVE)
    {
      this->retry_count_ = 0;
      ACE_Time_Value now (ACE_OS::time());
      this->next_check_ = now + owner_->ping_interval();
    }
#if 0
  for (ACE_Vector_Iterator<LiveListener *> i (this->listeners_);
       !i.done();
       i.advance())
    {
      LiveListener **ll  = 0;
      i.next(ll);
      if (*ll != 0)
        {
          (*ll)->status_changed (this->liveliness_, this->reping_available());
        }
    }
#else
  // ACE_DEBUG ((LM_DEBUG,
  //             ACE_TEXT ("(%P|%t) LiveEntry::status(%d), server = %s,")
  //             ACE_TEXT (" listeners.size = %d\n"),
  //             l, this->server_.c_str(), listeners_.size()));
  for (size_t i = 0; i < this->listeners_.size(); i++)
    {
      LiveListener *ll = this->listeners_[i];
      if (ll != 0)
        {
          (ll)->status_changed (this->liveliness_, this->reping_available());
        }
    }
#endif
  this->listeners_.clear();
}

const ACE_Time_Value &
LiveEntry::next_check (void) const
{
  return this->next_check_;
}

bool
LiveEntry::do_ping (PortableServer::POA_ptr poa)
{
  ACE_Time_Value now (ACE_OS::time());
  if (this->next_check_ > now || this->liveliness_ == LS_DEAD || this->ping_away_)
    {
      return false;
    }

  if (this->owner_->ping_interval() == ACE_Time_Value::zero)
    return false;

  switch (this->liveliness_)
    {
    case LS_UNKNOWN:
      this->next_check_ = now;
      break;
    case LS_ALIVE:
    case LS_TIMEDOUT:
      this->next_check_ = now + owner_->ping_interval();
      break;
    case LS_TRANSIENT:
      {
        int ms = this->next_reping ();
        if (ms != -1)
          {
            ACE_Time_Value next (ms / 1000, (ms % 1000) * 1000);
            this->next_check_ = now + next;
          }
        else
          return false;
      }
      break;
    default:;
    }

  this->ping_away_ = true;
  this->retry_count_++;
  PortableServer::ServantBase_var callback = new PingReceiver (this, poa);
  PortableServer::ObjectId_var oid = poa->activate_object (callback.in());
  CORBA::Object_var obj = poa->id_to_reference (oid.in());
  ImplementationRepository::AMI_ServerObjectHandler_var cb =
    ImplementationRepository::AMI_ServerObjectHandler::_narrow (obj.in());
  this->ref_->sendc_ping (cb.in());
  return true;
}

//---------------------------------------------------------------------------
//---------------------------------------------------------------------------

PingReceiver::PingReceiver (LiveEntry *entry, PortableServer::POA_ptr poa)
  :poa_ (PortableServer::POA::_duplicate(poa)),
   entry_ (entry)
{
}

PingReceiver::~PingReceiver (void)
{
}

void
PingReceiver::ping (void)
{
  // ACE_DEBUG ((LM_DEBUG,"ping received\n"));
  this->entry_->status (LS_ALIVE);
  PortableServer::ObjectId_var oid = this->poa_->servant_to_id (this);
  poa_->deactivate_object (oid.in());
}

void
PingReceiver::ping_excep (Messaging::ExceptionHolder * excep_holder)
{
  try
    {
      excep_holder->raise_exception ();
    }
  catch (CORBA::TRANSIENT &ex)
    {
      const CORBA::ULong BITS_5_THRU_12_MASK = 0x00000f80;
      switch (ex.minor () & BITS_5_THRU_12_MASK)
        {
        case TAO_POA_DISCARDING:
        case TAO_POA_HOLDING:
          {
            this->entry_->status (LS_TRANSIENT);
            break;
          }
        default: //case TAO_INVOCATION_SEND_REQUEST_MINOR_CODE:
          {
            this->entry_->status (LS_DEAD);
          }
        }
    }
  catch (CORBA::TIMEOUT &)
    {
      this->entry_->status (LS_TIMEDOUT);
    }
  catch (CORBA::Exception &)
    {
      this->entry_->status (LS_DEAD);
    }

  PortableServer::ObjectId_var oid = this->poa_->servant_to_id (this);
  poa_->deactivate_object (oid.in());
}

//---------------------------------------------------------------------------
//---------------------------------------------------------------------------

LiveCheck::LiveCheck ()
  :ping_interval_()
{
}

LiveCheck::~LiveCheck (void)
{
  while (this->entry_map_.current_size() > 0)
    {
      LiveEntryMap::iterator i (this->entry_map_);
      LiveEntryMap::value_type *pair = 0;
      i.next (pair);
      this->entry_map_.unbind(pair);
      delete pair->item();
    }
}

void
LiveCheck::init (CORBA::ORB_ptr orb,
                 const ACE_Time_Value &pi )
{
  this->ping_interval_ = pi;
  ACE_Reactor *r = orb->orb_core()->reactor();
  this->reactor (r);
  CORBA::Object_var obj = orb->resolve_initial_references ("RootPOA");
  this->poa_ = PortableServer::POA::_narrow (obj.in());
}

const ACE_Time_Value &
LiveCheck::ping_interval (void) const
{
  return this->ping_interval_;
}

int
LiveCheck::handle_timeout (const ACE_Time_Value &,
                           const void *)
{
  for (LiveEntryMap::iterator i (this->entry_map_);
       !i.done();
       i.advance ())
    {
      LiveEntryMap::value_type *pair = 0;
      i.next(pair);
      pair->item()->do_ping(poa_.in());
    }
  return 0;
}

void
LiveCheck::add_server (const char *server,
                       ImplementationRepository::ServerObject_ptr ref)
{
  ACE_CString s (server);
  LiveEntry *entry = 0;
  ACE_NEW (entry, LiveEntry (this, server, ref));
  int result = entry_map_.bind (s, entry);
  if (result != 0)
    {
      LiveEntry *old = 0;
      result = entry_map_.rebind (s, entry, old);
      delete old;
    }
}

void
LiveCheck::remove_server (const char *server)
{
  ACE_CString s(server);
  LiveEntry *entry = 0;
  int result = entry_map_.unbind (s, entry);
  if (result == 0)
    delete entry;
}

void
LiveCheck::add_listener (LiveListener *l)
{
  LiveEntry *entry = 0;
  ACE_CString key (l->server());
  int result = entry_map_.find (key, entry);

  if (result == 0 && entry != 0)
    {
      entry->add_listener (l);
      ACE_Time_Value now (ACE_OS::time());
      ACE_Time_Value next = entry->next_check ();

      if (next <= now)
        {
          // ACE_DEBUG ((LM_DEBUG,
          //             ACE_TEXT ("(%P|%t) LiveCheck::add_listener %x, ")
          //             ACE_TEXT ("immediate callback for <%C>\n"),
          //             l, l->server()));
          this->reactor()->schedule_timer (this,0,ACE_Time_Value::zero);
        }
      else
        {
          ACE_Time_Value delay = next - now;
          // ACE_DEBUG ((LM_DEBUG,
          //             ACE_TEXT ("(%P|%t) LiveCheck::add_listener %x, ")
          //             ACE_TEXT ("callback in %d ms for <%C>\n"),
          //             l, delay.sec() * 1000 + delay.usec() / 1000, l->server()));
          this->reactor()->schedule_timer (this, 0, delay);
        }

    }
}

LiveStatus
LiveCheck::is_alive (const char *server)
{
  ACE_CString s(server);
  LiveEntry *entry = 0;
  int result = entry_map_.find (s, entry);
  if (result == 0 && entry != 0)
    {
      return entry->status ();
    }
  return LS_DEAD;
}