Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Do routing parse before tracing parse
[simgrid.git] / src / surf / surf_routing.c
1 /* Copyright (c) 2009, 2010, 2011. 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 <pcre.h>               /* regular expression library */
8
9 #include "simgrid/platf_interface.h"    // platform creation API internal interface
10
11 #include "surf_routing_private.h"
12 #include "surf/surf_routing.h"
13 #include "surf/surfxml_parse_values.h"
14
15 xbt_lib_t host_lib;
16 int ROUTING_HOST_LEVEL;         //Routing level
17 int SURF_CPU_LEVEL;             //Surf cpu level
18 int SURF_WKS_LEVEL;             //Surf workstation level
19 int SIMIX_HOST_LEVEL;           //Simix level
20 int MSG_HOST_LEVEL;             //Msg level
21 int SD_HOST_LEVEL;              //Simdag level
22 int COORD_HOST_LEVEL=0;         //Coordinates level
23 int NS3_HOST_LEVEL;             //host node for ns3
24
25 xbt_lib_t link_lib;
26 int SD_LINK_LEVEL;              //Simdag level
27 int SURF_LINK_LEVEL;            //Surf level
28 int NS3_LINK_LEVEL;             //link for ns3
29
30 xbt_lib_t as_router_lib;
31 int ROUTING_ASR_LEVEL;          //Routing level
32 int COORD_ASR_LEVEL;            //Coordinates level
33 int NS3_ASR_LEVEL;              //host node for ns3
34
35 static xbt_dict_t random_value = NULL;
36
37 xbt_lib_t storage_lib;
38 int ROUTING_STORAGE_LEVEL;      //Routing for storagelevel
39 int ROUTING_STORAGE_HOST_LEVEL;
40 int SURF_STORAGE_LEVEL;
41
42 xbt_lib_t storage_type_lib;
43 int ROUTING_STORAGE_TYPE_LEVEL; //Routing for storage_type level
44
45 /* Global vars */
46 routing_global_t global_routing = NULL;
47 AS_t current_routing = NULL;
48
49 /* global parse functions */
50 xbt_dynar_t parsed_link_list = NULL;   /* temporary store of current list link of a route */
51 xbt_dynar_t mount_list = NULL;  /* temporary store of current mount storage */
52 static const char *src = NULL;  /* temporary store the source name of a route */
53 static const char *dst = NULL;  /* temporary store the destination name of a route */
54 static char *gw_src = NULL;     /* temporary store the gateway source name of a route */
55 static char *gw_dst = NULL;     /* temporary store the gateway destination name of a route */
56
57 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_route, surf, "Routing part of surf");
58
59 static void routing_parse_peer(sg_platf_peer_cbarg_t peer);     /* peer bypass */
60 static void routing_parse_Srandom(void);        /* random bypass */
61
62 static void routing_parse_postparse(void);
63
64 /* this lines are only for replace use like index in the model table */
65 typedef enum {
66   SURF_MODEL_FULL = 0,
67   SURF_MODEL_FLOYD,
68   SURF_MODEL_DIJKSTRA,
69   SURF_MODEL_DIJKSTRACACHE,
70   SURF_MODEL_NONE,
71   SURF_MODEL_RULEBASED,
72   SURF_MODEL_VIVALDI,
73   SURF_MODEL_CLUSTER
74 } e_routing_types;
75
76 struct s_model_type routing_models[] = {
77   {"Full",
78    "Full routing data (fast, large memory requirements, fully expressive)",
79    model_full_create, model_full_end},
80   {"Floyd",
81    "Floyd routing data (slow initialization, fast lookup, lesser memory requirements, shortest path routing only)",
82    model_floyd_create, model_floyd_end},
83   {"Dijkstra",
84    "Dijkstra routing data (fast initialization, slow lookup, small memory requirements, shortest path routing only)",
85    model_dijkstra_create, model_dijkstra_both_end},
86   {"DijkstraCache",
87    "Dijkstra routing data (fast initialization, fast lookup, small memory requirements, shortest path routing only)",
88    model_dijkstracache_create, model_dijkstra_both_end},
89   {"none", "No routing (usable with Constant network only)",
90    model_none_create,  NULL},
91   {"RuleBased", "Rule-Based routing data (...)",
92    model_rulebased_create, NULL},
93   {"Vivaldi", "Vivaldi routing",
94    model_vivaldi_create, NULL},
95   {"Cluster", "Cluster routing",
96    model_cluster_create, NULL},
97   {NULL, NULL, NULL, NULL}
98 };
99
100 /**
101  * \brief Add a "host" to the network element list
102  */
103 static void parse_S_host(sg_platf_host_cbarg_t host)
104 {
105   network_element_t info = NULL;
106   if (current_routing->hierarchy == SURF_ROUTING_NULL)
107     current_routing->hierarchy = SURF_ROUTING_BASE;
108   xbt_assert(!xbt_lib_get_or_null(host_lib, host->id, ROUTING_HOST_LEVEL),
109              "Reading a host, processing unit \"%s\" already exists", host->id);
110
111   info = xbt_new0(s_network_element_t, 1);
112   info->rc_component = current_routing;
113   info->rc_type = SURF_NETWORK_ELEMENT_HOST;
114   info->name = xbt_strdup(host->id);
115   info->id = current_routing->parse_PU(current_routing, (void *) info);
116   xbt_lib_set(host_lib, host->id, ROUTING_HOST_LEVEL, (void *) info);
117   XBT_DEBUG("Having set name '%s' id '%d'",host->id,info->id);
118
119   if(mount_list){
120     xbt_lib_set(storage_lib, host->id, ROUTING_STORAGE_HOST_LEVEL, (void *) mount_list);
121     mount_list = NULL;
122   }
123
124   if (host->coord && strcmp(host->coord, "")) {
125     unsigned int cursor;
126     char*str;
127
128     if (!COORD_HOST_LEVEL)
129       xbt_die ("To use host coordinates, please add --cfg=network/coordinates:yes to your command line");
130     /* Pre-parse the host coordinates -- FIXME factorize with routers by overloading the routing->parse_PU function*/
131     xbt_dynar_t ctn_str = xbt_str_split_str(host->coord, " ");
132     xbt_dynar_t ctn = xbt_dynar_new(sizeof(double),NULL);
133     xbt_dynar_foreach(ctn_str,cursor, str) {
134       double val = atof(str);
135       xbt_dynar_push(ctn,&val);
136     }
137     xbt_dynar_shrink(ctn, 0);
138     xbt_dynar_free(&ctn_str);
139     xbt_lib_set(host_lib, host->id, COORD_HOST_LEVEL, (void *) ctn);
140     XBT_DEBUG("Having set host coordinates for '%s'",host->id);
141   }
142 }
143
144 /**
145  * \brief Add a "router" to the network element list
146  */
147 static void parse_S_router(sg_platf_router_cbarg_t router)
148 {
149   network_element_t info = NULL;
150   if (current_routing->hierarchy == SURF_ROUTING_NULL)
151     current_routing->hierarchy = SURF_ROUTING_BASE;
152   xbt_assert(!xbt_lib_get_or_null(as_router_lib, router->id, ROUTING_ASR_LEVEL),
153              "Reading a router, processing unit \"%s\" already exists",
154              router->id);
155
156   info = xbt_new0(s_network_element_t, 1);
157   info->rc_component = current_routing;
158   info->rc_type = SURF_NETWORK_ELEMENT_ROUTER;
159   info->name = xbt_strdup(router->id);
160   info->id = current_routing->parse_PU(current_routing, (void *) info);
161   xbt_lib_set(as_router_lib, router->id, ROUTING_ASR_LEVEL, (void *) info);
162   XBT_DEBUG("Having set name '%s' id '%d'",router->id,info->id);
163
164   if (strcmp(router->coord, "")) {
165     unsigned int cursor;
166     char*str;
167
168     if (!COORD_ASR_LEVEL)
169       xbt_die ("To use host coordinates, please add --cfg=network/coordinates:yes to your command line");
170     /* Pre-parse the host coordinates */
171     xbt_dynar_t ctn_str = xbt_str_split_str(router->coord, " ");
172     xbt_dynar_t ctn = xbt_dynar_new(sizeof(double),NULL);
173     xbt_dynar_foreach(ctn_str,cursor, str) {
174       double val = atof(str);
175       xbt_dynar_push(ctn,&val);
176     }
177     xbt_dynar_shrink(ctn, 0);
178     xbt_dynar_free(&ctn_str);
179     xbt_lib_set(as_router_lib, router->id, COORD_ASR_LEVEL, (void *) ctn);
180     XBT_DEBUG("Having set router coordinates for '%s'",router->id);
181   }
182 }
183
184
185 /**
186  * \brief Set the end points for a route
187  */
188 static void routing_parse_S_route(void)
189 {
190   if (src != NULL && dst != NULL && parsed_link_list != NULL)
191     THROWF(arg_error, 0, "Route between %s to %s can not be defined",
192            A_surfxml_route_src, A_surfxml_route_dst);
193   src = A_surfxml_route_src;
194   dst = A_surfxml_route_dst;
195   xbt_assert(strlen(src) > 0 || strlen(dst) > 0,
196              "Some limits are null in the route between \"%s\" and \"%s\"",
197              src, dst);
198   parsed_link_list = xbt_dynar_new(sizeof(char *), &xbt_free_ref);
199 }
200
201 /**
202  * \brief Set the end points and gateways for a ASroute
203  */
204 static void routing_parse_S_ASroute(void)
205 {
206   if (src != NULL && dst != NULL && parsed_link_list != NULL)
207     THROWF(arg_error, 0, "Route between %s to %s can not be defined",
208            A_surfxml_ASroute_src, A_surfxml_ASroute_dst);
209   src = A_surfxml_ASroute_src;
210   dst = A_surfxml_ASroute_dst;
211   gw_src = A_surfxml_ASroute_gw_src;
212   gw_dst = A_surfxml_ASroute_gw_dst;
213   xbt_assert(strlen(src) > 0 || strlen(dst) > 0 || strlen(gw_src) > 0
214              || strlen(gw_dst) > 0,
215              "Some limits are null in the route between \"%s\" and \"%s\"",
216              src, dst);
217   parsed_link_list = xbt_dynar_new(sizeof(char *), &xbt_free_ref);
218 }
219
220 /**
221  * \brief Set the end points for a bypassRoute
222  */
223 static void routing_parse_S_bypassRoute(void)
224 {
225   if (src != NULL && dst != NULL && parsed_link_list != NULL)
226     THROWF(arg_error, 0,
227            "Bypass Route between %s to %s can not be defined",
228            A_surfxml_bypassRoute_src, A_surfxml_bypassRoute_dst);
229   src = A_surfxml_bypassRoute_src;
230   dst = A_surfxml_bypassRoute_dst;
231   gw_src = A_surfxml_bypassRoute_gw_src;
232   gw_dst = A_surfxml_bypassRoute_gw_dst;
233   xbt_assert(strlen(src) > 0 || strlen(dst) > 0 || strlen(gw_src) > 0
234              || strlen(gw_dst) > 0,
235              "Some limits are null in the route between \"%s\" and \"%s\"",
236              src, dst);
237   parsed_link_list = xbt_dynar_new(sizeof(char *), &xbt_free_ref);
238 }
239
240 /**
241  * \brief Set a new link on the actual list of link for a route or ASroute from XML
242  */
243
244 static void routing_parse_link_ctn(void)
245 {
246   char *link_id;
247   switch (A_surfxml_link_ctn_direction) {
248   case AU_surfxml_link_ctn_direction:
249   case A_surfxml_link_ctn_direction_NONE:
250     link_id = xbt_strdup(A_surfxml_link_ctn_id);
251     break;
252   case A_surfxml_link_ctn_direction_UP:
253     link_id = bprintf("%s_UP", A_surfxml_link_ctn_id);
254     break;
255   case A_surfxml_link_ctn_direction_DOWN:
256     link_id = bprintf("%s_DOWN", A_surfxml_link_ctn_id);
257     break;
258   }
259   xbt_dynar_push(parsed_link_list, &link_id);
260 }
261
262 /**
263  * \brief Store the route by calling the set_route function of the current routing component
264  */
265 static void routing_parse_E_route(void)
266 {
267   route_t route = xbt_new0(s_route_t, 1);
268   route->link_list = parsed_link_list;
269   xbt_assert(current_routing->parse_route,
270              "no defined method \"set_route\" in \"%s\"",
271              current_routing->name);
272   current_routing->parse_route(current_routing, src, dst, route);
273   generic_free_route(route);
274   parsed_link_list = NULL;
275   src = NULL;
276   dst = NULL;
277 }
278
279 /**
280  * \brief Store the ASroute by calling the set_ASroute function of the current routing component
281  */
282 static void routing_parse_E_ASroute(void)
283 {
284   route_t e_route = xbt_new0(s_route_t, 1);
285   e_route->link_list = parsed_link_list;
286
287   if(!strcmp(current_routing->model_desc->name,"RuleBased")) {
288     e_route->src_gateway = (network_element_t) gw_src; // DIRTY HACK possible only
289     e_route->dst_gateway = (network_element_t) gw_dst; // because of what is in routing_parse_E_ASroute
290   }
291   else{
292   e_route->src_gateway =  ((network_element_t)xbt_lib_get_or_null(as_router_lib,gw_src,ROUTING_ASR_LEVEL));
293   if(!e_route->src_gateway)
294     e_route->src_gateway = ((network_element_t)xbt_lib_get_or_null(host_lib,gw_src,ROUTING_HOST_LEVEL));
295   e_route->dst_gateway =  ((network_element_t)xbt_lib_get_or_null(as_router_lib,gw_dst,ROUTING_ASR_LEVEL));
296   if(!e_route->dst_gateway)
297     e_route->dst_gateway = ((network_element_t)xbt_lib_get_or_null(host_lib,gw_dst,ROUTING_HOST_LEVEL));
298   }
299   xbt_assert(current_routing->parse_ASroute,
300              "no defined method \"set_ASroute\" in \"%s\"",
301              current_routing->name);
302   current_routing->parse_ASroute(current_routing, src, dst, e_route);
303   generic_free_route(e_route);
304   parsed_link_list = NULL;
305   src = NULL;
306   dst = NULL;
307   gw_src = NULL;
308   gw_dst = NULL;
309 }
310
311 /**
312  * \brief Store the bypass route by calling the set_bypassroute function of the current routing component
313  */
314 static void routing_parse_E_bypassRoute(void)
315 {
316   route_t e_route = xbt_new0(s_route_t, 1);
317   e_route->link_list = parsed_link_list;
318   e_route->src_gateway =  ((network_element_t)xbt_lib_get_or_null(as_router_lib,gw_src,ROUTING_ASR_LEVEL));
319   if(!e_route->src_gateway)
320     e_route->src_gateway = ((network_element_t)xbt_lib_get_or_null(host_lib,gw_src,ROUTING_HOST_LEVEL));
321   e_route->dst_gateway =  ((network_element_t)xbt_lib_get_or_null(as_router_lib,gw_dst,ROUTING_ASR_LEVEL));
322   if(!e_route->dst_gateway)
323     e_route->dst_gateway = ((network_element_t)xbt_lib_get_or_null(host_lib,gw_dst,ROUTING_HOST_LEVEL));
324   xbt_assert(current_routing->parse_bypassroute,
325              "Bypassing mechanism not implemented by routing '%s'",
326              current_routing->name);
327   current_routing->parse_bypassroute(current_routing, src, dst, e_route);
328   parsed_link_list = NULL;
329   src = NULL;
330   dst = NULL;
331   gw_src = NULL;
332   gw_dst = NULL;
333 }
334
335 /**
336  * \brief Make a new routing component to the platform
337  *
338  * Add a new autonomous system to the platform. Any elements (such as host,
339  * router or sub-AS) added after this call and before the corresponding call
340  * to sg_platf_new_AS_close() will be added to this AS.
341  *
342  * Once this function was called, the configuration concerning the used
343  * models cannot be changed anymore.
344  *
345  * @param AS_id name of this autonomous system. Must be unique in the platform
346  * @param wanted_routing_type one of Full, Floyd, Dijkstra or similar. Full list in the variable routing_models, in src/surf/surf_routing.c
347  */
348 void routing_AS_begin(const char *AS_id, const char *wanted_routing_type)
349 {
350   AS_t new_as;
351   routing_model_description_t model = NULL;
352   int cpt;
353
354   xbt_assert(!xbt_lib_get_or_null
355              (as_router_lib, AS_id, ROUTING_ASR_LEVEL),
356              "The AS \"%s\" already exists", AS_id);
357
358   /* search the routing model */
359   for (cpt = 0; routing_models[cpt].name; cpt++)
360     if (!strcmp(wanted_routing_type, routing_models[cpt].name))
361       model = &routing_models[cpt];
362   /* if its not exist, error */
363   if (model == NULL) {
364     fprintf(stderr, "Routing model %s not found. Existing models:\n",
365             wanted_routing_type);
366     for (cpt = 0; routing_models[cpt].name; cpt++)
367       fprintf(stderr, "   %s: %s\n", routing_models[cpt].name,
368               routing_models[cpt].desc);
369     xbt_die("dying");
370   }
371
372   /* make a new routing component */
373   new_as = (AS_t) model->create();
374   new_as->model_desc = model;
375   new_as->hierarchy = SURF_ROUTING_NULL;
376   new_as->name = xbt_strdup(AS_id);
377
378   network_element_t info = NULL;
379   info = xbt_new0(s_network_element_t, 1);
380
381   if (current_routing == NULL && global_routing->root == NULL) {
382
383     /* it is the first one */
384     new_as->routing_father = NULL;
385     global_routing->root = new_as;
386     info->id = -1;
387   } else if (current_routing != NULL && global_routing->root != NULL) {
388
389     xbt_assert(!xbt_dict_get_or_null
390                (current_routing->routing_sons, AS_id),
391                "The AS \"%s\" already exists", AS_id);
392     /* it is a part of the tree */
393     new_as->routing_father = current_routing;
394     /* set the father behavior */
395     if (current_routing->hierarchy == SURF_ROUTING_NULL)
396       current_routing->hierarchy = SURF_ROUTING_RECURSIVE;
397     /* add to the sons dictionary */
398     xbt_dict_set(current_routing->routing_sons, AS_id,
399                  (void *) new_as, NULL);
400     /* add to the father element list */
401     info->id = current_routing->parse_AS(current_routing, (void *) info);
402   } else {
403     THROWF(arg_error, 0, "All defined components must be belong to a AS");
404   }
405
406   info->rc_component = new_as->routing_father;
407   info->rc_type = SURF_NETWORK_ELEMENT_AS;
408   info->name = new_as->name;
409
410   xbt_lib_set(as_router_lib, new_as->name, ROUTING_ASR_LEVEL,
411               (void *) info);
412   XBT_DEBUG("Having set name '%s' id '%d'",new_as->name,info->id);
413
414   /* set the new current component of the tree */
415   current_routing = new_as;
416   current_routing->net_elem = info;
417
418 }
419
420 /**
421  * \brief Specify that the current description of AS is finished
422  *
423  * Once you've declared all the content of your AS, you have to close
424  * it with this call. Your AS is not usable until you call this function.
425  *
426  * @fixme: this call is not as robust as wanted: bad things WILL happen
427  * if you call it twice for the same AS, or if you forget calling it, or
428  * even if you add stuff to a closed AS
429  *
430  */
431 void routing_AS_end()
432 {
433
434   if (current_routing == NULL) {
435     THROWF(arg_error, 0, "Close an AS, but none was under construction");
436   } else {
437     if (current_routing->model_desc->end)
438       current_routing->model_desc->end(current_routing);
439     current_routing = current_routing->routing_father;
440   }
441 }
442
443 /* Aux Business methods */
444
445 /**
446  * \brief Get the AS father and the first elements of the chain
447  *
448  * \param src the source host name 
449  * \param dst the destination host name
450  * 
451  * Get the common father of the to processing units, and the first different 
452  * father in the chain
453  */
454 static void elements_father(network_element_t src, network_element_t dst,
455                             AS_t * res_father,
456                             AS_t * res_src,
457                             AS_t * res_dst)
458 {
459   xbt_assert(src && dst, "bad parameters for \"elements_father\" method");
460 #define ELEMENTS_FATHER_MAXDEPTH 16     /* increase if it is not enough */
461   AS_t src_as, dst_as;
462   AS_t path_src[ELEMENTS_FATHER_MAXDEPTH];
463   AS_t path_dst[ELEMENTS_FATHER_MAXDEPTH];
464   int index_src = 0;
465   int index_dst = 0;
466   AS_t current;
467   AS_t current_src;
468   AS_t current_dst;
469   AS_t father;
470
471   /* (1) find the as where the src and dst are located */
472   network_element_t src_data = src;
473   network_element_t dst_data = dst;
474   src_as = src_data->rc_component;
475   dst_as = dst_data->rc_component;
476   char* src_name = src_data->name;
477   char* dst_name = dst_data->name;
478
479   xbt_assert(src_as && dst_as,
480              "Ask for route \"from\"(%s) or \"to\"(%s) no found", src_name, dst_name);
481
482   /* (2) find the path to the root routing component */
483   for (current = src_as; current != NULL; current = current->routing_father) {
484     if (index_src >= ELEMENTS_FATHER_MAXDEPTH)
485       xbt_die("ELEMENTS_FATHER_MAXDEPTH should be increased for path_src");
486     path_src[index_src++] = current;
487   }
488   for (current = dst_as; current != NULL; current = current->routing_father) {
489     if (index_dst >= ELEMENTS_FATHER_MAXDEPTH)
490       xbt_die("ELEMENTS_FATHER_MAXDEPTH should be increased for path_dst");
491     path_dst[index_dst++] = current;
492   }
493
494   /* (3) find the common father */
495   do {
496     current_src = path_src[--index_src];
497     current_dst = path_dst[--index_dst];
498   } while (index_src > 0 && index_dst > 0 && current_src == current_dst);
499
500   /* (4) they are not in the same routing component, make the path */
501   if (current_src == current_dst)
502     father = current_src;
503   else
504     father = path_src[index_src + 1];
505
506   /* (5) result generation */
507   *res_father = father;         /* first the common father of src and dst */
508   *res_src = current_src;       /* second the first different father of src */
509   *res_dst = current_dst;       /* three  the first different father of dst */
510
511 #undef ELEMENTS_FATHER_MAXDEPTH
512 }
513
514 /* Global Business methods */
515
516 /**
517  * \brief Recursive function for get_route_latency
518  *
519  * \param src the source host name 
520  * \param dst the destination host name
521  * \param *route the route where the links are stored. It is either NULL or a ready to use dynar
522  * \param *latency the latency, if needed
523  * 
524  * This function is called by "get_route" and "get_latency". It allows to walk
525  * recursively through the ASes tree.
526  */
527 static void _get_route_and_latency(network_element_t src, network_element_t dst,
528                                    xbt_dynar_t * links, double *latency)
529 {
530   s_route_t route;
531   memset(&route,0,sizeof(route));
532
533   XBT_DEBUG("Solve route/latency  \"%s\" to \"%s\"", src->name, dst->name);
534   xbt_assert(src && dst, "bad parameters for \"_get_route_latency\" method");
535
536   /* Find how src and dst are interconnected */
537   AS_t common_father, src_father, dst_father;
538   elements_father(src, dst, &common_father, &src_father, &dst_father);
539   XBT_DEBUG("elements_father: common father '%s' src_father '%s' dst_father '%s'",
540       common_father->name,src_father->name,dst_father->name);
541
542   /* If src and dst are in the same AS, life is good */
543   if (src_father == dst_father) {       /* SURF_ROUTING_BASE */
544
545     route.link_list = *links;
546
547     common_father->get_route_and_latency(common_father, src, dst, &route,latency);
548     return;
549   }
550
551   /* If we are here, src and dst are not in the same AS; check whether a direct bypass is defined */
552
553   route_t e_route_bypass = NULL;
554   if (common_father->get_bypass_route)
555     e_route_bypass = common_father->get_bypass_route(common_father, src, dst);
556
557   if (e_route_bypass) { /* Common ancestor is kind enough to declare a bypass route from src to dst -- use it and bail out */
558     if (latency)
559       xbt_die("Bypass cannot work yet with get_latency"); // FIXME: get_bypass_route should update the latency itself, just like get_route
560
561 //    // FIXME this path is never tested. I need examples to check the bypass mechanism...
562 //    THROW_UNIMPLEMENTED; // let's warn the users of the problem
563     xbt_dynar_merge(links,&(e_route_bypass->link_list));
564     generic_free_route(e_route_bypass);
565     return;
566   }
567
568   /* Not in the same AS, no bypass. We'll have to find our path between the ASes recursively*/
569
570   route.link_list = xbt_dynar_new(global_routing->size_of_link, NULL);
571   // Find the net_card corresponding to father
572   network_element_t src_father_net_elm = src_father->net_elem;
573   network_element_t dst_father_net_elm = dst_father->net_elem;
574
575   common_father->get_route_and_latency(common_father, src_father_net_elm, dst_father_net_elm, &route,latency);
576
577   xbt_assert((route.src_gateway != NULL) && (route.dst_gateway != NULL),
578       "bad gateways for route from \"%s\" to \"%s\"", src->name, dst->name);
579
580   network_element_t src_gateway_net_elm = route.src_gateway;
581   network_element_t dst_gateway_net_elm = route.dst_gateway;
582
583   /* If source gateway is not our source, we have to recursively find our way up to this point */
584   if (strcmp(src->name, src_gateway_net_elm->name))
585     _get_route_and_latency(src, src_gateway_net_elm, links, latency);
586
587   xbt_dynar_merge(links,&(route.link_list));
588
589   /* If dest gateway is not our destination, we have to recursively find our way from this point */
590   // FIXME why can't I factorize it the same way than [src;src_gw] without breaking the examples??
591   if (strcmp(dst_gateway_net_elm->name, dst->name)) {
592     _get_route_and_latency(dst_gateway_net_elm, dst, links, latency);
593   }
594   xbt_dynar_free(&route.link_list);
595 }
596
597 /**
598  * \brief Find a route between hosts
599  *
600  * \param src the network_element_t for src host
601  * \param dst the network_element_t for dst host
602  * \param route where to store the list of links.
603  *              If *route=NULL, create a short lived dynar. Else, fill the provided dynar
604  * \param latency where to store the latency experienced on the path (or NULL if not interested)
605  *                It is the caller responsability to initialize latency to 0 (we add to provided route)
606  * \pre route!=NULL
607  *
608  * walk through the routing components tree and find a route between hosts
609  * by calling the differents "get_route" functions in each routing component.
610  */
611 void routing_get_route_and_latency(network_element_t src, network_element_t dst,
612                                    xbt_dynar_t * route, double *latency)
613 {
614   if (!*route) {
615     xbt_dynar_reset(global_routing->last_route);
616     *route = global_routing->last_route;
617   }
618
619   _get_route_and_latency(src, dst, route, latency);
620
621   xbt_assert(!latency || *latency >= 0.0,
622              "negative latency on route between \"%s\" and \"%s\"", src->name, dst->name);
623 }
624
625 static xbt_dynar_t recursive_get_onelink_routes(AS_t rc)
626 {
627   xbt_dynar_t ret = xbt_dynar_new(sizeof(onelink_t), xbt_free);
628
629   //adding my one link routes
630   xbt_dynar_t onelink_mine = rc->get_onelink_routes(rc);
631   if (onelink_mine)
632     xbt_dynar_merge(&ret,&onelink_mine);
633
634   //recursing
635   char *key;
636   xbt_dict_cursor_t cursor = NULL;
637   AS_t rc_child;
638   xbt_dict_foreach(rc->routing_sons, cursor, key, rc_child) {
639     xbt_dynar_t onelink_child = recursive_get_onelink_routes(rc_child);
640     if (onelink_child)
641       xbt_dynar_merge(&ret,&onelink_child);
642   }
643   return ret;
644 }
645
646 static xbt_dynar_t get_onelink_routes(void)
647 {
648   return recursive_get_onelink_routes(global_routing->root);
649 }
650
651 e_surf_network_element_type_t routing_get_network_element_type(const char *name)
652 {
653   network_element_t rc = NULL;
654
655   rc = xbt_lib_get_or_null(host_lib, name, ROUTING_HOST_LEVEL);
656   if (rc)
657     return rc->rc_type;
658
659   rc = xbt_lib_get_or_null(as_router_lib, name, ROUTING_ASR_LEVEL);
660   if (rc)
661     return rc->rc_type;
662
663   return SURF_NETWORK_ELEMENT_NULL;
664 }
665
666 /**
667  * \brief Generic method: create the global routing schema
668  * 
669  * Make a global routing structure and set all the parsing functions.
670  */
671 void routing_model_create(size_t size_of_links, void *loopback)
672 {
673   /* config the uniq global routing */
674   global_routing = xbt_new0(s_routing_global_t, 1);
675   global_routing->root = NULL;
676   global_routing->get_onelink_routes = get_onelink_routes;
677   global_routing->loopback = loopback;
678   global_routing->size_of_link = size_of_links;
679   global_routing->last_route = xbt_dynar_new(global_routing->size_of_link,NULL);
680   /* no current routing at moment */
681   current_routing = NULL;
682 }
683
684
685 /* ************************************************** */
686 /* ********** PATERN FOR NEW ROUTING **************** */
687
688 /* The minimal configuration of a new routing model need the next functions,
689  * also you need to set at the start of the file, the new model in the model
690  * list. Remember keep the null ending of the list.
691  */
692 /*** Routing model structure ***/
693 // typedef struct {
694 //   s_routing_component_t generic_routing;
695 //   /* things that your routing model need */
696 // } s_routing_component_NEW_t,*routing_component_NEW_t;
697
698 /*** Parse routing model functions ***/
699 // static void model_NEW_set_processing_unit(routing_component_t rc, const char* name) {}
700 // static void model_NEW_set_autonomous_system(routing_component_t rc, const char* name) {}
701 // static void model_NEW_set_route(routing_component_t rc, const char* src, const char* dst, route_t route) {}
702 // static void model_NEW_set_ASroute(routing_component_t rc, const char* src, const char* dst, route_extended_t route) {}
703 // static void model_NEW_set_bypassroute(routing_component_t rc, const char* src, const char* dst, route_extended_t e_route) {}
704
705 /*** Business methods ***/
706 // static route_extended_t NEW_get_route(routing_component_t rc, const char* src,const char* dst) {return NULL;}
707 // static route_extended_t NEW_get_bypass_route(routing_component_t rc, const char* src,const char* dst) {return NULL;}
708 // static void NEW_finalize(routing_component_t rc) { xbt_free(rc);}
709
710 /*** Creation routing model functions ***/
711 // static void* model_NEW_create(void) {
712 //   routing_component_NEW_t new_component =  xbt_new0(s_routing_component_NEW_t,1);
713 //   new_component->generic_routing.set_processing_unit = model_NEW_set_processing_unit;
714 //   new_component->generic_routing.set_autonomous_system = model_NEW_set_autonomous_system;
715 //   new_component->generic_routing.set_route = model_NEW_set_route;
716 //   new_component->generic_routing.set_ASroute = model_NEW_set_ASroute;
717 //   new_component->generic_routing.set_bypassroute = model_NEW_set_bypassroute;
718 //   new_component->generic_routing.get_route = NEW_get_route;
719 //   new_component->generic_routing.get_bypass_route = NEW_get_bypass_route;
720 //   new_component->generic_routing.finalize = NEW_finalize;
721 //   /* initialization of internal structures */
722 //   return new_component;
723 // } /* mandatory */
724 // static void  model_NEW_load(void) {}   /* mandatory */
725 // static void  model_NEW_unload(void) {} /* mandatory */
726 // static void  model_NEW_end(void) {}    /* mandatory */
727
728 /* ************************************************************************** */
729 /* ************************* GENERIC PARSE FUNCTIONS ************************ */
730
731 static void routing_parse_storage(sg_platf_storage_cbarg_t storage)
732 {
733   xbt_assert(!xbt_lib_get_or_null(storage_lib, storage->id,ROUTING_STORAGE_LEVEL),
734                "Reading a storage, processing unit \"%s\" already exists", storage->id);
735
736   // Verification of an existing type_id
737   void* storage_type = xbt_lib_get_or_null(storage_type_lib, storage->type_id,ROUTING_STORAGE_TYPE_LEVEL);
738   xbt_assert(storage_type,"Reading a storage, type id \"%s\" does not exists", storage->type_id);
739
740   XBT_DEBUG("ROUTING Create a storage name '%s' with type_id '%s'",
741       storage->id,
742       storage->type_id);
743
744   xbt_lib_set(storage_lib,
745       storage->id,
746       ROUTING_STORAGE_LEVEL,
747       (void *) xbt_strdup(storage->type_id));
748 }
749 static void routing_parse_storage_type(sg_platf_storage_type_cbarg_t storage_type)
750 {
751   xbt_assert(!xbt_lib_get_or_null(storage_type_lib, storage_type->id,ROUTING_STORAGE_TYPE_LEVEL),
752                "Reading a storage type, processing unit \"%s\" already exists", storage_type->id);
753
754   storage_type_t stype = xbt_new0(s_storage_type_t, 1);
755   stype->model = xbt_strdup(storage_type->model);
756   stype->properties = storage_type->properties;
757   stype->content = xbt_strdup(storage_type->content);
758   stype->type_id = xbt_strdup(storage_type->id);
759
760   XBT_DEBUG("ROUTING Create a storage type id '%s' with model '%s' content '%s' and properties '%p'",
761       stype->type_id,
762       stype->model,
763       stype->content,
764       stype->properties);
765
766   xbt_lib_set(storage_type_lib,
767       stype->type_id,
768       ROUTING_STORAGE_TYPE_LEVEL,
769       (void *) stype);
770 }
771 static void routing_parse_mstorage(sg_platf_mstorage_cbarg_t mstorage)
772 {
773   THROW_UNIMPLEMENTED;
774 //  mount_t mnt = xbt_new0(s_mount_t, 1);
775 //  mnt->id = xbt_strdup(mstorage->type_id);
776 //  mnt->name = xbt_strdup(mstorage->name);
777 //
778 //  if(!mount_list){
779 //    XBT_DEBUG("Creata a Mount list for %s",A_surfxml_host_id);
780 //    mount_list = xbt_dynar_new(sizeof(char *), NULL);
781 //  }
782 //  xbt_dynar_push(mount_list,(void *) mnt);
783 //  free(mnt->id);
784 //  free(mnt->name);
785 //  xbt_free(mnt);
786 //  XBT_DEBUG("ROUTING Mount a storage name '%s' with type_id '%s'",mstorage->name, mstorage->id);
787 }
788
789 static void mount_free(void *p)
790 {
791   mount_t mnt = p;
792   xbt_free(mnt->name);
793 }
794
795 static void routing_parse_mount(sg_platf_mount_cbarg_t mount)
796 {
797   // Verification of an existing storage
798   void* storage = xbt_lib_get_or_null(storage_lib, mount->id,ROUTING_STORAGE_LEVEL);
799   xbt_assert(storage,"Disk id \"%s\" does not exists", mount->id);
800
801   XBT_DEBUG("ROUTING Mount '%s' on '%s'",mount->id, mount->name);
802
803   s_mount_t mnt;
804   mnt.id = surf_storage_resource_by_name(mount->id);
805   mnt.name = xbt_strdup(mount->name);
806
807   if(!mount_list){
808     XBT_DEBUG("Create a Mount list for %s",A_surfxml_host_id);
809     mount_list = xbt_dynar_new(sizeof(s_mount_t), mount_free);
810   }
811   xbt_dynar_push(mount_list,&mnt);
812 }
813
814 static void routing_parse_cluster(sg_platf_cluster_cbarg_t cluster)
815 {
816   char *host_id, *groups, *link_id = NULL;
817   xbt_dict_t patterns = NULL;
818
819   s_sg_platf_host_cbarg_t host;
820   s_sg_platf_link_cbarg_t link;
821
822   unsigned int iter;
823   int start, end, i;
824   xbt_dynar_t radical_elements;
825   xbt_dynar_t radical_ends;
826
827   if (strcmp(cluster->availability_trace, "")
828       || strcmp(cluster->state_trace, "")) {
829     patterns = xbt_dict_new_homogeneous(xbt_free_f);
830     xbt_dict_set(patterns, "id", xbt_strdup(cluster->id), NULL);
831     xbt_dict_set(patterns, "prefix", xbt_strdup(cluster->prefix), NULL);
832     xbt_dict_set(patterns, "suffix", xbt_strdup(cluster->suffix), NULL);
833   }
834
835   XBT_DEBUG("<AS id=\"%s\"\trouting=\"Cluster\">", cluster->id);
836   sg_platf_new_AS_begin(cluster->id, "Cluster");
837
838   current_routing->link_up_down_list
839             = xbt_dynar_new(sizeof(s_surf_parsing_link_up_down_t),NULL);
840
841   //Make all hosts
842   radical_elements = xbt_str_split(cluster->radical, ",");
843   xbt_dynar_foreach(radical_elements, iter, groups) {
844
845     radical_ends = xbt_str_split(groups, "-");
846     start = surf_parse_get_int(xbt_dynar_get_as(radical_ends, 0, char *));
847
848     switch (xbt_dynar_length(radical_ends)) {
849     case 1:
850       end = start;
851       break;
852     case 2:
853       end = surf_parse_get_int(xbt_dynar_get_as(radical_ends, 1, char *));
854       break;
855     default:
856       surf_parse_error("Malformed radical");
857       break;
858     }
859     for (i = start; i <= end; i++) {
860       host_id =
861           bprintf("%s%d%s", cluster->prefix, i, cluster->suffix);
862       link_id = bprintf("%s_link_%d", cluster->id, i);
863
864       XBT_DEBUG("<host\tid=\"%s\"\tpower=\"%f\">", host_id, cluster->power);
865
866       memset(&host, 0, sizeof(host));
867       host.id = host_id;
868       if (strcmp(cluster->availability_trace, "")) {
869         xbt_dict_set(patterns, "radical", bprintf("%d", i), NULL);
870         char *avail_file = xbt_str_varsubst(cluster->availability_trace, patterns);
871         XBT_DEBUG("\tavailability_file=\"%s\"", avail_file);
872         host.power_trace = tmgr_trace_new(avail_file);
873         xbt_free(avail_file);
874       } else {
875         XBT_DEBUG("\tavailability_file=\"\"");
876       }
877
878       if (strcmp(cluster->state_trace, "")) {
879         char *avail_file = xbt_str_varsubst(cluster->state_trace, patterns);
880         XBT_DEBUG("\tstate_file=\"%s\"", avail_file);
881         host.state_trace = tmgr_trace_new(avail_file);
882         xbt_free(avail_file);
883       } else {
884         XBT_DEBUG("\tstate_file=\"\"");
885       }
886
887       host.power_peak = cluster->power;
888       host.power_scale = 1.0;
889       host.core_amount = cluster->core_amount;
890       host.initial_state = SURF_RESOURCE_ON;
891       host.coord = "";
892       sg_platf_new_host(&host);
893       XBT_DEBUG("</host>");
894
895       XBT_DEBUG("<link\tid=\"%s\"\tbw=\"%f\"\tlat=\"%f\"/>", link_id,
896                 cluster->bw, cluster->lat);
897
898       memset(&link, 0, sizeof(link));
899       link.id = link_id;
900       link.bandwidth = cluster->bw;
901       link.latency = cluster->lat;
902       link.state = SURF_RESOURCE_ON;
903       link.policy = cluster->sharing_policy;
904       sg_platf_new_link(&link);
905
906       s_surf_parsing_link_up_down_t info;
907
908       if (link.policy == SURF_LINK_FULLDUPLEX) {
909         char *tmp_link = bprintf("%s_UP", link_id);
910         info.link_up =
911             xbt_lib_get_or_null(link_lib, tmp_link, SURF_LINK_LEVEL);
912         free(tmp_link);
913         tmp_link = bprintf("%s_DOWN", link_id);
914         info.link_down =
915             xbt_lib_get_or_null(link_lib, tmp_link, SURF_LINK_LEVEL);
916         free(tmp_link);
917       } else {
918         info.link_up = xbt_lib_get_or_null(link_lib, link_id, SURF_LINK_LEVEL);
919         info.link_down = info.link_up;
920       }
921       xbt_dynar_push(current_routing->link_up_down_list,&info);
922       xbt_free(link_id);
923       xbt_free(host_id);
924     }
925
926     xbt_dynar_free(&radical_ends);
927   }
928   xbt_dynar_free(&radical_elements);
929
930   // Add a router. It is magically used thanks to the way in which surf_routing_cluster is written,
931   // and it's very useful to connect clusters together
932   XBT_DEBUG(" ");
933   XBT_DEBUG("<router id=\"%s\"/>", cluster->router_id);
934   char *newid = NULL;
935   s_sg_platf_router_cbarg_t router;
936   memset(&router, 0, sizeof(router));
937   router.id = cluster->router_id;
938   router.coord = "";
939   if (!router.id || !strcmp(router.id, ""))
940     router.id = newid =
941         bprintf("%s%s_router%s", cluster->prefix, cluster->id,
942                 cluster->suffix);
943   sg_platf_new_router(&router);
944   free(newid);
945
946   //Make the backbone
947   if ((cluster->bb_bw != 0) && (cluster->bb_lat != 0)) {
948     char *link_backbone = bprintf("%s_backbone", cluster->id);
949     XBT_DEBUG("<link\tid=\"%s\" bw=\"%f\" lat=\"%f\"/>", link_backbone,
950               cluster->bb_bw, cluster->bb_lat);
951
952     memset(&link, 0, sizeof(link));
953     link.id = link_backbone;
954     link.bandwidth = cluster->bb_bw;
955     link.latency = cluster->bb_lat;
956     link.state = SURF_RESOURCE_ON;
957     link.policy = cluster->bb_sharing_policy;
958
959     sg_platf_new_link(&link);
960
961     surf_routing_cluster_add_backbone(current_routing, xbt_lib_get_or_null(link_lib, link_backbone, SURF_LINK_LEVEL));
962
963     free(link_backbone);
964   }
965
966   XBT_DEBUG("</AS>");
967   sg_platf_new_AS_end();
968   XBT_DEBUG(" ");
969   xbt_dict_free(&patterns); // no op if it were never set
970 }
971
972 static void routing_parse_postparse(void) {
973   xbt_dict_free(&random_value);
974 }
975
976 static void routing_parse_peer(sg_platf_peer_cbarg_t peer)
977 {
978   static int AX_ptr = 0;
979   char *host_id = NULL;
980   char *router_id, *link_router, *link_backbone, *link_id_up, *link_id_down;
981
982   static unsigned int surfxml_buffer_stack_stack_ptr = 1;
983   static unsigned int surfxml_buffer_stack_stack[1024];
984
985   surfxml_buffer_stack_stack[0] = 0;
986
987   surfxml_bufferstack_push(1);
988
989   XBT_DEBUG("<AS id=\"%s\"\trouting=\"Full\">", peer->id);
990   sg_platf_new_AS_begin(peer->id, "Full");
991
992   XBT_DEBUG(" ");
993   host_id = HOST_PEER(peer->id);
994   router_id = ROUTER_PEER(peer->id);
995   link_id_up = LINK_UP_PEER(peer->id);
996   link_id_down = LINK_DOWN_PEER(peer->id);
997
998   link_router = bprintf("%s_link_router", peer->id);
999   link_backbone = bprintf("%s_backbone", peer->id);
1000
1001   XBT_DEBUG("<host\tid=\"%s\"\tpower=\"%f\"/>", host_id, peer->power);
1002   s_sg_platf_host_cbarg_t host;
1003   memset(&host, 0, sizeof(host));
1004   host.initial_state = SURF_RESOURCE_ON;
1005   host.id = host_id;
1006   host.power_peak = peer->power;
1007   host.power_scale = 1.0;
1008   host.power_trace = peer->availability_trace;
1009   host.state_trace = peer->state_trace;
1010   host.core_amount = 1;
1011   host.coord = peer->coord;
1012   sg_platf_new_host(&host);
1013
1014
1015   XBT_DEBUG("<router id=\"%s\"\tcoordinates=\"%s\"/>", router_id, peer->coord);
1016   s_sg_platf_router_cbarg_t router;
1017   memset(&router, 0, sizeof(router));
1018   router.id = router_id;
1019   router.coord = peer->coord;
1020   sg_platf_new_router(&router);
1021
1022   XBT_DEBUG("<link\tid=\"%s\"\tbw=\"%f\"\tlat=\"%f\"/>", link_id_up,
1023             peer->bw_in, peer->lat);
1024   s_sg_platf_link_cbarg_t link;
1025   memset(&link, 0, sizeof(link));
1026   link.state = SURF_RESOURCE_ON;
1027   link.policy = SURF_LINK_SHARED;
1028   link.id = link_id_up;
1029   link.bandwidth = peer->bw_in;
1030   link.latency = peer->lat;
1031   sg_platf_new_link(&link);
1032
1033   // FIXME: dealing with full duplex is not the role of this piece of code, I'd say [Mt]
1034   // Instead, it should be created fullduplex, and the models will do what's needed in this case
1035   XBT_DEBUG("<link\tid=\"%s\"\tbw=\"%f\"\tlat=\"%f\"/>", link_id_down,
1036             peer->bw_out, peer->lat);
1037   link.id = link_id_down;
1038   sg_platf_new_link(&link);
1039
1040   XBT_DEBUG(" ");
1041
1042   // begin here
1043   XBT_DEBUG("<route\tsrc=\"%s\"\tdst=\"%s\"", host_id, router_id);
1044   XBT_DEBUG("symmetrical=\"NO\">");
1045   SURFXML_BUFFER_SET(route_src, host_id);
1046   SURFXML_BUFFER_SET(route_dst, router_id);
1047   A_surfxml_route_symmetrical = A_surfxml_route_symmetrical_NO;
1048   SURFXML_START_TAG(route);
1049
1050   XBT_DEBUG("<link_ctn\tid=\"%s\"/>", link_id_up);
1051   SURFXML_BUFFER_SET(link_ctn_id, link_id_up);
1052   A_surfxml_link_ctn_direction = A_surfxml_link_ctn_direction_NONE;
1053   SURFXML_START_TAG(link_ctn);
1054   SURFXML_END_TAG(link_ctn);
1055
1056   XBT_DEBUG("</route>");
1057   SURFXML_END_TAG(route);
1058
1059   //Opposite Route
1060   XBT_DEBUG("<route\tsrc=\"%s\"\tdst=\"%s\"", router_id, host_id);
1061   XBT_DEBUG("symmetrical=\"NO\">");
1062   SURFXML_BUFFER_SET(route_src, router_id);
1063   SURFXML_BUFFER_SET(route_dst, host_id);
1064   A_surfxml_route_symmetrical = A_surfxml_route_symmetrical_NO;
1065   SURFXML_START_TAG(route);
1066
1067   XBT_DEBUG("<link_ctn\tid=\"%s\"/>", link_id_down);
1068   SURFXML_BUFFER_SET(link_ctn_id, link_id_down);
1069   A_surfxml_link_ctn_direction = A_surfxml_link_ctn_direction_NONE;
1070   SURFXML_START_TAG(link_ctn);
1071   SURFXML_END_TAG(link_ctn);
1072
1073   XBT_DEBUG("</route>");
1074   SURFXML_END_TAG(route);
1075
1076   XBT_DEBUG("</AS>");
1077   sg_platf_new_AS_end();
1078   XBT_DEBUG(" ");
1079
1080   //xbt_dynar_free(&tab_elements_num);
1081   free(host_id);
1082   free(router_id);
1083   free(link_router);
1084   free(link_backbone);
1085   free(link_id_up);
1086   free(link_id_down);
1087   surfxml_bufferstack_pop(1);
1088 }
1089
1090 static void routing_parse_Srandom(void)
1091 {
1092   double mean, std, min, max, seed;
1093   char *random_id = A_surfxml_random_id;
1094   char *random_radical = A_surfxml_random_radical;
1095   char *rd_name = NULL;
1096   char *rd_value;
1097   mean = surf_parse_get_double(A_surfxml_random_mean);
1098   std = surf_parse_get_double(A_surfxml_random_std_deviation);
1099   min = surf_parse_get_double(A_surfxml_random_min);
1100   max = surf_parse_get_double(A_surfxml_random_max);
1101   seed = surf_parse_get_double(A_surfxml_random_seed);
1102
1103   double res = 0;
1104   int i = 0;
1105   random_data_t random = xbt_new0(s_random_data_t, 1);
1106   char *tmpbuf;
1107
1108   xbt_dynar_t radical_elements;
1109   unsigned int iter;
1110   char *groups;
1111   int start, end;
1112   xbt_dynar_t radical_ends;
1113
1114   switch (A_surfxml_random_generator) {
1115   case AU_surfxml_random_generator:
1116   case A_surfxml_random_generator_NONE:
1117     random->generator = NONE;
1118     break;
1119   case A_surfxml_random_generator_DRAND48:
1120     random->generator = DRAND48;
1121     break;
1122   case A_surfxml_random_generator_RAND:
1123     random->generator = RAND;
1124     break;
1125   case A_surfxml_random_generator_RNGSTREAM:
1126     random->generator = RNGSTREAM;
1127     break;
1128   default:
1129     surf_parse_error("Invalid random generator");
1130     break;
1131   }
1132   random->seed = seed;
1133   random->min = min;
1134   random->max = max;
1135
1136   /* Check user stupidities */
1137   if (max < min)
1138     THROWF(arg_error, 0, "random->max < random->min (%f < %f)", max, min);
1139   if (mean < min)
1140     THROWF(arg_error, 0, "random->mean < random->min (%f < %f)", mean, min);
1141   if (mean > max)
1142     THROWF(arg_error, 0, "random->mean > random->max (%f > %f)", mean, max);
1143
1144   /* normalize the mean and standard deviation before storing */
1145   random->mean = (mean - min) / (max - min);
1146   random->std = std / (max - min);
1147
1148   if (random->mean * (1 - random->mean) < random->std * random->std)
1149     THROWF(arg_error, 0, "Invalid mean and standard deviation (%f and %f)",
1150            random->mean, random->std);
1151
1152   XBT_DEBUG
1153       ("id = '%s' min = '%f' max = '%f' mean = '%f' std_deviatinon = '%f' generator = '%d' seed = '%ld' radical = '%s'",
1154        random_id, random->min, random->max, random->mean, random->std,
1155        (int)random->generator, random->seed, random_radical);
1156
1157   if (!random_value)
1158     random_value = xbt_dict_new_homogeneous(free);
1159
1160   if (!strcmp(random_radical, "")) {
1161     res = random_generate(random);
1162     rd_value = bprintf("%f", res);
1163     xbt_dict_set(random_value, random_id, rd_value, NULL);
1164   } else {
1165     radical_elements = xbt_str_split(random_radical, ",");
1166     xbt_dynar_foreach(radical_elements, iter, groups) {
1167       radical_ends = xbt_str_split(groups, "-");
1168       switch (xbt_dynar_length(radical_ends)) {
1169       case 1:
1170         xbt_assert(!xbt_dict_get_or_null(random_value, random_id),
1171                    "Custom Random '%s' already exists !", random_id);
1172         res = random_generate(random);
1173         tmpbuf =
1174             bprintf("%s%d", random_id,
1175                     atoi(xbt_dynar_getfirst_as(radical_ends, char *)));
1176         xbt_dict_set(random_value, tmpbuf, bprintf("%f", res), NULL);
1177         xbt_free(tmpbuf);
1178         break;
1179
1180       case 2:
1181         start = surf_parse_get_int(xbt_dynar_get_as(radical_ends, 0, char *));
1182         end = surf_parse_get_int(xbt_dynar_get_as(radical_ends, 1, char *));
1183         for (i = start; i <= end; i++) {
1184           xbt_assert(!xbt_dict_get_or_null(random_value, random_id),
1185                      "Custom Random '%s' already exists !", bprintf("%s%d",
1186                                                                     random_id,
1187                                                                     i));
1188           res = random_generate(random);
1189           tmpbuf = bprintf("%s%d", random_id, i);
1190           xbt_dict_set(random_value, tmpbuf, bprintf("%f", res), NULL);
1191           xbt_free(tmpbuf);
1192         }
1193         break;
1194       default:
1195         XBT_CRITICAL("Malformed radical");
1196         break;
1197       }
1198       res = random_generate(random);
1199       rd_name = bprintf("%s_router", random_id);
1200       rd_value = bprintf("%f", res);
1201       xbt_dict_set(random_value, rd_name, rd_value, NULL);
1202
1203       xbt_dynar_free(&radical_ends);
1204     }
1205     free(rd_name);
1206     xbt_dynar_free(&radical_elements);
1207   }
1208 }
1209
1210 void routing_register_callbacks()
1211 {
1212   sg_platf_host_add_cb(parse_S_host);
1213   sg_platf_router_add_cb(parse_S_router);
1214
1215   surfxml_add_callback(STag_surfxml_random_cb_list, &routing_parse_Srandom);
1216
1217   surfxml_add_callback(STag_surfxml_route_cb_list, &routing_parse_S_route);
1218   surfxml_add_callback(STag_surfxml_ASroute_cb_list, &routing_parse_S_ASroute);
1219   surfxml_add_callback(STag_surfxml_bypassRoute_cb_list,
1220                        &routing_parse_S_bypassRoute);
1221
1222   surfxml_add_callback(ETag_surfxml_link_ctn_cb_list, &routing_parse_link_ctn);
1223
1224   surfxml_add_callback(ETag_surfxml_route_cb_list, &routing_parse_E_route);
1225   surfxml_add_callback(ETag_surfxml_ASroute_cb_list, &routing_parse_E_ASroute);
1226   surfxml_add_callback(ETag_surfxml_bypassRoute_cb_list,
1227                        &routing_parse_E_bypassRoute);
1228
1229   sg_platf_cluster_add_cb(routing_parse_cluster);
1230
1231   sg_platf_peer_add_cb(routing_parse_peer);
1232   sg_platf_postparse_add_cb(routing_parse_postparse);
1233
1234   sg_platf_storage_add_cb(routing_parse_storage);
1235   sg_platf_mstorage_add_cb(routing_parse_mstorage);
1236   sg_platf_storage_type_add_cb(routing_parse_storage_type);
1237   sg_platf_mount_add_cb(routing_parse_mount);
1238
1239   /* we care about the ASes while parsing the platf. Incredible, isnt it? */
1240   sg_platf_AS_end_add_cb(routing_AS_end);
1241   sg_platf_AS_begin_add_cb(routing_AS_begin);
1242
1243 #ifdef HAVE_TRACING
1244   instr_routing_define_callbacks();
1245 #endif
1246 }
1247
1248 /**
1249  * \brief Recursive function for finalize
1250  *
1251  * \param rc the source host name
1252  *
1253  * This fuction is call by "finalize". It allow to finalize the
1254  * AS or routing components. It delete all the structures.
1255  */
1256 static void finalize_rec(AS_t as) {
1257   xbt_dict_cursor_t cursor = NULL;
1258   char *key;
1259   AS_t elem;
1260
1261   xbt_dict_foreach(as->routing_sons, cursor, key, elem) {
1262     finalize_rec(elem);
1263   }
1264
1265   as->finalize(as);
1266 }
1267
1268 /** \brief Frees all memory allocated by the routing module */
1269 void routing_exit(void) {
1270   if (!global_routing)
1271     return;
1272   xbt_dynar_free(&global_routing->last_route);
1273   finalize_rec(global_routing->root);
1274   xbt_free(global_routing);
1275 }