Logo AND Algorithmique Numérique Distribuée

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