Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Kill unused constants.
[simgrid.git] / src / plugins / vm / VirtualMachineImpl.hpp
1 /* Copyright (c) 2004-2019. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include "simgrid/s4u/VirtualMachine.hpp"
7 #include "src/simix/ActorImpl.hpp"
8 #include "src/surf/HostImpl.hpp"
9 #include <algorithm>
10 #include <deque>
11 #include <unordered_map>
12
13 #ifndef VM_INTERFACE_HPP_
14 #define VM_INTERFACE_HPP_
15
16 namespace simgrid {
17 namespace vm {
18
19 /************
20  * Resource *
21  ************/
22
23 /** @ingroup SURF_vm_interface
24  * @brief SURF VM interface class
25  * @details A VM represent a virtual machine
26  */
27 class XBT_PUBLIC VirtualMachineImpl : public surf::HostImpl, public simgrid::xbt::Extendable<VirtualMachineImpl> {
28   friend simgrid::s4u::VirtualMachine;
29
30 public:
31   explicit VirtualMachineImpl(s4u::VirtualMachine* piface, s4u::Host* host, int core_amount, size_t ramsize);
32   ~VirtualMachineImpl();
33
34   /** @brief Callbacks fired after VM creation. Signature: `void(VirtualMachineImpl*)` */
35   static xbt::signal<void(simgrid::vm::VirtualMachineImpl*)> on_creation;
36   /** @brief Callbacks fired after VM destruction. Signature: `void(VirtualMachineImpl*)` */
37   static xbt::signal<void(simgrid::vm::VirtualMachineImpl*)> on_destruction;
38   /** @brief Callbacks after VM State changes. Signature: `void(VirtualMachineImpl*)` */
39   static xbt::signal<void(simgrid::vm::VirtualMachineImpl*)> on_state_change;
40
41   virtual void suspend(kernel::actor::ActorImpl* issuer);
42   virtual void resume();
43   virtual void shutdown(kernel::actor::ActorImpl* issuer);
44
45   /** @brief Change the physical host on which the given VM is running */
46   virtual void set_physical_host(s4u::Host* dest);
47   /** @brief Get the physical host on which the given VM is running */
48   s4u::Host* get_physical_host() { return physical_host_; }
49
50   sg_size_t get_ramsize() { return ramsize_; }
51   void set_ramsize(sg_size_t ramsize) { ramsize_ = ramsize; }
52
53   s4u::VirtualMachine::state get_state() { return vm_state_; }
54   void set_state(s4u::VirtualMachine::state state) { vm_state_ = state; }
55
56   int get_core_amount() { return core_amount_; }
57
58   virtual void set_bound(double bound);
59
60   /* The vm object of the lower layer */
61   kernel::resource::Action* action_ = nullptr;
62   static std::deque<s4u::VirtualMachine*> allVms_;
63   bool is_migrating_ = false;
64   int active_tasks_ = 0;
65
66   void update_action_weight();
67
68 private:
69   s4u::Host* physical_host_;
70   int core_amount_;
71   double user_bound_;
72   size_t ramsize_            = 0;
73   s4u::VirtualMachine::state vm_state_ = s4u::VirtualMachine::state::CREATED;
74 };
75
76 /*********
77  * Model *
78  *********/
79 /** @ingroup SURF_vm_interface
80  * @brief SURF VM model interface class
81  * @details A model is an object which handle the interactions between its Resources and its Actions
82  */
83 class XBT_PRIVATE VMModel : public surf::HostModel {
84 public:
85   VMModel();
86
87   double next_occuring_event(double now) override;
88   void update_actions_state(double /*now*/, double /*delta*/) override{};
89 };
90 }
91 }
92
93 XBT_PUBLIC_DATA simgrid::vm::VMModel* surf_vm_model;
94
95 #endif /* VM_INTERFACE_HPP_ */