summaryrefslogtreecommitdiff
path: root/CIAO/DAnCE/LocalityManager/Scheduler/Events/Install.cpp
blob: 2c88335c410b4bdea3d7d1ed2e46fdb681c4e48f (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
// $Id$
#include "Install.h"

#include "tao/AnyTypeCode/ExceptionA.h"
#include "Logger/Log_Macros.h"
#include "Deployment/Deployment_StartErrorC.h"
#include "DAnCE/DAnCE_DeploymentInterceptorsC.h"
#include "DAnCE/DAnCE_LocalityManagerC.h"
#include "DAnCE/DAnCE_Utility.h"
#include "LocalityManager/Scheduler/Deployment_Event.h"
#include "LocalityManager/Scheduler/Plugin_Manager.h"

namespace DAnCE
{
  Install_Instance::Install_Instance (::Deployment::DeploymentPlan & plan,
                                      ::CORBA::ULong instanceRef,
                                      const char *inst_type,
                                      Event_Future holder)
    : Deployment_Event (holder, 
                        plan.instance[instanceRef].name.in (),
                        inst_type),
      Action_Base (holder, 
                   plan.instance[instanceRef].name.in (),
                   inst_type),
      plan_ (plan),
      instanceRef_ (instanceRef)
  {
    CORBA::Any *tmp;
    ACE_NEW_THROW_EX (tmp, 
                      ::CORBA::Any (),
                      CORBA::NO_MEMORY ());
    
    instance_ = tmp;
  }

  Install_Instance::~Install_Instance (void)
  {
  }
  
  void
  Install_Instance::invoke_pre_interceptor (Plugin_Manager::INTERCEPTORS::const_iterator &i)
  {
    DANCE_TRACE ("Install_Instance::invoke_pre_interceptor");
    
    (*i)->pre_install (this->plan_,
                                this->instanceRef_);
  }
  
    
  void
  Install_Instance::invoke (::DAnCE::InstanceDeploymentHandler_ptr handler)
  {
    DANCE_TRACE ("Install_Instance::invoke");
    
    DANCE_DEBUG (10, (LM_TRACE, DLINFO
                      ACE_TEXT ("Install_Instance::invoke - ")
                      ACE_TEXT ("Invoking install_instance on handler for type <%C>\n"),
                      this->instance_type_.c_str ()));
    
    handler->install_instance (this->plan_,
                               this->instanceRef_,
                               this->instance_.out ());

    DANCE_DEBUG (10, (LM_TRACE, DLINFO
                      ACE_TEXT ("Install_Instance::invoke - ")
                      ACE_TEXT ("install_instance completed\n")));
  }
  
  
  void
  Install_Instance::invoke_post_interceptor (Plugin_Manager::INTERCEPTORS::const_iterator &i)
  {
    DANCE_TRACE ("Install_Instance::invoke_post_interceptor");
    
    (*i)->post_install (this->plan_,
                                 this->instanceRef_,
                                 this->instance_.in (),
                                 this->instance_excep_.in ());
  }
  
  
  void
  Install_Instance::create_unexpected_exception (const std::string &name,
                                                 const std::string &reason)
  {
    DANCE_TRACE ("Install_Instance::create_unexpected_exception");
    
    ::Deployment::StartError ex_tmp (name.c_str (),
                                     reason.c_str ());
    this->instance_excep_ =
      DAnCE::Utility::create_any_from_exception (ex_tmp);
  }
  
  
  void
  Install_Instance::create_valid_result (Event_Result &result)
  {
    result.contents_ = this->instance_._retn ();
  }
}