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 / surf_routing.c
1 /* Copyright (c) 2009, 2010. 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 #include "surf_routing_private.h"
9 #include "surf/surf_routing.h"
10 #include "surf/surfxml_parse_values.h"
11
12 xbt_lib_t host_lib;
13 int ROUTING_HOST_LEVEL; //Routing level
14 int     SURF_CPU_LEVEL;         //Surf cpu level
15 int SURF_WKS_LEVEL;             //Surf workstation level
16 int SIMIX_HOST_LEVEL;   //Simix level
17 int     MSG_HOST_LEVEL;         //Msg level
18 int     SD_HOST_LEVEL;          //Simdag level
19 int     COORD_HOST_LEVEL;       //Coordinates level
20 int NS3_HOST_LEVEL;             //host node for ns3
21
22 xbt_lib_t link_lib;
23 int SD_LINK_LEVEL;              //Simdag level
24 int SURF_LINK_LEVEL;    //Surf level
25 int NS3_LINK_LEVEL;             //link for ns3
26
27 xbt_lib_t as_router_lib;
28 int ROUTING_ASR_LEVEL;  //Routing level
29 int COORD_ASR_LEVEL;    //Coordinates level
30 int NS3_ASR_LEVEL;              //host node for ns3
31
32 static xbt_dict_t patterns = NULL;
33 static xbt_dict_t random_value = NULL;
34
35 /* Global vars */
36 routing_global_t global_routing = NULL;
37 routing_component_t current_routing = NULL;
38 model_type_t current_routing_model = NULL;
39
40 /* global parse functions */
41 xbt_dynar_t link_list = NULL;    /* temporary store of current list link of a route */
42 static const char *src = NULL;        /* temporary store the source name of a route */
43 static const char *dst = NULL;        /* temporary store the destination name of a route */
44 static char *gw_src = NULL;     /* temporary store the gateway source name of a route */
45 static char *gw_dst = NULL;     /* temporary store the gateway destination name of a route */
46 static double_f_cpvoid_t get_link_latency = NULL;
47
48 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_route, surf, "Routing part of surf");
49
50 static void routing_parse_Speer(void);          /* peer bypass */
51 static void routing_parse_Srandom(void);        /* random bypass */
52 static void routing_parse_Erandom(void);        /* random bypass */
53
54 static void routing_parse_Sconfig(void);        /* config Tag */
55 static void routing_parse_Econfig(void);        /* config Tag */
56
57 static char* replace_random_parameter(char * chaine);
58 static void clean_dict_random(void);
59
60 /* this lines are only for replace use like index in the model table */
61 typedef enum {
62   SURF_MODEL_FULL = 0,
63   SURF_MODEL_FLOYD,
64   SURF_MODEL_DIJKSTRA,
65   SURF_MODEL_DIJKSTRACACHE,
66   SURF_MODEL_NONE,
67   SURF_MODEL_RULEBASED
68 } e_routing_types;
69
70 struct s_model_type routing_models[] = { {"Full",
71                                           "Full routing data (fast, large memory requirements, fully expressive)",
72                                           model_full_create,
73                                           model_full_load,
74                                           model_full_unload,
75                                           model_full_end},
76 {"Floyd",
77  "Floyd routing data (slow initialization, fast lookup, lesser memory requirements, shortest path routing only)",
78  model_floyd_create, model_floyd_load, model_floyd_unload,
79  model_floyd_end},
80 {"Dijkstra",
81  "Dijkstra routing data (fast initialization, slow lookup, small memory requirements, shortest path routing only)",
82  model_dijkstra_create, model_dijkstra_both_load,
83  model_dijkstra_both_unload, model_dijkstra_both_end},
84 {"DijkstraCache",
85  "Dijkstra routing data (fast initialization, fast lookup, small memory requirements, shortest path routing only)",
86  model_dijkstracache_create, model_dijkstra_both_load,
87  model_dijkstra_both_unload, model_dijkstra_both_end},
88 {"none", "No routing (usable with Constant network only)",
89  model_none_create, model_none_load, model_none_unload, model_none_end},
90 {"RuleBased", "Rule-Based routing data (...)", model_rulebased_create,
91  model_rulebased_load, model_rulebased_unload, model_rulebased_end},
92 {"Vivaldi", "Vivaldi routing", model_rulebased_create,
93   model_rulebased_load, model_rulebased_unload, model_rulebased_end},
94 {NULL, NULL, NULL, NULL, NULL, NULL}
95 };
96
97 static double euclidean_dist_comp(int index, xbt_dynar_t src, xbt_dynar_t dst)
98 {
99         double src_coord, dst_coord;
100
101         src_coord = atof(xbt_dynar_get_as(src, index, char *));
102         dst_coord = atof(xbt_dynar_get_as(dst, index, char *));
103
104         return (src_coord-dst_coord)*(src_coord-dst_coord);
105
106 }
107
108 static double base_vivaldi_get_latency (const char *src, const char *dst)
109 {
110   double euclidean_dist;
111   xbt_dynar_t src_ctn, dst_ctn;
112   src_ctn = xbt_lib_get_or_null(host_lib, src, COORD_HOST_LEVEL);
113   if(!src_ctn) src_ctn = xbt_lib_get_or_null(as_router_lib, src, COORD_ASR_LEVEL);
114   dst_ctn = xbt_lib_get_or_null(host_lib, dst, COORD_HOST_LEVEL);
115   if(!dst_ctn) dst_ctn = xbt_lib_get_or_null(as_router_lib, dst, COORD_ASR_LEVEL);
116
117   if(dst_ctn == NULL || src_ctn == NULL)
118   xbt_die("Coord src '%s' :%p   dst '%s' :%p",src,src_ctn,dst,dst_ctn);
119
120   euclidean_dist = sqrt (euclidean_dist_comp(0,src_ctn,dst_ctn)+euclidean_dist_comp(1,src_ctn,dst_ctn))
121                                  + fabs(atof(xbt_dynar_get_as(src_ctn, 2, char *)))+fabs(atof(xbt_dynar_get_as(dst_ctn, 2, char *)));
122
123   xbt_assert(euclidean_dist>=0, "Euclidean Dist is less than 0\"%s\" and \"%.2f\"", src, euclidean_dist);
124
125   //From .ms to .s
126   return euclidean_dist / 1000;
127 }
128
129 static double vivaldi_get_link_latency (routing_component_t rc,const char *src, const char *dst, route_extended_t e_route)
130 {
131   if(get_network_element_type(src) == SURF_NETWORK_ELEMENT_AS) {
132           int need_to_clean = e_route?0:1;
133           double latency;
134           e_route = e_route?e_route:(*(rc->get_route)) (rc, src, dst);
135           latency = base_vivaldi_get_latency(e_route->src_gateway,e_route->dst_gateway);
136           if(need_to_clean) generic_free_extended_route(e_route);
137           return latency;
138   } else {
139           return base_vivaldi_get_latency(src,dst);
140   }
141 }
142
143 /**
144  * \brief Add a "host" to the network element list
145  */
146 static void parse_S_host(const char *host_id, const char* coord)
147 {
148   network_element_info_t info = NULL;
149   if (current_routing->hierarchy == SURF_ROUTING_NULL)
150     current_routing->hierarchy = SURF_ROUTING_BASE;
151   xbt_assert(!xbt_lib_get_or_null(host_lib, host_id,ROUTING_HOST_LEVEL),
152               "Reading a host, processing unit \"%s\" already exists",
153               host_id);
154   xbt_assert(current_routing->set_processing_unit,
155               "no defined method \"set_processing_unit\" in \"%s\"",
156               current_routing->name);
157   (*(current_routing->set_processing_unit)) (current_routing, host_id);
158   info = xbt_new0(s_network_element_info_t, 1);
159   info->rc_component = current_routing;
160   info->rc_type = SURF_NETWORK_ELEMENT_HOST;
161   xbt_lib_set(host_lib,host_id,ROUTING_HOST_LEVEL,(void *) info);
162   if (strcmp(coord,"")) {
163         if(!COORD_HOST_LEVEL) xbt_die("To use coordinates, you must set configuration 'coordinates' to 'yes'");
164     xbt_dynar_t ctn = xbt_str_split_str(coord, " ");
165     xbt_dynar_shrink(ctn, 0);
166     xbt_lib_set(host_lib,host_id,COORD_HOST_LEVEL,(void *) ctn);
167   }
168 }
169
170 static void parse_E_host(void)
171 {
172          xbt_dict_cursor_t cursor = NULL;
173           char *key;
174           char *elem;
175
176           xbt_dict_foreach(current_property_set, cursor, key, elem) {
177                   XBT_DEBUG("property : %s = %s",key,elem);
178                 }
179 }
180
181 /*
182  * \brief Add a host to the network element list from XML
183  */
184 static void parse_S_host_XML(void)
185 {
186         parse_S_host(A_surfxml_host_id, A_surfxml_host_coordinates);
187 }
188 static void parse_E_host_XML(void)
189 {
190         parse_E_host();
191 }
192
193 /*
194  * \brief Add a host to the network element list from lua script
195  */
196 static void parse_S_host_lua(const char *host_id, const char *coord)
197 {
198   parse_S_host(host_id, coord);
199 }
200
201
202 /**
203  * \brief Add a "router" to the network element list
204  */
205 static void parse_S_router(void)
206 {
207   network_element_info_t info = NULL;
208   if (current_routing->hierarchy == SURF_ROUTING_NULL)
209     current_routing->hierarchy = SURF_ROUTING_BASE;
210   xbt_assert(!xbt_lib_get_or_null(as_router_lib,struct_router->V_router_id, ROUTING_ASR_LEVEL),
211               "Reading a router, processing unit \"%s\" already exists",
212               struct_router->V_router_id);
213   xbt_assert(current_routing->set_processing_unit,
214               "no defined method \"set_processing_unit\" in \"%s\"",
215               current_routing->name);
216   (*(current_routing->set_processing_unit)) (current_routing,
217                   struct_router->V_router_id);
218   info = xbt_new0(s_network_element_info_t, 1);
219   info->rc_component = current_routing;
220   info->rc_type = SURF_NETWORK_ELEMENT_ROUTER;
221
222   xbt_lib_set(as_router_lib,struct_router->V_router_id,ROUTING_ASR_LEVEL,(void *) info);
223   if (strcmp(A_surfxml_router_coordinates,"")) {
224         if(!COORD_ASR_LEVEL) xbt_die("To use coordinates, you must set configuration 'coordinates' to 'yes'");
225     xbt_dynar_t ctn = xbt_str_split_str(A_surfxml_router_coordinates, " ");
226     xbt_dynar_shrink(ctn, 0);
227     xbt_lib_set(as_router_lib,struct_router->V_router_id,COORD_ASR_LEVEL,(void *) ctn);
228   }
229 }
230
231 /**
232  * brief Add a "router" to the network element list from XML description
233  */
234 static void parse_S_router_XML(void)
235 {
236         return parse_S_router();
237 }
238
239 /**
240  * brief Add a "router" to the network element list from XML description
241  */
242 static void parse_S_router_lua(const char* router_id)
243 {
244         struct_router->V_router_id = xbt_strdup(router_id);
245         struct_router->V_router_coord = xbt_strdup("");
246         return parse_S_router();
247 }
248
249 /**
250  * \brief Set the endponints for a route
251  */
252 static void parse_S_route_new_and_endpoints(const char *src_id, const char *dst_id)
253 {
254   if (src != NULL && dst != NULL && link_list != NULL)
255     THROWF(arg_error, 0, "Route between %s to %s can not be defined",
256            src_id, dst_id);
257   src = src_id;
258   dst = dst_id;
259   xbt_assert(strlen(src) > 0 || strlen(dst) > 0,
260               "Some limits are null in the route between \"%s\" and \"%s\"",
261               src, dst);
262   link_list = xbt_dynar_new(sizeof(char *), &xbt_free_ref);
263 }
264
265 /**
266  * \brief Set the endpoints for a route from XML
267  */
268 static void parse_S_route_new_and_endpoints_XML(void)
269 {
270   parse_S_route_new_and_endpoints(A_surfxml_route_src,
271                                   A_surfxml_route_dst);
272 }
273
274 /**
275  * \brief Set the endpoints for a route from lua
276  */
277 static void parse_S_route_new_and_endpoints_lua(const char *id_src, const char *id_dst)
278 {
279   parse_S_route_new_and_endpoints(id_src, id_dst);
280 }
281
282 /**
283  * \brief Set the endponints and gateways for a ASroute
284  */
285 static void parse_S_ASroute_new_and_endpoints(void)
286 {
287   if (src != NULL && dst != NULL && link_list != NULL)
288     THROWF(arg_error, 0, "Route between %s to %s can not be defined",
289            A_surfxml_ASroute_src, A_surfxml_ASroute_dst);
290   src = A_surfxml_ASroute_src;
291   dst = A_surfxml_ASroute_dst;
292   gw_src = A_surfxml_ASroute_gw_src;
293   gw_dst = A_surfxml_ASroute_gw_dst;
294   xbt_assert(strlen(src) > 0 || strlen(dst) > 0 || strlen(gw_src) > 0
295               || strlen(gw_dst) > 0,
296               "Some limits are null in the route between \"%s\" and \"%s\"",
297               src, dst);
298   link_list = xbt_dynar_new(sizeof(char *), &xbt_free_ref);
299 }
300
301 /**
302  * \brief Set the endponints for a bypassRoute
303  */
304 static void parse_S_bypassRoute_new_and_endpoints(void)
305 {
306   if (src != NULL && dst != NULL && link_list != NULL)
307     THROWF(arg_error, 0,
308            "Bypass Route between %s to %s can not be defined",
309            A_surfxml_bypassRoute_src, A_surfxml_bypassRoute_dst);
310   src = A_surfxml_bypassRoute_src;
311   dst = A_surfxml_bypassRoute_dst;
312   gw_src = A_surfxml_bypassRoute_gw_src;
313   gw_dst = A_surfxml_bypassRoute_gw_dst;
314   xbt_assert(strlen(src) > 0 || strlen(dst) > 0 || strlen(gw_src) > 0
315               || strlen(gw_dst) > 0,
316               "Some limits are null in the route between \"%s\" and \"%s\"",
317               src, dst);
318   link_list = xbt_dynar_new(sizeof(char *), &xbt_free_ref);
319 }
320
321 /**
322  * \brief Set a new link on the actual list of link for a route or ASroute
323  */
324 static void parse_E_link_ctn_new_elem(const char *link_id)
325 {
326   char *val;
327   val = xbt_strdup(link_id);
328   xbt_dynar_push(link_list, &val);
329 }
330
331 /**
332  * \brief Set a new link on the actual list of link for a route or ASroute from XML
333  */
334
335 static void parse_E_link_ctn_new_elem_XML(void)
336 {
337   if (A_surfxml_link_ctn_direction == A_surfxml_link_ctn_direction_NONE)
338     parse_E_link_ctn_new_elem(A_surfxml_link_ctn_id);
339   if (A_surfxml_link_ctn_direction == A_surfxml_link_ctn_direction_UP) {
340     char *link_id = bprintf("%s_UP", A_surfxml_link_ctn_id);
341     parse_E_link_ctn_new_elem(link_id);
342     free(link_id);
343   }
344   if (A_surfxml_link_ctn_direction == A_surfxml_link_ctn_direction_DOWN) {
345     char *link_id = bprintf("%s_DOWN", A_surfxml_link_ctn_id);
346     parse_E_link_ctn_new_elem(link_id);
347     free(link_id);
348   }
349 }
350
351 /**
352  * \brief Set a new link on the actual list of link for a route or ASroute from lua
353  */
354 static void parse_E_link_c_ctn_new_elem_lua(const char *link_id)
355 {
356   parse_E_link_ctn_new_elem(link_id);
357 }
358
359 /**
360  * \brief Store the route by calling the set_route function of the current routing component
361  */
362 static void parse_E_route_store_route(void)
363 {
364   name_route_extended_t route = xbt_new0(s_name_route_extended_t, 1);
365   route->generic_route.link_list = link_list;
366   xbt_assert(current_routing->set_route,
367               "no defined method \"set_route\" in \"%s\"",
368               current_routing->name);
369   (*(current_routing->set_route)) (current_routing, src, dst, route);
370   link_list = NULL;
371   src = NULL;
372   dst = NULL;
373 }
374
375 /**
376  * \brief Store the ASroute by calling the set_ASroute function of the current routing component
377  */
378 static void parse_E_ASroute_store_route(void)
379 {
380   name_route_extended_t e_route = xbt_new0(s_name_route_extended_t, 1);
381   e_route->generic_route.link_list = link_list;
382   e_route->src_gateway = xbt_strdup(gw_src);
383   e_route->dst_gateway = xbt_strdup(gw_dst);
384   xbt_assert(current_routing->set_ASroute,
385               "no defined method \"set_ASroute\" in \"%s\"",
386               current_routing->name);
387   (*(current_routing->set_ASroute)) (current_routing, src, dst, e_route);
388   link_list = NULL;
389   src = NULL;
390   dst = NULL;
391   gw_src = NULL;
392   gw_dst = NULL;
393 }
394
395 /**
396  * \brief Store the bypass route by calling the set_bypassroute function of the current routing component
397  */
398 static void parse_E_bypassRoute_store_route(void)
399 {
400   route_extended_t e_route = xbt_new0(s_route_extended_t, 1);
401   e_route->generic_route.link_list = link_list;
402   e_route->src_gateway = xbt_strdup(gw_src);
403   e_route->dst_gateway = xbt_strdup(gw_dst);
404   xbt_assert(current_routing->set_bypassroute,
405               "no defined method \"set_bypassroute\" in \"%s\"",
406               current_routing->name);
407   (*(current_routing->set_bypassroute)) (current_routing, src, dst,
408                                          e_route);
409   link_list = NULL;
410   src = NULL;
411   dst = NULL;
412   gw_src = NULL;
413   gw_dst = NULL;
414 }
415
416 /**
417  * \brief Make a new routing component
418  *
419  * make the new structure and
420  * set the parsing functions to allows parsing the part of the routing tree
421  */
422 void routing_AS_init(const char *AS_id, const char *wanted_routing_type)
423 {
424   routing_component_t new_routing;
425   model_type_t model = NULL;
426   int cpt;
427   /* search the routing model */
428   for (cpt = 0; routing_models[cpt].name; cpt++)
429     if (!strcmp(wanted_routing_type, routing_models[cpt].name))
430       model = &routing_models[cpt];
431   /* if its not exist, error */
432   if (model == NULL) {
433     fprintf(stderr, "Routing model %s not found. Existing models:\n",
434             wanted_routing_type);
435     for (cpt = 0; routing_models[cpt].name; cpt++)
436         fprintf(stderr, "   %s: %s\n", routing_models[cpt].name,
437                 routing_models[cpt].desc);
438     xbt_die(NULL);
439   }
440
441   /* make a new routing component */
442   new_routing = (routing_component_t) (*(model->create)) ();
443   new_routing->routing = model;
444   new_routing->hierarchy = SURF_ROUTING_NULL;
445   new_routing->name = xbt_strdup(AS_id);
446   new_routing->routing_sons = xbt_dict_new();
447
448   /* Hack for Vivaldi */
449   if(!strcmp(model->name,"Vivaldi"))
450         new_routing->get_latency = vivaldi_get_link_latency;
451
452   if (current_routing == NULL && global_routing->root == NULL) {
453
454     /* it is the first one */
455     new_routing->routing_father = NULL;
456     global_routing->root = new_routing;
457
458   } else if (current_routing != NULL && global_routing->root != NULL) {
459
460     xbt_assert(!xbt_dict_get_or_null
461                 (current_routing->routing_sons, AS_id),
462                 "The AS \"%s\" already exists", AS_id);
463     /* it is a part of the tree */
464     new_routing->routing_father = current_routing;
465     /* set the father behavior */
466     if (current_routing->hierarchy == SURF_ROUTING_NULL)
467       current_routing->hierarchy = SURF_ROUTING_RECURSIVE;
468     /* add to the sons dictionary */
469     xbt_dict_set(current_routing->routing_sons, AS_id,
470                  (void *) new_routing, NULL);
471     /* add to the father element list */
472     (*(current_routing->set_autonomous_system)) (current_routing, AS_id);
473     /* unload the prev parse rules */
474     (*(current_routing->routing->unload)) ();
475
476   } else {
477     THROWF(arg_error, 0, "All defined components must be belong to a AS");
478   }
479   /* set the new parse rules */
480   (*(new_routing->routing->load)) ();
481   /* set the new current component of the tree */
482   current_routing = new_routing;
483 }
484
485 /*
486  * Detect the routing model type of the routing component from XML platforms
487  */
488 static void parse_S_AS(void)
489 {
490   routing_AS_init(A_surfxml_AS_id, A_surfxml_AS_routing);
491 }
492
493
494 /**
495  * \brief Finish the creation of a new routing component
496  *
497  * When you finish to read the routing component, other structures must be created. 
498  * the "end" method allow to do that for any routing model type
499  */
500 void routing_AS_end(const char *AS_id)
501 {
502
503   if (current_routing == NULL) {
504     THROWF(arg_error, 0, "Close AS(%s), that were never opened", AS_id);
505   } else {
506     network_element_info_t info = NULL;
507     xbt_assert(!xbt_lib_get_or_null(as_router_lib,current_routing->name, ROUTING_ASR_LEVEL),
508                 "The AS \"%s\" already exists",current_routing->name);
509     info = xbt_new0(s_network_element_info_t, 1);
510     info->rc_component = current_routing->routing_father;
511     info->rc_type = SURF_NETWORK_ELEMENT_AS;
512     xbt_lib_set(as_router_lib,current_routing->name,ROUTING_ASR_LEVEL,(void *) info);
513
514     (*(current_routing->routing->unload)) ();
515     (*(current_routing->routing->end)) ();
516     current_routing = current_routing->routing_father;
517     if (current_routing != NULL)
518       (*(current_routing->routing->load)) ();
519   }
520 }
521
522 /*
523  * \brief Finish the creation of a new routing component from XML
524  */
525 static void parse_E_AS(void)
526 {
527   routing_AS_end(A_surfxml_AS_id);
528 }
529
530 /* Aux Business methods */
531
532 /**
533  * \brief Get the AS name of the element
534  *
535  * \param name the host name
536  *
537  */
538 static char* elements_As_name(const char *name)
539 {
540   routing_component_t as_comp;
541
542   /* (1) find the as where the host is located */
543   as_comp = ((network_element_info_t)
544             xbt_lib_get_or_null(host_lib,name, ROUTING_HOST_LEVEL))->rc_component;
545   return as_comp->name;
546 }
547
548
549 /**
550  * \brief Get the AS father and the first elements of the chain
551  *
552  * \param src the source host name 
553  * \param dst the destination host name
554  * 
555  * Get the common father of the to processing units, and the first different 
556  * father in the chain
557  */
558 static void elements_father(const char *src, const char *dst,
559                             routing_component_t *res_father,
560                             routing_component_t *res_src,
561                             routing_component_t *res_dst)
562 {
563   xbt_assert(src && dst, "bad parameters for \"elements_father\" method");
564 #define ELEMENTS_FATHER_MAXDEPTH 16 /* increase if it is not enough */
565   routing_component_t src_as, dst_as;
566   routing_component_t path_src[ELEMENTS_FATHER_MAXDEPTH];
567   routing_component_t path_dst[ELEMENTS_FATHER_MAXDEPTH];
568   int index_src = 0;
569   int index_dst = 0;
570   routing_component_t current;
571   routing_component_t current_src;
572   routing_component_t current_dst;
573   routing_component_t father;
574
575   /* (1) find the as where the src and dst are located */
576   network_element_info_t src_data = xbt_lib_get_or_null(host_lib, src,
577                                                         ROUTING_HOST_LEVEL);
578   network_element_info_t dst_data = xbt_lib_get_or_null(host_lib, dst,
579                                                         ROUTING_HOST_LEVEL);
580   if (!src_data)
581     src_data = xbt_lib_get_or_null(as_router_lib, src, ROUTING_ASR_LEVEL);
582   if (!dst_data)
583     dst_data = xbt_lib_get_or_null(as_router_lib, dst, ROUTING_ASR_LEVEL);
584   src_as = src_data->rc_component;
585   dst_as = dst_data->rc_component;
586
587   xbt_assert(src_as && dst_as,
588              "Ask for route \"from\"(%s) or \"to\"(%s) no found", src, dst);
589
590   /* (2) find the path to the root routing component */
591   for (current = src_as ; current != NULL ; current = current->routing_father) {
592     if (index_src >= ELEMENTS_FATHER_MAXDEPTH)
593       xbt_die("ELEMENTS_FATHER_MAXDEPTH should be increased for path_src");
594     path_src[index_src++] = current;
595   }
596   for (current = dst_as ; current != NULL ; current = current->routing_father) {
597     if (index_dst >= ELEMENTS_FATHER_MAXDEPTH)
598       xbt_die("ELEMENTS_FATHER_MAXDEPTH should be increased for path_dst");
599     path_dst[index_dst++] = current;
600   }
601
602   /* (3) find the common father */
603   do {
604     current_src = path_src[--index_src];
605     current_dst = path_dst[--index_dst];
606   } while (index_src > 0 && index_dst > 0 && current_src == current_dst);
607
608   /* (4) they are not in the same routing component, make the path */
609   if (current_src == current_dst)
610     father = current_src;
611   else
612     father = path_src[index_src + 1];
613
614   /* (5) result generation */
615   *res_father = father;         /* first the common father of src and dst */
616   *res_src = current_src;       /* second the first different father of src */
617   *res_dst = current_dst;       /* three  the first different father of dst */
618
619 #undef ELEMENTS_FATHER_MAXDEPTH
620 }
621
622 /* Global Business methods */
623
624 /**
625  * \brief Recursive function for get_route_latency
626  *
627  * \param src the source host name 
628  * \param dst the destination host name
629  * \param *e_route the route where the links are stored
630  * \param *latency the latency, if needed
631  * 
632  * This function is called by "get_route" and "get_latency". It allows to walk
633  * recursively through the routing components tree.
634  */
635 static void _get_route_latency(const char *src, const char *dst,
636                                xbt_dynar_t *route, double *latency)
637 {
638   XBT_DEBUG("Solve route/latency  \"%s\" to \"%s\"", src, dst);
639   xbt_assert(src && dst, "bad parameters for \"_get_route_latency\" method");
640
641   routing_component_t common_father;
642   routing_component_t src_father;
643   routing_component_t dst_father;
644   elements_father(src, dst, &common_father, &src_father, &dst_father);
645
646   if (src_father == dst_father) { /* SURF_ROUTING_BASE */
647
648     route_extended_t e_route = NULL;
649     if (route) {
650       e_route = common_father->get_route(common_father, src, dst);
651       xbt_assert(e_route, "no route between \"%s\" and \"%s\"", src, dst);
652       *route = e_route->generic_route.link_list;
653     }
654     if (latency) {
655       *latency = common_father->get_latency(common_father, src, dst, e_route);
656       xbt_assert(*latency >= 0.0,
657                  "latency error on route between \"%s\" and \"%s\"", src, dst);
658     }
659     if (e_route) {
660       xbt_free(e_route->src_gateway);
661       xbt_free(e_route->dst_gateway);
662       xbt_free(e_route);
663     }
664
665   } else {                      /* SURF_ROUTING_RECURSIVE */
666
667     route_extended_t e_route_bypass = NULL;
668     if (common_father->get_bypass_route)
669       e_route_bypass = common_father->get_bypass_route(common_father, src, dst);
670
671     xbt_assert(!latency || !e_route_bypass,
672                "Bypass cannot work yet with get_latency");
673
674     route_extended_t e_route_cnt = e_route_bypass
675       ? e_route_bypass
676       : common_father->get_route(common_father,
677                                src_father->name, dst_father->name);
678
679     xbt_assert(e_route_cnt, "no route between \"%s\" and \"%s\"",
680                src_father->name, dst_father->name);
681
682     xbt_assert((e_route_cnt->src_gateway == NULL) ==
683                (e_route_cnt->dst_gateway == NULL),
684                "bad gateway for route between \"%s\" and \"%s\"", src, dst);
685
686     if (route) {
687       *route = xbt_dynar_new(global_routing->size_of_link, NULL);
688     }
689     if (latency) {
690       *latency = common_father->get_latency(common_father,
691                                             src_father->name, dst_father->name,
692                                             e_route_cnt);
693       xbt_assert(*latency >= 0.0,
694                  "latency error on route between \"%s\" and \"%s\"",
695                  src_father->name, dst_father->name);
696     }
697
698     void *link;
699     unsigned int cpt;
700
701     if (strcmp(src, e_route_cnt->src_gateway)) {
702       double latency_src;
703       xbt_dynar_t route_src;
704
705       _get_route_latency(src, e_route_cnt->src_gateway,
706                          (route ? &route_src : NULL),
707                          (latency ? &latency_src : NULL));
708       if (route) {
709         xbt_assert(route_src, "no route between \"%s\" and \"%s\"",
710                    src, e_route_cnt->src_gateway);
711         xbt_dynar_foreach(route_src, cpt, link) {
712           xbt_dynar_push(*route, &link);
713         }
714         xbt_dynar_free(&route_src);
715       }
716       if (latency) {
717         xbt_assert(latency_src >= 0.0,
718                    "latency error on route between \"%s\" and \"%s\"",
719                    src, e_route_cnt->src_gateway);
720         *latency += latency_src;
721       }
722     }
723
724     if (route) {
725       xbt_dynar_foreach(e_route_cnt->generic_route.link_list, cpt, link) {
726         xbt_dynar_push(*route, &link);
727       }
728     }
729
730     if (strcmp(e_route_cnt->dst_gateway, dst)) {
731       double latency_dst;
732       xbt_dynar_t route_dst;
733
734       _get_route_latency(e_route_cnt->dst_gateway, dst,
735                          (route ? &route_dst : NULL),
736                          (latency ? &latency_dst : NULL));
737       if (route) {
738         xbt_assert(route_dst, "no route between \"%s\" and \"%s\"",
739                    e_route_cnt->dst_gateway, dst);
740         xbt_dynar_foreach(route_dst, cpt, link) {
741           xbt_dynar_push(*route, &link);
742         }
743         xbt_dynar_free(&route_dst);
744       }
745       if (latency) {
746         xbt_assert(latency_dst >= 0.0,
747                    "latency error on route between \"%s\" and \"%s\"",
748                    e_route_cnt->dst_gateway, dst);
749         *latency += latency_dst;
750       }
751     }
752
753     generic_free_extended_route(e_route_cnt);
754   }
755 }
756
757 /**
758  * \brief Generic function for get_route, get_route_no_cleanup, and get_latency
759  */
760 static void get_route_latency(const char *src, const char *dst,
761                               xbt_dynar_t *route, double *latency, int cleanup)
762 {
763   _get_route_latency(src, dst, route, latency);
764   xbt_assert(!route || *route, "no route between \"%s\" and \"%s\"", src, dst);
765   xbt_assert(!latency || *latency >= 0.0,
766              "latency error on route between \"%s\" and \"%s\"", src, dst);
767   if (route) {
768     xbt_dynar_free(&global_routing->last_route);
769     global_routing->last_route = cleanup ? *route : NULL;
770   }
771 }
772
773 /**
774  * \brief Generic method: find a route between hosts
775  *
776  * \param src the source host name 
777  * \param dst the destination host name
778  * 
779  * walk through the routing components tree and find a route between hosts
780  * by calling the differents "get_route" functions in each routing component.
781  * No need to free the returned dynar. It will be freed at the next call.
782  */
783 static xbt_dynar_t get_route(const char *src, const char *dst)
784 {
785   xbt_dynar_t route = NULL;
786   get_route_latency(src, dst, &route, NULL, 1);
787   return route;
788 }
789
790 /**
791  * \brief Generic method: find a route between hosts
792  *
793  * \param src the source host name
794  * \param dst the destination host name
795  *
796  * same as get_route, but return NULL if any exception is raised.
797  */
798 static xbt_dynar_t get_route_or_null(const char *src, const char *dst)
799 {
800   xbt_dynar_t route = NULL;
801   xbt_ex_t exception;
802   TRY {
803     get_route_latency(src, dst, &route, NULL, 1);
804   }CATCH(exception) {
805     xbt_ex_free(exception);
806     return NULL;
807   }
808   return route;
809 }
810
811 /**
812  * \brief Generic method: find a route between hosts
813  *
814  * \param src the source host name
815  * \param dst the destination host name
816  *
817  * walk through the routing components tree and find a route between hosts
818  * by calling the differents "get_route" functions in each routing component.
819  * Leaves the caller the responsability to clean the returned dynar.
820  */
821 static xbt_dynar_t get_route_no_cleanup(const char *src, const char *dst)
822 {
823   xbt_dynar_t route = NULL;
824   get_route_latency(src, dst, &route, NULL, 0);
825   return route;
826 }
827
828 /*Get Latency*/
829 static double get_latency(const char *src, const char *dst)
830 {
831   double latency = -1.0;
832   get_route_latency(src, dst, NULL, &latency, 0);
833   return latency;
834 }
835
836 /**
837  * \brief Recursive function for finalize
838  *
839  * \param rc the source host name 
840  * 
841  * This fuction is call by "finalize". It allow to finalize the 
842  * AS or routing components. It delete all the structures.
843  */
844 static void _finalize(routing_component_t rc)
845 {
846   if (rc) {
847     xbt_dict_cursor_t cursor = NULL;
848     char *key;
849     routing_component_t elem;
850     xbt_dict_foreach(rc->routing_sons, cursor, key, elem) {
851       _finalize(elem);
852     }
853     xbt_dict_t tmp_sons = rc->routing_sons;
854     char *tmp_name = rc->name;
855     xbt_dict_free(&tmp_sons);
856     xbt_free(tmp_name);
857     xbt_assert(rc->finalize, "no defined method \"finalize\" in \"%s\"",
858                 current_routing->name);
859     (*(rc->finalize)) (rc);
860   }
861 }
862
863 /**
864  * \brief Generic method: delete all the routing structures
865  * 
866  * walk through the routing components tree and delete the structures
867  * by calling the differents "finalize" functions in each routing component
868  */
869 static void finalize(void)
870 {
871   /* delete recursibly all the tree */
872   _finalize(global_routing->root);
873   /* delete last_route */
874   xbt_dynar_free(&(global_routing->last_route));
875   /* delete global routing structure */
876   xbt_free(global_routing);
877 }
878
879 static xbt_dynar_t recursive_get_onelink_routes(routing_component_t rc)
880 {
881   xbt_dynar_t ret = xbt_dynar_new(sizeof(onelink_t), xbt_free);
882
883   //adding my one link routes
884   unsigned int cpt;
885   void *link;
886   xbt_dynar_t onelink_mine = rc->get_onelink_routes(rc);
887   if (onelink_mine) {
888     xbt_dynar_foreach(onelink_mine, cpt, link) {
889       xbt_dynar_push(ret, &link);
890     }
891   }
892   //recursing
893   char *key;
894   xbt_dict_cursor_t cursor = NULL;
895   routing_component_t rc_child;
896   xbt_dict_foreach(rc->routing_sons, cursor, key, rc_child) {
897     xbt_dynar_t onelink_child = recursive_get_onelink_routes(rc_child);
898     if (onelink_child) {
899       xbt_dynar_foreach(onelink_child, cpt, link) {
900         xbt_dynar_push(ret, &link);
901       }
902     }
903   }
904   return ret;
905 }
906
907 static xbt_dynar_t get_onelink_routes(void)
908 {
909   return recursive_get_onelink_routes(global_routing->root);
910 }
911
912 e_surf_network_element_type_t get_network_element_type(const char
913                                                               *name)
914 {
915   network_element_info_t rc = NULL;
916
917   rc = xbt_lib_get_or_null(host_lib, name, ROUTING_HOST_LEVEL);
918   if(rc) return rc->rc_type;
919
920   rc = xbt_lib_get_or_null(as_router_lib, name, ROUTING_ASR_LEVEL);
921   if(rc) return rc->rc_type;
922
923   return SURF_NETWORK_ELEMENT_NULL;
924 }
925
926 /**
927  * \brief Generic method: create the global routing schema
928  * 
929  * Make a global routing structure and set all the parsing functions.
930  */
931 void routing_model_create(size_t size_of_links, void *loopback, double_f_cpvoid_t get_link_latency_fun)
932 {
933   /* config the uniq global routing */
934   global_routing = xbt_new0(s_routing_global_t, 1);
935   global_routing->root = NULL;
936   global_routing->get_route = get_route;
937   global_routing->get_route_or_null = get_route_or_null;
938   global_routing->get_latency = get_latency;
939   global_routing->get_route_no_cleanup = get_route_no_cleanup;
940   global_routing->get_onelink_routes = get_onelink_routes;
941   global_routing->get_route_latency = get_route_latency;
942   global_routing->get_network_element_type = get_network_element_type;
943   global_routing->finalize = finalize;
944   global_routing->loopback = loopback;
945   global_routing->size_of_link = size_of_links;
946   global_routing->last_route = NULL;
947   get_link_latency = get_link_latency_fun;
948   /* no current routing at moment */
949   current_routing = NULL;
950
951   /* parse generic elements */
952   surfxml_add_callback(STag_surfxml_host_cb_list, &parse_S_host_XML);
953   surfxml_add_callback(ETag_surfxml_host_cb_list, &parse_E_host_XML);
954   surfxml_add_callback(STag_surfxml_router_cb_list, &parse_S_router_XML);
955
956   surfxml_add_callback(STag_surfxml_route_cb_list,
957                        &parse_S_route_new_and_endpoints_XML);
958   surfxml_add_callback(STag_surfxml_ASroute_cb_list,
959                        &parse_S_ASroute_new_and_endpoints);
960   surfxml_add_callback(STag_surfxml_bypassRoute_cb_list,
961                        &parse_S_bypassRoute_new_and_endpoints);
962
963   surfxml_add_callback(ETag_surfxml_link_ctn_cb_list,
964                        &parse_E_link_ctn_new_elem_XML);
965
966   surfxml_add_callback(ETag_surfxml_route_cb_list,
967                        &parse_E_route_store_route);
968   surfxml_add_callback(ETag_surfxml_ASroute_cb_list,
969                        &parse_E_ASroute_store_route);
970   surfxml_add_callback(ETag_surfxml_bypassRoute_cb_list,
971                        &parse_E_bypassRoute_store_route);
972
973   surfxml_add_callback(STag_surfxml_AS_cb_list, &parse_S_AS);
974   surfxml_add_callback(ETag_surfxml_AS_cb_list, &parse_E_AS);
975
976   surfxml_add_callback(STag_surfxml_cluster_cb_list,
977                        &routing_parse_Scluster);
978
979   surfxml_add_callback(STag_surfxml_peer_cb_list,
980                          &routing_parse_Speer);
981
982   surfxml_add_callback(ETag_surfxml_platform_cb_list,
983                                                   &clean_dict_random);
984
985 #ifdef HAVE_TRACING
986   instr_routing_define_callbacks();
987 #endif
988 }
989
990 void surf_parse_add_callback_config(void)
991 {
992         surfxml_add_callback(STag_surfxml_config_cb_list, &routing_parse_Sconfig);
993         surfxml_add_callback(ETag_surfxml_config_cb_list, &routing_parse_Econfig);
994         surfxml_add_callback(STag_surfxml_prop_cb_list, &parse_properties_XML);
995         surfxml_add_callback(STag_surfxml_AS_cb_list, &surf_parse_models_setup);
996         surfxml_add_callback(STag_surfxml_random_cb_list, &routing_parse_Srandom);
997 }
998
999 void surf_parse_models_setup()
1000 {
1001         routing_parse_Erandom();
1002         surfxml_del_callback(STag_surfxml_AS_cb_list, surf_parse_models_setup);
1003         surf_config_models_setup(platform_filename);
1004         free(platform_filename);
1005 }
1006
1007 /* ************************************************** */
1008 /* ********** PATERN FOR NEW ROUTING **************** */
1009
1010 /* The minimal configuration of a new routing model need the next functions,
1011  * also you need to set at the start of the file, the new model in the model
1012  * list. Remember keep the null ending of the list.
1013  */
1014 /*** Routing model structure ***/
1015 // typedef struct {
1016 //   s_routing_component_t generic_routing;
1017 //   /* things that your routing model need */
1018 // } s_routing_component_NEW_t,*routing_component_NEW_t;
1019
1020 /*** Parse routing model functions ***/
1021 // static void model_NEW_set_processing_unit(routing_component_t rc, const char* name) {}
1022 // static void model_NEW_set_autonomous_system(routing_component_t rc, const char* name) {}
1023 // static void model_NEW_set_route(routing_component_t rc, const char* src, const char* dst, route_t route) {}
1024 // static void model_NEW_set_ASroute(routing_component_t rc, const char* src, const char* dst, route_extended_t route) {}
1025 // static void model_NEW_set_bypassroute(routing_component_t rc, const char* src, const char* dst, route_extended_t e_route) {}
1026
1027 /*** Business methods ***/
1028 // static route_extended_t NEW_get_route(routing_component_t rc, const char* src,const char* dst) {return NULL;}
1029 // static route_extended_t NEW_get_bypass_route(routing_component_t rc, const char* src,const char* dst) {return NULL;}
1030 // static void NEW_finalize(routing_component_t rc) { xbt_free(rc);}
1031
1032 /*** Creation routing model functions ***/
1033 // static void* model_NEW_create(void) {
1034 //   routing_component_NEW_t new_component =  xbt_new0(s_routing_component_NEW_t,1);
1035 //   new_component->generic_routing.set_processing_unit = model_NEW_set_processing_unit;
1036 //   new_component->generic_routing.set_autonomous_system = model_NEW_set_autonomous_system;
1037 //   new_component->generic_routing.set_route = model_NEW_set_route;
1038 //   new_component->generic_routing.set_ASroute = model_NEW_set_ASroute;
1039 //   new_component->generic_routing.set_bypassroute = model_NEW_set_bypassroute;
1040 //   new_component->generic_routing.get_route = NEW_get_route;
1041 //   new_component->generic_routing.get_bypass_route = NEW_get_bypass_route;
1042 //   new_component->generic_routing.finalize = NEW_finalize;
1043 //   /* initialization of internal structures */
1044 //   return new_component;
1045 // } /* mandatory */
1046 // static void  model_NEW_load(void) {}   /* mandatory */
1047 // static void  model_NEW_unload(void) {} /* mandatory */
1048 // static void  model_NEW_end(void) {}    /* mandatory */
1049
1050 /* ************************************************************************** */
1051 /* ************************* GENERIC PARSE FUNCTIONS ************************ */
1052
1053 void generic_set_processing_unit(routing_component_t rc,
1054                                         const char *name)
1055 {
1056   XBT_DEBUG("Load process unit \"%s\"", name);
1057   int *id = xbt_new0(int, 1);
1058   xbt_dict_t _to_index;
1059   _to_index = current_routing->to_index;
1060   *id = xbt_dict_length(_to_index);
1061   xbt_dict_set(_to_index, name, id, xbt_free);
1062 }
1063
1064 void generic_set_autonomous_system(routing_component_t rc,
1065                                           const char *name)
1066 {
1067   XBT_DEBUG("Load Autonomous system \"%s\"", name);
1068   int *id = xbt_new0(int, 1);
1069   xbt_dict_t _to_index;
1070   _to_index = current_routing->to_index;
1071   *id = xbt_dict_length(_to_index);
1072   xbt_dict_set(_to_index, name, id, xbt_free);
1073 }
1074
1075 int surf_pointer_resource_cmp(const void *a, const void *b)
1076 {
1077   return a != b;
1078 }
1079
1080 int surf_link_resource_cmp(const void *a, const void *b)
1081 {
1082   return !!memcmp(a,b,global_routing->size_of_link);
1083 }
1084
1085 void generic_set_bypassroute(routing_component_t rc,
1086                                     const char *src, const char *dst,
1087                                     route_extended_t e_route)
1088 {
1089   XBT_DEBUG("Load bypassRoute from \"%s\" to \"%s\"", src, dst);
1090   xbt_dict_t dict_bypassRoutes = rc->bypassRoutes;
1091   char *route_name;
1092
1093   route_name = bprintf("%s#%s", src, dst);
1094   xbt_assert(xbt_dynar_length(e_route->generic_route.link_list) > 0,
1095               "Invalid count of links, must be greater than zero (%s,%s)",
1096               src, dst);
1097   xbt_assert(!xbt_dict_get_or_null(dict_bypassRoutes, route_name),
1098               "The bypass route between \"%s\"(\"%s\") and \"%s\"(\"%s\") already exists",
1099               src, e_route->src_gateway, dst, e_route->dst_gateway);
1100
1101   route_extended_t new_e_route =
1102       generic_new_extended_route(SURF_ROUTING_RECURSIVE, e_route, 0);
1103   xbt_dynar_free(&(e_route->generic_route.link_list));
1104   xbt_free(e_route);
1105
1106   xbt_dict_set(dict_bypassRoutes, route_name, new_e_route,
1107                (void (*)(void *)) generic_free_extended_route);
1108   xbt_free(route_name);
1109 }
1110
1111 /* ************************************************************************** */
1112 /* *********************** GENERIC BUSINESS METHODS ************************* */
1113
1114 double generic_get_link_latency(routing_component_t rc,
1115                                        const char *src, const char *dst,
1116                                        route_extended_t route)
1117 {
1118         int need_to_clean = route?0:1;
1119         void * link;
1120         unsigned int i;
1121         double latency = 0.0;
1122
1123         route = route?route:rc->get_route(rc,src,dst);
1124
1125         xbt_dynar_foreach(route->generic_route.link_list,i,link) {
1126                 latency += get_link_latency(link);
1127         }
1128         if(need_to_clean) generic_free_extended_route(route);
1129   return latency;
1130 }
1131
1132 xbt_dynar_t generic_get_onelink_routes(routing_component_t rc)
1133 {
1134   xbt_die("\"generic_get_onelink_routes\" not implemented yet");
1135 }
1136
1137 route_extended_t generic_get_bypassroute(routing_component_t rc,
1138                                                 const char *src,
1139                                                 const char *dst)
1140 {
1141   xbt_dict_t dict_bypassRoutes = rc->bypassRoutes;
1142   routing_component_t src_as, dst_as;
1143   int index_src, index_dst;
1144   xbt_dynar_t path_src = NULL;
1145   xbt_dynar_t path_dst = NULL;
1146   routing_component_t current = NULL;
1147   routing_component_t *current_src = NULL;
1148   routing_component_t *current_dst = NULL;
1149
1150   /* (1) find the as where the src and dst are located */
1151   void * src_data = xbt_lib_get_or_null(host_lib,src, ROUTING_HOST_LEVEL);
1152   void * dst_data = xbt_lib_get_or_null(host_lib,dst, ROUTING_HOST_LEVEL);
1153   if(!src_data) src_data = xbt_lib_get_or_null(as_router_lib,src, ROUTING_ASR_LEVEL);
1154   if(!dst_data) dst_data = xbt_lib_get_or_null(as_router_lib,dst, ROUTING_ASR_LEVEL);
1155
1156   if(src_data == NULL || dst_data == NULL)
1157           xbt_die("Ask for route \"from\"(%s) or \"to\"(%s) no found at AS \"%s\"",
1158                      src, dst, rc->name);
1159
1160   src_as = ((network_element_info_t)src_data)->rc_component;
1161   dst_as = ((network_element_info_t)dst_data)->rc_component;
1162
1163   /* (2) find the path to the root routing component */
1164   path_src = xbt_dynar_new(sizeof(routing_component_t), NULL);
1165   current = src_as;
1166   while (current != NULL) {
1167     xbt_dynar_push(path_src, &current);
1168     current = current->routing_father;
1169   }
1170   path_dst = xbt_dynar_new(sizeof(routing_component_t), NULL);
1171   current = dst_as;
1172   while (current != NULL) {
1173     xbt_dynar_push(path_dst, &current);
1174     current = current->routing_father;
1175   }
1176
1177   /* (3) find the common father */
1178   index_src = path_src->used - 1;
1179   index_dst = path_dst->used - 1;
1180   current_src = xbt_dynar_get_ptr(path_src, index_src);
1181   current_dst = xbt_dynar_get_ptr(path_dst, index_dst);
1182   while (index_src >= 0 && index_dst >= 0 && *current_src == *current_dst) {
1183     xbt_dynar_pop_ptr(path_src);
1184     xbt_dynar_pop_ptr(path_dst);
1185     index_src--;
1186     index_dst--;
1187     current_src = xbt_dynar_get_ptr(path_src, index_src);
1188     current_dst = xbt_dynar_get_ptr(path_dst, index_dst);
1189   }
1190
1191   int max_index_src = path_src->used - 1;
1192   int max_index_dst = path_dst->used - 1;
1193
1194   int max_index = max(max_index_src, max_index_dst);
1195   int i, max;
1196
1197   route_extended_t e_route_bypass = NULL;
1198
1199   for (max = 0; max <= max_index; max++) {
1200     for (i = 0; i < max; i++) {
1201       if (i <= max_index_src && max <= max_index_dst) {
1202         char *route_name = bprintf("%s#%s",
1203                                    (*(routing_component_t *)
1204                                     (xbt_dynar_get_ptr
1205                                      (path_src, i)))->name,
1206                                    (*(routing_component_t *)
1207                                     (xbt_dynar_get_ptr
1208                                      (path_dst, max)))->name);
1209         e_route_bypass =
1210             xbt_dict_get_or_null(dict_bypassRoutes, route_name);
1211         xbt_free(route_name);
1212       }
1213       if (e_route_bypass)
1214         break;
1215       if (max <= max_index_src && i <= max_index_dst) {
1216         char *route_name = bprintf("%s#%s",
1217                                    (*(routing_component_t *)
1218                                     (xbt_dynar_get_ptr
1219                                      (path_src, max)))->name,
1220                                    (*(routing_component_t *)
1221                                     (xbt_dynar_get_ptr
1222                                      (path_dst, i)))->name);
1223         e_route_bypass =
1224             xbt_dict_get_or_null(dict_bypassRoutes, route_name);
1225         xbt_free(route_name);
1226       }
1227       if (e_route_bypass)
1228         break;
1229     }
1230
1231     if (e_route_bypass)
1232       break;
1233
1234     if (max <= max_index_src && max <= max_index_dst) {
1235       char *route_name = bprintf("%s#%s",
1236                                  (*(routing_component_t *)
1237                                   (xbt_dynar_get_ptr
1238                                    (path_src, max)))->name,
1239                                  (*(routing_component_t *)
1240                                   (xbt_dynar_get_ptr
1241                                    (path_dst, max)))->name);
1242       e_route_bypass = xbt_dict_get_or_null(dict_bypassRoutes, route_name);
1243       xbt_free(route_name);
1244     }
1245     if (e_route_bypass)
1246       break;
1247   }
1248
1249   xbt_dynar_free(&path_src);
1250   xbt_dynar_free(&path_dst);
1251
1252   route_extended_t new_e_route = NULL;
1253
1254   if (e_route_bypass) {
1255     void *link;
1256     unsigned int cpt = 0;
1257     new_e_route = xbt_new0(s_route_extended_t, 1);
1258     new_e_route->src_gateway = xbt_strdup(e_route_bypass->src_gateway);
1259     new_e_route->dst_gateway = xbt_strdup(e_route_bypass->dst_gateway);
1260     new_e_route->generic_route.link_list =
1261         xbt_dynar_new(global_routing->size_of_link, NULL);
1262     xbt_dynar_foreach(e_route_bypass->generic_route.link_list, cpt, link) {
1263       xbt_dynar_push(new_e_route->generic_route.link_list, &link);
1264     }
1265   }
1266
1267   return new_e_route;
1268 }
1269
1270 /* ************************************************************************** */
1271 /* ************************* GENERIC AUX FUNCTIONS ************************** */
1272
1273 route_t
1274 generic_new_route(e_surf_routing_hierarchy_t hierarchy,
1275                            void *data, int order)
1276 {
1277
1278   char *link_name;
1279   route_t new_route;
1280   unsigned int cpt;
1281   xbt_dynar_t links = NULL, links_id = NULL;
1282
1283   new_route = xbt_new0(s_route_t, 1);
1284   new_route->link_list =
1285       xbt_dynar_new(global_routing->size_of_link, NULL);
1286
1287   xbt_assert(hierarchy == SURF_ROUTING_BASE,
1288               "the hierarchy type is not SURF_ROUTING_BASE");
1289
1290   links = ((route_t) data)->link_list;
1291
1292
1293   links_id = new_route->link_list;
1294
1295   xbt_dynar_foreach(links, cpt, link_name) {
1296
1297     void *link =
1298                 xbt_lib_get_or_null(link_lib, link_name, SURF_LINK_LEVEL);
1299     if (link) {
1300       if (order)
1301         xbt_dynar_push(links_id, &link);
1302       else
1303         xbt_dynar_unshift(links_id, &link);
1304     } else
1305       THROWF(mismatch_error, 0, "Link %s not found", link_name);
1306   }
1307
1308   return new_route;
1309 }
1310
1311 route_extended_t
1312 generic_new_extended_route(e_surf_routing_hierarchy_t hierarchy,
1313                            void *data, int order)
1314 {
1315
1316   char *link_name;
1317   route_extended_t e_route, new_e_route;
1318   route_t route;
1319   unsigned int cpt;
1320   xbt_dynar_t links = NULL, links_id = NULL;
1321
1322   new_e_route = xbt_new0(s_route_extended_t, 1);
1323   new_e_route->generic_route.link_list =
1324       xbt_dynar_new(global_routing->size_of_link, NULL);
1325   new_e_route->src_gateway = NULL;
1326   new_e_route->dst_gateway = NULL;
1327
1328   xbt_assert(hierarchy == SURF_ROUTING_BASE
1329               || hierarchy == SURF_ROUTING_RECURSIVE,
1330               "the hierarchy type is not defined");
1331
1332   if (hierarchy == SURF_ROUTING_BASE) {
1333
1334     route = (route_t) data;
1335     links = route->link_list;
1336
1337   } else if (hierarchy == SURF_ROUTING_RECURSIVE) {
1338
1339     e_route = (route_extended_t) data;
1340     xbt_assert(e_route->src_gateway
1341                 && e_route->dst_gateway, "bad gateway, is null");
1342     links = e_route->generic_route.link_list;
1343
1344     /* remeber not erase the gateway names */
1345     new_e_route->src_gateway = strdup(e_route->src_gateway);
1346     new_e_route->dst_gateway = strdup(e_route->dst_gateway);
1347   }
1348
1349   links_id = new_e_route->generic_route.link_list;
1350
1351   xbt_dynar_foreach(links, cpt, link_name) {
1352
1353     void *link =
1354                 xbt_lib_get_or_null(link_lib, link_name, SURF_LINK_LEVEL);
1355     if (link) {
1356       if (order)
1357         xbt_dynar_push(links_id, &link);
1358       else
1359         xbt_dynar_unshift(links_id, &link);
1360     } else
1361       THROWF(mismatch_error, 0, "Link %s not found", link_name);
1362   }
1363
1364   return new_e_route;
1365 }
1366
1367 void generic_free_route(route_t route)
1368 {
1369   if (route) {
1370     xbt_dynar_free(&(route->link_list));
1371     xbt_free(route);
1372   }
1373 }
1374
1375 void generic_free_extended_route(route_extended_t e_route)
1376 {
1377   if (e_route) {
1378     xbt_dynar_free(&(e_route->generic_route.link_list));
1379     if (e_route->src_gateway)
1380       xbt_free(e_route->src_gateway);
1381     if (e_route->dst_gateway)
1382       xbt_free(e_route->dst_gateway);
1383     xbt_free(e_route);
1384   }
1385 }
1386
1387 static routing_component_t generic_as_exist(routing_component_t find_from,
1388                                             routing_component_t to_find)
1389 {
1390   //return to_find; // FIXME: BYPASSERROR OF FOREACH WITH BREAK
1391   xbt_dict_cursor_t cursor = NULL;
1392   char *key;
1393   int found = 0;
1394   routing_component_t elem;
1395   xbt_dict_foreach(find_from->routing_sons, cursor, key, elem) {
1396     if (to_find == elem || generic_as_exist(elem, to_find)) {
1397       found = 1;
1398       break;
1399     }
1400   }
1401   if (found)
1402     return to_find;
1403   return NULL;
1404 }
1405
1406 routing_component_t
1407 generic_autonomous_system_exist(routing_component_t rc, char *element)
1408 {
1409   //return rc; // FIXME: BYPASSERROR OF FOREACH WITH BREAK
1410   routing_component_t element_as, result, elem;
1411   xbt_dict_cursor_t cursor = NULL;
1412   char *key;
1413   element_as = ((network_element_info_t)
1414                 xbt_lib_get_or_null(as_router_lib, element, ROUTING_ASR_LEVEL))->rc_component;
1415   result = ((routing_component_t) - 1);
1416   if (element_as != rc)
1417     result = generic_as_exist(rc, element_as);
1418
1419   int found = 0;
1420   if (result) {
1421     xbt_dict_foreach(element_as->routing_sons, cursor, key, elem) {
1422       found = !strcmp(elem->name, element);
1423       if (found)
1424         break;
1425     }
1426     if (found)
1427       return element_as;
1428   }
1429   return NULL;
1430 }
1431
1432 routing_component_t
1433 generic_processing_units_exist(routing_component_t rc, char *element)
1434 {
1435   routing_component_t element_as;
1436   element_as = ((network_element_info_t)
1437                 xbt_lib_get_or_null(host_lib,
1438                  element, ROUTING_HOST_LEVEL))->rc_component;
1439   if (element_as == rc)
1440     return element_as;
1441   return generic_as_exist(rc, element_as);
1442 }
1443
1444 void generic_src_dst_check(routing_component_t rc, const char *src,
1445                                   const char *dst)
1446 {
1447
1448   void * src_data = xbt_lib_get_or_null(host_lib,src, ROUTING_HOST_LEVEL);
1449   void * dst_data = xbt_lib_get_or_null(host_lib,dst, ROUTING_HOST_LEVEL);
1450   if(!src_data) src_data = xbt_lib_get_or_null(as_router_lib,src, ROUTING_ASR_LEVEL);
1451   if(!dst_data) dst_data = xbt_lib_get_or_null(as_router_lib,dst, ROUTING_ASR_LEVEL);
1452
1453   if(src_data == NULL || dst_data == NULL)
1454           xbt_die("Ask for route \"from\"(%s) or \"to\"(%s) no found at AS \"%s\"",
1455                      src, dst, rc->name);
1456
1457   routing_component_t src_as = ((network_element_info_t)src_data)->rc_component;
1458   routing_component_t dst_as = ((network_element_info_t)dst_data)->rc_component;
1459
1460   if(src_as != dst_as)
1461           xbt_die("The src(%s in %s) and dst(%s in %s) are in differents AS",
1462               src, src_as->name, dst, dst_as->name);
1463   if(rc != dst_as)
1464          xbt_die("The routing component of src'%s' and dst'%s' is not the same as the network elements belong (%s?=%s?=%s)",
1465      src,dst,src_as->name, dst_as->name,rc->name);
1466 }
1467
1468 static void routing_parse_Sconfig(void)
1469 {
1470   XBT_DEBUG("START configuration name = %s",A_surfxml_config_id);
1471 }
1472
1473 static void routing_parse_Econfig(void)
1474 {
1475   xbt_dict_cursor_t cursor = NULL;
1476   char *key;
1477   char *elem;
1478   char *cfg;
1479   xbt_dict_foreach(current_property_set, cursor, key, elem) {
1480           cfg = bprintf("%s:%s",key,elem);
1481           if(xbt_cfg_is_default_value(_surf_cfg_set, key))
1482                   xbt_cfg_set_parse(_surf_cfg_set, cfg);
1483           else
1484                   XBT_INFO("The custom configuration '%s' is already define by user!",key);
1485           free(cfg);
1486   }
1487   XBT_DEBUG("End configuration name = %s",A_surfxml_config_id);
1488 }
1489
1490 void routing_parse_Scluster(void)
1491 {
1492   static int AX_ptr = 0;
1493   char *host_id, *groups, *link_id = NULL;
1494   char *availability_file = xbt_strdup(A_surfxml_cluster_availability_file);
1495   char *state_file = xbt_strdup(A_surfxml_cluster_state_file);
1496
1497   if(xbt_dict_size(patterns)==0)
1498           patterns = xbt_dict_new();
1499
1500   xbt_dict_set(patterns,"id",struct_cluster->V_cluster_id,NULL);
1501   xbt_dict_set(patterns,"prefix",struct_cluster->V_cluster_prefix,NULL);
1502   xbt_dict_set(patterns,"suffix",struct_cluster->V_cluster_suffix,NULL);
1503
1504   char *route_src_dst;
1505   unsigned int iter;
1506   int start, end, i;
1507   xbt_dynar_t radical_elements;
1508   xbt_dynar_t radical_ends;
1509   int cluster_sharing_policy = AX_surfxml_cluster_sharing_policy;
1510   int cluster_bb_sharing_policy = AX_surfxml_cluster_bb_sharing_policy;
1511
1512   static unsigned int surfxml_buffer_stack_stack_ptr = 1;
1513   static unsigned int surfxml_buffer_stack_stack[1024];
1514
1515   surfxml_buffer_stack_stack[0] = 0;
1516
1517   surfxml_bufferstack_push(1);
1518
1519   SURFXML_BUFFER_SET(AS_id, struct_cluster->V_cluster_id);
1520   SURFXML_BUFFER_SET(AS_routing, "RuleBased");
1521   XBT_DEBUG("<AS id=\"%s\"\trouting=\"RuleBased\">", struct_cluster->V_cluster_id);
1522   SURFXML_START_TAG(AS);
1523
1524   radical_elements = xbt_str_split(struct_cluster->V_cluster_radical, ",");
1525   xbt_dynar_foreach(radical_elements, iter, groups) {
1526     radical_ends = xbt_str_split(groups, "-");
1527     switch (xbt_dynar_length(radical_ends)) {
1528     case 1:
1529       surf_parse_get_int(&start, xbt_dynar_get_as(radical_ends, 0, char *));
1530       host_id = bprintf("%s%d%s", struct_cluster->V_cluster_prefix, start, struct_cluster->V_cluster_suffix);
1531       link_id = bprintf("%s_link_%d", struct_cluster->V_cluster_id, start);
1532       xbt_dict_set(patterns, "radical", bprintf("%d", start), xbt_free);
1533       A_surfxml_host_state = A_surfxml_host_state_ON;
1534
1535       XBT_DEBUG("<host\tid=\"%s\"\tpower=\"%s\">", host_id, struct_cluster->S_cluster_power);
1536       SURFXML_BUFFER_SET(host_id, host_id);
1537       SURFXML_BUFFER_SET(host_power, struct_cluster->S_cluster_power);
1538
1539       if(!strcmp(A_surfxml_cluster_availability_file,"")){
1540                   char* tmp_availability_file = xbt_strdup(availability_file);
1541                   xbt_str_varsubst(tmp_availability_file,patterns);
1542                   XBT_DEBUG("\tavailability_file=\"%s\"",tmp_availability_file);
1543               SURFXML_BUFFER_SET(host_availability_file, tmp_availability_file);
1544               xbt_free(tmp_availability_file);
1545       }
1546       else
1547       {
1548                   XBT_DEBUG("\tavailability_file=\"\"");
1549                   SURFXML_BUFFER_SET(host_availability_file, "");
1550       }
1551       if(!strcmp(A_surfxml_cluster_state_file,"")){
1552                   char *tmp_state_file = xbt_strdup(state_file);
1553                   xbt_str_varsubst(tmp_state_file,patterns);
1554                   XBT_DEBUG("\tstate_file=\"%s\"",tmp_state_file);
1555               SURFXML_BUFFER_SET(host_state_file, tmp_state_file);
1556               xbt_free(tmp_state_file);
1557       }
1558       else
1559       {
1560           XBT_DEBUG("\tstate_file=\"\"");
1561           SURFXML_BUFFER_SET(host_state_file, "");
1562       }
1563
1564       SURFXML_BUFFER_SET(host_core, struct_cluster->S_cluster_core);
1565       SURFXML_BUFFER_SET(host_availability, "1.0");
1566       SURFXML_BUFFER_SET(host_coordinates, "");
1567       SURFXML_START_TAG(host);
1568       SURFXML_END_TAG(host);
1569       XBT_DEBUG("</host>");
1570
1571       A_surfxml_link_state = A_surfxml_link_state_ON;
1572       A_surfxml_link_sharing_policy = A_surfxml_link_sharing_policy_SHARED;
1573       if(cluster_sharing_policy == A_surfxml_cluster_sharing_policy_FULLDUPLEX)
1574           {A_surfxml_link_sharing_policy =  A_surfxml_link_sharing_policy_FULLDUPLEX;}
1575       if(cluster_sharing_policy == A_surfxml_cluster_sharing_policy_FATPIPE)
1576           {A_surfxml_link_sharing_policy =  A_surfxml_link_sharing_policy_FATPIPE;}
1577
1578       XBT_DEBUG("<link\tid=\"%s\"\tbw=\"%s\"\tlat=\"%s\"/>", link_id,struct_cluster->S_cluster_bw, struct_cluster->S_cluster_lat);
1579
1580       SURFXML_BUFFER_SET(link_id, link_id);
1581       SURFXML_BUFFER_SET(link_bandwidth, struct_cluster->S_cluster_bw);
1582       SURFXML_BUFFER_SET(link_latency, struct_cluster->S_cluster_lat);
1583       SURFXML_BUFFER_SET(link_bandwidth_file, "");
1584       SURFXML_BUFFER_SET(link_latency_file, "");
1585       SURFXML_BUFFER_SET(link_state_file, "");
1586       SURFXML_START_TAG(link);
1587       SURFXML_END_TAG(link);
1588
1589       free(link_id);
1590       free(host_id);
1591       break;
1592
1593     case 2:
1594
1595       surf_parse_get_int(&start,
1596                          xbt_dynar_get_as(radical_ends, 0, char *));
1597       surf_parse_get_int(&end, xbt_dynar_get_as(radical_ends, 1, char *));
1598       for (i = start; i <= end; i++) {
1599                   host_id = bprintf("%s%d%s", struct_cluster->V_cluster_prefix, i, struct_cluster->V_cluster_suffix);
1600                   link_id = bprintf("%s_link_%d", struct_cluster->V_cluster_id, i);
1601                   xbt_dict_set(patterns, "radical", bprintf("%d", i), xbt_free);
1602                   A_surfxml_host_state = A_surfxml_host_state_ON;
1603
1604               XBT_DEBUG("<host\tid=\"%s\"\tpower=\"%s\">", host_id, struct_cluster->S_cluster_power);
1605               SURFXML_BUFFER_SET(host_id, host_id);
1606               SURFXML_BUFFER_SET(host_power, struct_cluster->S_cluster_power);
1607
1608               if(!strcmp(A_surfxml_cluster_availability_file,"")){
1609                           char* tmp_availability_file = xbt_strdup(availability_file);
1610                           xbt_str_varsubst(tmp_availability_file,patterns);
1611                           XBT_DEBUG("\tavailability_file=\"%s\"",tmp_availability_file);
1612                       SURFXML_BUFFER_SET(host_availability_file, tmp_availability_file);
1613                       xbt_free(tmp_availability_file);
1614               }
1615               else
1616               {
1617                           XBT_DEBUG("\tavailability_file=\"\"");
1618                           SURFXML_BUFFER_SET(host_availability_file, "");
1619               }
1620               if(!strcmp(A_surfxml_cluster_state_file,"")){
1621                           char *tmp_state_file = xbt_strdup(state_file);
1622                           xbt_str_varsubst(tmp_state_file,patterns);
1623                           XBT_DEBUG("\tstate_file=\"%s\"",tmp_state_file);
1624                       SURFXML_BUFFER_SET(host_state_file, tmp_state_file);
1625                       xbt_free(tmp_state_file);
1626               }
1627               else
1628               {
1629                   XBT_DEBUG("\tstate_file=\"\"");
1630                   SURFXML_BUFFER_SET(host_state_file, "");
1631               }
1632
1633               SURFXML_BUFFER_SET(host_core, struct_cluster->S_cluster_core);
1634               SURFXML_BUFFER_SET(host_availability, "1.0");
1635               SURFXML_BUFFER_SET(host_coordinates, "");
1636               SURFXML_START_TAG(host);
1637               SURFXML_END_TAG(host);
1638               XBT_DEBUG("</host>");
1639
1640                   A_surfxml_link_state = A_surfxml_link_state_ON;
1641                   A_surfxml_link_sharing_policy = A_surfxml_link_sharing_policy_SHARED;
1642                   if(cluster_sharing_policy == A_surfxml_cluster_sharing_policy_FULLDUPLEX)
1643                   {A_surfxml_link_sharing_policy =  A_surfxml_link_sharing_policy_FULLDUPLEX;}
1644                   if(cluster_sharing_policy == A_surfxml_cluster_sharing_policy_FATPIPE)
1645                   {A_surfxml_link_sharing_policy =  A_surfxml_link_sharing_policy_FATPIPE;}
1646
1647                   XBT_DEBUG("<link\tid=\"%s\"\tbw=\"%s\"\tlat=\"%s\"/>", link_id,struct_cluster->S_cluster_bw, struct_cluster->S_cluster_lat);
1648
1649                   SURFXML_BUFFER_SET(link_id, link_id);
1650                   SURFXML_BUFFER_SET(link_bandwidth, struct_cluster->S_cluster_bw);
1651                   SURFXML_BUFFER_SET(link_latency, struct_cluster->S_cluster_lat);
1652                   SURFXML_BUFFER_SET(link_bandwidth_file, "");
1653                   SURFXML_BUFFER_SET(link_latency_file, "");
1654                   SURFXML_BUFFER_SET(link_state_file, "");
1655                   SURFXML_START_TAG(link);
1656                   SURFXML_END_TAG(link);
1657
1658                   free(link_id);
1659                   free(host_id);
1660       }
1661       break;
1662
1663     default:
1664       XBT_DEBUG("Malformed radical");
1665       break;
1666     }
1667
1668     xbt_dynar_free(&radical_ends);
1669   }
1670   xbt_dynar_free(&radical_elements);
1671
1672   XBT_DEBUG(" ");
1673   XBT_DEBUG("<router id=\"%s\"/>", struct_cluster->S_cluster_router_id);
1674   SURFXML_BUFFER_SET(router_id, struct_cluster->S_cluster_router_id);
1675   SURFXML_BUFFER_SET(router_coordinates, "");
1676   SURFXML_START_TAG(router);
1677   SURFXML_END_TAG(router);
1678
1679   if( strcmp(struct_cluster->S_cluster_bb_bw,"")  && strcmp(struct_cluster->S_cluster_bb_lat,"")  ){
1680   char *link_backbone = bprintf("%s_backbone", struct_cluster->V_cluster_id);
1681   XBT_DEBUG("<link\tid=\"%s\" bw=\"%s\" lat=\"%s\"/>", link_backbone,struct_cluster->S_cluster_bb_bw, struct_cluster->S_cluster_bb_lat);
1682   A_surfxml_link_state = A_surfxml_link_state_ON;
1683   A_surfxml_link_sharing_policy = A_surfxml_link_sharing_policy_SHARED;
1684   if(cluster_bb_sharing_policy == A_surfxml_cluster_bb_sharing_policy_FATPIPE)
1685   {A_surfxml_link_sharing_policy =  A_surfxml_link_sharing_policy_FATPIPE;}
1686   SURFXML_BUFFER_SET(link_id, link_backbone);
1687   SURFXML_BUFFER_SET(link_bandwidth, struct_cluster->S_cluster_bb_bw);
1688   SURFXML_BUFFER_SET(link_latency, struct_cluster->S_cluster_bb_lat);
1689   SURFXML_BUFFER_SET(link_bandwidth_file, "");
1690   SURFXML_BUFFER_SET(link_latency_file, "");
1691   SURFXML_BUFFER_SET(link_state_file, "");
1692   SURFXML_START_TAG(link);
1693   SURFXML_END_TAG(link);
1694   free(link_backbone);
1695   }
1696
1697   XBT_DEBUG(" ");
1698
1699   char *new_suffix = xbt_strdup("");
1700
1701   radical_elements = xbt_str_split(struct_cluster->V_cluster_suffix, ".");
1702   xbt_dynar_foreach(radical_elements, iter, groups) {
1703     if (strcmp(groups, "")) {
1704       char *old_suffix = new_suffix;
1705       new_suffix = bprintf("%s\\.%s", old_suffix, groups);
1706       free(old_suffix);
1707     }
1708   }
1709   route_src_dst = bprintf("%s(.*)%s", struct_cluster->V_cluster_prefix, new_suffix);
1710   xbt_dynar_free(&radical_elements);
1711   xbt_free(new_suffix);
1712
1713   char *pcre_link_src = bprintf("%s_link_$1src", struct_cluster->V_cluster_id);
1714   char *pcre_link_backbone = bprintf("%s_backbone", struct_cluster->V_cluster_id);
1715   char *pcre_link_dst = bprintf("%s_link_$1dst", struct_cluster->V_cluster_id);
1716
1717   //from router to router
1718   XBT_DEBUG("<route\tsrc=\"%s\"\tdst=\"%s\"", struct_cluster->S_cluster_router_id, struct_cluster->S_cluster_router_id);
1719   XBT_DEBUG("symmetrical=\"NO\">");
1720   SURFXML_BUFFER_SET(route_src, struct_cluster->S_cluster_router_id);
1721   SURFXML_BUFFER_SET(route_dst, struct_cluster->S_cluster_router_id);
1722   A_surfxml_route_symmetrical = A_surfxml_route_symmetrical_NO;
1723   SURFXML_START_TAG(route);
1724
1725   if( strcmp(struct_cluster->S_cluster_bb_bw,"")  && strcmp(struct_cluster->S_cluster_bb_lat,"")  ){
1726   XBT_DEBUG("<link_ctn\tid=\"%s\"/>", pcre_link_backbone);
1727   SURFXML_BUFFER_SET(link_ctn_id, pcre_link_backbone);
1728   A_surfxml_link_ctn_direction = A_surfxml_link_ctn_direction_NONE;
1729   SURFXML_START_TAG(link_ctn);
1730   SURFXML_END_TAG(link_ctn);
1731   }
1732
1733   XBT_DEBUG("</route>");
1734   SURFXML_END_TAG(route);
1735
1736   //from host to router
1737   XBT_DEBUG("<route\tsrc=\"%s\"\tdst=\"%s\"", route_src_dst, struct_cluster->S_cluster_router_id);
1738   XBT_DEBUG("symmetrical=\"NO\">");
1739   SURFXML_BUFFER_SET(route_src, route_src_dst);
1740   SURFXML_BUFFER_SET(route_dst, struct_cluster->S_cluster_router_id);
1741   A_surfxml_route_symmetrical = A_surfxml_route_symmetrical_NO;
1742   SURFXML_START_TAG(route);
1743
1744   XBT_DEBUG("<link_ctn\tid=\"%s\"/>", pcre_link_src);
1745   SURFXML_BUFFER_SET(link_ctn_id, pcre_link_src);
1746   A_surfxml_link_ctn_direction = A_surfxml_link_ctn_direction_NONE;
1747   if(cluster_sharing_policy == A_surfxml_cluster_sharing_policy_FULLDUPLEX)
1748   {A_surfxml_link_ctn_direction = A_surfxml_link_ctn_direction_UP;}
1749   SURFXML_START_TAG(link_ctn);
1750   SURFXML_END_TAG(link_ctn);
1751
1752   if( strcmp(struct_cluster->S_cluster_bb_bw,"")  && strcmp(struct_cluster->S_cluster_bb_lat,"")  ){
1753   XBT_DEBUG("<link_ctn\tid=\"%s\"/>", pcre_link_backbone);
1754   SURFXML_BUFFER_SET(link_ctn_id, pcre_link_backbone);
1755   A_surfxml_link_ctn_direction = A_surfxml_link_ctn_direction_NONE;
1756   SURFXML_START_TAG(link_ctn);
1757   SURFXML_END_TAG(link_ctn);
1758   }
1759
1760   XBT_DEBUG("</route>");
1761   SURFXML_END_TAG(route);
1762
1763   //from router to host
1764   XBT_DEBUG("<route\tsrc=\"%s\"\tdst=\"%s\"", struct_cluster->S_cluster_router_id, route_src_dst);
1765   XBT_DEBUG("symmetrical=\"NO\">");
1766   SURFXML_BUFFER_SET(route_src, struct_cluster->S_cluster_router_id);
1767   SURFXML_BUFFER_SET(route_dst, route_src_dst);
1768   A_surfxml_route_symmetrical = A_surfxml_route_symmetrical_NO;
1769   SURFXML_START_TAG(route);
1770
1771   if( strcmp(struct_cluster->S_cluster_bb_bw,"")  && strcmp(struct_cluster->S_cluster_bb_lat,"")  ){
1772   XBT_DEBUG("<link_ctn\tid=\"%s\"/>", pcre_link_backbone);
1773   SURFXML_BUFFER_SET(link_ctn_id, pcre_link_backbone);
1774   A_surfxml_link_ctn_direction = A_surfxml_link_ctn_direction_NONE;
1775   SURFXML_START_TAG(link_ctn);
1776   SURFXML_END_TAG(link_ctn);
1777   }
1778
1779   XBT_DEBUG("<link_ctn\tid=\"%s\"/>", pcre_link_dst);
1780   SURFXML_BUFFER_SET(link_ctn_id, pcre_link_dst);
1781   A_surfxml_link_ctn_direction = A_surfxml_link_ctn_direction_NONE;
1782   if(cluster_sharing_policy == A_surfxml_cluster_sharing_policy_FULLDUPLEX)
1783   {A_surfxml_link_ctn_direction = A_surfxml_link_ctn_direction_UP;}
1784   SURFXML_START_TAG(link_ctn);
1785   SURFXML_END_TAG(link_ctn);
1786
1787   XBT_DEBUG("</route>");
1788   SURFXML_END_TAG(route);
1789
1790   //from host to host
1791   XBT_DEBUG("<route\tsrc=\"%s\"\tdst=\"%s\"", route_src_dst, route_src_dst);
1792   XBT_DEBUG("symmetrical=\"NO\">");
1793   SURFXML_BUFFER_SET(route_src, route_src_dst);
1794   SURFXML_BUFFER_SET(route_dst, route_src_dst);
1795   A_surfxml_route_symmetrical = A_surfxml_route_symmetrical_NO;
1796   SURFXML_START_TAG(route);
1797
1798   XBT_DEBUG("<link_ctn\tid=\"%s\"/>", pcre_link_src);
1799   SURFXML_BUFFER_SET(link_ctn_id, pcre_link_src);
1800   A_surfxml_link_ctn_direction = A_surfxml_link_ctn_direction_NONE;
1801   if(cluster_sharing_policy == A_surfxml_cluster_sharing_policy_FULLDUPLEX)
1802   {A_surfxml_link_ctn_direction = A_surfxml_link_ctn_direction_UP;}
1803   SURFXML_START_TAG(link_ctn);
1804   SURFXML_END_TAG(link_ctn);
1805
1806   if( strcmp(struct_cluster->S_cluster_bb_bw,"")  && strcmp(struct_cluster->S_cluster_bb_lat,"")  ){
1807   XBT_DEBUG("<link_ctn\tid=\"%s\"/>", pcre_link_backbone);
1808   SURFXML_BUFFER_SET(link_ctn_id, pcre_link_backbone);
1809   A_surfxml_link_ctn_direction = A_surfxml_link_ctn_direction_NONE;
1810   SURFXML_START_TAG(link_ctn);
1811   SURFXML_END_TAG(link_ctn);
1812   }
1813
1814   XBT_DEBUG("<link_ctn\tid=\"%s\"/>", pcre_link_dst);
1815   SURFXML_BUFFER_SET(link_ctn_id, pcre_link_dst);
1816   A_surfxml_link_ctn_direction = A_surfxml_link_ctn_direction_NONE;
1817   if(cluster_sharing_policy == A_surfxml_cluster_sharing_policy_FULLDUPLEX)
1818   {A_surfxml_link_ctn_direction = A_surfxml_link_ctn_direction_DOWN;}
1819   SURFXML_START_TAG(link_ctn);
1820   SURFXML_END_TAG(link_ctn);
1821
1822   XBT_DEBUG("</route>");
1823   SURFXML_END_TAG(route);
1824
1825   free(pcre_link_dst);
1826   free(pcre_link_backbone);
1827   free(pcre_link_src);
1828   free(route_src_dst);
1829
1830   xbt_free(availability_file);
1831   xbt_free(state_file);
1832
1833   xbt_dict_free(&patterns);
1834
1835   XBT_DEBUG("</AS>");
1836   SURFXML_END_TAG(AS);
1837   XBT_DEBUG(" ");
1838
1839   surfxml_bufferstack_pop(1);
1840 }
1841 /*
1842  * This function take a string and replace parameters from patterns dict.
1843  * It returns the new value.
1844  */
1845 static char* replace_random_parameter(char * string)
1846 {
1847   char *test_string = NULL;
1848
1849   if(xbt_dict_size(random_value)==0)
1850     return string;
1851
1852   string = xbt_str_varsubst(string, patterns); // for patterns of cluster
1853   test_string = bprintf("${%s}", string);
1854   test_string = xbt_str_varsubst(test_string,random_value); //Add ${xxxxx} for random Generator
1855
1856   if (strcmp(test_string,"")) { //if not empty, keep this value.
1857     xbt_free(string);
1858     string = test_string;
1859   } //In other case take old value (without ${})
1860   else
1861         free(test_string);
1862   return string;
1863 }
1864
1865 static void clean_dict_random(void)
1866 {
1867         xbt_dict_free(&random_value);
1868         xbt_dict_free(&patterns);
1869 }
1870
1871 static void routing_parse_Speer(void)
1872 {
1873   static int AX_ptr = 0;
1874   char *host_id = NULL;
1875   char *router_id, *link_router, *link_backbone, *link_id_up, *link_id_down;
1876
1877   static unsigned int surfxml_buffer_stack_stack_ptr = 1;
1878   static unsigned int surfxml_buffer_stack_stack[1024];
1879
1880   surfxml_buffer_stack_stack[0] = 0;
1881
1882   surfxml_bufferstack_push(1);
1883
1884   SURFXML_BUFFER_SET(AS_id, struct_peer->V_peer_id);
1885
1886   SURFXML_BUFFER_SET(AS_routing, "Full");
1887   XBT_DEBUG("<AS id=\"%s\"\trouting=\"Full\">", struct_peer->V_peer_id);
1888
1889   SURFXML_START_TAG(AS);
1890
1891   XBT_DEBUG(" ");
1892   host_id = bprintf("peer_%s", struct_peer->V_peer_id);
1893   router_id = bprintf("router_%s", struct_peer->V_peer_id);
1894   link_id_up = bprintf("link_%s_up", struct_peer->V_peer_id);
1895   link_id_down = bprintf("link_%s_down", struct_peer->V_peer_id);
1896
1897   link_router = bprintf("%s_link_router", struct_peer->V_peer_id);
1898   link_backbone = bprintf("%s_backbone", struct_peer->V_peer_id);
1899
1900   XBT_DEBUG("<host\tid=\"%s\"\tpower=\"%s\"/>", host_id, struct_peer->V_peer_power);
1901   A_surfxml_host_state = A_surfxml_host_state_ON;
1902   SURFXML_BUFFER_SET(host_id, host_id);
1903   SURFXML_BUFFER_SET(host_power, struct_peer->V_peer_power);
1904   SURFXML_BUFFER_SET(host_availability, "1.0");
1905   SURFXML_BUFFER_SET(host_availability_file, struct_peer->V_peer_availability_trace);
1906   SURFXML_BUFFER_SET(host_state_file, struct_peer->V_peer_state_trace);
1907   SURFXML_BUFFER_SET(host_coordinates, "");
1908   SURFXML_BUFFER_SET(host_core, "1.0");
1909   SURFXML_START_TAG(host);
1910   SURFXML_END_TAG(host);
1911
1912   XBT_DEBUG("<router id=\"%s\"\tcoordinates=\"%s\"/>", router_id, struct_peer->V_peer_coord);
1913   SURFXML_BUFFER_SET(router_id, router_id);
1914   SURFXML_BUFFER_SET(router_coordinates, struct_peer->V_peer_coord);
1915   SURFXML_START_TAG(router);
1916   SURFXML_END_TAG(router);
1917
1918   XBT_DEBUG("<link\tid=\"%s\"\tbw=\"%s\"\tlat=\"%s\"/>", link_id_up, struct_peer->V_peer_bw_in, struct_peer->V_peer_lat);
1919   A_surfxml_link_state = A_surfxml_link_state_ON;
1920   A_surfxml_link_sharing_policy = A_surfxml_link_sharing_policy_SHARED;
1921   SURFXML_BUFFER_SET(link_id, link_id_up);
1922   SURFXML_BUFFER_SET(link_bandwidth, struct_peer->V_peer_bw_in);
1923   SURFXML_BUFFER_SET(link_latency, struct_peer->V_peer_lat);
1924   SURFXML_BUFFER_SET(link_bandwidth_file, "");
1925   SURFXML_BUFFER_SET(link_latency_file, "");
1926   SURFXML_BUFFER_SET(link_state_file, "");
1927   SURFXML_START_TAG(link);
1928   SURFXML_END_TAG(link);
1929
1930   XBT_DEBUG("<link\tid=\"%s\"\tbw=\"%s\"\tlat=\"%s\"/>", link_id_down, struct_peer->V_peer_bw_out, struct_peer->V_peer_lat);
1931   A_surfxml_link_state = A_surfxml_link_state_ON;
1932   A_surfxml_link_sharing_policy = A_surfxml_link_sharing_policy_SHARED;
1933   SURFXML_BUFFER_SET(link_id, link_id_down);
1934   SURFXML_BUFFER_SET(link_bandwidth, struct_peer->V_peer_bw_out);
1935   SURFXML_BUFFER_SET(link_latency, struct_peer->V_peer_lat);
1936   SURFXML_BUFFER_SET(link_bandwidth_file, "");
1937   SURFXML_BUFFER_SET(link_latency_file, "");
1938   SURFXML_BUFFER_SET(link_state_file, "");
1939   SURFXML_START_TAG(link);
1940   SURFXML_END_TAG(link);
1941
1942   XBT_DEBUG(" ");
1943
1944   // begin here
1945   XBT_DEBUG("<route\tsrc=\"%s\"\tdst=\"%s\"", host_id, router_id);
1946   XBT_DEBUG("symmetrical=\"NO\">");
1947   SURFXML_BUFFER_SET(route_src, host_id);
1948   SURFXML_BUFFER_SET(route_dst, router_id);
1949   A_surfxml_route_symmetrical = A_surfxml_route_symmetrical_NO;
1950   SURFXML_START_TAG(route);
1951
1952   XBT_DEBUG("<link_ctn\tid=\"%s\"/>", link_id_up);
1953   SURFXML_BUFFER_SET(link_ctn_id, link_id_up);
1954   A_surfxml_link_ctn_direction = A_surfxml_link_ctn_direction_NONE;
1955   SURFXML_START_TAG(link_ctn);
1956   SURFXML_END_TAG(link_ctn);
1957
1958   XBT_DEBUG("</route>");
1959   SURFXML_END_TAG(route);
1960
1961   //Opposite Route
1962   XBT_DEBUG("<route\tsrc=\"%s\"\tdst=\"%s\"", router_id, host_id);
1963   XBT_DEBUG("symmetrical=\"NO\">");
1964   SURFXML_BUFFER_SET(route_src, router_id);
1965   SURFXML_BUFFER_SET(route_dst, host_id);
1966   A_surfxml_route_symmetrical = A_surfxml_route_symmetrical_NO;
1967   SURFXML_START_TAG(route);
1968
1969   XBT_DEBUG("<link_ctn\tid=\"%s\"/>", link_id_down);
1970   SURFXML_BUFFER_SET(link_ctn_id, link_id_down);
1971   A_surfxml_link_ctn_direction = A_surfxml_link_ctn_direction_NONE;
1972   SURFXML_START_TAG(link_ctn);
1973   SURFXML_END_TAG(link_ctn);
1974
1975   XBT_DEBUG("</route>");
1976   SURFXML_END_TAG(route);
1977
1978   XBT_DEBUG("</AS>");
1979   SURFXML_END_TAG(AS);
1980   XBT_DEBUG(" ");
1981
1982   //xbt_dynar_free(&tab_elements_num);
1983         free(host_id);
1984         free(router_id);
1985         free(link_router);
1986         free(link_backbone);
1987         free(link_id_up);
1988         free(link_id_down);
1989   surfxml_bufferstack_pop(1);
1990 }
1991
1992 static void routing_parse_Srandom(void)
1993 {
1994           double mean, std, min, max, seed;
1995           char *random_id = A_surfxml_random_id;
1996           char *random_radical = A_surfxml_random_radical;
1997           char *rd_name = NULL;
1998           char *rd_value;
1999           surf_parse_get_double(&mean,A_surfxml_random_mean);
2000           surf_parse_get_double(&std,A_surfxml_random_std_deviation);
2001           surf_parse_get_double(&min,A_surfxml_random_min);
2002           surf_parse_get_double(&max,A_surfxml_random_max);
2003           surf_parse_get_double(&seed,A_surfxml_random_seed);
2004
2005           double res = 0;
2006           int i = 0;
2007           random_data_t random = xbt_new0(s_random_data_t, 1);
2008           char *tmpbuf;
2009
2010           xbt_dynar_t radical_elements;
2011           unsigned int iter;
2012           char *groups;
2013           int start, end;
2014           xbt_dynar_t radical_ends;
2015
2016           random->generator = A_surfxml_random_generator;
2017           random->seed = seed;
2018           random->min = min;
2019           random->max = max;
2020
2021           /* Check user stupidities */
2022           if (max < min)
2023             THROWF(arg_error, 0, "random->max < random->min (%f < %f)", max, min);
2024           if (mean < min)
2025             THROWF(arg_error, 0, "random->mean < random->min (%f < %f)", mean,
2026                    min);
2027           if (mean > max)
2028             THROWF(arg_error, 0, "random->mean > random->max (%f > %f)", mean,
2029                    max);
2030
2031           /* normalize the mean and standard deviation before storing */
2032           random->mean = (mean - min) / (max - min);
2033           random->std = std / (max - min);
2034
2035           if (random->mean * (1 - random->mean) < random->std * random->std)
2036             THROWF(arg_error, 0, "Invalid mean and standard deviation (%f and %f)",
2037                    random->mean, random->std);
2038
2039           XBT_DEBUG("id = '%s' min = '%f' max = '%f' mean = '%f' std_deviatinon = '%f' generator = '%d' seed = '%ld' radical = '%s'",
2040           random_id,
2041           random->min,
2042           random->max,
2043           random->mean,
2044           random->std,
2045           random->generator,
2046           random->seed,
2047           random_radical);
2048
2049           if(xbt_dict_size(random_value)==0)
2050                   random_value = xbt_dict_new();
2051
2052           if(!strcmp(random_radical,""))
2053           {
2054                   res = random_generate(random);
2055                   rd_value = bprintf("%f",res);
2056                   xbt_dict_set(random_value, random_id, rd_value, free);
2057           }
2058           else
2059           {
2060                   radical_elements = xbt_str_split(random_radical, ",");
2061                   xbt_dynar_foreach(radical_elements, iter, groups) {
2062                         radical_ends = xbt_str_split(groups, "-");
2063                         switch (xbt_dynar_length(radical_ends)) {
2064                         case 1:
2065                                           xbt_assert(!xbt_dict_get_or_null(random_value,random_id),"Custom Random '%s' already exists !",random_id);
2066                                           res = random_generate(random);
2067                                           tmpbuf = bprintf("%s%d",random_id,atoi(xbt_dynar_getfirst_as(radical_ends,char *)));
2068                                           xbt_dict_set(random_value, tmpbuf, bprintf("%f",res), free);
2069                                           xbt_free(tmpbuf);
2070                                           break;
2071
2072                         case 2:   surf_parse_get_int(&start,
2073                                                                                  xbt_dynar_get_as(radical_ends, 0, char *));
2074                                           surf_parse_get_int(&end, xbt_dynar_get_as(radical_ends, 1, char *));
2075                                           for (i = start; i <= end; i++) {
2076                                                   xbt_assert(!xbt_dict_get_or_null(random_value,random_id),"Custom Random '%s' already exists !",bprintf("%s%d",random_id,i));
2077                                                   res = random_generate(random);
2078                           tmpbuf = bprintf("%s%d",random_id,i);
2079                                                   xbt_dict_set(random_value, tmpbuf, bprintf("%f",res), free);
2080                           xbt_free(tmpbuf);
2081                                           }
2082                                           break;
2083                         default:
2084                                 XBT_INFO("Malformed radical");
2085                                 break;
2086                         }
2087                         res = random_generate(random);
2088                         rd_name  = bprintf("%s_router",random_id);
2089                         rd_value = bprintf("%f",res);
2090                         xbt_dict_set(random_value, rd_name, rd_value, free);
2091
2092                         xbt_dynar_free(&radical_ends);
2093                   }
2094                   free(rd_name);
2095                   xbt_dynar_free(&radical_elements);
2096           }
2097 }
2098
2099 static void routing_parse_Erandom(void)
2100 {
2101         xbt_dict_cursor_t cursor = NULL;
2102         char *key;
2103         char *elem;
2104
2105         xbt_dict_foreach(random_value, cursor, key, elem) {
2106           XBT_DEBUG("%s = %s",key,elem);
2107         }
2108
2109 }
2110
2111
2112 /*
2113  * New methods to init the routing model component from the lua script
2114  */
2115
2116
2117 /*
2118  * add a host to the network element list
2119  */
2120
2121 void routing_add_host(const char *host_id)
2122 {
2123   parse_S_host_lua((char *) host_id, (char*)""); // FIXME propagate coordinate system to lua
2124 }
2125
2126 /*
2127  * Set a new link on the actual list of link for a route or ASroute
2128  */
2129 void routing_add_link(const char *link_id)
2130 {
2131   parse_E_link_c_ctn_new_elem_lua((char *) link_id);
2132 }
2133
2134 /*
2135  *Set the endpoints for a route
2136  */
2137 void routing_set_route(const char *src_id, const char *dst_id)
2138 {
2139   parse_S_route_new_and_endpoints_lua(src_id, dst_id);
2140 }
2141
2142 /*
2143  * Store the route by calling parse_E_route_store_route
2144  */
2145 void routing_store_route(void)
2146 {
2147   parse_E_route_store_route();
2148 }