Logo AND Algorithmique Numérique Distribuée

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