Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add new entry in Release_Notes.
[simgrid.git] / src / kernel / resource / VirtualMachineImpl.hpp
1 /* Copyright (c) 2004-2023. 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
8 #include "src/kernel/resource/HostImpl.hpp"
9
10 #ifndef VM_INTERFACE_HPP_
11 #define VM_INTERFACE_HPP_
12
13 namespace simgrid {
14
15 extern template class XBT_PUBLIC xbt::Extendable<kernel::resource::VirtualMachineImpl>;
16
17 namespace kernel::resource {
18
19 /************
20  * Resource *
21  ************/
22
23 class XBT_PUBLIC VirtualMachineImpl : public HostImpl, public xbt::Extendable<VirtualMachineImpl> {
24 #ifndef DOXYGEN
25   friend s4u::VirtualMachine;
26 #endif
27
28 public:
29   static std::deque<s4u::VirtualMachine*> allVms_;
30
31   explicit VirtualMachineImpl(const std::string& name, s4u::VirtualMachine* piface, s4u::Host* host, int core_amount,
32                               size_t ramsize);
33   explicit VirtualMachineImpl(const std::string& name, simgrid::s4u::Host* host_PM, int core_amount, size_t ramsize);
34   void set_piface(s4u::VirtualMachine* piface);
35
36   void start();
37   void suspend(const actor::ActorImpl* issuer);
38   void resume();
39   void shutdown(kernel::actor::ActorImpl* issuer);
40   void vm_destroy();
41
42   /** @brief Change the physical host on which the given VM is running */
43   void set_physical_host(s4u::Host* dest);
44   /** @brief Get the physical host on which the given VM is running */
45   s4u::Host* get_physical_host() const { return physical_host_; }
46
47   size_t get_ramsize() const { return ramsize_; }
48   void set_ramsize(size_t ramsize) { ramsize_ = ramsize; }
49
50   s4u::VirtualMachine::State get_state() const { return vm_state_; }
51   void set_state(s4u::VirtualMachine::State state) { vm_state_ = state; }
52
53   unsigned int get_core_amount() const { return core_amount_; }
54   Action* get_action() const { return action_; }
55
56   const s4u::VirtualMachine* get_iface() const override { return piface_; }
57   s4u::VirtualMachine* get_iface() override { return piface_; }
58
59   void set_bound(double bound);
60
61   void update_action_weight();
62
63   void add_active_exec() { active_execs_++; }
64   void remove_active_exec() { active_execs_--; }
65
66   void start_migration();
67   void end_migration();
68   bool is_migrating() const { return is_migrating_; }
69   void seal() override;
70
71 private:
72   s4u::VirtualMachine* piface_ = nullptr;
73   Action* action_            = nullptr;
74   unsigned int active_execs_ = 0;
75   s4u::Host* physical_host_;
76   unsigned int core_amount_;
77   double user_bound_                   = std::numeric_limits<double>::max();
78   size_t ramsize_                      = 0;
79   s4u::VirtualMachine::State vm_state_ = s4u::VirtualMachine::State::CREATED;
80   bool is_migrating_                   = false;
81 };
82
83 /*********
84  * Model *
85  *********/
86 /** @ingroup Model_vm_interface
87  * @brief VM model interface class
88  * @details A model is an object which handle the interactions between its Resources and its Actions
89  */
90 class XBT_PRIVATE VMModel : public HostModel {
91 public:
92   explicit VMModel(const std::string& name);
93
94   double next_occurring_event(double now) override;
95   void update_actions_state(double /*now*/, double /*delta*/) override{};
96   Action* execute_thread(const s4u::Host* host, double flops_amount, int thread_count) override;
97   Action* execute_parallel(const std::vector<s4u::Host*>& host_list, const double* flops_amount,
98                            const double* bytes_amount, double rate) override
99   {
100     return nullptr;
101   };
102 };
103 } // namespace kernel::resource
104 } // namespace simgrid
105
106 #endif /* VM_INTERFACE_HPP_ */