Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Use existing helper function to create zones.
[simgrid.git] / src / surf / sg_platf.cpp
1 /* Copyright (c) 2006-2021. 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/Exception.hpp"
7 #include "simgrid/kernel/routing/DijkstraZone.hpp"
8 #include "simgrid/kernel/routing/DragonflyZone.hpp"
9 #include "simgrid/kernel/routing/EmptyZone.hpp"
10 #include "simgrid/kernel/routing/FatTreeZone.hpp"
11 #include "simgrid/kernel/routing/FloydZone.hpp"
12 #include "simgrid/kernel/routing/FullZone.hpp"
13 #include "simgrid/kernel/routing/NetPoint.hpp"
14 #include "simgrid/kernel/routing/NetZoneImpl.hpp"
15 #include "simgrid/kernel/routing/TorusZone.hpp"
16 #include "simgrid/kernel/routing/VivaldiZone.hpp"
17 #include "simgrid/kernel/routing/WifiZone.hpp"
18 #include "simgrid/s4u/Engine.hpp"
19 #include "simgrid/s4u/NetZone.hpp"
20 #include "src/include/simgrid/sg_config.hpp"
21 #include "src/include/surf/surf.hpp"
22 #include "src/kernel/EngineImpl.hpp"
23 #include "src/kernel/resource/DiskImpl.hpp"
24 #include "src/kernel/resource/profile/Profile.hpp"
25 #include "src/simix/smx_private.hpp"
26 #include "src/surf/HostImpl.hpp"
27 #include "src/surf/xml/platf_private.hpp"
28
29 #include <algorithm>
30 #include <string>
31
32 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(surf_parse);
33
34 namespace simgrid {
35 namespace kernel {
36 namespace routing {
37 xbt::signal<void(ClusterCreationArgs const&)> on_cluster_creation;
38 } // namespace routing
39 } // namespace kernel
40 } // namespace simgrid
41
42 static simgrid::kernel::routing::ClusterZoneCreationArgs
43     zone_cluster; /* temporary store data for irregular clusters, created with <zone routing="Cluster"> */
44
45 /** The current NetZone in the parsing */
46 static simgrid::kernel::routing::NetZoneImpl* current_routing = nullptr;
47 static simgrid::s4u::Host* current_host = nullptr;
48
49 /** Module management function: creates all internal data structures */
50 void sg_platf_init()
51 {
52   // Do nothing: just for symmetry of user code
53 }
54
55 /** Module management function: frees all internal data structures */
56 void sg_platf_exit()
57 {
58   simgrid::kernel::routing::on_cluster_creation.disconnect_slots();
59   simgrid::s4u::Engine::on_platform_created.disconnect_slots();
60
61   surf_parse_lex_destroy();
62 }
63
64 /** @brief Add a host to the current NetZone */
65 void sg_platf_new_host_begin(const simgrid::kernel::routing::HostCreationArgs* args)
66 {
67   current_host = current_routing->create_host(args->id, args->speed_per_pstate)
68                      ->set_coordinates(args->coord)
69                      ->set_core_count(args->core_amount)
70                      ->set_state_profile(args->state_trace)
71                      ->set_speed_profile(args->speed_trace);
72 }
73
74 void sg_platf_new_host_set_properties(const std::unordered_map<std::string, std::string>& props)
75 {
76   xbt_assert(current_host, "Cannot set properties of the current host: none under construction");
77   current_host->set_properties(props);
78 }
79
80 void sg_platf_new_host_seal(int pstate)
81 {
82   xbt_assert(current_host, "Cannot seal the current Host: none under construction");
83   current_host->seal();
84
85   /* When energy plugin is activated, changing the pstate requires to already have the HostEnergy extension whose
86    * allocation is triggered by the on_creation signal. Then set_pstate must be called after the signal emission */
87
88   if (pstate != 0)
89     current_host->set_pstate(pstate);
90
91   current_host = nullptr;
92 }
93
94 void sg_platf_new_peer(const simgrid::kernel::routing::PeerCreationArgs* args)
95 {
96   auto* zone = dynamic_cast<simgrid::kernel::routing::VivaldiZone*>(current_routing);
97   xbt_assert(zone, "<peer> tag can only be used in Vivaldi netzones.");
98
99   const auto* peer = zone->create_host(args->id, std::vector<double>{args->speed})
100                          ->set_state_profile(args->state_trace)
101                          ->set_speed_profile(args->speed_trace)
102                          ->set_coordinates(args->coord)
103                          ->seal();
104
105   zone->set_peer_link(peer->get_netpoint(), args->bw_in, args->bw_out);
106 }
107
108 /** @brief Add a "router" to the network element list */
109 simgrid::kernel::routing::NetPoint* sg_platf_new_router(const std::string& name, const std::string& coords)
110 {
111   auto* netpoint = current_routing->create_router(name)->set_coordinates(coords);
112   XBT_DEBUG("Router '%s' has the id %u", netpoint->get_cname(), netpoint->id());
113
114   return netpoint;
115 }
116
117 static void sg_platf_new_link(const simgrid::kernel::routing::LinkCreationArgs* args, const std::string& link_name)
118 {
119   current_routing->create_link(link_name, args->bandwidths)
120       ->set_properties(args->properties)
121       ->get_impl() // this call to get_impl saves some simcalls but can be removed
122       ->set_sharing_policy(args->policy)
123       ->set_state_profile(args->state_trace)
124       ->set_latency_profile(args->latency_trace)
125       ->set_bandwidth_profile(args->bandwidth_trace)
126       ->set_latency(args->latency)
127       ->seal();
128 }
129
130 void sg_platf_new_link(const simgrid::kernel::routing::LinkCreationArgs* link)
131 {
132   if (link->policy == simgrid::s4u::Link::SharingPolicy::SPLITDUPLEX) {
133     sg_platf_new_link(link, link->id + "_UP");
134     sg_platf_new_link(link, link->id + "_DOWN");
135   } else {
136     sg_platf_new_link(link, link->id);
137   }
138 }
139
140 void sg_platf_new_disk(const simgrid::kernel::routing::DiskCreationArgs* disk)
141 {
142   const simgrid::s4u::Disk* new_disk = current_routing->create_disk(disk->id, disk->read_bw, disk->write_bw)
143                                            ->set_host(current_host)
144                                            ->set_properties(disk->properties)
145                                            ->seal();
146
147   current_host->add_disk(new_disk);
148 }
149
150 /*************************************************************************************************/
151 /** @brief Auxiliary function to create hosts */
152 static std::pair<simgrid::kernel::routing::NetPoint*, simgrid::kernel::routing::NetPoint*>
153 sg_platf_cluster_create_host(const simgrid::kernel::routing::ClusterCreationArgs* cluster, simgrid::s4u::NetZone* zone,
154                              const std::vector<unsigned int>& /*coord*/, int id)
155 {
156   xbt_assert(static_cast<unsigned long>(id) < cluster->radicals.size(),
157              "Zone(%s): error when creating host number %d in the zone. Insufficient number of radicals available "
158              "(total = %zu). Check the 'radical' parameter in XML",
159              cluster->id.c_str(), id, cluster->radicals.size());
160
161   std::string host_id = std::string(cluster->prefix) + std::to_string(cluster->radicals[id]) + cluster->suffix;
162   XBT_DEBUG("Cluster: creating host=%s speed=%f", host_id.c_str(), cluster->speeds.front());
163   const simgrid::s4u::Host* host = zone->create_host(host_id, cluster->speeds)
164                                        ->set_core_count(cluster->core_amount)
165                                        ->set_properties(cluster->properties)
166                                        ->seal();
167   return std::make_pair(host->get_netpoint(), nullptr);
168 }
169
170 /** @brief Auxiliary function to create loopback links */
171 static simgrid::s4u::Link*
172 sg_platf_cluster_create_loopback(const simgrid::kernel::routing::ClusterCreationArgs* cluster,
173                                  simgrid::s4u::NetZone* zone, const std::vector<unsigned int>& /*coord*/, int id)
174 {
175   xbt_assert(static_cast<unsigned long>(id) < cluster->radicals.size(),
176              "Zone(%s): error when creating loopback for host number %d in the zone. Insufficient number of radicals "
177              "available "
178              "(total = %zu). Check the 'radical' parameter in XML",
179              cluster->id.c_str(), id, cluster->radicals.size());
180
181   std::string link_id = std::string(cluster->id) + "_link_" + std::to_string(cluster->radicals[id]) + "_loopback";
182   XBT_DEBUG("Cluster: creating loopback link=%s bw=%f", link_id.c_str(), cluster->loopback_bw);
183
184   simgrid::s4u::Link* loopback = zone->create_link(link_id, cluster->loopback_bw)
185                                      ->set_sharing_policy(simgrid::s4u::Link::SharingPolicy::FATPIPE)
186                                      ->set_latency(cluster->loopback_lat)
187                                      ->seal();
188   return loopback;
189 }
190
191 /** @brief Auxiliary function to create limiter links */
192 static simgrid::s4u::Link* sg_platf_cluster_create_limiter(const simgrid::kernel::routing::ClusterCreationArgs* cluster,
193                                                            simgrid::s4u::NetZone* zone,
194                                                            const std::vector<unsigned int>& /*coord*/, int id)
195 {
196   std::string link_id = std::string(cluster->id) + "_link_" + std::to_string(id) + "_limiter";
197   XBT_DEBUG("Cluster: creating limiter link=%s bw=%f", link_id.c_str(), cluster->limiter_link);
198
199   simgrid::s4u::Link* limiter = zone->create_link(link_id, cluster->limiter_link)->seal();
200   return limiter;
201 }
202
203 /** @brief Create Torus, Fat-Tree and Dragonfly clusters */
204 static void sg_platf_new_cluster_hierarchical(const simgrid::kernel::routing::ClusterCreationArgs* cluster)
205 {
206   using namespace std::placeholders;
207   using simgrid::kernel::routing::DragonflyZone;
208   using simgrid::kernel::routing::FatTreeZone;
209   using simgrid::kernel::routing::TorusZone;
210
211   auto set_host = std::bind(sg_platf_cluster_create_host, cluster, _1, _2, _3);
212   std::function<simgrid::s4u::ClusterCallbacks::ClusterLinkCb> set_loopback{};
213   std::function<simgrid::s4u::ClusterCallbacks::ClusterLinkCb> set_limiter{};
214
215   if (cluster->loopback_bw > 0 || cluster->loopback_lat > 0) {
216     set_loopback = std::bind(sg_platf_cluster_create_loopback, cluster, _1, _2, _3);
217   }
218
219   if (cluster->limiter_link > 0) {
220     set_limiter = std::bind(sg_platf_cluster_create_limiter, cluster, _1, _2, _3);
221   }
222
223   simgrid::s4u::NetZone const* parent = current_routing ? current_routing->get_iface() : nullptr;
224   simgrid::s4u::NetZone* zone;
225   switch (cluster->topology) {
226     case simgrid::kernel::routing::ClusterTopology::TORUS:
227       zone = simgrid::s4u::create_torus_zone(
228           cluster->id, parent, TorusZone::parse_topo_parameters(cluster->topo_parameters),
229           {set_host, set_loopback, set_limiter}, cluster->bw, cluster->lat, cluster->sharing_policy);
230       break;
231     case simgrid::kernel::routing::ClusterTopology::DRAGONFLY:
232       zone = simgrid::s4u::create_dragonfly_zone(
233           cluster->id, parent, DragonflyZone::parse_topo_parameters(cluster->topo_parameters),
234           {set_host, set_loopback, set_limiter}, cluster->bw, cluster->lat, cluster->sharing_policy);
235       break;
236     case simgrid::kernel::routing::ClusterTopology::FAT_TREE:
237       zone = simgrid::s4u::create_fatTree_zone(
238           cluster->id, parent, FatTreeZone::parse_topo_parameters(cluster->topo_parameters),
239           {set_host, set_loopback, set_limiter}, cluster->bw, cluster->lat, cluster->sharing_policy);
240       break;
241     default:
242       THROW_IMPOSSIBLE;
243   }
244   zone->seal();
245 }
246
247 /*************************************************************************************************/
248 /** @brief Create regular Cluster */
249 static void sg_platf_new_cluster_flat(simgrid::kernel::routing::ClusterCreationArgs* cluster)
250 {
251   auto* zone                          = simgrid::s4u::create_star_zone(cluster->id);
252   simgrid::s4u::NetZone const* parent = current_routing ? current_routing->get_iface() : nullptr;
253   if (parent)
254     zone->set_parent(parent);
255
256   /* set properties */
257   for (auto const& elm : cluster->properties)
258     zone->set_property(elm.first, elm.second);
259
260   /* Make the backbone */
261   simgrid::s4u::Link* backbone = nullptr;
262   if ((cluster->bb_bw > 0) || (cluster->bb_lat > 0)) {
263     std::string bb_name = std::string(cluster->id) + "_backbone";
264     XBT_DEBUG("<link\tid=\"%s\" bw=\"%f\" lat=\"%f\"/> <!--backbone -->", bb_name.c_str(), cluster->bb_bw,
265               cluster->bb_lat);
266
267     backbone = zone->create_link(bb_name, std::vector<double>{cluster->bb_bw})
268                    ->set_sharing_policy(cluster->bb_sharing_policy)
269                    ->set_latency(cluster->bb_lat)
270                    ->seal();
271   }
272
273   for (int const& i : cluster->radicals) {
274     std::string host_id = std::string(cluster->prefix) + std::to_string(i) + cluster->suffix;
275
276     XBT_DEBUG("<host\tid=\"%s\"\tspeed=\"%f\">", host_id.c_str(), cluster->speeds.front());
277     const auto* host = zone->create_host(host_id, cluster->speeds)
278                            ->set_core_count(cluster->core_amount)
279                            ->set_properties(cluster->properties)
280                            ->seal();
281
282     XBT_DEBUG("</host>");
283
284     std::string link_id = std::string(cluster->id) + "_link_" + std::to_string(i);
285     XBT_DEBUG("<link\tid=\"%s\"\tbw=\"%f\"\tlat=\"%f\"/>", link_id.c_str(), cluster->bw, cluster->lat);
286
287     // add a loopback link
288     if (cluster->loopback_bw > 0 || cluster->loopback_lat > 0) {
289       std::string loopback_name = link_id + "_loopback";
290       XBT_DEBUG("<loopback\tid=\"%s\"\tbw=\"%f\"/>", loopback_name.c_str(), cluster->loopback_bw);
291
292       auto* loopback = zone->create_link(loopback_name, std::vector<double>{cluster->loopback_bw})
293                            ->set_sharing_policy(simgrid::s4u::Link::SharingPolicy::FATPIPE)
294                            ->set_latency(cluster->loopback_lat)
295                            ->seal();
296
297       zone->add_route(host->get_netpoint(), host->get_netpoint(), nullptr, nullptr,
298                       std::vector<simgrid::s4u::Link*>{loopback});
299     }
300
301     // add a limiter link (shared link to account for maximal bandwidth of the node)
302     simgrid::s4u::Link* limiter = nullptr;
303     if (cluster->limiter_link > 0) {
304       std::string limiter_name = std::string(link_id) + "_limiter";
305       XBT_DEBUG("<limiter\tid=\"%s\"\tbw=\"%f\"/>", limiter_name.c_str(), cluster->limiter_link);
306
307       limiter = zone->create_link(limiter_name, std::vector<double>{cluster->limiter_link})->seal();
308     }
309
310     // create link
311     simgrid::s4u::Link* link_up;
312     simgrid::s4u::Link* link_down;
313     if (cluster->sharing_policy == simgrid::s4u::Link::SharingPolicy::SPLITDUPLEX) {
314       link_up = zone->create_link(link_id + "_UP", std::vector<double>{cluster->bw})->set_latency(cluster->lat)->seal();
315       link_down =
316           zone->create_link(link_id + "_DOWN", std::vector<double>{cluster->bw})->set_latency(cluster->lat)->seal();
317     } else {
318       link_up   = zone->create_link(link_id, std::vector<double>{cluster->bw})->set_latency(cluster->lat)->seal();
319       link_down = link_up;
320     }
321
322     /* adding routes */
323     std::vector<simgrid::s4u::Link*> links_up{limiter, link_up, backbone};
324     std::vector<simgrid::s4u::Link*> links_down{backbone, link_down, limiter};
325     links_up.erase(std::remove(links_up.begin(), links_up.end(), nullptr), links_up.end());
326     links_down.erase(std::remove(links_down.begin(), links_down.end(), nullptr), links_down.end());
327
328     zone->add_route(host->get_netpoint(), nullptr, nullptr, nullptr, links_up, false);
329     zone->add_route(nullptr, host->get_netpoint(), nullptr, nullptr, links_down, false);
330   }
331
332   // Add a router.
333   XBT_DEBUG(" ");
334   XBT_DEBUG("<router id=\"%s\"/>", cluster->router_id.c_str());
335   if (cluster->router_id.empty())
336     cluster->router_id = std::string(cluster->prefix) + cluster->id + "_router" + cluster->suffix;
337   auto* router = zone->create_router(cluster->router_id);
338   zone->add_route(router, nullptr, nullptr, nullptr, {});
339
340   zone->seal();
341   simgrid::kernel::routing::on_cluster_creation(*cluster);
342 }
343
344 void sg_platf_new_tag_cluster(simgrid::kernel::routing::ClusterCreationArgs* cluster)
345 {
346   switch (cluster->topology) {
347     case simgrid::kernel::routing::ClusterTopology::TORUS:
348     case simgrid::kernel::routing::ClusterTopology::DRAGONFLY:
349     case simgrid::kernel::routing::ClusterTopology::FAT_TREE:
350       sg_platf_new_cluster_hierarchical(cluster);
351       break;
352     default:
353       sg_platf_new_cluster_flat(cluster);
354       break;
355   }
356 }
357 /*************************************************************************************************/
358 /** @brief Set the links for internal node inside a Cluster(Star) */
359 static void sg_platf_cluster_set_hostlink(simgrid::kernel::routing::StarZone* zone,
360                                           simgrid::kernel::routing::NetPoint* netpoint,
361                                           const simgrid::s4u::Link* link_up, const simgrid::s4u::Link* link_down,
362                                           simgrid::kernel::resource::LinkImpl* backbone)
363 {
364   XBT_DEBUG("Push Host_link for host '%s' to position %u", netpoint->get_cname(), netpoint->id());
365   if (backbone) {
366     zone->add_route(netpoint, nullptr, nullptr, nullptr, {link_up->get_impl(), backbone}, false);
367     zone->add_route(nullptr, netpoint, nullptr, nullptr, {backbone, link_down->get_impl()}, false);
368   } else {
369     zone->add_route(netpoint, nullptr, nullptr, nullptr, {link_up->get_impl()}, false);
370     zone->add_route(nullptr, netpoint, nullptr, nullptr, {link_down->get_impl()}, false);
371   }
372 }
373
374 /** @brief Add a link connecting a host to the rest of its StarZone */
375 static void sg_platf_build_hostlink(simgrid::kernel::routing::StarZone* zone,
376                                     const simgrid::kernel::routing::HostLinkCreationArgs* hostlink,
377                                     simgrid::kernel::resource::LinkImpl* backbone)
378 {
379   simgrid::kernel::routing::NetPoint* netpoint = simgrid::s4u::Host::by_name(hostlink->id)->get_netpoint();
380   xbt_assert(netpoint, "Host '%s' not found!", hostlink->id.c_str());
381
382   const simgrid::s4u::Link* linkUp   = simgrid::s4u::Link::by_name_or_null(hostlink->link_up);
383   const simgrid::s4u::Link* linkDown = simgrid::s4u::Link::by_name_or_null(hostlink->link_down);
384
385   xbt_assert(linkUp, "Link '%s' not found!", hostlink->link_up.c_str());
386   xbt_assert(linkDown, "Link '%s' not found!", hostlink->link_down.c_str());
387   sg_platf_cluster_set_hostlink(zone, netpoint, linkUp, linkDown, backbone);
388 }
389
390 /** @brief Create a cabinet (set of hosts) inside a Cluster(StarZone) */
391 static void sg_platf_build_cabinet(simgrid::kernel::routing::StarZone* zone,
392                                    const simgrid::kernel::routing::CabinetCreationArgs* args,
393                                    simgrid::kernel::resource::LinkImpl* backbone)
394 {
395   for (int const& radical : args->radicals) {
396     std::string id   = args->prefix + std::to_string(radical) + args->suffix;
397     auto const* host = zone->create_host(id, std::vector<double>{args->speed})->seal();
398
399     const auto* link_up =
400         zone->create_link("link_" + id + "_UP", std::vector<double>{args->bw})->set_latency(args->lat)->seal();
401     const auto* link_down =
402         zone->create_link("link_" + id + "_DOWN", std::vector<double>{args->bw})->set_latency(args->lat)->seal();
403
404     sg_platf_cluster_set_hostlink(zone, host->get_netpoint(), link_up, link_down, backbone);
405   }
406 }
407
408 static void sg_platf_zone_cluster_populate(const simgrid::kernel::routing::ClusterZoneCreationArgs* cluster)
409 {
410   auto* zone = dynamic_cast<simgrid::kernel::routing::StarZone*>(current_routing);
411   xbt_assert(zone, "Host_links are only valid for Cluster(Star)");
412
413   simgrid::kernel::resource::LinkImpl* backbone = nullptr;
414   /* create backbone */
415   if (cluster->backbone) {
416     sg_platf_new_link(cluster->backbone.get());
417     backbone = simgrid::s4u::Link::by_name(cluster->backbone->id)->get_impl();
418   }
419
420   /* create host_links for hosts */
421   for (auto const& hostlink : cluster->host_links) {
422     sg_platf_build_hostlink(zone, &hostlink, backbone);
423   }
424
425   /* create cabinets */
426   for (auto const& cabinet : cluster->cabinets) {
427     sg_platf_build_cabinet(zone, &cabinet, backbone);
428   }
429 }
430
431 void routing_cluster_add_backbone(std::unique_ptr<simgrid::kernel::routing::LinkCreationArgs> link)
432 {
433   zone_cluster.backbone = std::move(link);
434 }
435
436 void sg_platf_new_cabinet(const simgrid::kernel::routing::CabinetCreationArgs* args)
437 {
438   xbt_assert(args, "Invalid nullptr argument");
439   zone_cluster.cabinets.emplace_back(*args);
440 }
441
442 /*************************************************************************************************/
443 void sg_platf_new_route(simgrid::kernel::routing::RouteCreationArgs* route)
444 {
445   current_routing->add_route(route->src, route->dst, route->gw_src, route->gw_dst, route->link_list,
446                              route->symmetrical);
447 }
448
449 void sg_platf_new_bypassRoute(simgrid::kernel::routing::RouteCreationArgs* bypassRoute)
450 {
451   current_routing->add_bypass_route(bypassRoute->src, bypassRoute->dst, bypassRoute->gw_src, bypassRoute->gw_dst,
452                                     bypassRoute->link_list, bypassRoute->symmetrical);
453 }
454
455 void sg_platf_new_actor(simgrid::kernel::routing::ActorCreationArgs* actor)
456 {
457   sg_host_t host = sg_host_by_name(actor->host);
458   if (not host) {
459     // The requested host does not exist. Do a nice message to the user
460     std::string msg = std::string("Cannot create actor '") + actor->function + "': host '" + actor->host +
461                       "' does not exist\nExisting hosts: '";
462
463     std::vector<simgrid::s4u::Host*> list = simgrid::s4u::Engine::get_instance()->get_all_hosts();
464
465     for (auto const& some_host : list) {
466       msg += some_host->get_name();
467       msg += "', '";
468       if (msg.length() > 1024) {
469         msg.pop_back(); // remove trailing quote
470         msg += "...(list truncated)......";
471         break;
472       }
473     }
474     xbt_die("%s", msg.c_str());
475   }
476   const simgrid::kernel::actor::ActorCodeFactory& factory =
477       simgrid::kernel::EngineImpl::get_instance()->get_function(actor->function);
478   xbt_assert(factory, "Error while creating an actor from the XML file: Function '%s' not registered", actor->function);
479
480   double start_time = actor->start_time;
481   double kill_time  = actor->kill_time;
482   bool auto_restart = actor->restart_on_failure;
483
484   std::string actor_name                 = actor->args[0];
485   simgrid::kernel::actor::ActorCode code = factory(std::move(actor->args));
486
487   auto* arg = new simgrid::kernel::actor::ProcessArg(actor_name, code, nullptr, host, kill_time, actor->properties,
488                                                      auto_restart);
489
490   host->get_impl()->add_actor_at_boot(arg);
491
492   if (start_time > simgrid::s4u::Engine::get_clock()) {
493     arg = new simgrid::kernel::actor::ProcessArg(actor_name, code, nullptr, host, kill_time, actor->properties,
494                                                  auto_restart);
495
496     XBT_DEBUG("Process %s@%s will be started at time %f", arg->name.c_str(), arg->host->get_cname(), start_time);
497     simgrid::kernel::timer::Timer::set(start_time, [arg, auto_restart]() {
498       simgrid::kernel::actor::ActorImplPtr new_actor =
499           simgrid::kernel::actor::ActorImpl::create(arg->name.c_str(), arg->code, arg->data, arg->host, nullptr);
500       new_actor->set_properties(arg->properties);
501       if (arg->kill_time >= 0)
502         new_actor->set_kill_time(arg->kill_time);
503       if (auto_restart)
504         new_actor->set_auto_restart(auto_restart);
505       delete arg;
506     });
507   } else { // start_time <= simgrid::s4u::Engine::get_clock()
508     XBT_DEBUG("Starting Process %s(%s) right now", arg->name.c_str(), host->get_cname());
509
510     try {
511       simgrid::kernel::actor::ActorImplPtr new_actor = nullptr;
512       new_actor = simgrid::kernel::actor::ActorImpl::create(arg->name.c_str(), code, nullptr, host, nullptr);
513       new_actor->set_properties(arg->properties);
514       /* The actor creation will fail if the host is currently dead, but that's fine */
515       if (arg->kill_time >= 0)
516         new_actor->set_kill_time(arg->kill_time);
517       if (auto_restart)
518         new_actor->set_auto_restart(auto_restart);
519     } catch (simgrid::HostFailureException const&) {
520       XBT_WARN("Deployment includes some initially turned off Hosts ... nevermind.");
521     }
522   }
523 }
524
525 /**
526  * @brief Auxiliary function to build the object NetZoneImpl
527  *
528  * Builds the objects, setting its father properties and root netzone if needed
529  * @param zone the parameters defining the Zone to build.
530  * @return Pointer to recently created netzone
531  */
532 static simgrid::kernel::routing::NetZoneImpl*
533 sg_platf_create_zone(const simgrid::kernel::routing::ZoneCreationArgs* zone)
534 {
535   /* search the routing model */
536   simgrid::s4u::NetZone* new_zone = nullptr;
537
538   if (strcasecmp(zone->routing.c_str(), "Cluster") == 0) {
539     new_zone = simgrid::s4u::create_star_zone(zone->id);
540   } else if (strcasecmp(zone->routing.c_str(), "Dijkstra") == 0) {
541     new_zone = simgrid::s4u::create_dijkstra_zone(zone->id, false);
542   } else if (strcasecmp(zone->routing.c_str(), "DijkstraCache") == 0) {
543     new_zone = simgrid::s4u::create_dijkstra_zone(zone->id, true);
544   } else if (strcasecmp(zone->routing.c_str(), "Floyd") == 0) {
545     new_zone = simgrid::s4u::create_floyd_zone(zone->id);
546   } else if (strcasecmp(zone->routing.c_str(), "Full") == 0) {
547     new_zone = simgrid::s4u::create_full_zone(zone->id);
548   } else if (strcasecmp(zone->routing.c_str(), "None") == 0) {
549     new_zone = simgrid::s4u::create_empty_zone(zone->id);
550   } else if (strcasecmp(zone->routing.c_str(), "Vivaldi") == 0) {
551     new_zone = simgrid::s4u::create_vivaldi_zone(zone->id);
552   } else if (strcasecmp(zone->routing.c_str(), "Wifi") == 0) {
553     new_zone = simgrid::s4u::create_wifi_zone(zone->id);
554   } else {
555     xbt_die("Not a valid model!");
556   }
557
558   simgrid::kernel::routing::NetZoneImpl* new_zone_impl = new_zone->get_impl();
559   new_zone_impl->set_parent(current_routing);
560
561   return new_zone_impl;
562 }
563
564 /**
565  * @brief Add a Zone to the platform
566  *
567  * Add a new autonomous system to the platform. Any elements (such as host, router or sub-Zone) added after this call
568  * and before the corresponding call to sg_platf_new_Zone_seal() will be added to this Zone.
569  *
570  * Once this function was called, the configuration concerning the used models cannot be changed anymore.
571  *
572  * @param zone the parameters defining the Zone to build.
573  */
574 simgrid::kernel::routing::NetZoneImpl* sg_platf_new_Zone_begin(const simgrid::kernel::routing::ZoneCreationArgs* zone)
575 {
576   zone_cluster.routing = zone->routing;
577   current_routing      = sg_platf_create_zone(zone);
578
579   return current_routing;
580 }
581
582 void sg_platf_new_Zone_set_properties(const std::unordered_map<std::string, std::string>& props)
583 {
584   xbt_assert(current_routing, "Cannot set properties of the current Zone: none under construction");
585
586   current_routing->set_properties(props);
587 }
588
589 /**
590  * @brief Specify that the description of the current Zone is finished
591  *
592  * Once you've declared all the content of your Zone, you have to seal
593  * it with this call. Your Zone is not usable until you call this function.
594  */
595 void sg_platf_new_Zone_seal()
596 {
597   xbt_assert(current_routing, "Cannot seal the current Zone: none under construction");
598   if (strcasecmp(zone_cluster.routing.c_str(), "Cluster") == 0) {
599     sg_platf_zone_cluster_populate(&zone_cluster);
600     zone_cluster.routing = "";
601     zone_cluster.host_links.clear();
602     zone_cluster.cabinets.clear();
603     zone_cluster.backbone.reset();
604   }
605   current_routing->seal();
606   current_routing = current_routing->get_parent();
607 }
608
609 /** @brief Add a link connecting a host to the rest of its Zone (which must be cluster or vivaldi) */
610 void sg_platf_new_hostlink(const simgrid::kernel::routing::HostLinkCreationArgs* hostlink)
611 {
612   xbt_assert(hostlink, "Invalid nullptr parameter");
613   zone_cluster.host_links.emplace_back(*hostlink);
614 }
615
616 void sg_platf_new_trace(simgrid::kernel::routing::ProfileCreationArgs* args)
617 {
618   simgrid::kernel::profile::Profile* profile;
619   if (not args->file.empty()) {
620     profile = simgrid::kernel::profile::Profile::from_file(args->file);
621   } else {
622     xbt_assert(not args->pc_data.empty(), "Trace '%s' must have either a content, or point to a file on disk.",
623                args->id.c_str());
624     profile = simgrid::kernel::profile::Profile::from_string(args->id, args->pc_data, args->periodicity);
625   }
626   traces_set_list.insert({args->id, profile});
627 }