Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
b6c5028ab814e29ece016c77e43c95c4b98873f2
[simgrid.git] / src / instr / instr_routing.c
1 /* Copyright (c) 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 "instr/instr_private.h"
8
9 #ifdef HAVE_TRACING
10 #include "surf/surf_private.h"
11 #include "surf/network_private.h"
12
13 XBT_LOG_NEW_DEFAULT_SUBCATEGORY (instr_routing, instr, "Tracing platform hierarchy");
14
15 extern xbt_dict_t defined_types; /* from instr_interface.c */
16
17 static int platform_created = 0;            /* indicate whether the platform file has been traced */
18 static type_t rootType = NULL;              /* the root type */
19 static container_t rootContainer = NULL;    /* the root container */
20 static xbt_dynar_t currentContainer = NULL; /* push and pop, used only in creation */
21 static xbt_dict_t allContainers = NULL;     /* all created containers indexed by name */
22 xbt_dynar_t allLinkTypes = NULL;     /* all link types defined */
23 xbt_dynar_t allHostTypes = NULL;     /* all host types defined */
24
25 static void instr_routing_parse_start_AS (void);
26 static void instr_routing_parse_end_AS (void);
27 static void instr_routing_parse_start_link (void);
28 static void instr_routing_parse_end_link (void);
29 static void instr_routing_parse_start_host (void);
30 static void instr_routing_parse_end_host (void);
31 static void instr_routing_parse_start_router (void);
32 static void instr_routing_parse_end_router (void);
33 static void instr_routing_parse_end_platform (void);
34
35 static long long int newTypeId ()
36 {
37   static long long int counter = 0;
38   return counter++;
39 }
40
41 static type_t newType (const char *typename, e_entity_types kind, type_t father)
42 {
43   type_t ret = xbt_new0(s_type_t, 1);
44   ret->name = xbt_strdup (typename);
45   ret->father = father;
46   ret->kind = kind;
47   ret->children = xbt_dict_new ();
48
49   long long int id = newTypeId();
50   char str_id[INSTR_DEFAULT_STR_SIZE];
51   snprintf (str_id, INSTR_DEFAULT_STR_SIZE, "%lld", id);
52   ret->id = xbt_strdup (str_id);
53
54   if (father != NULL){
55     xbt_dict_set (father->children, typename, ret, NULL);
56   }
57   return ret;
58 }
59
60 static type_t newContainerType (const char *typename, e_entity_types kind, type_t father)
61 {
62   type_t ret = newType (typename, kind, father);
63 //  if (father) INFO4("ContainerType %s(%s), child of %s(%s)", ret->name, ret->id, father->name, father->id);
64   if (father) pajeDefineContainerType(ret->id, ret->father->id, ret->name);
65   return ret;
66 }
67
68 static type_t newVariableType (const char *typename, e_entity_types kind, const char *color, type_t father)
69 {
70   type_t ret = newType (typename, kind, father);
71 //  INFO4("VariableType %s(%s), child of %s(%s)", ret->name, ret->id, father->name, father->id);
72   if (color){
73     pajeDefineVariableTypeWithColor(ret->id, ret->father->id, ret->name, color);
74   }else{
75     pajeDefineVariableType(ret->id, ret->father->id, ret->name);
76   }
77   return ret;
78 }
79
80 static type_t newLinkType (const char *typename, e_entity_types kind, type_t father, type_t source, type_t dest)
81 {
82   type_t ret = newType (typename, kind, father);
83 //  INFO8("LinkType %s(%s), child of %s(%s)  %s(%s)->%s(%s)", ret->name, ret->id, father->name, father->id, source->name, source->id, dest->name, dest->id);
84   pajeDefineLinkType(ret->id, ret->father->id, source->id, dest->id, ret->name);
85   return ret;
86 }
87
88 static type_t newStateType (const char *typename, e_entity_types kind, type_t father)
89 {
90   type_t ret = newType (typename, kind, father);
91 //  INFO4("StateType %s(%s), child of %s(%s)", ret->name, ret->id, father->name, father->id);
92   pajeDefineStateType(ret->id, ret->father->id, ret->name);
93   return ret;
94 }
95
96 static type_t getContainerType (const char *typename, type_t father)
97 {
98   type_t ret;
99   if (father == NULL){
100     ret = newContainerType (typename, TYPE_CONTAINER, father);
101     rootType = ret;
102   }else{
103     //check if my father type already has my typename
104     ret = (type_t)xbt_dict_get_or_null (father->children, typename);
105     if (ret == NULL){
106       ret = newContainerType (typename, TYPE_CONTAINER, father);
107     }
108   }
109   return ret;
110 }
111
112 static type_t getVariableType (const char *typename, const char *color, type_t father)
113 {
114   type_t ret = xbt_dict_get_or_null (father->children, typename);
115   if (ret == NULL){
116     ret = newVariableType (typename, TYPE_VARIABLE, color, father);
117   }
118   return ret;
119 }
120
121 static type_t getLinkType (const char *typename, type_t father, type_t source, type_t dest)
122 {
123   type_t ret = xbt_dict_get_or_null (father->children, typename);
124   if (ret == NULL){
125     ret = newLinkType (typename, TYPE_LINK, father, source, dest);
126   }
127   return ret;
128 }
129
130 static type_t getStateType (const char *typename, type_t father)
131 {
132   type_t ret = xbt_dict_get_or_null (father->children, typename);
133   if (ret == NULL){
134     ret = newStateType (typename, TYPE_STATE, father);
135   }
136   return ret;
137 }
138
139 void instr_routing_define_callbacks ()
140 {
141   if (!TRACE_is_active())
142     return;
143   surfxml_add_callback(STag_surfxml_AS_cb_list, &instr_routing_parse_start_AS);
144   surfxml_add_callback(ETag_surfxml_AS_cb_list, &instr_routing_parse_end_AS);
145   surfxml_add_callback(STag_surfxml_link_cb_list, &instr_routing_parse_start_link);
146   surfxml_add_callback(ETag_surfxml_link_cb_list, &instr_routing_parse_end_link);
147   surfxml_add_callback(STag_surfxml_host_cb_list, &instr_routing_parse_start_host);
148   surfxml_add_callback(ETag_surfxml_host_cb_list, &instr_routing_parse_end_host);
149   surfxml_add_callback(STag_surfxml_router_cb_list, &instr_routing_parse_start_router);
150   surfxml_add_callback(ETag_surfxml_router_cb_list, &instr_routing_parse_end_router);
151   surfxml_add_callback(ETag_surfxml_platform_cb_list, &instr_routing_parse_end_platform);
152 }
153
154 static long long int newContainedId ()
155 {
156   static long long counter = 0;
157   return counter++;
158 }
159
160 static container_t newContainer (const char *name, e_container_types kind, container_t father)
161 {
162   long long int counter = newContainedId();
163   char id_str[INSTR_DEFAULT_STR_SIZE];
164   snprintf (id_str, INSTR_DEFAULT_STR_SIZE, "%lld", counter);
165
166   container_t new = xbt_new0(s_container_t, 1);
167   new->name = xbt_strdup (name); // name of the container
168   new->id = xbt_strdup (id_str); // id (or alias) of the container
169   new->father = father;
170   // level depends on level of father
171   if (new->father){
172     new->level = new->father->level+1;
173   }else{
174     new->level = 0;
175   }
176   // type definition (method depends on kind of this new container)
177   new->kind = kind;
178   if (new->kind == INSTR_AS){
179     //if this container is of an AS, its type name depends on its level
180     char as_typename[INSTR_DEFAULT_STR_SIZE];
181     snprintf (as_typename, INSTR_DEFAULT_STR_SIZE, "L%d", new->level);
182     if (new->father){
183       new->type = getContainerType (as_typename, new->father->type);
184     }else{
185       new->type = getContainerType ("0", NULL);
186     }
187   }else{
188     //otherwise, the name is its kind
189     switch (new->kind){
190       case INSTR_HOST: new->type = getContainerType ("HOST", new->father->type); break;
191       case INSTR_LINK: new->type = getContainerType ("LINK", new->father->type); break;
192       case INSTR_ROUTER: new->type = getContainerType ("ROUTER", new->father->type); break;
193       default: xbt_die ("Congratulations, you have found a bug on newContainer function of instr_routing.c"); break;
194     }
195   }
196   new->children = xbt_dict_new();
197   if (new->father){
198     xbt_dict_set(new->father->children, new->name, new, NULL);
199     pajeCreateContainer (0, new->id, new->type->id, new->father->id, new->name);
200   }
201
202   //register hosts, routers, links containers
203   if (new->kind == INSTR_HOST || new->kind == INSTR_LINK || new->kind == INSTR_ROUTER) {
204     xbt_dict_set (allContainers, new->name, new, NULL);
205   }
206
207   //register the host container types
208   if (new->kind == INSTR_HOST){
209     xbt_dynar_push_as (allHostTypes, type_t, new->type);
210   }
211
212   //register the link container types
213   if (new->kind == INSTR_LINK){
214     xbt_dynar_push_as(allLinkTypes, type_t, new->type);
215   }
216   return new;
217 }
218
219 static container_t findChild (container_t root, container_t a1)
220 {
221   if (root == a1) return root;
222
223   xbt_dict_cursor_t cursor = NULL;
224   container_t child;
225   char *child_name;
226   xbt_dict_foreach(root->children, cursor, child_name, child) {
227     if (findChild (child, a1)) return child;
228   }
229   return NULL;
230 }
231
232 static container_t findCommonFather (container_t root, container_t a1, container_t a2)
233 {
234   if (a1->father == a2->father) return a1->father;
235
236   xbt_dict_cursor_t cursor = NULL;
237   container_t child;
238   char *child_name;
239   container_t a1_try = NULL;
240   container_t a2_try = NULL;
241   xbt_dict_foreach(root->children, cursor, child_name, child) {
242     a1_try = findChild (child, a1);
243     a2_try = findChild (child, a2);
244     if (a1_try && a2_try) return child;
245   }
246   return NULL;
247 }
248
249 static void linkContainers (const char *a1, const char *a2)
250 {
251   //ignore loopback
252   if (strcmp (a1, "__loopback__") == 0 || strcmp (a2, "__loopback__") == 0)
253     return;
254
255   container_t a1_container = ((container_t)xbt_dict_get (allContainers, a1));
256   type_t a1_type = a1_container->type;
257
258   container_t a2_container = ((container_t)xbt_dict_get (allContainers, a2));
259   type_t a2_type = a2_container->type;
260
261   container_t container = findCommonFather (rootContainer, a1_container, a2_container);
262   xbt_assert0 (container != NULL, "common father not found");
263
264   //declare type
265   char link_typename[INSTR_DEFAULT_STR_SIZE];
266   snprintf (link_typename, INSTR_DEFAULT_STR_SIZE, "%s-%s", a1_type->name, a2_type->name);
267   type_t link_type = getLinkType (link_typename, container->type, a1_type, a2_type);
268
269   //create the link
270   static long long counter = 0;
271   char key[INSTR_DEFAULT_STR_SIZE];
272   snprintf (key, INSTR_DEFAULT_STR_SIZE, "%lld", counter++);
273   pajeStartLink(SIMIX_get_clock(), link_type->id, container->id, "G", a1_container->id, key);
274   pajeEndLink(SIMIX_get_clock(), link_type->id, container->id, "G", a2_container->id, key);
275 }
276
277 static void recursiveGraphExtraction (container_t container)
278 {
279   if (xbt_dict_length(container->children)){
280     xbt_dict_cursor_t cursor = NULL;
281     container_t child;
282     char *child_name;
283     //bottom-up recursion
284     xbt_dict_foreach(container->children, cursor, child_name, child) {
285       recursiveGraphExtraction (child);
286     }
287
288     //let's get routes
289     xbt_dict_cursor_t cursor1 = NULL, cursor2 = NULL;
290     container_t child1, child2;
291     const char *child_name1, *child_name2;
292
293     xbt_dict_t filter = xbt_dict_new ();
294
295     xbt_dict_foreach(container->children, cursor1, child_name1, child1) {
296       xbt_dict_foreach(container->children, cursor2, child_name2, child2) {
297         //check if we already register this pair (we only need one direction)
298         char aux1[INSTR_DEFAULT_STR_SIZE], aux2[INSTR_DEFAULT_STR_SIZE];
299         snprintf (aux1, INSTR_DEFAULT_STR_SIZE, "%s%s", child_name1, child_name2);
300         snprintf (aux2, INSTR_DEFAULT_STR_SIZE, "%s%s", child_name2, child_name1);
301         if (xbt_dict_get_or_null (filter, aux1)) continue;
302         if (xbt_dict_get_or_null (filter, aux2)) continue;
303
304         //ok, not found, register it
305         xbt_dict_set (filter, aux1, xbt_strdup ("1"), xbt_free);
306         xbt_dict_set (filter, aux2, xbt_strdup ("1"), xbt_free);
307
308         if ((child1->kind == INSTR_HOST || child1->kind == INSTR_ROUTER) &&
309             (child2->kind == INSTR_HOST  || child2->kind == INSTR_ROUTER)){
310
311           //getting route
312           xbt_dynar_t route;
313           xbt_ex_t exception;
314           TRY {
315             route = global_routing->get_route (child_name1, child_name2);
316           }CATCH(exception) {
317             //no route between them, that's possible
318             continue;
319           }
320
321           //link the route members
322           unsigned int cpt;
323           void *link;
324           char *previous_entity_name = (char*)child_name1;
325           xbt_dynar_foreach (route, cpt, link) {
326             char *link_name = ((link_CM02_t)link)->lmm_resource.generic_resource.name;
327             linkContainers (previous_entity_name, link_name);
328             previous_entity_name = link_name;
329           }
330           linkContainers (previous_entity_name, child_name2);
331         }else if (child1->kind == INSTR_AS &&
332                   child2->kind == INSTR_AS &&
333                   strcmp(child_name1, child_name2) != 0){
334
335           //getting route
336           routing_component_t root = global_routing->root;
337           route_extended_t route;
338           xbt_ex_t exception;
339           TRY {
340             route = root->get_route (root, child_name1, child_name2);
341           }CATCH(exception) {
342             //no route between them, that's possible
343             continue;
344           }
345           xbt_assert2(route!=NULL,
346               "there is no ASroute between %s and %s", child_name1, child_name2);
347           unsigned int cpt;
348           void *link;
349           char *previous_entity_name = route->src_gateway;
350           xbt_dynar_foreach (route->generic_route.link_list, cpt, link) {
351             char *link_name = ((link_CM02_t)link)->lmm_resource.generic_resource.name;
352             linkContainers (previous_entity_name, link_name);
353             previous_entity_name = link_name;
354           }
355           linkContainers (previous_entity_name, route->dst_gateway);
356         }
357       }
358     }
359     xbt_dict_free(&filter);
360   }
361 }
362
363 /*
364  * Callbacks
365  */
366 static void instr_routing_parse_start_AS ()
367 {
368   if (rootContainer == NULL){
369     currentContainer = xbt_dynar_new (sizeof(s_container_t), NULL);
370     allContainers = xbt_dict_new ();
371     allLinkTypes = xbt_dynar_new (sizeof(s_type_t), NULL);
372     allHostTypes = xbt_dynar_new (sizeof(s_type_t), NULL);
373
374     rootContainer = newContainer ("0", INSTR_AS, NULL);
375     xbt_dynar_push (currentContainer, rootContainer);
376
377     if (TRACE_smpi_is_enabled()) {
378       if (!TRACE_smpi_is_grouped()){
379         container_t father = xbt_dynar_get_ptr(currentContainer, xbt_dynar_length(currentContainer)-1);
380         type_t mpi = getContainerType("MPI_PROCESS", father->type);
381         getStateType ("MPI_STATE", mpi);
382         getLinkType ("MPI_LINK", rootType, mpi, mpi);
383       }
384     }
385   }
386   container_t father = xbt_dynar_get_ptr(currentContainer, xbt_dynar_length(currentContainer)-1);
387   container_t new = newContainer (A_surfxml_AS_id, INSTR_AS, father);
388
389   //push
390   xbt_dynar_push (currentContainer, new);
391 }
392
393 static void instr_routing_parse_end_AS ()
394 {
395   xbt_dynar_pop_ptr (currentContainer);
396 }
397
398 static void instr_routing_parse_start_link ()
399 {
400   container_t father = xbt_dynar_get_ptr(currentContainer, xbt_dynar_length(currentContainer)-1);
401   container_t new = newContainer (A_surfxml_link_id, INSTR_LINK, father);
402
403   type_t bandwidth = getVariableType ("bandwidth", NULL, new->type);
404   type_t latency = getVariableType ("latency", NULL, new->type);
405   pajeSetVariable (0, bandwidth->id, new->id, A_surfxml_link_bandwidth);
406   pajeSetVariable (0, latency->id, new->id, A_surfxml_link_latency);
407   if (TRACE_uncategorized()){
408     getVariableType ("bandwidth_used", "0.5 0.5 0.5", new->type);
409   }
410 }
411
412 static void instr_routing_parse_end_link ()
413 {
414 }
415
416 static void instr_routing_parse_start_host ()
417 {
418   container_t father = xbt_dynar_get_ptr(currentContainer, xbt_dynar_length(currentContainer)-1);
419   container_t new = newContainer (A_surfxml_host_id, INSTR_HOST, father);
420
421   type_t power = getVariableType ("power", NULL, new->type);
422   pajeSetVariable (0, power->id, new->id, A_surfxml_host_power);
423   if (TRACE_uncategorized()){
424     getVariableType ("power_used", "0.5 0.5 0.5", new->type);
425   }
426
427   if (TRACE_smpi_is_enabled()) {
428     if (TRACE_smpi_is_grouped()){
429       type_t mpi = getContainerType("MPI_PROCESS", new->type);
430       getStateType ("MPI_STATE", mpi);
431       getLinkType ("MPI_LINK", rootType, mpi, mpi);
432     }
433   }
434 }
435
436 static void instr_routing_parse_end_host ()
437 {
438 }
439
440 static void instr_routing_parse_start_router ()
441 {
442   container_t father = xbt_dynar_get_ptr(currentContainer, xbt_dynar_length(currentContainer)-1);
443   newContainer (A_surfxml_router_id, INSTR_ROUTER, father);
444 }
445
446 static void instr_routing_parse_end_router ()
447 {
448 }
449
450 static void instr_routing_parse_end_platform ()
451 {
452   currentContainer = NULL;
453   recursiveGraphExtraction (rootContainer);
454   platform_created = 1;
455 }
456
457 /*
458  * Support functions
459  */
460 int instr_link_is_traced (const char *name)
461 {
462   if (((container_t)xbt_dict_get_or_null (allContainers, name))){
463     return 1;
464   } else {
465     return 0;
466   }
467 }
468
469 char *instr_variable_type (const char *name, const char *resource)
470 {
471   container_t container = (container_t)xbt_dict_get (allContainers, resource);
472   xbt_dict_cursor_t cursor = NULL;
473   type_t type;
474   char *type_name;
475   xbt_dict_foreach(container->type->children, cursor, type_name, type) {
476     if (strcmp (name, type->name) == 0) return type->id;
477   }
478   return NULL;
479 }
480
481 char *instr_resource_type (const char *resource_name)
482 {
483   return ((container_t)xbt_dict_get_or_null (allContainers, resource_name))->id;
484 }
485
486 static void recursiveDestroyContainer (container_t container)
487 {
488   xbt_dict_cursor_t cursor = NULL;
489   container_t child;
490   char *child_name;
491   xbt_dict_foreach(container->children, cursor, child_name, child) {
492     recursiveDestroyContainer (child);
493   }
494
495   pajeDestroyContainer(SIMIX_get_clock(), container->type->id, container->id);
496
497   xbt_free (container->name);
498   xbt_free (container->id);
499   xbt_free (container->children);
500   xbt_free (container);
501   container = NULL;
502 }
503
504 static void recursiveDestroyType (type_t type)
505 {
506   xbt_dict_cursor_t cursor = NULL;
507   type_t child;
508   char *child_name;
509   xbt_dict_foreach(type->children, cursor, child_name, child) {
510     recursiveDestroyType (child);
511   }
512   xbt_free (type->name);
513   xbt_free (type->id);
514   xbt_free (type->children);
515   xbt_free (type);
516   type = NULL;
517 }
518
519 void instr_destroy_platform ()
520 {
521   if (rootContainer) recursiveDestroyContainer (rootContainer);
522   if (rootType) recursiveDestroyType (rootType);
523 }
524
525 /*
526  * user categories support
527  */
528 static void recursiveNewUserVariableType (const char *new_typename, const char *color, type_t root)
529 {
530   if (!strcmp (root->name, "HOST") || !strcmp (root->name, "LINK")){
531     getVariableType(new_typename, color, root);
532   }
533   xbt_dict_cursor_t cursor = NULL;
534   type_t child_type;
535   char *name;
536   xbt_dict_foreach(root->children, cursor, name, child_type) {
537     recursiveNewUserVariableType (new_typename, color, child_type);
538   }
539 }
540
541 void instr_new_user_variable_type (const char *new_typename, const char *color)
542 {
543   recursiveNewUserVariableType (new_typename, color, rootType);
544 }
545
546 static void recursiveNewUserLinkVariableType (const char *new_typename, const char *color, type_t root)
547 {
548   if (!strcmp (root->name, "LINK")){
549     getVariableType(new_typename, color, root);
550   }
551   xbt_dict_cursor_t cursor = NULL;
552   type_t child_type;
553   char *name;
554   xbt_dict_foreach(root->children, cursor, name, child_type) {
555     recursiveNewUserLinkVariableType (new_typename, color, child_type);
556   }
557 }
558
559 void instr_new_user_link_variable_type  (const char *new_typename, const char *color)
560 {
561   recursiveNewUserLinkVariableType (new_typename, color, rootType);
562 }
563
564
565 static void recursiveNewUserHostVariableType (const char *new_typename, const char *color, type_t root)
566 {
567   if (!strcmp (root->name, "HOST")){
568     getVariableType(new_typename, color, root);
569   }
570   xbt_dict_cursor_t cursor = NULL;
571   type_t child_type;
572   char *name;
573   xbt_dict_foreach(root->children, cursor, name, child_type) {
574     recursiveNewUserHostVariableType (new_typename, color, child_type);
575   }
576 }
577
578 void instr_new_user_host_variable_type  (const char *new_typename, const char *color)
579 {
580   recursiveNewUserHostVariableType (new_typename, color, rootType);
581 }
582
583 int instr_platform_traced ()
584 {
585   return platform_created;
586 }
587
588 #endif /* HAVE_TRACING */
589