Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Better handling of test any
[simgrid.git] / src / kernel / resource / HostImpl.cpp
1 /* Copyright (c) 2013-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/kernel/routing/NetPoint.hpp>
7 #include <simgrid/s4u/Engine.hpp>
8 #include <simgrid/s4u/Host.hpp>
9
10 #include "src/kernel/EngineImpl.hpp"
11 #include "src/kernel/resource/VirtualMachineImpl.hpp"
12 #include "xbt/asserts.hpp"
13
14 #include <string>
15
16 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(res_host, ker_resource, "Host resources agregate CPU, networking and I/O features");
17
18 /*************
19  * Callbacks *t
20  *************/
21
22 namespace simgrid::kernel::resource {
23
24 /*********
25  * Model *
26  *********/
27 /************
28  * Resource *
29  ************/
30 HostImpl::HostImpl(const std::string& name) : piface_(this), name_(name)
31 {
32   xbt_enforce(s4u::Host::by_name_or_null(name_) == nullptr, "Refusing to create a second host named '%s'.",
33               get_cname());
34 }
35
36 HostImpl::~HostImpl()
37 {
38   /* All actors should be gone when the host is turned off (by the end of the simulation). */
39   if (not actor_list_.empty()) {
40     const char* msg = "Shutting down host, but it's not empty";
41     try {
42       std::string actors;
43       for (auto const& actor : actor_list_)
44         actors += "\n\t" + actor.get_name();
45
46       EngineImpl::get_instance()->display_all_actor_status();
47       xbt_die("%s:%s", msg, actors.c_str());
48     } catch (const std::bad_alloc& ba) {
49       xbt_die("%s (cannot print actor list: %s)", msg, ba.what());
50     }
51   }
52   for (auto const& arg : actors_at_boot_)
53     delete arg;
54   actors_at_boot_.clear();
55
56   for (auto const& [_, d] : disks_)
57     d->destroy();
58
59   for (auto const& [_, vm] : vms_)
60     vm->vm_destroy();
61 }
62
63 /** @brief Fire the required callbacks and destroy the object
64  *
65  * Don't delete directly a Host, call h->destroy() instead.
66  */
67 void HostImpl::destroy()
68 {
69   s4u::Host::on_destruction(*this->get_iface());
70   delete this;
71 }
72
73 /** Re-starts all the actors that are marked as restartable.
74  *
75  * Weird things will happen if you turn on a host that is already on. S4U is fool-proof, not this.
76  */
77 void HostImpl::turn_on() const
78 {
79   for (auto const& arg : actors_at_boot_) {
80     XBT_DEBUG("Booting Actor %s(%s) right now", arg->name.c_str(), arg->host->get_cname());
81     actor::ActorImplPtr actor = actor::ActorImpl::create(arg);
82   }
83 }
84
85 /** Kill all actors hosted here */
86 void HostImpl::turn_off(const actor::ActorImpl* issuer)
87 {
88   /* turn_off VMs running on host */
89   for (const auto& [_, vm] : vms_) {
90     // call s4u functions to generate the good on_state_change signal, maybe one day this wont be necessary
91     vm->get_iface()->shutdown();
92     vm->get_iface()->turn_off();
93   }
94   for (auto& actor : actor_list_) {
95     XBT_DEBUG("Killing Actor %s@%s on behalf of %s which turned off that host.", actor.get_cname(),
96               actor.get_host()->get_cname(), issuer->get_cname());
97     issuer->kill(&actor);
98   }
99   for (const auto& activity : EngineImpl::get_instance()->get_maestro()->activities_) {
100     auto const& hosts = activity->get_hosts();
101     if (std::find(hosts.begin(), hosts.end(), &piface_) != hosts.end()) {
102       activity->cancel();
103       activity->set_state(activity::State::FAILED);
104     }
105   }
106   // When a host is turned off, we want to keep only the actors that should restart for when it will boot again.
107   // Then get rid of the others.
108   auto elm = remove_if(begin(actors_at_boot_), end(actors_at_boot_), [](const actor::ProcessArg* arg) {
109     if (arg->auto_restart)
110       return false;
111     delete arg;
112     return true;
113   });
114   actors_at_boot_.erase(elm, end(actors_at_boot_));
115 }
116
117 HostImpl* HostImpl::set_englobing_zone(routing::NetZoneImpl* englobing_zone)
118 {
119   englobing_zone_ = englobing_zone;
120   return this;
121 }
122
123 std::vector<s4u::ActorPtr> HostImpl::get_all_actors()
124 {
125   std::vector<s4u::ActorPtr> res;
126   for (auto& actor : actor_list_)
127     res.emplace_back(actor.get_ciface());
128   return res;
129 }
130 size_t HostImpl::get_actor_count() const
131 {
132   return actor_list_.size();
133 }
134
135 std::vector<s4u::Disk*> HostImpl::get_disks() const
136 {
137   std::vector<s4u::Disk*> disks;
138   for (auto const& [_, d] : disks_)
139     disks.push_back(d->get_iface());
140   return disks;
141 }
142
143 s4u::VirtualMachine* HostImpl::create_vm(const std::string& name, int core_amount, size_t ramsize)
144 {
145   auto* host_vm = new kernel::resource::VirtualMachineImpl(name, get_iface(), core_amount, ramsize);
146   auto* vm      = new s4u::VirtualMachine(host_vm);
147   host_vm->set_piface(vm);
148   return create_vm(name, vm);
149 }
150
151 s4u::VirtualMachine* HostImpl::create_vm(const std::string& name, s4u::VirtualMachine* vm)
152 {
153   vms_[name] = vm->get_vm_impl();
154
155   // Create a VCPU for this VM
156   std::vector<double> speeds;
157   for (unsigned long i = 0; i < get_iface()->get_pstate_count(); i++)
158     speeds.push_back(get_iface()->get_pstate_speed(i));
159
160   auto* cpu =
161       englobing_zone_->get_cpu_vm_model()->create_cpu(vm, speeds)->set_core_count(vm->get_vm_impl()->get_core_amount());
162
163   cpu->seal();
164
165   if (get_iface()->get_pstate() != 0) {
166     cpu->set_pstate(get_iface()->get_pstate());
167   }
168
169   /* Currently, a VM uses the network resource of its physical host */
170   vm->set_netpoint(get_iface()->get_netpoint());
171
172   vm->seal();
173
174   return vm;
175 }
176
177 void HostImpl::move_vm(VirtualMachineImpl* vm, HostImpl* destination)
178 {
179   xbt_assert(vm && destination);
180
181   vms_.erase(vm->get_name());
182   destination->vms_[vm->get_name()] = vm;
183 }
184
185 void HostImpl::destroy_vm(const std::string& name)
186 {
187   auto* vm = vms_[name];
188   vms_.erase(name);
189   vm->vm_destroy();
190 }
191
192 VirtualMachineImpl* HostImpl::get_vm_by_name_or_null(const std::string& name) const
193 {
194   auto vm_it = vms_.find(name);
195   return vm_it == vms_.end() ? nullptr : vm_it->second;
196 }
197
198 std::vector<s4u::VirtualMachine*> HostImpl::get_vms() const
199 {
200   std::vector<s4u::VirtualMachine*> vms;
201   for (const auto& [_, vm] : vms_) {
202     vms.push_back(vm->get_iface());
203   }
204   return vms;
205 }
206
207 s4u::Disk* HostImpl::create_disk(const std::string& name, double read_bandwidth, double write_bandwidth)
208 {
209   auto disk = piface_.get_netpoint()->get_englobing_zone()->get_disk_model()->create_disk(name, read_bandwidth,
210                                                                                           write_bandwidth);
211   if (sealed_)
212     disk->seal();
213   return disk->set_host(&piface_)->get_iface();
214 }
215
216 void HostImpl::add_disk(const s4u::Disk* disk)
217 {
218   disks_[disk->get_name()] = disk->get_impl();
219 }
220
221 void HostImpl::remove_disk(const std::string& name)
222 {
223   disks_.erase(name);
224 }
225
226 void HostImpl::seal()
227 {
228   if (sealed_) {
229     return;
230   }
231   // seals host's CPU
232   get_iface()->get_cpu()->seal();
233   sealed_ = true;
234
235   /* seal its disks */
236   for (auto const& [_, disk] : disks_)
237     disk->seal();
238
239   /* seal its VMs */
240   for (auto const& [_, vm] : vms_)
241     vm->seal();
242 }
243 } // namespace simgrid::kernel::resource