Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
ea4fa5ae4480740ab11a4e343d42e652fb97df85
[simgrid.git] / src / surf / sg_platf.cpp
1 /* Copyright (c) 2006-2014. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include "xbt/misc.h"
8 #include "xbt/log.h"
9 #include "xbt/str.h"
10 #include "xbt/dict.h"
11 #include "xbt/RngStream.h"
12 #include <xbt/functional.hpp>
13 #include <xbt/signal.hpp>
14 #include "src/surf/HostImpl.hpp"
15 #include "surf/surf.h"
16
17 #include "src/simix/smx_private.h"
18
19 #include "src/include/simgrid/sg_config.h"
20 #include "src/surf/xml/platf_private.hpp"
21
22 #include "src/surf/cpu_interface.hpp"
23 #include "src/surf/network_interface.hpp"
24 #include "surf/surf_routing.h" // FIXME: brain dead public header
25
26 #include "src/kernel/routing/AsImpl.hpp"
27 #include "src/kernel/routing/AsCluster.hpp"
28 #include "src/kernel/routing/AsClusterTorus.hpp"
29 #include "src/kernel/routing/AsClusterFatTree.hpp"
30 #include "src/kernel/routing/AsClusterDragonfly.hpp"
31 #include "src/kernel/routing/AsDijkstra.hpp"
32 #include "src/kernel/routing/AsFloyd.hpp"
33 #include "src/kernel/routing/AsFull.hpp"
34 #include "src/kernel/routing/AsNone.hpp"
35 #include "src/kernel/routing/AsVivaldi.hpp"
36
37 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(surf_parse);
38
39 XBT_PRIVATE xbt_dynar_t mount_list = nullptr;
40
41 namespace simgrid {
42 namespace surf {
43
44 simgrid::xbt::signal<void(sg_platf_link_cbarg_t)> on_link;
45 simgrid::xbt::signal<void(sg_platf_cluster_cbarg_t)> on_cluster;
46 simgrid::xbt::signal<void(void)> on_postparse;
47
48 }
49 }
50
51 static int surf_parse_models_setup_already_called = 0;
52
53 /* Turn something like "1-4,6,9-11" into the vector {1,2,3,4,6,9,10,11} */
54 static std::vector<int> *explodesRadical(const char*radicals){
55   std::vector<int> *exploded = new std::vector<int>();
56   char *groups;
57   unsigned int iter;
58
59   //Make all hosts
60   xbt_dynar_t radical_elements = xbt_str_split(radicals, ",");
61   xbt_dynar_foreach(radical_elements, iter, groups) {
62
63     xbt_dynar_t radical_ends = xbt_str_split(groups, "-");
64     int start = surf_parse_get_int(xbt_dynar_get_as(radical_ends, 0, char *));
65     int end=0;
66
67     switch (xbt_dynar_length(radical_ends)) {
68     case 1:
69       end = start;
70       break;
71     case 2:
72       end = surf_parse_get_int(xbt_dynar_get_as(radical_ends, 1, char *));
73       break;
74     default:
75       surf_parse_error("Malformed radical: %s", groups);
76       break;
77     }
78
79     for (int i = start; i <= end; i++)
80       exploded->push_back( i );
81
82     xbt_dynar_free(&radical_ends);
83   }
84   xbt_dynar_free(&radical_elements);
85
86   return exploded;
87 }
88
89
90 /** The current AS in the parsing */
91 static simgrid::kernel::routing::AsImpl *current_routing = nullptr;
92 static simgrid::kernel::routing::AsImpl* routing_get_current()
93 {
94   return current_routing;
95 }
96
97 /** Module management function: creates all internal data structures */
98 void sg_platf_init() {
99 }
100
101 /** Module management function: frees all internal data structures */
102 void sg_platf_exit() {
103   simgrid::surf::on_link.disconnect_all_slots();
104   simgrid::surf::on_cluster.disconnect_all_slots();
105   simgrid::surf::on_postparse.disconnect_all_slots();
106
107   /* make sure that we will reinit the models while loading the platf once reinited */
108   surf_parse_models_setup_already_called = 0;
109   surf_parse_lex_destroy();
110 }
111
112 /** @brief Add an "host" to the current AS */
113 void sg_platf_new_host(sg_platf_host_cbarg_t host)
114 {
115   xbt_assert(sg_host_by_name(host->id) == nullptr, "Refusing to create a second host named '%s'.", host->id);
116
117   simgrid::kernel::routing::AsImpl* current_routing = routing_get_current();
118   if (current_routing->hierarchy_ == simgrid::kernel::routing::AsImpl::RoutingMode::unset)
119     current_routing->hierarchy_ = simgrid::kernel::routing::AsImpl::RoutingMode::base;
120
121   simgrid::kernel::routing::NetCard *netcard =
122       new simgrid::kernel::routing::NetCardImpl(host->id, simgrid::kernel::routing::NetCard::Type::Host, current_routing);
123
124   sg_host_t h = simgrid::s4u::Host::by_name_or_create(host->id);
125   h->pimpl_netcard = netcard;
126
127   if(mount_list) {
128     xbt_lib_set(storage_lib, host->id, ROUTING_STORAGE_HOST_LEVEL, (void *) mount_list);
129     mount_list = nullptr;
130   }
131
132   if (host->coord && strcmp(host->coord, "")) {
133     unsigned int cursor;
134     char*str;
135
136     xbt_assert(COORD_HOST_LEVEL, "To use host coordinates, please add --cfg=network/coordinates:yes to your command line");
137     /* Pre-parse the host coordinates -- FIXME factorize with routers by overloading the routing->parse_PU function*/
138     xbt_dynar_t ctn_str = xbt_str_split_str(host->coord, " ");
139     xbt_assert(xbt_dynar_length(ctn_str)==3,"Coordinates of %s must have 3 dimensions", host->id);
140
141     xbt_dynar_t ctn = xbt_dynar_new(sizeof(double),nullptr);
142     xbt_dynar_foreach(ctn_str,cursor, str) {
143       double val = xbt_str_parse_double(str, "Invalid coordinate: %s");
144       xbt_dynar_push(ctn,&val);
145     }
146     xbt_dynar_free(&ctn_str);
147     xbt_dynar_shrink(ctn, 0);
148     h->extension_set(COORD_HOST_LEVEL, (void *) ctn);
149   }
150
151   simgrid::surf::Cpu *cpu = surf_cpu_model_pm->createCpu( h, &host->speed_per_pstate, host->core_amount);
152   if (host->state_trace)
153     cpu->setStateTrace(host->state_trace);
154   if (host->speed_trace)
155     cpu->setSpeedTrace(host->speed_trace);
156   surf_host_model->createHost(host->id, netcard, cpu)->attach(h);
157
158   if (host->properties) {
159     xbt_dict_cursor_t cursor=nullptr;
160     char *key,*data;
161     xbt_dict_foreach(host->properties,cursor,key,data)
162       h->setProperty(key,data);
163     xbt_dict_free(&host->properties);
164   }
165
166   if (host->pstate != 0)
167     cpu->setPState(host->pstate);
168
169   simgrid::s4u::Host::onCreation(*h);
170
171   if (TRACE_is_enabled() && TRACE_needs_platform())
172     sg_instr_new_host(host);
173 }
174
175 /** @brief Add a "router" to the network element list */
176 void sg_platf_new_router(sg_platf_router_cbarg_t router)
177 {
178   using simgrid::kernel::routing::AsCluster;
179   simgrid::kernel::routing::AsImpl* current_routing = routing_get_current();
180
181   if (current_routing->hierarchy_ == simgrid::kernel::routing::AsImpl::RoutingMode::unset)
182     current_routing->hierarchy_ = simgrid::kernel::routing::AsImpl::RoutingMode::base;
183   xbt_assert(nullptr == xbt_lib_get_or_null(as_router_lib, router->id, ROUTING_ASR_LEVEL),
184              "Refusing to create a router named '%s': this name already describes a node.", router->id);
185
186   simgrid::kernel::routing::NetCard* netcard =
187     new simgrid::kernel::routing::NetCardImpl(router->id, simgrid::kernel::routing::NetCard::Type::Router, current_routing);
188   xbt_lib_set(as_router_lib, router->id, ROUTING_ASR_LEVEL, netcard);
189   XBT_DEBUG("Router '%s' has the id %d", router->id, netcard->id());
190
191   if (router->coord && strcmp(router->coord, "")) {
192     unsigned int cursor;
193     char*str;
194
195     xbt_assert(COORD_ASR_LEVEL, "To use host coordinates, please add --cfg=network/coordinates:yes to your command line");
196     /* Pre-parse the host coordinates */
197     xbt_dynar_t ctn_str = xbt_str_split_str(router->coord, " ");
198     xbt_assert(xbt_dynar_length(ctn_str)==3,"Coordinates of %s must have 3 dimensions", router->id);
199     xbt_dynar_t ctn = xbt_dynar_new(sizeof(double),nullptr);
200     xbt_dynar_foreach(ctn_str,cursor, str) {
201       double val = xbt_str_parse_double(str, "Invalid coordinate: %s");
202       xbt_dynar_push(ctn,&val);
203     }
204     xbt_dynar_free(&ctn_str);
205     xbt_dynar_shrink(ctn, 0);
206     xbt_lib_set(as_router_lib, router->id, COORD_ASR_LEVEL, (void *) ctn);
207   }
208
209   auto cluster = dynamic_cast<AsCluster*>(current_routing);
210   if(cluster != nullptr)
211     cluster->router_ = static_cast<simgrid::kernel::routing::NetCard*>(xbt_lib_get_or_null(as_router_lib, router->id, ROUTING_ASR_LEVEL));
212
213   if (TRACE_is_enabled() && TRACE_needs_platform())
214     sg_instr_new_router(router);
215 }
216
217 void sg_platf_new_link(sg_platf_link_cbarg_t link){
218   std::vector<char*> names;
219
220   if (link->policy == SURF_LINK_FULLDUPLEX) {
221     names.push_back(bprintf("%s_UP", link->id));
222     names.push_back(bprintf("%s_DOWN", link->id));
223   } else {
224     names.push_back(xbt_strdup(link->id));
225   }
226   for (auto link_name : names) {
227     Link *l = surf_network_model->createLink(link_name, link->bandwidth, link->latency, link->policy, link->properties);
228
229     if (link->latency_trace)
230       l->setLatencyTrace(link->latency_trace);
231     if (link->bandwidth_trace)
232       l->setBandwidthTrace(link->bandwidth_trace);
233     if (link->state_trace)
234       l->setStateTrace(link->state_trace);
235
236     xbt_free(link_name);
237   }
238
239   simgrid::surf::on_link(link);
240 }
241
242 void sg_platf_new_cluster(sg_platf_cluster_cbarg_t cluster)
243 {
244   using simgrid::kernel::routing::AsCluster;
245   using simgrid::kernel::routing::AsClusterDragonfly;
246   using simgrid::kernel::routing::AsClusterFatTree;
247   using simgrid::kernel::routing::AsClusterTorus;
248
249   int rankId=0;
250
251   s_sg_platf_link_cbarg_t link;
252
253   // What an inventive way of initializing the AS that I have as ancestor :-(
254   s_sg_platf_AS_cbarg_t AS;
255   AS.id = cluster->id;
256   switch (cluster->topology) {
257   case SURF_CLUSTER_TORUS:
258     AS.routing = A_surfxml_AS_routing_ClusterTorus;
259     break;
260   case SURF_CLUSTER_DRAGONFLY:
261     AS.routing = A_surfxml_AS_routing_ClusterDragonfly;
262     break;
263   case SURF_CLUSTER_FAT_TREE:
264     AS.routing = A_surfxml_AS_routing_ClusterFatTree;
265     break;
266   default:
267     AS.routing = A_surfxml_AS_routing_Cluster;
268     break;
269   }
270   sg_platf_new_AS_begin(&AS);
271   simgrid::kernel::routing::AsCluster *current_as = static_cast<AsCluster*>(routing_get_current());
272   current_as->parse_specific_arguments(cluster);
273
274   if(cluster->loopback_bw!=0 || cluster->loopback_lat!=0){
275     current_as->linkCountPerNode_++;
276     current_as->hasLoopback_ = 1;
277   }
278
279   if(cluster->limiter_link!=0){
280     current_as->linkCountPerNode_++;
281     current_as->hasLimiter_ = 1;
282   }
283
284   std::vector<int> *radicals = explodesRadical(cluster->radical);
285   for (int i : *radicals) {
286     char * host_id = bprintf("%s%d%s", cluster->prefix, i, cluster->suffix);
287     char * link_id = bprintf("%s_link_%d", cluster->id, i);
288
289     XBT_DEBUG("<host\tid=\"%s\"\tpower=\"%f\">", host_id, cluster->speed);
290
291     s_sg_platf_host_cbarg_t host;
292     memset(&host, 0, sizeof(host));
293     host.id = host_id;
294     if ((cluster->properties != nullptr) && (!xbt_dict_is_empty(cluster->properties))) {
295       xbt_dict_cursor_t cursor=nullptr;
296       char *key,*data;
297       host.properties = xbt_dict_new();
298
299       xbt_dict_foreach(cluster->properties,cursor,key,data) {
300         xbt_dict_set(host.properties, key, xbt_strdup(data),free);
301       }
302     }
303
304     host.speed_per_pstate.push_back(cluster->speed);
305     host.pstate = 0;
306     host.core_amount = cluster->core_amount;
307     host.coord = "";
308     sg_platf_new_host(&host);
309     XBT_DEBUG("</host>");
310
311     XBT_DEBUG("<link\tid=\"%s\"\tbw=\"%f\"\tlat=\"%f\"/>", link_id, cluster->bw, cluster->lat);
312
313     s_surf_parsing_link_up_down_t info_lim;
314     s_surf_parsing_link_up_down_t info_loop;
315     // All links are saved in a matrix;
316     // every row describes a single node; every node may have multiple links.
317     // the first column may store a link from x to x if p_has_loopback is set
318     // the second column may store a limiter link if p_has_limiter is set
319     // other columns are to store one or more link for the node
320
321     //add a loopback link
322     if(cluster->loopback_bw!=0 || cluster->loopback_lat!=0){
323       char *tmp_link = bprintf("%s_loopback", link_id);
324       XBT_DEBUG("<loopback\tid=\"%s\"\tbw=\"%f\"/>", tmp_link, cluster->loopback_bw);
325
326       memset(&link, 0, sizeof(link));
327       link.id        = tmp_link;
328       link.bandwidth = cluster->loopback_bw;
329       link.latency   = cluster->loopback_lat;
330       link.policy    = SURF_LINK_FATPIPE;
331       sg_platf_new_link(&link);
332       info_loop.linkUp = Link::byName(tmp_link);
333       info_loop.linkDown = Link::byName(tmp_link);
334       free(tmp_link);
335       auto as_cluster = static_cast<AsCluster*>(current_as);
336       if (rankId*as_cluster->linkCountPerNode_ >= as_cluster->privateLinks_.size()) {
337         s_surf_parsing_link_up_down_t dummy;
338         dummy.linkUp = nullptr;
339         dummy.linkDown = nullptr;
340         as_cluster->privateLinks_.resize(rankId*as_cluster->linkCountPerNode_,dummy);
341       }
342       as_cluster->privateLinks_.insert(as_cluster->privateLinks_.begin() + rankId*as_cluster->linkCountPerNode_,
343                                        info_loop);
344     }
345
346     //add a limiter link (shared link to account for maximal bandwidth of the node)
347     if(cluster->limiter_link!=0){
348       char *tmp_link = bprintf("%s_limiter", link_id);
349       XBT_DEBUG("<limiter\tid=\"%s\"\tbw=\"%f\"/>", tmp_link, cluster->limiter_link);
350
351       memset(&link, 0, sizeof(link));
352       link.id = tmp_link;
353       link.bandwidth = cluster->limiter_link;
354       link.latency = 0;
355       link.policy = SURF_LINK_SHARED;
356       sg_platf_new_link(&link);
357       info_lim.linkUp = info_lim.linkDown = Link::byName(tmp_link);
358       free(tmp_link);
359       current_as->privateLinks_.insert(current_as->privateLinks_.begin() + rankId * current_as->linkCountPerNode_ +
360                                        current_as->hasLoopback_ , info_lim);
361     }
362
363     //call the cluster function that adds the others links
364     if (cluster->topology == SURF_CLUSTER_FAT_TREE) {
365       ((AsClusterFatTree*) current_as)->addProcessingNode(i);
366     }
367     else {
368       current_as->create_links_for_node(cluster, i, rankId,
369           rankId*current_as->linkCountPerNode_ + current_as->hasLoopback_ + current_as->hasLimiter_ );
370     }
371     xbt_free(link_id);
372     xbt_free(host_id);
373     rankId++;
374   }
375   delete radicals;
376
377   // Add a router. It is magically used thanks to the way in which surf_routing_cluster is written,
378   // and it's very useful to connect clusters together
379   XBT_DEBUG(" ");
380   XBT_DEBUG("<router id=\"%s\"/>", cluster->router_id);
381   char *newid = nullptr;
382   s_sg_platf_router_cbarg_t router;
383   memset(&router, 0, sizeof(router));
384   router.id = cluster->router_id;
385   if (!router.id || !strcmp(router.id, ""))
386     router.id = newid = bprintf("%s%s_router%s", cluster->prefix, cluster->id, cluster->suffix);
387   sg_platf_new_router(&router);
388   current_as->router_ = (simgrid::kernel::routing::NetCard*) xbt_lib_get_or_null(as_router_lib, router.id, ROUTING_ASR_LEVEL);
389   free(newid);
390
391   //Make the backbone
392   if ((cluster->bb_bw != 0) || (cluster->bb_lat != 0)) {
393
394     memset(&link, 0, sizeof(link));
395     link.id        = bprintf("%s_backbone", cluster->id);
396     link.bandwidth = cluster->bb_bw;
397     link.latency   = cluster->bb_lat;
398     link.policy    = cluster->bb_sharing_policy;
399
400     XBT_DEBUG("<link\tid=\"%s\" bw=\"%f\" lat=\"%f\"/>", link.id, cluster->bb_bw, cluster->bb_lat);
401     sg_platf_new_link(&link);
402
403     routing_cluster_add_backbone(Link::byName(link.id));
404     free((char*)link.id);
405   }
406
407   XBT_DEBUG("</AS>");
408   sg_platf_new_AS_seal();
409
410   simgrid::surf::on_cluster(cluster);
411 }
412 void routing_cluster_add_backbone(simgrid::surf::Link* bb) {
413   simgrid::kernel::routing::AsCluster *cluster = dynamic_cast<simgrid::kernel::routing::AsCluster*>(current_routing);
414
415   xbt_assert(cluster, "Only hosts from Cluster can get a backbone.");
416   xbt_assert(nullptr == cluster->backbone_, "Cluster %s already has a backbone link!", cluster->name());
417
418   cluster->backbone_ = bb;
419   XBT_DEBUG("Add a backbone to AS '%s'", current_routing->name());
420 }
421
422 void sg_platf_new_cabinet(sg_platf_cabinet_cbarg_t cabinet)
423 {
424   std::vector<int> *radicals = explodesRadical(cabinet->radical);
425
426   for (int radical : *radicals) {
427     char *hostname = bprintf("%s%d%s", cabinet->prefix, radical, cabinet->suffix);
428     s_sg_platf_host_cbarg_t host;
429     memset(&host, 0, sizeof(host));
430     host.pstate           = 0;
431     host.core_amount      = 1;
432     host.id               = hostname;
433     host.speed_per_pstate.push_back(cabinet->speed);
434     sg_platf_new_host(&host);
435
436     s_sg_platf_link_cbarg_t link;
437     memset(&link, 0, sizeof(link));
438     link.policy    = SURF_LINK_FULLDUPLEX;
439     link.latency   = cabinet->lat;
440     link.bandwidth = cabinet->bw;
441     link.id        = bprintf("link_%s",hostname);
442     sg_platf_new_link(&link);
443     free((char*)link.id);
444
445     s_sg_platf_host_link_cbarg_t host_link;
446     memset(&host_link, 0, sizeof(host_link));
447     host_link.id        = hostname;
448     host_link.link_up   = bprintf("link_%s_UP",hostname);
449     host_link.link_down = bprintf("link_%s_DOWN",hostname);
450     sg_platf_new_hostlink(&host_link);
451     free((char*)host_link.link_up);
452     free((char*)host_link.link_down);
453
454     free(hostname);
455   }
456   delete(radicals);
457 }
458
459 void sg_platf_new_storage(sg_platf_storage_cbarg_t storage)
460 {
461   xbt_assert(!xbt_lib_get_or_null(storage_lib, storage->id,ROUTING_STORAGE_LEVEL),
462                "Refusing to add a second storage named \"%s\"", storage->id);
463
464   void* stype = xbt_lib_get_or_null(storage_type_lib, storage->type_id,ROUTING_STORAGE_TYPE_LEVEL);
465   xbt_assert(stype,"No storage type '%s'", storage->type_id);
466
467   XBT_DEBUG("ROUTING Create a storage name '%s' with type_id '%s' and content '%s'",
468       storage->id,
469       storage->type_id,
470       storage->content);
471
472   xbt_lib_set(storage_lib, storage->id, ROUTING_STORAGE_LEVEL, (void *) xbt_strdup(storage->type_id));
473
474   // if storage content is not specified use the content of storage_type if any
475   if(!strcmp(storage->content,"") && strcmp(((storage_type_t) stype)->content,"")){
476     storage->content = ((storage_type_t) stype)->content;
477     storage->content_type = ((storage_type_t) stype)->content_type;
478     XBT_DEBUG("For disk '%s' content is empty, inherit the content (of type %s) from storage type '%s' ",
479         storage->id,((storage_type_t) stype)->content_type,
480         ((storage_type_t) stype)->type_id);
481   }
482
483   XBT_DEBUG("SURF storage create resource\n\t\tid '%s'\n\t\ttype '%s' "
484       "\n\t\tmodel '%s' \n\t\tcontent '%s'\n\t\tcontent_type '%s' "
485       "\n\t\tproperties '%p''\n",
486       storage->id,
487       ((storage_type_t) stype)->model,
488       ((storage_type_t) stype)->type_id,
489       storage->content,
490       storage->content_type,
491     storage->properties);
492
493   surf_storage_model->createStorage(storage->id,
494                                      ((storage_type_t) stype)->type_id,
495                                      storage->content,
496                                      storage->content_type,
497                    storage->properties,
498                                      storage->attach);
499 }
500 void sg_platf_new_storage_type(sg_platf_storage_type_cbarg_t storage_type){
501
502   xbt_assert(!xbt_lib_get_or_null(storage_type_lib, storage_type->id,ROUTING_STORAGE_TYPE_LEVEL),
503                "Reading a storage type, processing unit \"%s\" already exists", storage_type->id);
504
505   storage_type_t stype = xbt_new0(s_storage_type_t, 1);
506   stype->model = xbt_strdup(storage_type->model);
507   stype->properties = storage_type->properties;
508   stype->content = xbt_strdup(storage_type->content);
509   stype->content_type = xbt_strdup(storage_type->content_type);
510   stype->type_id = xbt_strdup(storage_type->id);
511   stype->size = storage_type->size;
512   stype->model_properties = storage_type->model_properties;
513
514   XBT_DEBUG("ROUTING Create a storage type id '%s' with model '%s', "
515       "content '%s', and content_type '%s'",
516       stype->type_id,
517       stype->model,
518       storage_type->content,
519       storage_type->content_type);
520
521   xbt_lib_set(storage_type_lib,
522       stype->type_id,
523       ROUTING_STORAGE_TYPE_LEVEL,
524       (void *) stype);
525 }
526
527 static void mount_free(void *p)
528 {
529   mount_t mnt = (mount_t) p;
530   xbt_free(mnt->name);
531 }
532
533 void sg_platf_new_mount(sg_platf_mount_cbarg_t mount){
534   xbt_assert(xbt_lib_get_or_null(storage_lib, mount->storageId, ROUTING_STORAGE_LEVEL),
535       "Cannot mount non-existent disk \"%s\"", mount->storageId);
536
537   XBT_DEBUG("ROUTING Mount '%s' on '%s'",mount->storageId, mount->name);
538
539   s_mount_t mnt;
540   mnt.storage = surf_storage_resource_priv(surf_storage_resource_by_name(mount->storageId));
541   mnt.name = xbt_strdup(mount->name);
542
543   if(!mount_list){
544     XBT_DEBUG("Create a Mount list for %s",A_surfxml_host_id);
545     mount_list = xbt_dynar_new(sizeof(s_mount_t), mount_free);
546   }
547   xbt_dynar_push(mount_list, &mnt);
548 }
549
550 void sg_platf_new_route(sg_platf_route_cbarg_t route)
551 {
552   routing_get_current()->addRoute(route);
553 }
554
555 void sg_platf_new_bypassRoute(sg_platf_route_cbarg_t bypassRoute)
556 {
557   routing_get_current()->addBypassRoute(bypassRoute);
558 }
559
560 void sg_platf_new_process(sg_platf_process_cbarg_t process)
561 {
562   sg_host_t host = sg_host_by_name(process->host);
563   if (!host) {
564     // The requested host does not exist. Do a nice message to the user
565     char *tmp = bprintf("Cannot create process '%s': host '%s' does not exist\nExisting hosts: '",process->function, process->host);
566     xbt_strbuff_t msg = xbt_strbuff_new_from(tmp);
567     free(tmp);
568     xbt_dynar_t all_hosts = xbt_dynar_sort_strings(sg_hosts_as_dynar());
569     simgrid::s4u::Host* host;
570     unsigned int cursor;
571     xbt_dynar_foreach(all_hosts,cursor, host) {
572       xbt_strbuff_append(msg,host->name().c_str());
573       xbt_strbuff_append(msg,"', '");
574       if (msg->used > 1024) {
575         msg->data[msg->used-3]='\0';
576         msg->used -= 3;
577
578         xbt_strbuff_append(msg," ...(list truncated)......");// That will be shortened by 3 chars when existing the loop
579       }
580     }
581     msg->data[msg->used-3]='\0';
582     xbt_die("%s", msg->data);
583   }
584   simgrid::simix::ActorCodeFactory& factory = SIMIX_get_actor_code_factory(process->function);
585   xbt_assert(factory, "Function '%s' unknown", process->function);
586
587   double start_time = process->start_time;
588   double kill_time  = process->kill_time;
589   int auto_restart = process->on_failure == SURF_PROCESS_ON_FAILURE_DIE ? 0 : 1;
590
591   std::vector<std::string> args(process->argv, process->argv + process->argc);
592   std::function<void()> code = factory(std::move(args));
593
594   smx_process_arg_t arg = nullptr;
595   smx_actor_t process_created = nullptr;
596
597   arg = new simgrid::simix::ProcessArg();
598   arg->name = std::string(process->argv[0]);
599   arg->code = code;
600   arg->data = nullptr;
601   arg->hostname = sg_host_get_name(host);
602   arg->kill_time = kill_time;
603   arg->properties = current_property_set;
604   if (!sg_host_simix(host)->boot_processes)
605     sg_host_simix(host)->boot_processes = xbt_dynar_new(sizeof(smx_process_arg_t), _SIMIX_host_free_process_arg);
606
607   xbt_dynar_push_as(sg_host_simix(host)->boot_processes,smx_process_arg_t,arg);
608
609   if (start_time > SIMIX_get_clock()) {
610
611     arg = new simgrid::simix::ProcessArg();
612     arg->name = std::string(process->argv[0]);
613     arg->code = std::move(code);
614     arg->data = nullptr;
615     arg->hostname = sg_host_get_name(host);
616     arg->kill_time = kill_time;
617     arg->properties = current_property_set;
618
619     XBT_DEBUG("Process %s(%s) will be started at time %f",
620       arg->name.c_str(), arg->hostname, start_time);
621     SIMIX_timer_set(start_time, [=]() {
622       simix_global->create_process_function(
623                                             arg->name.c_str(),
624                                             std::move(arg->code),
625                                             arg->data,
626                                             arg->hostname,
627                                             arg->kill_time,
628                                             arg->properties,
629                                             arg->auto_restart,
630                                             nullptr);
631       delete arg;
632     });
633   } else {                      // start_time <= SIMIX_get_clock()
634     XBT_DEBUG("Starting Process %s(%s) right now",
635       arg->name.c_str(), sg_host_get_name(host));
636
637     if (simix_global->create_process_function)
638       process_created = simix_global->create_process_function(
639           arg->name.c_str(), std::move(code), nullptr,
640           sg_host_get_name(host), kill_time,
641           current_property_set, auto_restart, nullptr);
642     else
643       process_created = simcall_process_create(
644           arg->name.c_str(), std::move(code), nullptr, sg_host_get_name(host), kill_time,
645           current_property_set,auto_restart);
646
647     /* verify if process has been created (won't be the case if the host is currently dead, but that's fine) */
648     if (!process_created) {
649       return;
650     }
651   }
652   current_property_set = nullptr;
653 }
654
655 void sg_platf_new_peer(sg_platf_peer_cbarg_t peer)
656 {
657   using simgrid::kernel::routing::NetCard;
658   using simgrid::kernel::routing::AsCluster;
659
660   char *host_id = bprintf("peer_%s", peer->id);
661   char *router_id = bprintf("router_%s", peer->id);
662
663   XBT_DEBUG(" ");
664
665   XBT_DEBUG("<AS id=\"%s\"\trouting=\"Cluster\">", peer->id);
666   s_sg_platf_AS_cbarg_t AS;
667   AS.id      = peer->id;
668   AS.routing = A_surfxml_AS_routing_Cluster;
669   sg_platf_new_AS_begin(&AS);
670
671   XBT_DEBUG("<host\tid=\"%s\"\tpower=\"%f\"/>", host_id, peer->speed);
672   s_sg_platf_host_cbarg_t host;
673   memset(&host, 0, sizeof(host));
674   host.id = host_id;
675
676   host.speed_per_pstate.push_back(peer->speed);
677   host.pstate = 0;
678   host.speed_trace = peer->availability_trace;
679   host.state_trace = peer->state_trace;
680   host.core_amount = 1;
681   sg_platf_new_host(&host);
682
683   s_sg_platf_link_cbarg_t link;
684   memset(&link, 0, sizeof(link));
685   link.policy  = SURF_LINK_SHARED;
686   link.latency = peer->lat;
687
688   char* link_up = bprintf("link_%s_UP",peer->id);
689   XBT_DEBUG("<link\tid=\"%s\"\tbw=\"%f\"\tlat=\"%f\"/>", link_up, peer->bw_out, peer->lat);
690   link.id = link_up;
691   link.bandwidth = peer->bw_out;
692   sg_platf_new_link(&link);
693
694   char* link_down = bprintf("link_%s_DOWN",peer->id);
695   XBT_DEBUG("<link\tid=\"%s\"\tbw=\"%f\"\tlat=\"%f\"/>", link_down, peer->bw_in, peer->lat);
696   link.id = link_down;
697   link.bandwidth = peer->bw_in;
698   sg_platf_new_link(&link);
699
700   XBT_DEBUG("<host_link\tid=\"%s\"\tup=\"%s\"\tdown=\"%s\" />", host_id,link_up,link_down);
701   s_sg_platf_host_link_cbarg_t host_link;
702   memset(&host_link, 0, sizeof(host_link));
703   host_link.id        = host_id;
704   host_link.link_up   = link_up;
705   host_link.link_down = link_down;
706   sg_platf_new_hostlink(&host_link);
707   free(link_up);
708   free(link_down);
709
710   XBT_DEBUG("<router id=\"%s\"/>", router_id);
711   s_sg_platf_router_cbarg_t router;
712   memset(&router, 0, sizeof(router));
713   router.id = router_id;
714   router.coord = peer->coord;
715   sg_platf_new_router(&router);
716
717   XBT_DEBUG("</AS>");
718   sg_platf_new_AS_seal();
719   XBT_DEBUG(" ");
720
721   free(router_id);
722   free(host_id);
723 }
724
725 void sg_platf_begin() { /* Do nothing: just for symmetry of user code */ }
726
727 void sg_platf_end() {
728   simgrid::surf::on_postparse();
729 }
730
731 /* Pick the right models for CPU, net and host, and call their model_init_preparse */
732 static void surf_config_models_setup()
733 {
734   const char *host_model_name;
735   const char *vm_model_name;
736   int host_id = -1;
737   int vm_id = -1;
738   char *network_model_name = nullptr;
739   char *cpu_model_name = nullptr;
740   int storage_id = -1;
741   char *storage_model_name = nullptr;
742
743   host_model_name    = xbt_cfg_get_string("host/model");
744   vm_model_name      = xbt_cfg_get_string("vm/model");
745   network_model_name = xbt_cfg_get_string("network/model");
746   cpu_model_name     = xbt_cfg_get_string("cpu/model");
747   storage_model_name = xbt_cfg_get_string("storage/model");
748
749   /* Check whether we use a net/cpu model differing from the default ones, in which case
750    * we should switch to the "compound" host model to correctly dispatch stuff to
751    * the right net/cpu models.
752    */
753
754   if ((!xbt_cfg_is_default_value("network/model") ||
755        !xbt_cfg_is_default_value("cpu/model")) &&
756       xbt_cfg_is_default_value("host/model")) {
757     host_model_name = "compound";
758     xbt_cfg_set_string("host/model", host_model_name);
759   }
760
761   XBT_DEBUG("host model: %s", host_model_name);
762   host_id = find_model_description(surf_host_model_description, host_model_name);
763   if (!strcmp(host_model_name, "compound")) {
764     int network_id = -1;
765     int cpu_id = -1;
766
767     xbt_assert(cpu_model_name,
768                 "Set a cpu model to use with the 'compound' host model");
769
770     xbt_assert(network_model_name,
771                 "Set a network model to use with the 'compound' host model");
772
773     if(surf_cpu_model_init_preparse){
774       surf_cpu_model_init_preparse();
775     } else {
776       cpu_id =
777           find_model_description(surf_cpu_model_description, cpu_model_name);
778       surf_cpu_model_description[cpu_id].model_init_preparse();
779     }
780
781     network_id =
782         find_model_description(surf_network_model_description,
783                                network_model_name);
784     surf_network_model_description[network_id].model_init_preparse();
785   }
786
787   XBT_DEBUG("Call host_model_init");
788   surf_host_model_description[host_id].model_init_preparse();
789
790   XBT_DEBUG("Call vm_model_init");
791   vm_id = find_model_description(surf_vm_model_description, vm_model_name);
792   surf_vm_model_description[vm_id].model_init_preparse();
793
794   XBT_DEBUG("Call storage_model_init");
795   storage_id = find_model_description(surf_storage_model_description, storage_model_name);
796   surf_storage_model_description[storage_id].model_init_preparse();
797
798 }
799
800 /**
801  * \brief Make a new routing component to the platform
802  *
803  * Add a new autonomous system to the platform. Any elements (such as host,
804  * router or sub-AS) added after this call and before the corresponding call
805  * to sg_platf_new_AS_seal() will be added to this AS.
806  *
807  * Once this function was called, the configuration concerning the used
808  * models cannot be changed anymore.
809  *
810  * @param AS the parameters defining the AS to build.
811  */
812 simgrid::s4u::As * sg_platf_new_AS_begin(sg_platf_AS_cbarg_t AS)
813 {
814   if (!surf_parse_models_setup_already_called) {
815     /* Initialize the surf models. That must be done after we got all config, and before we need the models.
816      * That is, after the last <config> tag, if any, and before the first of cluster|peer|AS|trace|trace_connect
817      *
818      * I'm not sure for <trace> and <trace_connect>, there may be a bug here
819      * (FIXME: check it out by creating a file beginning with one of these tags)
820      * but cluster and peer create ASes internally, so putting the code in there is ok.
821      */
822     surf_parse_models_setup_already_called = 1;
823     surf_config_models_setup();
824   }
825
826   xbt_assert(nullptr == xbt_lib_get_or_null(as_router_lib, AS->id, ROUTING_ASR_LEVEL),
827       "Refusing to create a second AS called \"%s\".", AS->id);
828
829   _sg_cfg_init_status = 2; /* HACK: direct access to the global controlling the level of configuration to prevent
830                             * any further config now that we created some real content */
831
832
833   /* search the routing model */
834   simgrid::kernel::routing::AsImpl *new_as = nullptr;
835   switch(AS->routing){
836     case A_surfxml_AS_routing_Cluster:        new_as = new simgrid::kernel::routing::AsCluster(AS->id);        break;
837     case A_surfxml_AS_routing_ClusterDragonfly:   new_as = new simgrid::kernel::routing::AsClusterDragonfly(AS->id);   break;
838     case A_surfxml_AS_routing_ClusterTorus:   new_as = new simgrid::kernel::routing::AsClusterTorus(AS->id);   break;
839     case A_surfxml_AS_routing_ClusterFatTree: new_as = new simgrid::kernel::routing::AsClusterFatTree(AS->id); break;
840     case A_surfxml_AS_routing_Dijkstra:       new_as = new simgrid::kernel::routing::AsDijkstra(AS->id, 0);    break;
841     case A_surfxml_AS_routing_DijkstraCache:  new_as = new simgrid::kernel::routing::AsDijkstra(AS->id, 1);    break;
842     case A_surfxml_AS_routing_Floyd:          new_as = new simgrid::kernel::routing::AsFloyd(AS->id);          break;
843     case A_surfxml_AS_routing_Full:           new_as = new simgrid::kernel::routing::AsFull(AS->id);           break;
844     case A_surfxml_AS_routing_None:           new_as = new simgrid::kernel::routing::AsNone(AS->id);           break;
845     case A_surfxml_AS_routing_Vivaldi:        new_as = new simgrid::kernel::routing::AsVivaldi(AS->id);        break;
846     default:                                  xbt_die("Not a valid model!");                        break;
847   }
848
849   /* make a new routing component */
850   simgrid::kernel::routing::NetCard *netcard = new simgrid::kernel::routing::NetCardImpl(new_as->name(), simgrid::kernel::routing::NetCard::Type::As, current_routing);
851
852   if (current_routing == nullptr && routing_platf->root_ == nullptr) { /* it is the first one */
853     routing_platf->root_ = new_as;
854   } else if (current_routing != nullptr && routing_platf->root_ != nullptr) {
855
856     xbt_assert(!xbt_dict_get_or_null(current_routing->children(), AS->id),
857                "The AS \"%s\" already exists", AS->id);
858     /* it is a part of the tree */
859     new_as->father_ = current_routing;
860     /* set the father behavior */
861     if (current_routing->hierarchy_ == simgrid::kernel::routing::AsImpl::RoutingMode::unset)
862       current_routing->hierarchy_ = simgrid::kernel::routing::AsImpl::RoutingMode::recursive;
863     /* add to the sons dictionary */
864     xbt_dict_set(current_routing->children(), AS->id, (void *) new_as, nullptr);
865   } else {
866     THROWF(arg_error, 0, "All defined components must belong to a AS");
867   }
868
869   xbt_lib_set(as_router_lib, netcard->name(), ROUTING_ASR_LEVEL, (void *) netcard);
870   XBT_DEBUG("Having set name '%s' id '%d'", new_as->name(), netcard->id());
871
872   /* set the new current component of the tree */
873   current_routing = new_as;
874   current_routing->netcard_ = netcard;
875
876   simgrid::kernel::routing::asCreatedCallbacks(new_as);
877   if (TRACE_is_enabled())
878     sg_instr_AS_begin(AS);
879
880   return new_as;
881 }
882
883 /**
884  * \brief Specify that the description of the current AS is finished
885  *
886  * Once you've declared all the content of your AS, you have to seal
887  * it with this call. Your AS is not usable until you call this function.
888  */
889 void sg_platf_new_AS_seal()
890 {
891   xbt_assert(current_routing, "Cannot seal the current AS: none under construction");
892   current_routing->seal();
893   current_routing = static_cast<simgrid::kernel::routing::AsImpl*>(current_routing->father());
894
895   if (TRACE_is_enabled())
896     sg_instr_AS_end();
897 }
898
899 /** @brief Add a link connecting an host to the rest of its AS (which must be cluster or vivaldi) */
900 void sg_platf_new_hostlink(sg_platf_host_link_cbarg_t hostlink)
901 {
902   simgrid::kernel::routing::NetCard *netcard = sg_host_by_name(hostlink->id)->pimpl_netcard;
903   xbt_assert(netcard, "Host '%s' not found!", hostlink->id);
904   xbt_assert(dynamic_cast<simgrid::kernel::routing::AsCluster*>(current_routing),
905       "Only hosts from Cluster and Vivaldi ASes can get an host_link.");
906
907   s_surf_parsing_link_up_down_t link_up_down;
908   link_up_down.linkUp = Link::byName(hostlink->link_up);
909   link_up_down.linkDown = Link::byName(hostlink->link_down);
910
911   xbt_assert(link_up_down.linkUp, "Link '%s' not found!",hostlink->link_up);
912   xbt_assert(link_up_down.linkDown, "Link '%s' not found!",hostlink->link_down);
913
914   // If dynar is is greater than netcard id and if the host_link is already defined
915   auto as_cluster = static_cast<simgrid::kernel::routing::AsCluster*>(current_routing);
916   if (as_cluster->privateLinks_.size() > netcard->id()){
917     if (as_cluster->privateLinks_.at(netcard->id()).linkUp != nullptr)
918     surf_parse_error("Host_link for '%s' is already defined!",hostlink->id);
919   } else {
920     s_surf_parsing_link_up_down_t dummy;
921     dummy.linkUp = nullptr;
922     dummy.linkDown = nullptr;
923     as_cluster->privateLinks_.resize(netcard->id(), dummy);
924   }
925   XBT_DEBUG("Push Host_link for host '%s' to position %d", netcard->name(), netcard->id());
926   as_cluster->privateLinks_.insert(as_cluster->privateLinks_.begin() + netcard->id(), link_up_down);
927 }