summaryrefslogtreecommitdiff
path: root/CIAO/DAnCE/FaultCorrelationManager/FaultCorrelationManager_Impl.cpp
blob: 90a53fe4f9d1a1f409138718cc4d9e0fbe36586b (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
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
// -*- C++ -*-

//=============================================================================
/**
 *  @file    FaultCorrelationManager_Impl.cpp
 *
 *  $Id$
 *
 *  @author Friedhelm Wolf <fwolf@dre.vanderbilt.edu>
 */
//=============================================================================

#include "ace/High_Res_Timer.h"
#include "ace/Date_Time.h"
#include "FaultCorrelationManager_Impl.h"
#include "ciao/FTComponentServer/CIAO_PropertiesC.h"
#include "DAnCE/Logger/Log_Macros.h"

namespace DAnCE
{
  FaultCorrelationManager_Impl::FaultCorrelationManager_Impl (
    CORBA::ORB_ptr orb,
    DAnCE::ExecutionManagerDaemon_ptr exec_mgr,
    ReplicationManager_ptr rep_mgr,
    const PROPERTY_MAP & options)
    : orb_ (CORBA::ORB::_duplicate (orb)),
      exec_mgr_ (DAnCE::ExecutionManagerDaemon::_duplicate (exec_mgr)),
      rep_mgr_ (ReplicationManager::_duplicate (rep_mgr)),
      properties_ (options.current_size ()),
      stop_ (false),
      new_notification_ (app_failure_lock_)
  {
    PROPERTY_MAP::const_iterator i = options.begin ();
    while (!i.done ())
      {
        DANCE_DEBUG ((LM_TRACE, DLINFO "FaultCorrelationManager_Impl::FaulCorrelationManager_Impl - "
                      "Binding property %C provided by caller.\n", i->key ().c_str ()));
        this->properties_.bind (i->key (), i->item ());
        i.advance ();
      }
  }

  FaultCorrelationManager_Impl::~FaultCorrelationManager_Impl()
  {
    DANCE_DEBUG ((LM_TRACE, "FaultCorrelationManager_Impl::~FaultCorrelationManager_Impl (void)\n"));
    stop_ = true;
    new_notification_.signal ();

    this->wait ();
  }

  int 
  FaultCorrelationManager_Impl::svc (void)
  {
    DANCE_DEBUG ((LM_TRACE, "FaultCorrelationManager_Impl::svc (void)\n"));

    while (!stop_)
      {
        FailureInfo fi;

        {
          ACE_Guard <ACE_Thread_Mutex> guard (app_failure_lock_);

          while (notification_queue_.empty () && !stop_)
            {
              new_notification_.wait ();
            }

          if (notification_queue_.empty ())
            continue;

          fi = notification_queue_.front ();
          notification_queue_.pop ();
        }
        
        this->app_failure_i (fi.host.c_str (), 
                             fi.application.c_str ());

        // add all logged proc_failure info to the log file
        std::ofstream out;
        out.open ("fou-shutdown.txt", ios_base::app);
        ACE_Date_Time start, end;

        {
          ACE_Guard <ACE_Thread_Mutex> guard (history_lock_);

          for (SHUTDOWN_TIME_LIST::iterator it = history_.begin ();
               it != history_.end ();
               ++it)
            {
              start.update (it->start_shutdown);
              end.update (it->end_shutdown);
              out << it->fou_id << " " 
                  << start.hour () << ":"
                  << start.minute () << ":"
                  << start.second () << ":"
                  << start.microsec () << " "
                  << end.hour () << ":"
                  << end.minute () << ":"
                  << end.second () << ":"
                  << end.microsec () << " "
                  << it->shutdown << std::endl;
            }

          history_.clear ();
        }
        
        out.close ();
      }

    return 0;
  }
  
  void
  FaultCorrelationManager_Impl::stop_failover_unit (const char * fou_id)
  {
    try
      {
        DANCE_DEBUG ((LM_TRACE, 
                      "FCM::stop_failover_unit (%C)\n",
                      fou_id));        

        Deployment::DomainApplicationManager_var dam;

        if (dams_.find (fou_id,
                        dam) != 0)
          {
            DANCE_DEBUG ((LM_TRACE, 
                          "FCM::stop_failover_unit (%C): "
                          "could not resolve DAM'.\n",
                          fou_id));

            return;
          }

        ACE_Time_Value start (ACE_OS::gettimeofday ());

        timer_.start ();

        Deployment::Applications_var apps = dam->getApplications();

        for (size_t i = 0; i < apps->length(); ++i)
          {
            try
              {
                dam->destroyApplication(apps[i]);
              }
            catch (const CORBA::SystemException & ex)
              {
                ACE_DEBUG ((LM_WARNING,
                            "FCM: application %d already stopped.\n",
                            i));
              }
          }

        timer_.stop ();

        Deployment::DeploymentPlan_var plan = dam->getPlan ();

        this->remove_constraints (plan);

        this->destroyManager (dam.in ());

        RankListConstraints_var constraints = this->get_constraints ();
        
        rep_mgr_->set_ranklist_constraints (constraints.in ());

        DANCE_DEBUG ((LM_TRACE, 
                      "FCM::stop_failover_unit (%C): "
                      "plan was shutdown sucessfully.\n",
                      fou_id));

        ACE_Time_Value tv;
        timer_.elapsed_time (tv);
        TFouShutdownTime sample = {tv.msec (), start, ACE_OS::gettimeofday (), fou_id};

        {
          ACE_Guard <ACE_Thread_Mutex> guard (history_lock_);
          history_.push_back (sample);
        }
      }
    catch (const CORBA::Exception & ex)
      {
        DANCE_DEBUG ((LM_ERROR,
                      "FCM::stop_failover_unit caught %n\n"
                      "      Most likely a complete node manager crashed.\n",
                      ex._info ().c_str ()));
      }
  }

  void
  FaultCorrelationManager_Impl::app_failure (
    const char * host,
    const ::FLARE::ApplicationList & applications)
  {
    DANCE_DEBUG ((LM_TRACE, "FCM: app_failure ()\n"));

    ACE_Time_Value tv = ACE_OS::gettimeofday ();

    {
      ACE_Guard <ACE_Thread_Mutex> guard (app_failure_lock_);

      for (CORBA::ULong i = 0; i < applications.length (); ++i)
        {
          FailureInfo fi = {host, applications[i].in ()};
          
          notification_queue_.push (fi);
        }
    }

    new_notification_.signal ();

    TFouShutdownTime sample = {0, tv, ACE_Time_Value (), host};

    {
      ACE_Guard <ACE_Thread_Mutex> guard (history_lock_);
      history_.push_back (sample);
    }
  }

  void
  FaultCorrelationManager_Impl::app_failure_i (const char * host,
                                               const char * application)
  {
    DANCE_DEBUG ((LM_TRACE, "FaultCorrelationManager_Impl::app_failure_i (%s, %s)\n",
                  host,
                  application));

    TObjectIdMap node;
    if (nodes_.find (host,
                     node) != 0)
      {
        DANCE_DEBUG ((LM_WARNING,
                      "FCM::app_failure (%C, %C): node '%C' not found.\n",
                      application,
                      host,
                      host));
        return;
      }

    ACE_CString component_id = node[application];

    if (component_id.length () == 0)
      {
        DANCE_DEBUG ((LM_WARNING,
                      "FCM::app_failure (%C, %C): "
                      "application '%C' on '%C' not found.\n",
                      application,
                      host,
                      application,
                      host));
        return;
      }

    ACE_CString plan_id;
    if (instances_.find (component_id,
                         plan_id) != 0)
      {
        DANCE_DEBUG ((LM_WARNING,
                      "FCM::app_failure (%C, %C): "
                      "plan for component '%C' not found.\n",
                      application,
                      host,
                      component_id.c_str ()));
        return;
      }

    DANCE_DEBUG ((LM_TRACE, 
                  "FCM::app_failure (%C, %C): "
                  "caused by component '%C' in plan '%C'.\n",
                  application,
                  host,
                  component_id.c_str (),
                  plan_id.c_str ()));

    this->stop_failover_unit (plan_id.c_str ());
  }

  ::Deployment::DomainApplicationManager_ptr
  FaultCorrelationManager_Impl::preparePlan (
        const ::Deployment::DeploymentPlan & plan,
        ::Deployment::ResourceCommitmentManager_ptr resourceCommitment)
  {
    Deployment::DomainApplicationManager_var dam =
      exec_mgr_->preparePlan (plan, resourceCommitment);

    dams_.bind (plan.UUID.in(), 
                Deployment::DomainApplicationManager::_duplicate (dam.in ()));

    this->process_deployment_plan (plan);

    this->add_constraints (plan);

    RankListConstraints_var constraints = this->get_constraints ();

    rep_mgr_->set_ranklist_constraints (constraints.in ());

    return Deployment::DomainApplicationManager::_duplicate (dam.in ());
  }
    
  ::Deployment::DomainApplicationManagers * 
  FaultCorrelationManager_Impl::getManagers (void)
  {
    return exec_mgr_->getManagers ();
  }

  void
  FaultCorrelationManager_Impl::destroyManager (
    Deployment::DomainApplicationManager_ptr manager)
  {
    Deployment::DeploymentPlan_var plan = manager->getPlan ();

    dams_.unbind (plan->UUID.in ());

    this->process_deployment_plan (plan, false);

    exec_mgr_->destroyManager (manager);
  }

  void
  FaultCorrelationManager_Impl::shutdown (void)
  {
    exec_mgr_->shutdown ();
  }

  void
  FaultCorrelationManager_Impl::process_deployment_plan (
    const Deployment::DeploymentPlan &  plan,
    bool deploy)
  {
    // add all found component instances to the map
    const Deployment::InstanceDeploymentDescription id;
    for (CORBA::ULong i = 0; i < plan.instance.length (); ++i)
      { 
        if (deploy)
          {
            // add component with the plan id it belongs to
            instances_.bind (plan.instance[i].name.in (), 
                             plan.UUID.in ());

            DANCE_DEBUG ((LM_TRACE, 
                          "FCM: instance[%C] -> plan[%C]\n",
                          plan.instance[i].name.in (), 
                          plan.UUID.in ()));
          }
        else
          {
            // remove component entry
            instances_.unbind (plan.instance[i].name.in ());

            DANCE_DEBUG ((LM_TRACE, 
                          "FCM: instance[%C] removed\n",
                          plan.instance[i].name.in ()));

          }

        // find object_id property if existing
        CORBA::String_var object_id (
          this->get_property (CIAO::Deployment::OBJECT_ID,
                              plan.instance[i].configProperty));

        if (object_id.in () == 0)
          object_id = plan.instance[i].name.in ();

        TObjectIdMap oidmap;
        if (deploy)
          {
            if (nodes_.find (plan.instance[i].node.in (),
                             oidmap) == 0)
              {
                // the new component to exisiting node map
                oidmap[object_id.in ()] = plan.instance[i].name.in ();
                nodes_.rebind (plan.instance[i].node.in (),
                               oidmap);
              }
            else
              {
                // if no entry for this node exists, add a new one
                TObjectIdMap om;
                om[object_id.in ()] = plan.instance[i].name.in ();
                nodes_.bind (plan.instance[i].node.in (),
                             om);
              }

            DANCE_DEBUG ((LM_TRACE, 
                          "FCM: node[%C] -> oid[%C] -> instance[%C]\n",
                          plan.instance[i].node.in (), 
                          object_id.in (),
                          plan.instance[i].name.in ()));
          }
        else
          {
            // remove node map entry
            if (nodes_.find (plan.instance[i].node.in (),
                             oidmap) == 0)
              {
                // the new component to exisiting node map
                oidmap.erase (object_id.in ());

                DANCE_DEBUG ((LM_TRACE, 
                              "FCM: node[%C] -> oid[%C] removed.\n",
                              plan.instance[i].node.in (), 
                              object_id.in ()));

                if (oidmap.size () == 0)
                  {
                    nodes_.unbind (plan.instance[i].node.in ());

                    DANCE_DEBUG ((LM_TRACE, 
                                  "FCM: node[%C] removed.\n",
                                  plan.instance[i].node.in ()));
                  }
              }            
          }
      }
  }

  char * 
  FaultCorrelationManager_Impl::get_property (
    const char * name, 
    const Deployment::Properties & properties)
  {
    for (CORBA::ULong i = 0; i < properties.length (); ++i)
      {
        if (ACE_OS::strcmp (name,
                            properties[i].name.in ()) == 0)
          {
            const CORBA::Any & value = properties[i].value;
            const char * cval;
            if (value >>= cval)
              return CORBA::string_dup (cval);

            break;
          }
      }

    return 0;
  }

  void 
  FaultCorrelationManager_Impl::add_constraints (const Deployment::DeploymentPlan & plan)
  {
    // add all found component instances to the map
    const Deployment::InstanceDeploymentDescription id;
    for (CORBA::ULong i = 0; i < plan.instance.length (); ++i)
      { 
        // find object_id property if existing
        CORBA::String_var object_id (
          this->get_property (CIAO::Deployment::OBJECT_ID,
                              plan.instance[i].configProperty));

        if (object_id.in () == 0)
          object_id = plan.instance[i].name.in ();

        RANKLIST_CONSTRAINT constr;
        if (constraints_.find (object_id.in (),
                               constr) == 0)
          {
            // add to already existing constraint
            constr.push_back (plan.instance[i].node.in ());
            constraints_.rebind (object_id.in (),
                                 constr);
          }
        else
          {
            // create new list
            constr.push_back (plan.instance[i].node.in ());
            constraints_.bind (object_id.in (),
                               constr);
          }
      }
  }

  void 
  FaultCorrelationManager_Impl::remove_constraints (const Deployment::DeploymentPlan & plan)
  {
    // add all found component instances to the map
    const Deployment::InstanceDeploymentDescription id;
    for (CORBA::ULong i = 0; i < plan.instance.length (); ++i)
      { 
        // find object_id property if existing
        CORBA::String_var object_id (
          this->get_property (CIAO::Deployment::OBJECT_ID,
                              plan.instance[i].configProperty));

        if (object_id.in () == 0)
          object_id = plan.instance[i].name.in ();

        RANKLIST_CONSTRAINT constr;
        if (constraints_.find (object_id.in (),
                               constr) == 0)
          {
            for (RANKLIST_CONSTRAINT::iterator it = constr.begin ();
                 it != constr.end ();
                 ++it)
              {
                if (it->compare (plan.instance[i].node.in ()) == 0)
                  {
                    constr.erase (it);

                    if (constr.size () == 0)
                      constraints_.unbind (object_id.in ());

                    break;
                  }
              }
          }
      }
  }

  RankListConstraints *
  FaultCorrelationManager_Impl::get_constraints (void)
  {
    RankListConstraints_var constraints = new RankListConstraints ();
    constraints->length (constraints_.current_size ());
    CORBA::ULong index = 0;

    for (RANKLIST_CONSTRAINT_MAP::iterator it = constraints_.begin ();
         it != constraints_.end ();
         ++it)
      {
        RankListConstraint_var constr (new RankListConstraint ());
        constr->object_id = it->key ().c_str ();
        constr->hosts.length (it->item ().size ());
        CORBA::ULong cindex = 0;

        for (RANKLIST_CONSTRAINT::iterator cit = it->item ().begin ();
             cit != it->item ().end ();
             ++cit)
          {
            constr->hosts[cindex++] = cit->c_str ();
          }

        constraints[index++] = constr;
      }

    return constraints._retn ();
  }

};