Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
continue to mess with platform creation
[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/ClusterZone.hpp"
8 #include "simgrid/kernel/routing/DijkstraZone.hpp"
9 #include "simgrid/kernel/routing/DragonflyZone.hpp"
10 #include "simgrid/kernel/routing/EmptyZone.hpp"
11 #include "simgrid/kernel/routing/FatTreeZone.hpp"
12 #include "simgrid/kernel/routing/FloydZone.hpp"
13 #include "simgrid/kernel/routing/FullZone.hpp"
14 #include "simgrid/kernel/routing/NetPoint.hpp"
15 #include "simgrid/kernel/routing/NetZoneImpl.hpp"
16 #include "simgrid/kernel/routing/TorusZone.hpp"
17 #include "simgrid/kernel/routing/VivaldiZone.hpp"
18 #include "simgrid/kernel/routing/WifiZone.hpp"
19 #include "simgrid/s4u/Engine.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 <string>
30
31 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(surf_parse);
32
33 namespace simgrid {
34 namespace kernel {
35 namespace routing {
36 xbt::signal<void(ClusterCreationArgs const&)> on_cluster_creation;
37 } // namespace routing
38 } // namespace kernel
39 } // namespace simgrid
40
41 /** The current NetZone in the parsing */
42 static simgrid::kernel::routing::NetZoneImpl* current_routing = nullptr;
43 static simgrid::kernel::routing::NetZoneImpl* routing_get_current()
44 {
45   return current_routing;
46 }
47
48 /** Module management function: creates all internal data structures */
49 void sg_platf_init()
50 {
51   // Do nothing: just for symmetry of user code
52 }
53
54 /** Module management function: frees all internal data structures */
55 void sg_platf_exit()
56 {
57   simgrid::kernel::routing::on_cluster_creation.disconnect_slots();
58   simgrid::s4u::Engine::on_platform_created.disconnect_slots();
59
60   surf_parse_lex_destroy();
61 }
62
63 /** @brief Add a host to the current NetZone */
64 void sg_platf_new_host(const simgrid::kernel::routing::HostCreationArgs* args)
65 {
66   simgrid::s4u::Host* host = routing_get_current()->create_host(args->id, args->speed_per_pstate);
67
68   if (not args->coord.empty())
69     new simgrid::kernel::routing::vivaldi::Coords(host->get_netpoint(), args->coord);
70
71   if (args->properties) {
72     host->set_properties(*args->properties);
73     delete args->properties;
74   }
75   host->get_impl()->set_disks(args->disks);
76
77   host->pimpl_cpu->set_core_count(args->core_amount)
78       ->set_state_profile(args->state_trace)
79       ->set_speed_profile(args->speed_trace);
80
81   host->seal();
82
83   /* When energy plugin is activated, changing the pstate requires to already have the HostEnergy extension whose
84    * allocation is triggered by the on_creation signal. Then set_pstate must be called after the signal emition */
85   if (args->pstate != 0)
86     host->set_pstate(args->pstate);
87 }
88
89 /** @brief Add a "router" to the network element list */
90 simgrid::kernel::routing::NetPoint* sg_platf_new_router(const std::string& name, const char* coords)
91 {
92   xbt_assert(nullptr == simgrid::s4u::Engine::get_instance()->netpoint_by_name_or_null(name),
93              "Refusing to create a router named '%s': this name already describes a node.", name.c_str());
94
95   auto* netpoint = new simgrid::kernel::routing::NetPoint(name, simgrid::kernel::routing::NetPoint::Type::Router);
96   netpoint->set_englobing_zone(current_routing);
97   XBT_DEBUG("Router '%s' has the id %u", netpoint->get_cname(), netpoint->id());
98
99   if (coords && strcmp(coords, ""))
100     new simgrid::kernel::routing::vivaldi::Coords(netpoint, coords);
101
102   return netpoint;
103 }
104
105 static void sg_platf_new_link(const simgrid::kernel::routing::LinkCreationArgs* args, const std::string& link_name)
106 {
107   simgrid::s4u::Link* link = routing_get_current()->create_link(link_name, args->bandwidths);
108   if (args->properties)
109     link->set_properties(*args->properties);
110
111   link->get_impl() // this call to get_impl saves some simcalls but can be removed
112       ->set_sharing_policy(args->policy)
113       ->set_state_profile(args->state_trace)
114       ->set_latency_profile(args->latency_trace)
115       ->set_bandwidth_profile(args->bandwidth_trace)
116       ->set_latency(args->latency)
117       ->seal();
118 }
119
120 void sg_platf_new_link(const simgrid::kernel::routing::LinkCreationArgs* link)
121 {
122   if (link->policy == simgrid::s4u::Link::SharingPolicy::SPLITDUPLEX) {
123     sg_platf_new_link(link, link->id + "_UP");
124     sg_platf_new_link(link, link->id + "_DOWN");
125   } else {
126     sg_platf_new_link(link, link->id);
127   }
128   delete link->properties;
129 }
130
131 void sg_platf_new_cluster(simgrid::kernel::routing::ClusterCreationArgs* cluster)
132 {
133   using simgrid::kernel::routing::ClusterZone;
134   using simgrid::kernel::routing::DragonflyZone;
135   using simgrid::kernel::routing::FatTreeZone;
136   using simgrid::kernel::routing::TorusZone;
137
138   int rankId = 0;
139
140   // What an inventive way of initializing the NetZone that I have as ancestor :-(
141   simgrid::kernel::routing::ZoneCreationArgs zone;
142   zone.id = cluster->id;
143   switch (cluster->topology) {
144     case simgrid::kernel::routing::ClusterTopology::TORUS:
145       zone.routing = "ClusterTorus";
146       break;
147     case simgrid::kernel::routing::ClusterTopology::DRAGONFLY:
148       zone.routing = "ClusterDragonfly";
149       break;
150     case simgrid::kernel::routing::ClusterTopology::FAT_TREE:
151       zone.routing = "ClusterFatTree";
152       break;
153     default:
154       zone.routing = "Cluster";
155       break;
156   }
157   sg_platf_new_Zone_begin(&zone);
158   auto* current_zone = static_cast<ClusterZone*>(routing_get_current());
159   current_zone->parse_specific_arguments(cluster);
160   if (cluster->properties != nullptr)
161     for (auto const& elm : *cluster->properties)
162       current_zone->get_iface()->set_property(elm.first, elm.second);
163
164   if (cluster->loopback_bw > 0 || cluster->loopback_lat > 0) {
165     current_zone->set_loopback();
166   }
167
168   if (cluster->limiter_link > 0) {
169     current_zone->set_limiter();
170   }
171
172   for (int const& i : *cluster->radicals) {
173     std::string host_id = std::string(cluster->prefix) + std::to_string(i) + cluster->suffix;
174
175     XBT_DEBUG("<host\tid=\"%s\"\tspeed=\"%f\">", host_id.c_str(), cluster->speeds.front());
176     simgrid::s4u::Host* host =
177         current_zone->create_host(host_id, cluster->speeds)->set_core_count(cluster->core_amount);
178
179     if ((cluster->properties != nullptr) && (not cluster->properties->empty()))
180       host->set_properties(*cluster->properties);
181     host->seal();
182
183     XBT_DEBUG("</host>");
184
185     std::string link_id = std::string(cluster->id) + "_link_" + std::to_string(i);
186     XBT_DEBUG("<link\tid=\"%s\"\tbw=\"%f\"\tlat=\"%f\"/>", link_id.c_str(), cluster->bw, cluster->lat);
187
188     // All links are saved in a matrix;
189     // every row describes a single node; every node may have multiple links.
190     // the first column may store a link from x to x if p_has_loopback is set
191     // the second column may store a limiter link if p_has_limiter is set
192     // other columns are to store one or more link for the node
193
194     // add a loopback link
195     if (cluster->loopback_bw > 0 || cluster->loopback_lat > 0) {
196       std::string loopback_name = link_id + "_loopback";
197       XBT_DEBUG("<loopback\tid=\"%s\"\tbw=\"%f\"/>", loopback_name.c_str(), cluster->loopback_bw);
198
199       simgrid::s4u::Link* loopback = current_zone->create_link(loopback_name, std::vector<double>{cluster->loopback_bw})
200                                          ->set_sharing_policy(simgrid::s4u::Link::SharingPolicy::FATPIPE)
201                                          ->set_latency(cluster->loopback_lat);
202       loopback->seal();
203
204       current_zone->add_private_link_at(current_zone->node_pos(rankId), {loopback->get_impl(), loopback->get_impl()});
205     }
206
207     // add a limiter link (shared link to account for maximal bandwidth of the node)
208     if (cluster->limiter_link > 0) {
209       std::string limiter_name = std::string(link_id) + "_limiter";
210       XBT_DEBUG("<limiter\tid=\"%s\"\tbw=\"%f\"/>", limiter_name.c_str(), cluster->limiter_link);
211
212       simgrid::s4u::Link* limiter = current_zone->create_link(limiter_name, std::vector<double>{cluster->limiter_link});
213       limiter->seal();
214
215       current_zone->add_private_link_at(current_zone->node_pos_with_loopback(rankId),
216                                         {limiter->get_impl(), limiter->get_impl()});
217     }
218
219     // call the cluster function that adds the others links
220     if (cluster->topology == simgrid::kernel::routing::ClusterTopology::FAT_TREE) {
221       static_cast<FatTreeZone*>(current_zone)->add_processing_node(i);
222     } else {
223       current_zone->create_links_for_node(cluster, i, rankId, current_zone->node_pos_with_loopback_limiter(rankId));
224     }
225     rankId++;
226   }
227   delete cluster->properties;
228
229   // Add a router.
230   XBT_DEBUG(" ");
231   XBT_DEBUG("<router id=\"%s\"/>", cluster->router_id.c_str());
232   if (cluster->router_id.empty())
233     cluster->router_id = std::string(cluster->prefix) + cluster->id + "_router" + cluster->suffix;
234   current_zone->set_router(sg_platf_new_router(cluster->router_id, nullptr));
235
236   // Make the backbone
237   if ((cluster->bb_bw > 0) || (cluster->bb_lat > 0)) {
238     std::string backbone_name = std::string(cluster->id) + "_backbone";
239     XBT_DEBUG("<link\tid=\"%s\" bw=\"%f\" lat=\"%f\"/>", backbone_name.c_str(), cluster->bb_bw, cluster->bb_lat);
240
241     simgrid::s4u::Link* backbone = current_zone->create_link(backbone_name, std::vector<double>{cluster->bb_bw})
242                                        ->set_sharing_policy(cluster->bb_sharing_policy)
243                                        ->set_latency(cluster->bb_lat);
244     backbone->seal();
245
246     routing_cluster_add_backbone(backbone->get_impl());
247   }
248
249   XBT_DEBUG("</zone>");
250   sg_platf_new_Zone_seal();
251
252   simgrid::kernel::routing::on_cluster_creation(*cluster);
253   delete cluster->radicals;
254 }
255
256 void routing_cluster_add_backbone(simgrid::kernel::resource::LinkImpl* bb)
257 {
258   auto* cluster = dynamic_cast<simgrid::kernel::routing::ClusterZone*>(current_routing);
259
260   xbt_assert(cluster, "Only hosts from Cluster can get a backbone.");
261   xbt_assert(not cluster->has_backbone(), "Cluster %s already has a backbone link!", cluster->get_cname());
262
263   cluster->set_backbone(bb);
264   XBT_DEBUG("Add a backbone to zone '%s'", current_routing->get_cname());
265 }
266
267 void sg_platf_new_cabinet(const simgrid::kernel::routing::CabinetCreationArgs* cabinet)
268 {
269   for (int const& radical : *cabinet->radicals) {
270     std::string hostname = cabinet->prefix + std::to_string(radical) + cabinet->suffix;
271     simgrid::kernel::routing::HostCreationArgs host;
272     host.pstate      = 0;
273     host.core_amount = 1;
274     host.id          = hostname;
275     host.speed_per_pstate.push_back(cabinet->speed);
276     sg_platf_new_host(&host);
277
278     simgrid::kernel::routing::LinkCreationArgs link;
279     link.policy  = simgrid::s4u::Link::SharingPolicy::SPLITDUPLEX;
280     link.latency = cabinet->lat;
281     link.bandwidths.push_back(cabinet->bw);
282     link.id = "link_" + hostname;
283     sg_platf_new_link(&link);
284
285     simgrid::kernel::routing::HostLinkCreationArgs host_link;
286     host_link.id        = hostname;
287     host_link.link_up   = std::string("link_") + hostname + "_UP";
288     host_link.link_down = std::string("link_") + hostname + "_DOWN";
289     sg_platf_new_hostlink(&host_link);
290   }
291   delete cabinet->radicals;
292 }
293
294 simgrid::kernel::resource::DiskImpl* sg_platf_new_disk(const simgrid::kernel::routing::DiskCreationArgs* disk)
295 {
296   simgrid::kernel::resource::DiskImpl* pimpl =
297       routing_get_current()->create_disk(disk->id, disk->read_bw, disk->write_bw)->get_impl();
298
299   if (disk->properties) {
300     pimpl->set_properties(*disk->properties);
301     delete disk->properties;
302   }
303
304   pimpl->seal();
305   simgrid::s4u::Disk::on_creation(*pimpl->get_iface());
306   return pimpl;
307 }
308
309 void sg_platf_new_route(simgrid::kernel::routing::RouteCreationArgs* route)
310 {
311   routing_get_current()->add_route(route->src, route->dst, route->gw_src, route->gw_dst, route->link_list,
312                                    route->symmetrical);
313 }
314
315 void sg_platf_new_bypassRoute(simgrid::kernel::routing::RouteCreationArgs* bypassRoute)
316 {
317   routing_get_current()->add_bypass_route(bypassRoute->src, bypassRoute->dst, bypassRoute->gw_src, bypassRoute->gw_dst,
318                                           bypassRoute->link_list, bypassRoute->symmetrical);
319 }
320
321 void sg_platf_new_actor(simgrid::kernel::routing::ActorCreationArgs* actor)
322 {
323   sg_host_t host = sg_host_by_name(actor->host);
324   if (not host) {
325     // The requested host does not exist. Do a nice message to the user
326     std::string msg = std::string("Cannot create actor '") + actor->function + "': host '" + actor->host +
327                       "' does not exist\nExisting hosts: '";
328
329     std::vector<simgrid::s4u::Host*> list = simgrid::s4u::Engine::get_instance()->get_all_hosts();
330
331     for (auto const& some_host : list) {
332       msg += some_host->get_name();
333       msg += "', '";
334       if (msg.length() > 1024) {
335         msg.pop_back(); // remove trailing quote
336         msg += "...(list truncated)......";
337         break;
338       }
339     }
340     xbt_die("%s", msg.c_str());
341   }
342   const simgrid::kernel::actor::ActorCodeFactory& factory =
343       simgrid::kernel::EngineImpl::get_instance()->get_function(actor->function);
344   xbt_assert(factory, "Error while creating an actor from the XML file: Function '%s' not registered", actor->function);
345
346   double start_time = actor->start_time;
347   double kill_time  = actor->kill_time;
348   bool auto_restart = actor->restart_on_failure;
349
350   std::string actor_name                 = actor->args[0];
351   simgrid::kernel::actor::ActorCode code = factory(std::move(actor->args));
352   std::shared_ptr<std::unordered_map<std::string, std::string>> properties(actor->properties);
353
354   auto* arg =
355       new simgrid::kernel::actor::ProcessArg(actor_name, code, nullptr, host, kill_time, properties, auto_restart);
356
357   host->get_impl()->add_actor_at_boot(arg);
358
359   if (start_time > SIMIX_get_clock()) {
360     arg = new simgrid::kernel::actor::ProcessArg(actor_name, code, nullptr, host, kill_time, properties, auto_restart);
361
362     XBT_DEBUG("Process %s@%s will be started at time %f", arg->name.c_str(), arg->host->get_cname(), start_time);
363     simgrid::simix::Timer::set(start_time, [arg, auto_restart]() {
364       simgrid::kernel::actor::ActorImplPtr new_actor = simgrid::kernel::actor::ActorImpl::create(
365           arg->name.c_str(), arg->code, arg->data, arg->host, arg->properties.get(), nullptr);
366       if (arg->kill_time >= 0)
367         new_actor->set_kill_time(arg->kill_time);
368       if (auto_restart)
369         new_actor->set_auto_restart(auto_restart);
370       delete arg;
371     });
372   } else { // start_time <= SIMIX_get_clock()
373     XBT_DEBUG("Starting Process %s(%s) right now", arg->name.c_str(), host->get_cname());
374
375     try {
376       simgrid::kernel::actor::ActorImplPtr new_actor = nullptr;
377       new_actor = simgrid::kernel::actor::ActorImpl::create(arg->name.c_str(), code, nullptr, host,
378                                                             arg->properties.get(), nullptr);
379       /* The actor creation will fail if the host is currently dead, but that's fine */
380       if (arg->kill_time >= 0)
381         new_actor->set_kill_time(arg->kill_time);
382       if (auto_restart)
383         new_actor->set_auto_restart(auto_restart);
384     } catch (simgrid::HostFailureException const&) {
385       XBT_WARN("Deployment includes some initially turned off Hosts ... nevermind.");
386     }
387   }
388 }
389
390 void sg_platf_new_peer(const simgrid::kernel::routing::PeerCreationArgs* peer)
391 {
392   auto* zone = dynamic_cast<simgrid::kernel::routing::VivaldiZone*>(current_routing);
393   xbt_assert(zone, "<peer> tag can only be used in Vivaldi netzones.");
394
395   simgrid::s4u::Host* host = zone->create_host(peer->id, std::vector<double>{peer->speed})
396                                  ->set_state_profile(peer->state_trace)
397                                  ->set_speed_profile(peer->speed_trace);
398
399   zone->set_peer_link(host->get_netpoint(), peer->bw_in, peer->bw_out, peer->coord);
400
401   host->seal();
402 }
403
404 /**
405  * @brief Auxiliary function to build the object NetZoneImpl
406  *
407  * Builds the objects, setting its father properties and root netzone if needed
408  * @param zone the parameters defining the Zone to build.
409  * @return Pointer to recently created netzone
410  */
411 static simgrid::kernel::routing::NetZoneImpl*
412 sg_platf_create_zone(const simgrid::kernel::routing::ZoneCreationArgs* zone)
413 {
414   /* search the routing model */
415   simgrid::kernel::routing::NetZoneImpl* new_zone = nullptr;
416
417   if (strcasecmp(zone->routing.c_str(), "Cluster") == 0) {
418     new_zone = new simgrid::kernel::routing::ClusterZone(zone->id);
419   } else if (strcasecmp(zone->routing.c_str(), "ClusterDragonfly") == 0) {
420     new_zone = new simgrid::kernel::routing::DragonflyZone(zone->id);
421   } else if (strcasecmp(zone->routing.c_str(), "ClusterTorus") == 0) {
422     new_zone = new simgrid::kernel::routing::TorusZone(zone->id);
423   } else if (strcasecmp(zone->routing.c_str(), "ClusterFatTree") == 0) {
424     new_zone = new simgrid::kernel::routing::FatTreeZone(zone->id);
425   } else if (strcasecmp(zone->routing.c_str(), "Dijkstra") == 0) {
426     new_zone = new simgrid::kernel::routing::DijkstraZone(zone->id, false);
427   } else if (strcasecmp(zone->routing.c_str(), "DijkstraCache") == 0) {
428     new_zone = new simgrid::kernel::routing::DijkstraZone(zone->id, true);
429   } else if (strcasecmp(zone->routing.c_str(), "Floyd") == 0) {
430     new_zone = new simgrid::kernel::routing::FloydZone(zone->id);
431   } else if (strcasecmp(zone->routing.c_str(), "Full") == 0) {
432     new_zone = new simgrid::kernel::routing::FullZone(zone->id);
433   } else if (strcasecmp(zone->routing.c_str(), "None") == 0) {
434     new_zone = new simgrid::kernel::routing::EmptyZone(zone->id);
435   } else if (strcasecmp(zone->routing.c_str(), "Vivaldi") == 0) {
436     new_zone = new simgrid::kernel::routing::VivaldiZone(zone->id);
437   } else if (strcasecmp(zone->routing.c_str(), "Wifi") == 0) {
438     new_zone = new simgrid::kernel::routing::WifiZone(zone->id);
439   } else {
440     xbt_die("Not a valid model!");
441   }
442   new_zone->set_parent(current_routing);
443
444   return new_zone;
445 }
446
447 /**
448  * @brief Add a Zone to the platform
449  *
450  * Add a new autonomous system to the platform. Any elements (such as host, router or sub-Zone) added after this call
451  * and before the corresponding call to sg_platf_new_Zone_seal() will be added to this Zone.
452  *
453  * Once this function was called, the configuration concerning the used models cannot be changed anymore.
454  *
455  * @param zone the parameters defining the Zone to build.
456  */
457 simgrid::kernel::routing::NetZoneImpl* sg_platf_new_Zone_begin(const simgrid::kernel::routing::ZoneCreationArgs* zone)
458 {
459   /* First create the zone.
460    * This order is important to assure that root netzone is set when models are setting
461    * the default mode for each resource (CPU, network, etc)
462    */
463   auto* new_zone = sg_platf_create_zone(zone);
464
465   _sg_cfg_init_status = 2; /* HACK: direct access to the global controlling the level of configuration to prevent
466                             * any further config now that we created some real content */
467
468   /* set the new current component of the tree */
469   current_routing = new_zone;
470   simgrid::s4u::NetZone::on_creation(*new_zone->get_iface()); // notify the signal
471
472   return new_zone;
473 }
474
475 void sg_platf_new_Zone_set_properties(const std::unordered_map<std::string, std::string>* props)
476 {
477   xbt_assert(current_routing, "Cannot set properties of the current Zone: none under construction");
478
479   if (props)
480     current_routing->set_properties(*props);
481 }
482
483 /**
484  * @brief Specify that the description of the current Zone is finished
485  *
486  * Once you've declared all the content of your Zone, you have to seal
487  * it with this call. Your Zone is not usable until you call this function.
488  */
489 void sg_platf_new_Zone_seal()
490 {
491   xbt_assert(current_routing, "Cannot seal the current Zone: zone under construction");
492   current_routing->seal();
493   simgrid::s4u::NetZone::on_seal(*current_routing->get_iface());
494   current_routing = current_routing->get_parent();
495 }
496
497 /** @brief Add a link connecting a host to the rest of its Zone (which must be cluster or vivaldi) */
498 void sg_platf_new_hostlink(const simgrid::kernel::routing::HostLinkCreationArgs* hostlink)
499 {
500   const simgrid::kernel::routing::NetPoint* netpoint = simgrid::s4u::Host::by_name(hostlink->id)->get_netpoint();
501   xbt_assert(netpoint, "Host '%s' not found!", hostlink->id.c_str());
502   xbt_assert(dynamic_cast<simgrid::kernel::routing::ClusterZone*>(current_routing),
503              "Only hosts from Cluster and Vivaldi Zones can get a host_link.");
504
505   const simgrid::s4u::Link* linkUp   = simgrid::s4u::Link::by_name_or_null(hostlink->link_up);
506   const simgrid::s4u::Link* linkDown = simgrid::s4u::Link::by_name_or_null(hostlink->link_down);
507
508   xbt_assert(linkUp, "Link '%s' not found!", hostlink->link_up.c_str());
509   xbt_assert(linkDown, "Link '%s' not found!", hostlink->link_down.c_str());
510
511   auto* cluster_zone = static_cast<simgrid::kernel::routing::ClusterZone*>(current_routing);
512
513   if (cluster_zone->private_link_exists_at(netpoint->id()))
514     surf_parse_error(std::string("Host_link for '") + hostlink->id.c_str() + "' is already defined!");
515
516   XBT_DEBUG("Push Host_link for host '%s' to position %u", netpoint->get_cname(), netpoint->id());
517   cluster_zone->add_private_link_at(netpoint->id(), {linkUp->get_impl(), linkDown->get_impl()});
518 }
519
520 void sg_platf_new_trace(simgrid::kernel::routing::ProfileCreationArgs* profile)
521 {
522   simgrid::kernel::profile::Profile* mgr_profile;
523   if (not profile->file.empty()) {
524     mgr_profile = simgrid::kernel::profile::Profile::from_file(profile->file);
525   } else {
526     xbt_assert(not profile->pc_data.empty(), "Trace '%s' must have either a content, or point to a file on disk.",
527                profile->id.c_str());
528     mgr_profile = simgrid::kernel::profile::Profile::from_string(profile->id, profile->pc_data, profile->periodicity);
529   }
530   traces_set_list.insert({profile->id, mgr_profile});
531 }