Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Explicit instanciation of xbt::Extendable<> specializations.
[simgrid.git] / src / plugins / vm / VirtualMachineImpl.hpp
1 /* Copyright (c) 2004-2020. 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/kernel/actor/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
18 extern template class XBT_PUBLIC xbt::Extendable<vm::VirtualMachineImpl>;
19
20 namespace vm {
21
22 /************
23  * Resource *
24  ************/
25
26 /** @ingroup SURF_vm_interface
27  * @brief SURF VM interface class
28  * @details A VM represent a virtual machine
29  */
30 class XBT_PUBLIC VirtualMachineImpl : public surf::HostImpl, public simgrid::xbt::Extendable<VirtualMachineImpl> {
31   friend simgrid::s4u::VirtualMachine;
32
33 public:
34   explicit VirtualMachineImpl(s4u::VirtualMachine* piface, s4u::Host* host, int core_amount, size_t ramsize);
35   ~VirtualMachineImpl();
36
37   /** @brief Callbacks fired after VM creation. Signature: `void(VirtualMachineImpl&)` */
38   static xbt::signal<void(simgrid::vm::VirtualMachineImpl&)> on_creation;
39   /** @brief Callbacks fired after VM destruction. Signature: `void(VirtualMachineImpl const&)` */
40   static xbt::signal<void(simgrid::vm::VirtualMachineImpl const&)> on_destruction;
41
42   virtual void suspend(kernel::actor::ActorImpl* issuer);
43   virtual void resume();
44   virtual void shutdown(kernel::actor::ActorImpl* issuer);
45
46   /** @brief Change the physical host on which the given VM is running */
47   virtual void set_physical_host(s4u::Host* dest);
48   /** @brief Get the physical host on which the given VM is running */
49   s4u::Host* get_physical_host() { return physical_host_; }
50
51   sg_size_t get_ramsize() const { return ramsize_; }
52   void set_ramsize(sg_size_t ramsize) { ramsize_ = ramsize; }
53
54   s4u::VirtualMachine::state get_state() const { return vm_state_; }
55   void set_state(s4u::VirtualMachine::state state) { vm_state_ = state; }
56
57   int get_core_amount() { return core_amount_; }
58
59   virtual void set_bound(double bound);
60
61   /* The vm object of the lower layer */
62   kernel::resource::Action* action_ = nullptr;
63   static std::deque<s4u::VirtualMachine*> allVms_;
64   bool is_migrating_ = false;
65   int active_tasks_ = 0;
66
67   void update_action_weight();
68
69 private:
70   s4u::Host* physical_host_;
71   int core_amount_;
72   double user_bound_                   = std::numeric_limits<double>::max();
73   size_t ramsize_            = 0;
74   s4u::VirtualMachine::state vm_state_ = s4u::VirtualMachine::state::CREATED;
75 };
76
77 /*********
78  * Model *
79  *********/
80 /** @ingroup SURF_vm_interface
81  * @brief SURF VM model interface class
82  * @details A model is an object which handle the interactions between its Resources and its Actions
83  */
84 class XBT_PRIVATE VMModel : public surf::HostModel {
85 public:
86   VMModel();
87
88   double next_occurring_event(double now) override;
89   void update_actions_state(double /*now*/, double /*delta*/) override{};
90   kernel::resource::Action* execute_parallel(const std::vector<s4u::Host*>& host_list, const double* flops_amount,
91                                              const double* bytes_amount, double rate) override
92   {
93     return nullptr;
94   };
95 };
96 }
97 }
98
99 XBT_PUBLIC_DATA simgrid::vm::VMModel* surf_vm_model;
100
101 #endif /* VM_INTERFACE_HPP_ */