summaryrefslogtreecommitdiff
path: root/Output_Adapters/DAnCE_Output_Adapter/DAnCE_Output_Adapter_exec.cpp
blob: 0be5ad11698aa4e6d76a5107b47d6ab28104f634 (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
// $Id$
//
// ****              Code generated by the                 ****
// ****  Component Integrated ACE ORB (CIAO) CIDL Compiler ****
// CIAO has been developed by:
//       Center for Distributed Object Computing
//       Washington University
//       St. Louis, MO
//       USA
//       http://www.cs.wustl.edu/~schmidt/doc-center.html
// CIDL Compiler has been developed by:
//       Institute for Software Integrated Systems
//       Vanderbilt University
//       Nashville, TN
//       USA
//       http://www.isis.vanderbilt.edu/
//
// Information about CIAO is available at:
//    http://www.dre.vanderbilt.edu/CIAO

#include "DAnCE_Output_Adapter_exec.h"
#include "ciao/CIAO_common.h"
#include "common/RACE_Log_Msg.h"

namespace CIAO
{
  namespace RACE
  {
    namespace CIDL_DAnCE_Output_Adapter_Impl
    {
      //==================================================================
      // Facet Executor Implementation Class:   PlanEgress_exec_i
      //================================================================
      PlanEgress_exec_i::PlanEgress_exec_i (CORBA::ORB_ptr orb,
                                            DAnCE_Output_Adapter_exec_i &comp)
        : orb_ (CORBA::ORB::_duplicate (orb)),
          comp_ (comp)
      {
      }

      PlanEgress_exec_i::~PlanEgress_exec_i (void)
      {
      }

      // Operations from ::CIAO::RACE::PlanEgress

      ::CORBA::Boolean
      PlanEgress_exec_i::output_plan
      (const ::CIAO::RACE::Plan_Actions & plan_seq
                                      ACE_ENV_ARG_DECL_NOT_USED)
      ACE_THROW_SPEC ((CORBA::SystemException))
      {
        ACE_DEBUG ((LM_DEBUG, "RACE:DAnCE_Output_Adapter::output_plan\n"));

        for (size_t i = 0;i < plan_seq.length(); ++i)
          {
            if ((plan_seq[i].command == ::CIAO::RACE::DEPLOY) ||
                (plan_seq[i].command == ::CIAO::RACE::REPLAN_DEPLOY))
             {
                if ( !this->launch_helper(plan_seq[i]))
                  {
                    return false;
                  }

              }
            else
              {
                if ( !this->teardown_helper(plan_seq[i]) )
                  {
                    return false;
                  }
              }
          }

        /// Return true if all the actions are executed successfully (even
        /// if there are no actions to be executed).
        return true;
      }


      ::CORBA::Boolean
      PlanEgress_exec_i::launch_helper(
          const ::CIAO::RACE::Plan_Action & plan_action )

        {
          const ::Deployment::DeploymentPlan& plan=plan_action.plan;
          const ::Deployment::PackageConfiguration& package=plan_action.package;

          ACE_DEBUG(( LM_DEBUG, "RACE:DAnCE_OA: Trying to launch plan with uuid: %s\n",
               plan.UUID.in() ));

          CORBA::Long importance = Log::find_importance (package);

          RACE_DEPLOYMENT_STATUS(
		plan_action.command, Log::EventMark::BEGIN_EVENT, plan.UUID.in (), 0,
		Log::Status::SUCCESS, importance, "Success"  );

          try
            {
              ACE_CString uuid (this->comp_.launcher_.launch_plan (plan));

              if (uuid.c_str () == 0)
                {
                  ACE_ERROR ((LM_ERROR, "Unable to launch plan with UUID %s\n",
                              plan.UUID.in ()));

                  RACE_DEPLOYMENT_STATUS(plan_action.command, Log::EventMark::END_EVENT,
                                         plan.UUID.in (), 0,
                                         Log::Status::FAILURE, importance,
                                         "Failed on Plan Launcher\n"  );

                  return false;
                }

              // Write out DApp IOR
              try
                {
                  CORBA::String_var ior = this->orb_->object_to_string
                    (this->comp_.launcher_.get_dam (uuid.c_str ()));
                  uuid += "_DAM.ior";

                  FILE* ior_output_file = ACE_OS::fopen (uuid.c_str (), "w");

                  if (ior_output_file)
                    {
                      ACE_OS::fprintf (ior_output_file, "%s", ior.in ());
                      ACE_OS::fclose (ior_output_file);

                      RACE_DEPLOYMENT_STATUS(plan_action.command, Log::EventMark::END_EVENT,
                                             plan.UUID.in(), 0,
                                             Log::Status::SUCCESS, importance,
                                             "Success");

                    }
                  else
                    {
                      ACE_ERROR(( LM_ERROR, "Unable to write DAM ior for plan %s",
                                  uuid.c_str() ));

                      RACE_DEPLOYMENT_STATUS(plan_action.command, Log::EventMark::END_EVENT,
                                             plan.UUID.in(), 0,
                                             Log::Status::SUCCESS, importance,
                                             "Deployment succeeded, but failed to output DAM IOR");
                    }
                }
              catch (...)
                {
                  ACE_ERROR(( LM_ERROR, "Unable to write DAM ior for plan %s",
                              uuid.c_str() ));

                  RACE_DEPLOYMENT_STATUS(plan_action.command, Log::EventMark::END_EVENT,
                                         plan.UUID.in(), 0,
                                         Log::Status::SUCCESS, importance,
                                         "Deployment succeeded, but failed to output DAM IOR");
                }
            }
          catch (Plan_Launcher::Plan_Launcher_i::Deployment_Failure &ex_)
            {
              ACE_CString error ("Plan deployment failed: ");
              error += ex_.error_;

              RACE_DEPLOYMENT_STATUS(plan_action.command, Log::EventMark::END_EVENT,
                                     plan.UUID.in(), 0,
                                     Log::Status::FAILURE, importance,
                                     error.c_str()   );

              return false;
            }

          RACE_DEPLOYMENT_STATUS(
               plan_action.command, Log::EventMark::END_EVENT,
               plan.UUID.in(), 0, Log::Status::SUCCESS, importance,
               "Successful"  );

          // Pass along descriptors...
          this->comp_.context_->get_connection_control_output ()
               ->register_string (package, plan);

          return true;
        }

      ::CORBA::Boolean
      PlanEgress_exec_i::teardown_helper
      (const ::CIAO::RACE::Plan_Action & plan_action )
        {
          ACE_DEBUG ((LM_DEBUG, "RACE:DAnCE_OA: Trying to teardown plan with uuid: %s\n",
          plan_action.plan.UUID.in  ()));

          RACE_DEPLOYMENT_STATUS (
		plan_action.command, Log::EventMark::BEGIN_EVENT,
                plan_action.plan.UUID.in(), 0,
                Log::Status::SUCCESS, "Success");

          bool result=false;

          try
            {
              result = this->comp_.launcher_.teardown_plan( plan_action.plan.UUID.in() );

              if (result)
                RACE_DEPLOYMENT_STATUS (
		      plan_action.command, Log::EventMark::END_EVENT,
                      plan_action.plan.UUID.in(), 0,
                      Log::Status::SUCCESS, "Success");
              else
                RACE_DEPLOYMENT_STATUS (
		      plan_action.command, Log::EventMark::END_EVENT,
                      plan_action.plan.UUID.in(), 0,
                      Log::Status::FAILURE, "Teardown failed for unknown reason\n");
              }
          catch (Plan_Launcher::Plan_Launcher_i::Deployment_Failure &ex_)
            {
              ACE_CString error ("Plan teardown failed: ");
              error += ex_.error_;

              RACE_DEPLOYMENT_STATUS (
		      plan_action.command, Log::EventMark::END_EVENT,
                      plan_action.plan.UUID.in(), 0,
                      Log::Status::FAILURE,
                      error.c_str() );
            }

          this->comp_.context_->get_connection_control_output ()
            ->unregister_string (plan_action.plan.UUID.in ());

          /** @TODO Please check what to do after teardown.

          // Write out DApp IOR
          CORBA::String_var ior = this->orb_->object_to_string
            (this->comp_.launcher_.get_dam (uuid.c_str ()));

          uuid += "_DAM.ior";

          FILE* ior_output_file = ACE_OS::fopen (uuid.c_str (),
                                                "w");

          if (ior_output_file)
            {
              ACE_OS::fprintf (ior_output_file, "%s", ior.in ());
              ACE_OS::fclose (ior_output_file);
            }
          else
            {
              ACE_ERROR ((LM_ERROR, "Unable to write DAM ior for plan %s",
              uuid.c_str ()));
              return false;
            }

          // Pass along descriptors...
          this->comp_.context_->get_connection_control_output ()
            ->push_descriptors (package, plan);
          */
          return result;
        }

      //==================================================================
      // Facet Executor Implementation Class:   Plan_Status_exec_i
      //==================================================================

      Plan_Status_exec_i::Plan_Status_exec_i
      (DAnCE_Output_Adapter_exec_i & comp)
        : comp_ (comp)
      {
      }

      Plan_Status_exec_i::~Plan_Status_exec_i (void)
      {
      }

      // Operations from ::CIAO::RACE::Plan_Status

      ::CORBA::Boolean
      Plan_Status_exec_i::teardown (
        const char * uuid
        ACE_ENV_ARG_DECL_NOT_USED)
      ACE_THROW_SPEC ((CORBA::SystemException))
      {
        bool status (false);

        try
          {
            status = this->comp_.launcher_.teardown_plan (uuid);
          }
        catch (Plan_Launcher::Plan_Launcher_i::Deployment_Failure &ex_)
          {
            ACE_CString error ("!!! SHOULD NEVER HAVE CALLED THIS ROUTINE...Plan teardown failed: ");
            error += ex_.error_;

            RACE_DEPLOYMENT_STATUS(
	          Log::EventType::MANUAL_PLAN,
		  Log::SubType::TEARDOWN_END,
                  uuid, 0,
                  Log::Status::FAILURE,
                  error.c_str()  );
          }

        return status;
      }

      //==================================================================
      // Component Executor Implementation Class:   DAnCE_Output_Adapter_exec_i
      //==================================================================

      DAnCE_Output_Adapter_exec_i::DAnCE_Output_Adapter_exec_i (void)
      {
      }

      DAnCE_Output_Adapter_exec_i::~DAnCE_Output_Adapter_exec_i (void)
      {
      }

      // Supported or inherited operations.

      // Attribute operations.

      // Port operations.

      ::CIAO::RACE::CCM_PlanEgress_ptr
      DAnCE_Output_Adapter_exec_i::get_plan_egress (
        ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
      ACE_THROW_SPEC ((CORBA::SystemException))
      {
        return new PlanEgress_exec_i
          (this->context_->_ciao_the_Container ()->the_ORB (), *this);
      }

      ::CIAO::RACE::CCM_Plan_Status_ptr
      DAnCE_Output_Adapter_exec_i::get_plan_status ()
        ACE_THROW_SPEC ((CORBA::SystemException))
      {
        return new Plan_Status_exec_i (*this);
      }

      // Operations from Components::SessionComponent

      void
      DAnCE_Output_Adapter_exec_i::set_session_context (
        ::Components::SessionContext_ptr ctx
        ACE_ENV_ARG_DECL)
      ACE_THROW_SPEC ((
                        ::CORBA::SystemException,
                        ::Components::CCMException))
      {
        this->context_ =
        DAnCE_Output_Adapter_Context::_narrow (
          ctx
          ACE_ENV_ARG_PARAMETER);
        ACE_CHECK;

        if (this->context_ == 0)
        {
          ACE_THROW (CORBA::INTERNAL ());
        }
      }

      void
      DAnCE_Output_Adapter_exec_i::ciao_preactivate (
        ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
      ACE_THROW_SPEC ((
                        ::CORBA::SystemException,
                        ::Components::CCMException))
      {
        this->launcher_.init
          (0, this->context_->_ciao_the_Container ()->the_ORB ());
      }

      void
      DAnCE_Output_Adapter_exec_i::ciao_postactivate (
        ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
      ACE_THROW_SPEC ((
                        ::CORBA::SystemException,
                        ::Components::CCMException))
      {
        // Your code here.
      }

      void
      DAnCE_Output_Adapter_exec_i::ccm_activate (
        ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
      ACE_THROW_SPEC ((
                        ::CORBA::SystemException,
                        ::Components::CCMException))
      {
        // Your code here.
      }

      void
      DAnCE_Output_Adapter_exec_i::ccm_passivate (
        ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
      ACE_THROW_SPEC ((
                        ::CORBA::SystemException,
                        ::Components::CCMException))
      {
        // Your code here.
      }

      void
      DAnCE_Output_Adapter_exec_i::ccm_remove (
        ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
      ACE_THROW_SPEC ((
                        ::CORBA::SystemException,
                        ::Components::CCMException))
      {
        // Your code here.
      }

      //==================================================================
      // Home Executor Implementation Class:   DAnCE_Output_Adapter_Home_exec_i
      //==================================================================

      DAnCE_Output_Adapter_Home_exec_i::DAnCE_Output_Adapter_Home_exec_i (void)
      {
      }

      DAnCE_Output_Adapter_Home_exec_i::~DAnCE_Output_Adapter_Home_exec_i (void)
      {
      }

      // Supported or inherited operations.

      // Home operations.

      // Factory and finder operations.

      // Attribute operations.

      // Implicit operations.

      ::Components::EnterpriseComponent_ptr
      DAnCE_Output_Adapter_Home_exec_i::create (
        ACE_ENV_SINGLE_ARG_DECL)
      ACE_THROW_SPEC ((
                        ::CORBA::SystemException,
                        ::Components::CCMException))
      {
        ::Components::EnterpriseComponent_ptr retval =
        ::Components::EnterpriseComponent::_nil ();

        ACE_NEW_THROW_EX (
          retval,
          DAnCE_Output_Adapter_exec_i,
          CORBA::NO_MEMORY ());
        ACE_CHECK_RETURN (::Components::EnterpriseComponent::_nil ());

        return retval;
      }

      extern "C" DANCE_OUTPUT_ADAPTER_EXEC_Export ::Components::HomeExecutorBase_ptr
      create_CIAO_RACE_DAnCE_Output_Adapter_Home_Impl (void)
      {
        ::Components::HomeExecutorBase_ptr retval =
        ::Components::HomeExecutorBase::_nil ();

        ACE_NEW_RETURN (
          retval,
          DAnCE_Output_Adapter_Home_exec_i,
          ::Components::HomeExecutorBase::_nil ());

        return retval;
      }
    }
  }
}