summaryrefslogtreecommitdiff
path: root/DAnCE/dance/LocalityManager/Scheduler/Events/Passivate.h
blob: 3e6d4b862467f9789ed4ff50e9418114b77420af (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
/**
 * @file Passivate.h
 * @author William R. Otte <wotte@dre.vanderbilt.edu>
 */

#ifndef EVENT_PASSIVATE_H
#define EVENT_PASSIVATE_H

#include "dance/LocalityManager/Scheduler/Deployment_Scheduler_export.h"
#include "dance/LocalityManager/Scheduler/Events/Action_Base.h"
#include "dance/Deployment/Deployment_DeploymentPlanC.h"

namespace DAnCE
{
  /**
   * @class
   */
  class Deployment_Scheduler_Export Passivate_Instance :
    public virtual Action_Base
  {
  public:
    Passivate_Instance (::Deployment::DeploymentPlan & plan,
                        ::CORBA::ULong instanceRef,
                        const CORBA::Any &ref,
                        const char *instance_type,
                        Event_Future holder);

    virtual ~Passivate_Instance (void);

  protected:
    virtual void invoke_pre_interceptor (Plugin_Manager::INTERCEPTORS::const_iterator &);

    virtual void invoke (::DAnCE::InstanceDeploymentHandler_ptr);

    virtual void invoke_post_interceptor (Plugin_Manager::INTERCEPTORS::const_iterator &);

    virtual void create_unexpected_exception (const std::string &,
                                              const std::string &);

    virtual void create_valid_result (Event_Result &);

  private:
    ::Deployment::DeploymentPlan &plan_;
    ::CORBA::ULong instanceRef_;
    const ::CORBA::Any &ref_;
  };
}

#endif