Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
rename AsImpl::getRouteRecursive to AsImpl::getGlobalRoute (+doc improvment)
[simgrid.git] / src / surf / VirtualMachineImpl.hpp
1 /* Copyright (c) 2004-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include <boost/intrusive/list.hpp>
8 #include <deque>
9
10 #include <xbt/base.h>
11
12 #include "src/surf/HostImpl.hpp"
13
14 #ifndef VM_INTERFACE_HPP_
15 #define VM_INTERFACE_HPP_
16
17 #define GUESTOS_NOISE 100 // This value corresponds to the cost of the global action associated to the VM
18                           // It corresponds to the cost of a VM running no tasks.
19
20 namespace simgrid {
21 namespace surf {
22
23 /***********
24  * Classes *
25  ***********/
26
27 class XBT_PRIVATE VMModel;
28 class XBT_PRIVATE VirtualMachineImpl;
29
30 /*************
31  * Callbacks *
32  *************/
33
34 /** @ingroup SURF_callbacks
35  * @brief Callbacks fired after VM creation. Signature: `void(VirtualMachine*)`
36  */
37 extern XBT_PRIVATE simgrid::xbt::signal<void(simgrid::surf::VirtualMachineImpl*)> onVmCreation;
38
39 /** @ingroup SURF_callbacks
40  * @brief Callbacks fired after VM destruction. Signature: `void(VirtualMachine*)`
41  */
42 extern XBT_PRIVATE simgrid::xbt::signal<void(simgrid::surf::VirtualMachineImpl*)> onVmDestruction;
43
44 /** @ingroup SURF_callbacks
45  * @brief Callbacks after VM State changes. Signature: `void(VirtualMachine*)`
46  */
47 extern XBT_PRIVATE simgrid::xbt::signal<void(simgrid::surf::VirtualMachineImpl*)> onVmStateChange;
48
49 /************
50  * Resource *
51  ************/
52
53 /** @ingroup SURF_vm_interface
54  * @brief SURF VM interface class
55  * @details A VM represent a virtual machine
56  */
57 class VirtualMachineImpl : public HostImpl {
58 public:
59   explicit VirtualMachineImpl(s4u::Host* piface, s4u::Host* host);
60   ~VirtualMachineImpl();
61
62   /** @brief Suspend the VM */
63   virtual void suspend();
64
65   /** @brief Resume the VM */
66   virtual void resume();
67
68   /** @brief Save the VM (Not yet implemented) */
69   virtual void save();
70
71   /** @brief Restore the VM (Not yet implemented) */
72   virtual void restore();
73
74   /** @brief Migrate the VM to the destination host */
75   virtual void migrate(s4u::Host* dest);
76
77   /** @brief Get the physical machine hosting the VM */
78   s4u::Host* getPm();
79
80   virtual void setBound(double bound);
81
82   void getParams(vm_params_t params);
83   void setParams(vm_params_t params);
84
85   /* The vm object of the lower layer */
86   CpuAction* action_ = nullptr;
87
88 protected:
89   simgrid::s4u::Host* hostPM_;
90
91 public:
92   e_surf_vm_state_t getState();
93   void setState(e_surf_vm_state_t state);
94   static std::deque<VirtualMachineImpl*> allVms_;
95
96 private:
97   s_vm_params_t params_;
98
99 protected:
100   e_surf_vm_state_t vmState_ = SURF_VM_STATE_CREATED;
101 };
102
103 /*********
104  * Model *
105  *********/
106 /** @ingroup SURF_vm_interface
107  * @brief SURF VM model interface class
108  * @details A model is an object which handle the interactions between its Resources and its Actions
109  */
110 class VMModel : public HostModel {
111 public:
112   void adjustWeightOfDummyCpuActions() override{};
113
114   double nextOccuringEvent(double now) override;
115   void updateActionsState(double /*now*/, double /*delta*/) override{};
116 };
117 }
118 }
119
120 #endif /* VM_INTERFACE_HPP_ */