Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
simplify a bit the CPU creation API
[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 "surf/surf.h"
14
15 #include "src/simix/smx_private.h"
16
17 #include "src/include/simgrid/sg_config.h"
18 #include "src/surf/xml/platf_private.hpp"
19
20 #include "src/surf/cpu_interface.hpp"
21 #include "src/surf/host_interface.hpp"
22 #include "src/surf/network_interface.hpp"
23 #include "surf/surf_routing.h" // FIXME: brain dead public header
24 #include "src/surf/surf_routing_cluster.hpp"
25 #include "src/surf/surf_routing_cluster_torus.hpp"
26 #include "src/surf/surf_routing_cluster_fat_tree.hpp"
27
28 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(surf_parse);
29
30 XBT_PRIVATE xbt_dynar_t mount_list = NULL;
31
32 namespace simgrid {
33 namespace surf {
34
35 simgrid::xbt::signal<void(sg_platf_link_cbarg_t)> on_link;
36 simgrid::xbt::signal<void(sg_platf_cluster_cbarg_t)> on_cluster;
37 simgrid::xbt::signal<void(void)> on_postparse;
38
39 }
40 }
41
42 static int surf_parse_models_setup_already_called = 0;
43
44 /** Module management function: creates all internal data structures */
45 void sg_platf_init(void) {
46 }
47
48 /** Module management function: frees all internal data structures */
49 void sg_platf_exit(void) {
50   simgrid::surf::on_link.disconnect_all_slots();
51   simgrid::surf::on_cluster.disconnect_all_slots();
52   simgrid::surf::on_postparse.disconnect_all_slots();
53
54   /* make sure that we will reinit the models while loading the platf once reinited */
55   surf_parse_models_setup_already_called = 0;
56   surf_parse_lex_destroy();
57 }
58
59 /** @brief Add an "host" to the current AS */
60 void sg_platf_new_host(sg_platf_host_cbarg_t host)
61 {
62   xbt_assert(! sg_host_by_name(host->id),
63       "Refusing to create a second host named '%s'.", host->id);
64
65   simgrid::surf::As* current_routing = routing_get_current();
66   if (current_routing->hierarchy_ == SURF_ROUTING_NULL)
67     current_routing->hierarchy_ = SURF_ROUTING_BASE;
68
69   simgrid::surf::NetCard *netcard =
70       new simgrid::surf::NetCardImpl(host->id, SURF_NETWORK_ELEMENT_HOST, current_routing);
71
72   netcard->setId(current_routing->addComponent(netcard));
73   sg_host_t h = simgrid::s4u::Host::by_name_or_create(host->id);
74   h->pimpl_netcard = netcard;
75   simgrid::surf::netcardCreatedCallbacks(netcard);
76
77   if(mount_list){
78     xbt_lib_set(storage_lib, host->id, ROUTING_STORAGE_HOST_LEVEL, (void *) mount_list);
79     mount_list = NULL;
80   }
81
82   if (host->coord && strcmp(host->coord, "")) {
83     unsigned int cursor;
84     char*str;
85
86     if (!COORD_HOST_LEVEL)
87       xbt_die ("To use host coordinates, please add --cfg=network/coordinates:yes to your command line");
88     /* Pre-parse the host coordinates -- FIXME factorize with routers by overloading the routing->parse_PU function*/
89     xbt_dynar_t ctn_str = xbt_str_split_str(host->coord, " ");
90     xbt_dynar_t ctn = xbt_dynar_new(sizeof(double),NULL);
91     xbt_dynar_foreach(ctn_str,cursor, str) {
92       double val = xbt_str_parse_double(str, "Invalid coordinate: %s");
93       xbt_dynar_push(ctn,&val);
94     }
95     xbt_dynar_shrink(ctn, 0);
96     xbt_dynar_free(&ctn_str);
97     h->extension_set(COORD_HOST_LEVEL, (void *) ctn);
98     XBT_DEBUG("Having set host coordinates for '%s'",host->id);
99   }
100
101
102   simgrid::surf::Cpu *cpu = surf_cpu_model_pm->createCpu( h,
103       host->speed_peak,
104       host->speed_scale, host->speed_trace,
105       host->core_amount,
106       host->state_trace);
107   surf_host_model->createHost(host->id, netcard, cpu, host->properties)->attach(h);
108
109   if (host->pstate != 0)
110     cpu->setPState(host->pstate);
111   if (! host->initiallyOn)
112     cpu->turnOff();
113
114   simgrid::s4u::Host::onCreation(*h);
115
116   if (TRACE_is_enabled() && TRACE_needs_platform())
117     sg_instr_new_host(host);
118 }
119
120 /**
121  * \brief Add a "router" to the network element list
122  */
123 void sg_platf_new_router(sg_platf_router_cbarg_t router)
124 {
125   simgrid::surf::As* current_routing = routing_get_current();
126
127   if (current_routing->hierarchy_ == SURF_ROUTING_NULL)
128     current_routing->hierarchy_ = SURF_ROUTING_BASE;
129   xbt_assert(nullptr == xbt_lib_get_or_null(as_router_lib, router->id, ROUTING_ASR_LEVEL),
130              "Refusing to create a router named '%s': this name already describes a node.", router->id);
131
132   simgrid::surf::NetCard *netcard = new simgrid::surf::NetCardImpl(router->id, SURF_NETWORK_ELEMENT_ROUTER, current_routing);
133   netcard->setId(current_routing->addComponent(netcard));
134   xbt_lib_set(as_router_lib, router->id, ROUTING_ASR_LEVEL, (void *) netcard);
135   XBT_DEBUG("Having set name '%s' id '%d'", router->id, netcard->id());
136   simgrid::surf::netcardCreatedCallbacks(netcard);
137
138   if (router->coord && strcmp(router->coord, "")) {
139     unsigned int cursor;
140     char*str;
141
142     if (!COORD_ASR_LEVEL)
143       xbt_die ("To use host coordinates, please add --cfg=network/coordinates:yes to your command line");
144     /* Pre-parse the host coordinates */
145     xbt_dynar_t ctn_str = xbt_str_split_str(router->coord, " ");
146     xbt_dynar_t ctn = xbt_dynar_new(sizeof(double),NULL);
147     xbt_dynar_foreach(ctn_str,cursor, str) {
148       double val = xbt_str_parse_double(str, "Invalid coordinate: %s");
149       xbt_dynar_push(ctn,&val);
150     }
151     xbt_dynar_shrink(ctn, 0);
152     xbt_dynar_free(&ctn_str);
153     xbt_lib_set(as_router_lib, router->id, COORD_ASR_LEVEL, (void *) ctn);
154     XBT_DEBUG("Having set router coordinates for '%s'",router->id);
155   }
156
157   if (TRACE_is_enabled() && TRACE_needs_platform())
158     sg_instr_new_router(router);
159 }
160
161 void sg_platf_new_link(sg_platf_link_cbarg_t link){
162   simgrid::surf::on_link(link);
163 }
164
165 void sg_platf_new_cluster(sg_platf_cluster_cbarg_t cluster)
166 {
167   using simgrid::surf::AsCluster;
168   using simgrid::surf::AsClusterTorus;
169   using simgrid::surf::AsClusterFatTree;
170
171   char *host_id, *groups, *link_id = NULL;
172   xbt_dict_t patterns = NULL;
173   int rankId=0;
174
175   s_sg_platf_host_cbarg_t host = SG_PLATF_HOST_INITIALIZER;
176   s_sg_platf_link_cbarg_t link = SG_PLATF_LINK_INITIALIZER;
177
178   unsigned int iter;
179
180   if ((cluster->availability_trace && strcmp(cluster->availability_trace, ""))
181       || (cluster->state_trace && strcmp(cluster->state_trace, ""))) {
182     patterns = xbt_dict_new_homogeneous(xbt_free_f);
183     xbt_dict_set(patterns, "id", xbt_strdup(cluster->id), NULL);
184     xbt_dict_set(patterns, "prefix", xbt_strdup(cluster->prefix), NULL);
185     xbt_dict_set(patterns, "suffix", xbt_strdup(cluster->suffix), NULL);
186   }
187
188   /* Parse the topology attributes.
189    * Nothing to do in a vanilla cluster, but that's another story for torus and flat_trees */
190   s_sg_platf_AS_cbarg_t AS = SG_PLATF_AS_INITIALIZER;
191   AS.id = cluster->id;
192
193   switch (cluster->topology) {
194   case SURF_CLUSTER_TORUS:
195     AS.routing = A_surfxml_AS_routing_ClusterTorus;
196     break;
197   case SURF_CLUSTER_FAT_TREE:
198     AS.routing = A_surfxml_AS_routing_ClusterFatTree;
199     break;
200   default:
201     AS.routing = A_surfxml_AS_routing_Cluster;
202     break;
203   }
204
205   // What an inventive way of initializing the AS that I have as ancestor :-(
206   sg_platf_new_AS_begin(&AS);
207   simgrid::surf::As *current_routing = routing_get_current();
208   static_cast<AsCluster*>(current_routing)->parse_specific_arguments(cluster);
209
210   if(cluster->loopback_bw!=0 || cluster->loopback_lat!=0){
211       ((AsCluster*)current_routing)->nb_links_per_node_++;
212       ((AsCluster*)current_routing)->has_loopback_=1;
213   }
214
215   if(cluster->limiter_link!=0){
216       ((AsCluster*)current_routing)->nb_links_per_node_++;
217       ((AsCluster*)current_routing)->has_limiter_=1;
218   }
219
220
221   //Make all hosts
222   xbt_dynar_t radical_elements = xbt_str_split(cluster->radical, ",");
223   xbt_dynar_foreach(radical_elements, iter, groups) {
224
225     xbt_dynar_t radical_ends = xbt_str_split(groups, "-");
226     int start = surf_parse_get_int(xbt_dynar_get_as(radical_ends, 0, char *));
227     int end;
228
229     switch (xbt_dynar_length(radical_ends)) {
230     case 1:
231       end = start;
232       break;
233     case 2:
234       end = surf_parse_get_int(xbt_dynar_get_as(radical_ends, 1, char *));
235       break;
236     default:
237       surf_parse_error("Malformed radical");
238       break;
239     }
240     for (int i = start; i <= end; i++) {
241       host_id = bprintf("%s%d%s", cluster->prefix, i, cluster->suffix);
242       link_id = bprintf("%s_link_%d", cluster->id, i);
243
244       XBT_DEBUG("<host\tid=\"%s\"\tpower=\"%f\">", host_id, cluster->speed);
245
246       memset(&host, 0, sizeof(host));
247       host.id = host_id;
248       if ((cluster->properties != NULL) && (!xbt_dict_is_empty(cluster->properties))) {
249         xbt_dict_cursor_t cursor=NULL;
250         char *key,*data;
251         host.properties = xbt_dict_new();
252
253         xbt_dict_foreach(cluster->properties,cursor,key,data) {
254           xbt_dict_set(host.properties, key, xbt_strdup(data),free);
255         }
256       }
257       if (cluster->availability_trace && strcmp(cluster->availability_trace, "")) {
258         xbt_dict_set(patterns, "radical", bprintf("%d", i), NULL);
259         char *avail_file = xbt_str_varsubst(cluster->availability_trace, patterns);
260         XBT_DEBUG("\tavailability_file=\"%s\"", avail_file);
261         host.speed_trace = tmgr_trace_new_from_file(avail_file);
262         xbt_free(avail_file);
263       } else {
264         XBT_DEBUG("\tavailability_file=\"\"");
265       }
266
267       if (cluster->state_trace && strcmp(cluster->state_trace, "")) {
268         char *avail_file = xbt_str_varsubst(cluster->state_trace, patterns);
269         XBT_DEBUG("\tstate_file=\"%s\"", avail_file);
270         host.state_trace = tmgr_trace_new_from_file(avail_file);
271         xbt_free(avail_file);
272       } else {
273         XBT_DEBUG("\tstate_file=\"\"");
274       }
275
276       host.speed_peak = xbt_dynar_new(sizeof(double), NULL);
277       xbt_dynar_push(host.speed_peak,&cluster->speed);
278       host.pstate = 0;
279
280       //host.power_peak = cluster->power;
281       host.speed_scale = 1.0;
282       host.core_amount = cluster->core_amount;
283       host.initiallyOn = 1;
284       host.coord = "";
285       sg_platf_new_host(&host);
286       xbt_dynar_free(&host.speed_peak);
287       XBT_DEBUG("</host>");
288
289       XBT_DEBUG("<link\tid=\"%s\"\tbw=\"%f\"\tlat=\"%f\"/>", link_id,
290                 cluster->bw, cluster->lat);
291
292
293       s_surf_parsing_link_up_down_t info_lim, info_loop;
294       // All links are saved in a matrix;
295       // every row describes a single node; every node
296       // may have multiple links.
297       // the first column may store a link from x to x if p_has_loopback is set
298       // the second column may store a limiter link if p_has_limiter is set
299       // other columns are to store one or more link for the node
300
301       //add a loopback link
302       if(cluster->loopback_bw!=0 || cluster->loopback_lat!=0){
303         char *tmp_link = bprintf("%s_loopback", link_id);
304         XBT_DEBUG("<loopback\tid=\"%s\"\tbw=\"%f\"/>", tmp_link,
305                 cluster->limiter_link);
306
307
308         memset(&link, 0, sizeof(link));
309         link.id        = tmp_link;
310         link.bandwidth = cluster->loopback_bw;
311         link.latency   = cluster->loopback_lat;
312         link.initiallyOn = 1;
313         link.policy    = SURF_LINK_FATPIPE;
314         sg_platf_new_link(&link);
315         info_loop.link_up   = Link::byName(tmp_link);
316         info_loop.link_down = info_loop.link_up;
317         free(tmp_link);
318         xbt_dynar_set(current_routing->upDownLinks,
319           rankId*(static_cast<AsCluster*>(current_routing))->nb_links_per_node_, &info_loop);
320       }
321
322       //add a limiter link (shared link to account for maximal bandwidth of the node)
323       if(cluster->limiter_link!=0){
324         char *tmp_link = bprintf("%s_limiter", link_id);
325         XBT_DEBUG("<limiter\tid=\"%s\"\tbw=\"%f\"/>", tmp_link,
326                 cluster->limiter_link);
327
328
329         memset(&link, 0, sizeof(link));
330         link.id = tmp_link;
331         link.bandwidth = cluster->limiter_link;
332         link.latency = 0;
333         link.initiallyOn = 1;
334         link.policy = SURF_LINK_SHARED;
335         sg_platf_new_link(&link);
336         info_lim.link_up = Link::byName(tmp_link);
337         info_lim.link_down = info_lim.link_up;
338         free(tmp_link);
339         auto as_cluster = static_cast<AsCluster*>(current_routing);
340         xbt_dynar_set(current_routing->upDownLinks,
341             rankId*(as_cluster)->nb_links_per_node_ + as_cluster->has_loopback_ ,
342             &info_lim);
343
344       }
345
346
347       //call the cluster function that adds the others links
348       if (cluster->topology == SURF_CLUSTER_FAT_TREE) {
349         ((AsClusterFatTree*) current_routing)->addProcessingNode(i);
350       }
351       else {
352       static_cast<AsCluster*>(current_routing)->create_links_for_node(cluster, i, rankId, rankId*
353           static_cast<AsCluster*>(current_routing)->nb_links_per_node_
354           + static_cast<AsCluster*>(current_routing)->has_loopback_
355           + static_cast<AsCluster*>(current_routing)->has_limiter_ );
356       }
357       xbt_free(link_id);
358       xbt_free(host_id);
359       rankId++;
360     }
361
362     xbt_dynar_free(&radical_ends);
363   }
364   xbt_dynar_free(&radical_elements);
365
366   // For fat trees, the links must be created once all nodes have been added
367   if(cluster->topology == SURF_CLUSTER_FAT_TREE) {
368     static_cast<simgrid::surf::AsClusterFatTree*>(current_routing)->create_links();
369   }
370   // Add a router. It is magically used thanks to the way in which surf_routing_cluster is written,
371   // and it's very useful to connect clusters together
372   XBT_DEBUG(" ");
373   XBT_DEBUG("<router id=\"%s\"/>", cluster->router_id);
374   char *newid = NULL;
375   s_sg_platf_router_cbarg_t router = SG_PLATF_ROUTER_INITIALIZER;
376   memset(&router, 0, sizeof(router));
377   router.id = cluster->router_id;
378   router.coord = "";
379   if (!router.id || !strcmp(router.id, ""))
380     router.id = newid =
381         bprintf("%s%s_router%s", cluster->prefix, cluster->id,
382                 cluster->suffix);
383   sg_platf_new_router(&router);
384   ((AsCluster*)current_routing)->router_ = (simgrid::surf::NetCard*) xbt_lib_get_or_null(as_router_lib, router.id, ROUTING_ASR_LEVEL);
385   free(newid);
386
387   //Make the backbone
388   if ((cluster->bb_bw != 0) || (cluster->bb_lat != 0)) {
389     char *link_backbone = bprintf("%s_backbone", cluster->id);
390     XBT_DEBUG("<link\tid=\"%s\" bw=\"%f\" lat=\"%f\"/>", link_backbone,
391               cluster->bb_bw, cluster->bb_lat);
392
393     memset(&link, 0, sizeof(link));
394     link.id        = link_backbone;
395     link.bandwidth = cluster->bb_bw;
396     link.latency   = cluster->bb_lat;
397     link.initiallyOn = 1;
398     link.policy    = cluster->bb_sharing_policy;
399
400     sg_platf_new_link(&link);
401
402     routing_cluster_add_backbone(Link::byName(link_backbone));
403
404     free(link_backbone);
405   }
406
407   XBT_DEBUG("</AS>");
408   sg_platf_new_AS_end();
409   XBT_DEBUG(" ");
410   xbt_dict_free(&patterns); // no op if it were never set
411
412   simgrid::surf::on_cluster(cluster);
413 }
414
415 void sg_platf_new_storage(sg_platf_storage_cbarg_t storage)
416 {
417   xbt_assert(!xbt_lib_get_or_null(storage_lib, storage->id,ROUTING_STORAGE_LEVEL),
418                "Refusing to add a second storage named \"%s\"", storage->id);
419
420   void* stype = xbt_lib_get_or_null(storage_type_lib, storage->type_id,ROUTING_STORAGE_TYPE_LEVEL);
421   xbt_assert(stype,"No storage type '%s'", storage->type_id);
422
423   XBT_DEBUG("ROUTING Create a storage name '%s' with type_id '%s' and content '%s'",
424       storage->id,
425       storage->type_id,
426       storage->content);
427
428   xbt_lib_set(storage_lib,
429       storage->id,
430       ROUTING_STORAGE_LEVEL,
431       (void *) xbt_strdup(storage->type_id));
432
433   // if storage content is not specified use the content of storage_type if any
434   if(!strcmp(storage->content,"") && strcmp(((storage_type_t) stype)->content,"")){
435     storage->content = ((storage_type_t) stype)->content;
436     storage->content_type = ((storage_type_t) stype)->content_type;
437     XBT_DEBUG("For disk '%s' content is empty, inherit the content (of type %s) from storage type '%s' ",
438         storage->id,((storage_type_t) stype)->content_type,
439         ((storage_type_t) stype)->type_id);
440   }
441
442   XBT_DEBUG("SURF storage create resource\n\t\tid '%s'\n\t\ttype '%s' "
443       "\n\t\tmodel '%s' \n\t\tcontent '%s'\n\t\tcontent_type '%s' "
444       "\n\t\tproperties '%p''\n",
445       storage->id,
446       ((storage_type_t) stype)->model,
447       ((storage_type_t) stype)->type_id,
448       storage->content,
449       storage->content_type,
450     storage->properties);
451
452   surf_storage_model->createStorage(storage->id,
453                                      ((storage_type_t) stype)->type_id,
454                                      storage->content,
455                                      storage->content_type,
456                    storage->properties,
457                                      storage->attach);
458 }
459 void sg_platf_new_storage_type(sg_platf_storage_type_cbarg_t storage_type){
460
461   xbt_assert(!xbt_lib_get_or_null(storage_type_lib, storage_type->id,ROUTING_STORAGE_TYPE_LEVEL),
462                "Reading a storage type, processing unit \"%s\" already exists", storage_type->id);
463
464   storage_type_t stype = xbt_new0(s_storage_type_t, 1);
465   stype->model = xbt_strdup(storage_type->model);
466   stype->properties = storage_type->properties;
467   stype->content = xbt_strdup(storage_type->content);
468   stype->content_type = xbt_strdup(storage_type->content_type);
469   stype->type_id = xbt_strdup(storage_type->id);
470   stype->size = storage_type->size;
471   stype->model_properties = storage_type->model_properties;
472
473   XBT_DEBUG("ROUTING Create a storage type id '%s' with model '%s', "
474       "content '%s', and content_type '%s'",
475       stype->type_id,
476       stype->model,
477       storage_type->content,
478       storage_type->content_type);
479
480   xbt_lib_set(storage_type_lib,
481       stype->type_id,
482       ROUTING_STORAGE_TYPE_LEVEL,
483       (void *) stype);
484 }
485 void sg_platf_new_mstorage(sg_platf_mstorage_cbarg_t mstorage)
486 {
487   THROW_UNIMPLEMENTED;
488 }
489
490 static void mount_free(void *p)
491 {
492   mount_t mnt = (mount_t) p;
493   xbt_free(mnt->name);
494 }
495
496 void sg_platf_new_mount(sg_platf_mount_cbarg_t mount){
497   // Verification of an existing storage
498   xbt_assert(xbt_lib_get_or_null(storage_lib, mount->storageId, ROUTING_STORAGE_LEVEL),
499       "Cannot mount non-existent disk \"%s\"", mount->storageId);
500
501   XBT_DEBUG("ROUTING Mount '%s' on '%s'",mount->storageId, mount->name);
502
503   s_mount_t mnt;
504   mnt.storage = surf_storage_resource_priv(surf_storage_resource_by_name(mount->storageId));
505   mnt.name = xbt_strdup(mount->name);
506
507   if(!mount_list){
508     XBT_DEBUG("Create a Mount list for %s",A_surfxml_host_id);
509     mount_list = xbt_dynar_new(sizeof(s_mount_t), mount_free);
510   }
511   xbt_dynar_push(mount_list, &mnt);
512 }
513
514 void sg_platf_new_route(sg_platf_route_cbarg_t route)
515 {
516   routing_get_current()->addRoute(route);
517 }
518
519 void sg_platf_new_bypassRoute(sg_platf_route_cbarg_t bypassRoute)
520 {
521   routing_get_current()->addBypassRoute(bypassRoute);
522 }
523
524 void sg_platf_new_process(sg_platf_process_cbarg_t process)
525 {
526   xbt_assert(simix_global,"Cannot create process without SIMIX.");
527
528   sg_host_t host = sg_host_by_name(process->host);
529   if (!host) {
530     // The requested host does not exist. Do a nice message to the user
531     char *tmp = bprintf("Cannot create process '%s': host '%s' does not exist\nExisting hosts: '",process->function, process->host);
532     xbt_strbuff_t msg = xbt_strbuff_new_from(tmp);
533     free(tmp);
534     xbt_dynar_t all_hosts = xbt_dynar_sort_strings(sg_hosts_as_dynar());
535     simgrid::s4u::Host* host;
536     unsigned int cursor;
537     xbt_dynar_foreach(all_hosts,cursor, host) {
538       xbt_strbuff_append(msg,host->name().c_str());
539       xbt_strbuff_append(msg,"', '");
540       if (msg->used > 1024) {
541         msg->data[msg->used-3]='\0';
542         msg->used -= 3;
543
544         xbt_strbuff_append(msg," ...(list truncated)......");// That will be shortened by 3 chars when existing the loop
545       }
546     }
547     msg->data[msg->used-3]='\0';
548     xbt_die("%s", msg->data);
549   }
550   xbt_main_func_t parse_code = SIMIX_get_registered_function(process->function);
551   xbt_assert(parse_code, "Function '%s' unknown", process->function);
552
553   double start_time = process->start_time;
554   double kill_time  = process->kill_time;
555   int auto_restart = process->on_failure == SURF_PROCESS_ON_FAILURE_DIE ? 0 : 1;
556
557   smx_process_arg_t arg = NULL;
558   smx_process_t process_created = NULL;
559
560   arg = xbt_new0(s_smx_process_arg_t, 1);
561   arg->code = parse_code;
562   arg->data = NULL;
563   arg->hostname = sg_host_get_name(host);
564   arg->argc = process->argc;
565   arg->argv = xbt_new(char *,process->argc);
566   int i;
567   for (i=0; i<process->argc; i++)
568     arg->argv[i] = xbt_strdup(process->argv[i]);
569   arg->name = xbt_strdup(arg->argv[0]);
570   arg->kill_time = kill_time;
571   arg->properties = current_property_set;
572   if (!sg_host_simix(host)->boot_processes) {
573     sg_host_simix(host)->boot_processes = xbt_dynar_new(sizeof(smx_process_arg_t), _SIMIX_host_free_process_arg);
574   }
575   xbt_dynar_push_as(sg_host_simix(host)->boot_processes,smx_process_arg_t,arg);
576
577   if (start_time > SIMIX_get_clock()) {
578     arg = xbt_new0(s_smx_process_arg_t, 1);
579     arg->name = (char*)(process->argv)[0];
580     arg->code = parse_code;
581     arg->data = NULL;
582     arg->hostname = sg_host_get_name(host);
583     arg->argc = process->argc;
584     arg->argv = (char**)(process->argv);
585     arg->kill_time = kill_time;
586     arg->properties = current_property_set;
587
588     XBT_DEBUG("Process %s(%s) will be started at time %f", arg->name,
589            arg->hostname, start_time);
590     SIMIX_timer_set(start_time, [](void* arg) {
591       SIMIX_process_create_from_wrapper((smx_process_arg_t) arg);
592     }, arg);
593   } else {                      // start_time <= SIMIX_get_clock()
594     XBT_DEBUG("Starting Process %s(%s) right now", arg->name, sg_host_get_name(host));
595
596     if (simix_global->create_process_function)
597       process_created = simix_global->create_process_function(
598           arg->name,
599                                             parse_code,
600                                             NULL,
601                                             sg_host_get_name(host),
602                                             kill_time,
603                                             process->argc,
604                                             (char**)(process->argv),
605                                             current_property_set,
606                                             auto_restart, NULL);
607     else
608       process_created = simcall_process_create(arg->name, parse_code, NULL, sg_host_get_name(host), kill_time, process->argc,
609           (char**)process->argv, current_property_set,auto_restart);
610
611     /* verify if process has been created (won't be the case if the host is currently dead, but that's fine) */
612     if (!process_created) {
613       return;
614     }
615   }
616   current_property_set = NULL;
617 }
618
619 void sg_platf_begin() { /* Do nothing: just for symmetry of user code */ }
620
621 void sg_platf_end() {
622   simgrid::surf::on_postparse();
623 }
624
625 /* Pick the right models for CPU, net and host, and call their model_init_preparse */
626 static void surf_config_models_setup()
627 {
628   const char *host_model_name;
629   const char *vm_model_name;
630   int host_id = -1;
631   int vm_id = -1;
632   char *network_model_name = NULL;
633   char *cpu_model_name = NULL;
634   int storage_id = -1;
635   char *storage_model_name = NULL;
636
637   host_model_name = xbt_cfg_get_string(_sg_cfg_set, "host/model");
638   vm_model_name = xbt_cfg_get_string(_sg_cfg_set, "vm/model");
639   network_model_name = xbt_cfg_get_string(_sg_cfg_set, "network/model");
640   cpu_model_name = xbt_cfg_get_string(_sg_cfg_set, "cpu/model");
641   storage_model_name = xbt_cfg_get_string(_sg_cfg_set, "storage/model");
642
643   /* Check whether we use a net/cpu model differing from the default ones, in which case
644    * we should switch to the "compound" host model to correctly dispatch stuff to
645    * the right net/cpu models.
646    */
647
648   if ((!xbt_cfg_is_default_value(_sg_cfg_set, "network/model") ||
649        !xbt_cfg_is_default_value(_sg_cfg_set, "cpu/model")) &&
650       xbt_cfg_is_default_value(_sg_cfg_set, "host/model")) {
651     host_model_name = "compound";
652     xbt_cfg_set_string(_sg_cfg_set, "host/model", host_model_name);
653   }
654
655   XBT_DEBUG("host model: %s", host_model_name);
656   host_id = find_model_description(surf_host_model_description, host_model_name);
657   if (!strcmp(host_model_name, "compound")) {
658     int network_id = -1;
659     int cpu_id = -1;
660
661     xbt_assert(cpu_model_name,
662                 "Set a cpu model to use with the 'compound' host model");
663
664     xbt_assert(network_model_name,
665                 "Set a network model to use with the 'compound' host model");
666
667     if(surf_cpu_model_init_preparse){
668       surf_cpu_model_init_preparse();
669     } else {
670       cpu_id =
671           find_model_description(surf_cpu_model_description, cpu_model_name);
672       surf_cpu_model_description[cpu_id].model_init_preparse();
673     }
674
675     network_id =
676         find_model_description(surf_network_model_description,
677                                network_model_name);
678     surf_network_model_description[network_id].model_init_preparse();
679   }
680
681   XBT_DEBUG("Call host_model_init");
682   surf_host_model_description[host_id].model_init_preparse();
683
684   XBT_DEBUG("Call vm_model_init");
685   vm_id = find_model_description(surf_vm_model_description, vm_model_name);
686   surf_vm_model_description[vm_id].model_init_preparse();
687
688   XBT_DEBUG("Call storage_model_init");
689   storage_id = find_model_description(surf_storage_model_description, storage_model_name);
690   surf_storage_model_description[storage_id].model_init_preparse();
691
692 }
693
694 void sg_platf_new_AS_begin(sg_platf_AS_cbarg_t AS)
695 {
696   if (!surf_parse_models_setup_already_called) {
697     /* Initialize the surf models. That must be done after we got all config, and before we need the models.
698      * That is, after the last <config> tag, if any, and before the first of cluster|peer|AS|trace|trace_connect
699      *
700      * I'm not sure for <trace> and <trace_connect>, there may be a bug here
701      * (FIXME: check it out by creating a file beginning with one of these tags)
702      * but cluster and peer create ASes internally, so putting the code in there is ok.
703      *
704      * TODO, There used to be a guard protecting here against
705      * xbt_dynar_length(sg_platf_AS_begin_cb_list) because we don't want to
706      * initialize the models if we are parsing the file to get the deployment.
707      * That could happen if the same file would be used for platf and deploy:
708      * it'd contain AS tags even during the deploy parsing. Removing that guard
709      * would result of the models to get re-inited when parsing for deploy.
710      * Currently using the same file for platform and deployment is broken
711      * however. This guard will have to ba adapted in order to make this feature
712      * work again.
713      */
714     surf_parse_models_setup_already_called = 1;
715     surf_config_models_setup();
716   }
717
718   routing_AS_begin(AS);
719   if (TRACE_is_enabled())
720     sg_instr_AS_begin(AS);
721 }
722
723 void sg_platf_new_AS_end()
724 {
725   routing_AS_end();
726   if (TRACE_is_enabled())
727     sg_instr_AS_end();
728 }