Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
track all the useless void
[simgrid.git] / src / surf / instr_routing.cpp
1 /* Copyright (c) 2010, 2012-2015. 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 "src/instr/instr_private.h"
8
9 #include "src/kernel/routing/AsImpl.hpp"
10 #include "simgrid/s4u/engine.hpp"
11 #include "surf/surf.h"
12 #include "src/surf/xml/platf_private.hpp"
13 #include "xbt/graph.h"
14
15 XBT_LOG_NEW_DEFAULT_SUBCATEGORY (instr_routing, instr, "Tracing platform hierarchy");
16
17 static int platform_created = 0;            /* indicate whether the platform file has been traced */
18 static xbt_dynar_t currentContainer = nullptr; /* push and pop, used only in creation */
19
20 static const char *instr_node_name (xbt_node_t node)
21 {
22   void *data = xbt_graph_node_get_data(node);
23   char *str = (char*)data;
24   return str;
25 }
26
27 static container_t lowestCommonAncestor (container_t a1, container_t a2)
28 {
29   //this is only an optimization (since most of a1 and a2 share the same parent)
30   if (a1->father == a2->father) return a1->father;
31
32   //create an array with all ancestors of a1
33   xbt_dynar_t ancestors_a1 = xbt_dynar_new(sizeof(container_t), nullptr);
34   container_t p;
35   p = a1->father;
36   while (p){
37     xbt_dynar_push_as (ancestors_a1, container_t, p);
38     p = p->father;
39   }
40
41   //create an array with all ancestors of a2
42   xbt_dynar_t ancestors_a2 = xbt_dynar_new(sizeof(container_t), nullptr);
43   p = a2->father;
44   while (p){
45     xbt_dynar_push_as (ancestors_a2, container_t, p);
46     p = p->father;
47   }
48
49   //find the lowest ancestor
50   p = nullptr;
51   int i = xbt_dynar_length (ancestors_a1) - 1;
52   int j = xbt_dynar_length (ancestors_a2) - 1;
53   while (i >= 0 && j >= 0){
54     container_t a1p = *(container_t*)xbt_dynar_get_ptr (ancestors_a1, i);
55     container_t a2p = *(container_t*)xbt_dynar_get_ptr (ancestors_a2, j);
56     if (a1p == a2p){
57       p = a1p;
58     }else{
59       break;
60     }
61     i--;
62     j--;
63   }
64   xbt_dynar_free (&ancestors_a1);
65   xbt_dynar_free (&ancestors_a2);
66   return p;
67 }
68
69 static void linkContainers (container_t src, container_t dst, xbt_dict_t filter)
70 {
71   //ignore loopback
72   if (strcmp (src->name, "__loopback__") == 0 || strcmp (dst->name, "__loopback__") == 0){
73     XBT_DEBUG ("  linkContainers: ignoring loopback link");
74     return;
75   }
76
77   //find common father
78   container_t father = lowestCommonAncestor (src, dst);
79   if (!father){
80     xbt_die ("common father unknown, this is a tracing problem");
81   }
82
83   if (filter != nullptr){
84     //check if we already register this pair (we only need one direction)
85     char aux1[INSTR_DEFAULT_STR_SIZE], aux2[INSTR_DEFAULT_STR_SIZE];
86     snprintf (aux1, INSTR_DEFAULT_STR_SIZE, "%s%s", src->name, dst->name);
87     snprintf (aux2, INSTR_DEFAULT_STR_SIZE, "%s%s", dst->name, src->name);
88     if (xbt_dict_get_or_null (filter, aux1)){
89       XBT_DEBUG ("  linkContainers: already registered %s <-> %s (1)", src->name, dst->name);
90       return;
91     }
92     if (xbt_dict_get_or_null (filter, aux2)){
93       XBT_DEBUG ("  linkContainers: already registered %s <-> %s (2)", dst->name, src->name);
94       return;
95     }
96
97     //ok, not found, register it
98     xbt_dict_set (filter, aux1, xbt_strdup ("1"), nullptr);
99     xbt_dict_set (filter, aux2, xbt_strdup ("1"), nullptr);
100   }
101
102   //declare type
103   char link_typename[INSTR_DEFAULT_STR_SIZE];
104   snprintf (link_typename, INSTR_DEFAULT_STR_SIZE, "%s-%s%s-%s%s",
105             father->type->name,
106             src->type->name, src->type->id,
107             dst->type->name, dst->type->id);
108   type_t link_type = PJ_type_get_or_null (link_typename, father->type);
109   if (link_type == nullptr){
110     link_type = PJ_type_link_new (link_typename, father->type, src->type, dst->type);
111   }
112
113   //register EDGE types for triva configuration
114   xbt_dict_set (trivaEdgeTypes, link_type->name, xbt_strdup("1"), nullptr);
115
116   //create the link
117   static long long counter = 0;
118
119   char key[INSTR_DEFAULT_STR_SIZE];
120   snprintf (key, INSTR_DEFAULT_STR_SIZE, "%lld", counter++);
121   new_pajeStartLink(SIMIX_get_clock(), father, link_type, src, "topology", key);
122   new_pajeEndLink(SIMIX_get_clock(), father, link_type, dst, "topology", key);
123
124   XBT_DEBUG ("  linkContainers %s <-> %s", src->name, dst->name);
125 }
126
127 static void recursiveGraphExtraction (simgrid::s4u::As *as, container_t container, xbt_dict_t filter)
128 {
129   if (!TRACE_platform_topology()){
130     XBT_DEBUG("Graph extraction disabled by user.");
131     return;
132   }
133   XBT_DEBUG ("Graph extraction for routing_component = %s", as->name());
134   if (!xbt_dict_is_empty(as->children())){
135     xbt_dict_cursor_t cursor = nullptr;
136     AS_t rc_son;
137     char *child_name;
138     //bottom-up recursion
139     xbt_dict_foreach(as->children(), cursor, child_name, rc_son) {
140       container_t child_container = (container_t) xbt_dict_get (container->children, rc_son->name());
141       recursiveGraphExtraction (rc_son, child_container, filter);
142     }
143   }
144
145   {
146     xbt_graph_t graph = xbt_graph_new_graph (0, nullptr);
147     xbt_dict_t nodes = xbt_dict_new_homogeneous(nullptr);
148     xbt_dict_t edges = xbt_dict_new_homogeneous(nullptr);
149     xbt_edge_t edge = nullptr;
150
151     xbt_dict_cursor_t cursor = nullptr;
152     char *edge_name;
153
154     static_cast<simgrid::kernel::routing::AsImpl*>(as)->getGraph(graph, nodes, edges);
155     xbt_dict_foreach(edges,cursor,edge_name,edge) {
156         linkContainers(
157           PJ_container_get((const char*) edge->src->data),
158           PJ_container_get((const char*) edge->dst->data), filter);
159     }
160     xbt_dict_free (&nodes);
161     xbt_dict_free (&edges);
162     xbt_graph_free_graph(graph, xbt_free_f, xbt_free_f, nullptr);
163   }
164 }
165
166 /*
167  * Callbacks
168  */
169 void sg_instr_AS_begin(sg_platf_AS_cbarg_t AS)
170 {
171   const char*id = AS->id;
172
173   if (PJ_container_get_root() == nullptr){
174     PJ_container_alloc ();
175     PJ_type_alloc();
176     container_t root = PJ_container_new (id, INSTR_AS, nullptr);
177     PJ_container_set_root (root);
178
179     if (TRACE_smpi_is_enabled()) {
180       type_t mpi = PJ_type_get_or_null ("MPI", root->type);
181       if (mpi == nullptr){
182         mpi = PJ_type_container_new("MPI", root->type);
183         if (!TRACE_smpi_is_grouped()) PJ_type_state_new ("MPI_STATE", mpi);
184         PJ_type_link_new ("MPI_LINK", PJ_type_get_root(), mpi, mpi);
185       }
186     }
187
188     if (TRACE_needs_platform()){
189       currentContainer = xbt_dynar_new (sizeof(container_t), nullptr);
190       xbt_dynar_push (currentContainer, &root);
191     }
192     return;
193   }
194
195   if (TRACE_needs_platform()){
196     container_t father = *(container_t*)xbt_dynar_get_ptr(currentContainer, xbt_dynar_length(currentContainer)-1);
197     container_t container = PJ_container_new (id, INSTR_AS, father);
198     xbt_dynar_push (currentContainer, &container);
199   }
200 }
201
202 void sg_instr_AS_end()
203 {
204   if (TRACE_needs_platform()){
205     xbt_dynar_pop_ptr (currentContainer);
206   }
207 }
208
209 static void instr_routing_parse_start_link (sg_platf_link_cbarg_t link)
210 {
211   container_t father = *(container_t*)xbt_dynar_get_ptr(currentContainer, xbt_dynar_length(currentContainer)-1);
212
213   double bandwidth_value = link->bandwidth;
214   double latency_value = link->latency;
215   xbt_dynar_t links_to_create = xbt_dynar_new (sizeof(char*), &xbt_free_ref);
216
217   if (link->policy == SURF_LINK_FULLDUPLEX){
218     char *up = bprintf("%s_UP", link->id);
219     char *down = bprintf("%s_DOWN", link->id);
220     xbt_dynar_push_as (links_to_create, char*, xbt_strdup(up));
221     xbt_dynar_push_as (links_to_create, char*, xbt_strdup(down));
222     free (up);
223     free (down);
224   }else{
225     xbt_dynar_push_as (links_to_create, char*, strdup(link->id));
226   }
227
228   char *link_name = nullptr;
229   unsigned int i;
230   xbt_dynar_foreach (links_to_create, i, link_name){
231
232     container_t container = PJ_container_new (link_name, INSTR_LINK, father);
233
234     if ((TRACE_categorized() || TRACE_uncategorized() || TRACE_platform()) && (! TRACE_disable_link())) {
235       type_t bandwidth = PJ_type_get_or_null ("bandwidth", container->type);
236       if (bandwidth == nullptr){
237         bandwidth = PJ_type_variable_new ("bandwidth", nullptr, container->type);
238       }
239       type_t latency = PJ_type_get_or_null ("latency", container->type);
240       if (latency == nullptr){
241         latency = PJ_type_variable_new ("latency", nullptr, container->type);
242       }
243       new_pajeSetVariable (0, container, bandwidth, bandwidth_value);
244       new_pajeSetVariable (0, container, latency, latency_value);
245     }
246     if (TRACE_uncategorized()){
247       type_t bandwidth_used = PJ_type_get_or_null ("bandwidth_used", container->type);
248       if (bandwidth_used == nullptr){
249         PJ_type_variable_new ("bandwidth_used", "0.5 0.5 0.5", container->type);
250       }
251     }
252   }
253
254   xbt_dynar_free (&links_to_create);
255 }
256
257 void sg_instr_new_host(sg_platf_host_cbarg_t host)
258 {
259   container_t father = *(container_t*)xbt_dynar_get_ptr(currentContainer, xbt_dynar_length(currentContainer)-1);
260   container_t container = PJ_container_new (host->id, INSTR_HOST, father);
261
262   if ((TRACE_categorized() || TRACE_uncategorized() || TRACE_platform()) && (! TRACE_disable_speed())) {
263     type_t speed = PJ_type_get_or_null ("power", container->type);
264     if (speed == nullptr){
265       speed = PJ_type_variable_new ("power", nullptr, container->type);
266     }
267
268     double current_speed_state;
269     xbt_dynar_get_cpy(host->speed_per_pstate, host->pstate, &current_speed_state);
270     new_pajeSetVariable (0, container, speed, current_speed_state);
271   }
272   if (TRACE_uncategorized()){
273     type_t speed_used = PJ_type_get_or_null ("power_used", container->type);
274     if (speed_used == nullptr){
275       PJ_type_variable_new ("power_used", "0.5 0.5 0.5", container->type);
276     }
277   }
278
279   if (TRACE_smpi_is_enabled() && TRACE_smpi_is_grouped()){
280     type_t mpi = PJ_type_get_or_null ("MPI", container->type);
281     if (mpi == nullptr){
282       mpi = PJ_type_container_new("MPI", container->type);
283       PJ_type_state_new ("MPI_STATE", mpi);
284     }
285   }
286
287   if (TRACE_msg_process_is_enabled()) {
288     type_t msg_process = PJ_type_get_or_null ("MSG_PROCESS", container->type);
289     if (msg_process == nullptr){
290       msg_process = PJ_type_container_new("MSG_PROCESS", container->type);
291       type_t state = PJ_type_state_new ("MSG_PROCESS_STATE", msg_process);
292       PJ_value_new ("suspend", "1 0 1", state);
293       PJ_value_new ("sleep", "1 1 0", state);
294       PJ_value_new ("receive", "1 0 0", state);
295       PJ_value_new ("send", "0 0 1", state);
296       PJ_value_new ("task_execute", "0 1 1", state);
297       PJ_type_link_new ("MSG_PROCESS_LINK", PJ_type_get_root(), msg_process, msg_process);
298       PJ_type_link_new ("MSG_PROCESS_TASK_LINK", PJ_type_get_root(), msg_process, msg_process);
299     }
300   }
301
302   if (TRACE_msg_vm_is_enabled()) {
303     type_t msg_vm = PJ_type_get_or_null ("MSG_VM", container->type);
304     if (msg_vm == nullptr){
305       msg_vm = PJ_type_container_new("MSG_VM", container->type);
306       type_t state = PJ_type_state_new ("MSG_VM_STATE", msg_vm);
307       PJ_value_new ("suspend", "1 0 1", state);
308       PJ_value_new ("sleep", "1 1 0", state);
309       PJ_value_new ("receive", "1 0 0", state);
310       PJ_value_new ("send", "0 0 1", state);
311       PJ_value_new ("task_execute", "0 1 1", state);
312       PJ_type_link_new ("MSG_VM_LINK", PJ_type_get_root(), msg_vm, msg_vm);
313       PJ_type_link_new ("MSG_VM_PROCESS_LINK", PJ_type_get_root(), msg_vm, msg_vm);
314     }
315   }
316
317 }
318
319 void sg_instr_new_router(sg_platf_router_cbarg_t router)
320 {
321   container_t father = *(container_t*)xbt_dynar_get_ptr(currentContainer, xbt_dynar_length(currentContainer)-1);
322   PJ_container_new (router->id, INSTR_ROUTER, father);
323 }
324
325 static void instr_routing_parse_end_platform ()
326 {
327   xbt_dynar_free(&currentContainer);
328   currentContainer = nullptr;
329   xbt_dict_t filter = xbt_dict_new_homogeneous(xbt_free_f);
330   XBT_DEBUG ("Starting graph extraction.");
331   recursiveGraphExtraction (simgrid::s4u::Engine::instance()->rootAs(), PJ_container_get_root(), filter);
332   XBT_DEBUG ("Graph extraction finished.");
333   xbt_dict_free(&filter);
334   platform_created = 1;
335   TRACE_paje_dump_buffer(1);
336 }
337
338 void instr_routing_define_callbacks ()
339 {
340   if (!TRACE_is_enabled()) return;
341   //always need the call backs to ASes (we need only the root AS),
342   //to create the rootContainer and the rootType properly
343   if (!TRACE_needs_platform()) return;
344   simgrid::surf::on_link.connect(instr_routing_parse_start_link);
345   simgrid::surf::on_postparse.connect(instr_routing_parse_end_platform);
346 }
347
348 /*
349  * user categories support
350  */
351 static void recursiveNewVariableType (const char *new_typename, const char *color, type_t root)
352 {
353   if (!strcmp (root->name, "HOST")){
354     char tnstr[INSTR_DEFAULT_STR_SIZE];
355     snprintf (tnstr, INSTR_DEFAULT_STR_SIZE, "p%s", new_typename);
356     PJ_type_variable_new (tnstr, color, root);
357   }
358   if (!strcmp (root->name, "MSG_VM")){
359     char tnstr[INSTR_DEFAULT_STR_SIZE];
360     snprintf (tnstr, INSTR_DEFAULT_STR_SIZE, "p%s", new_typename);
361     PJ_type_variable_new (tnstr, color, root);
362   }
363  if (!strcmp (root->name, "LINK")){
364     char tnstr[INSTR_DEFAULT_STR_SIZE];
365     snprintf (tnstr, INSTR_DEFAULT_STR_SIZE, "b%s", new_typename);
366     PJ_type_variable_new (tnstr, color, root);
367   }
368   xbt_dict_cursor_t cursor = nullptr;
369   type_t child_type;
370   char *name;
371   xbt_dict_foreach(root->children, cursor, name, child_type) {
372     recursiveNewVariableType (new_typename, color, child_type);
373   }
374 }
375
376 void instr_new_variable_type (const char *new_typename, const char *color)
377 {
378   recursiveNewVariableType (new_typename, color, PJ_type_get_root());
379 }
380
381 static void recursiveNewUserVariableType (const char *father_type, const char *new_typename, const char *color, type_t root)
382 {
383   if (!strcmp (root->name, father_type)){
384     PJ_type_variable_new (new_typename, color, root);
385   }
386   xbt_dict_cursor_t cursor = nullptr;
387   type_t child_type;
388   char *name;
389   xbt_dict_foreach(root->children, cursor, name, child_type) {
390     recursiveNewUserVariableType (father_type, new_typename, color, child_type);
391   }
392 }
393
394 void instr_new_user_variable_type  (const char *father_type, const char *new_typename, const char *color)
395 {
396   recursiveNewUserVariableType (father_type, new_typename, color, PJ_type_get_root());
397 }
398
399 static void recursiveNewUserStateType (const char *father_type, const char *new_typename, type_t root)
400 {
401   if (!strcmp (root->name, father_type)){
402     PJ_type_state_new (new_typename, root);
403   }
404   xbt_dict_cursor_t cursor = nullptr;
405   type_t child_type;
406   char *name;
407   xbt_dict_foreach(root->children, cursor, name, child_type) {
408     recursiveNewUserStateType (father_type, new_typename, child_type);
409   }
410 }
411
412 void instr_new_user_state_type (const char *father_type, const char *new_typename)
413 {
414   recursiveNewUserStateType (father_type, new_typename, PJ_type_get_root());
415 }
416
417 static void recursiveNewValueForUserStateType (const char *type_name, const char *value, const char *color, type_t root)
418 {
419   if (!strcmp (root->name, type_name)){
420     PJ_value_new (value, color, root);
421   }
422   xbt_dict_cursor_t cursor = nullptr;
423   type_t child_type;
424   char *name;
425   xbt_dict_foreach(root->children, cursor, name, child_type) {
426     recursiveNewValueForUserStateType (type_name, value, color, child_type);
427   }
428 }
429
430 void instr_new_value_for_user_state_type (const char *type_name, const char *value, const char *color)
431 {
432   recursiveNewValueForUserStateType (type_name, value, color, PJ_type_get_root());
433 }
434
435 int instr_platform_traced ()
436 {
437   return platform_created;
438 }
439
440 #define GRAPHICATOR_SUPPORT_FUNCTIONS
441
442 static void recursiveXBTGraphExtraction (xbt_graph_t graph, xbt_dict_t nodes, xbt_dict_t edges,
443     AS_t as, container_t container)
444 {
445   if (!xbt_dict_is_empty(as->children())){
446     xbt_dict_cursor_t cursor = nullptr;
447     AS_t as_child;
448     char *child_name;
449     //bottom-up recursion
450     xbt_dict_foreach(as->children(), cursor, child_name, as_child) {
451       container_t child_container = (container_t) xbt_dict_get (
452         container->children, as_child->name());
453       recursiveXBTGraphExtraction (graph, nodes, edges, as_child, child_container);
454     }
455   }
456
457   static_cast<simgrid::kernel::routing::AsImpl*>(as)->getGraph(graph, nodes, edges);
458 }
459
460 xbt_graph_t instr_routing_platform_graph ()
461 {
462   xbt_graph_t ret = xbt_graph_new_graph (0, nullptr);
463   xbt_dict_t nodes = xbt_dict_new_homogeneous(nullptr);
464   xbt_dict_t edges = xbt_dict_new_homogeneous(nullptr);
465   recursiveXBTGraphExtraction (ret, nodes, edges, simgrid::s4u::Engine::instance()->rootAs(), PJ_container_get_root());
466   xbt_dict_free (&nodes);
467   xbt_dict_free (&edges);
468   return ret;
469 }
470
471 void instr_routing_platform_graph_export_graphviz (xbt_graph_t g, const char *filename)
472 {
473   unsigned int cursor = 0;
474   xbt_node_t node = nullptr;
475   xbt_edge_t edge = nullptr;
476   FILE *file = nullptr;
477
478   file = fopen(filename, "w");
479   xbt_assert(file, "Failed to open %s \n", filename);
480
481   if (g->directed)
482     fprintf(file, "digraph test {\n");
483   else
484     fprintf(file, "graph test {\n");
485
486   fprintf(file, "  graph [overlap=scale]\n");
487
488   fprintf(file, "  node [shape=box, style=filled]\n");
489   fprintf(file,
490           "  node [width=.3, height=.3, style=filled, color=skyblue]\n\n");
491
492   xbt_dynar_foreach(g->nodes, cursor, node) {
493     fprintf(file, "  \"%s\";\n", instr_node_name(node));
494   }
495   xbt_dynar_foreach(g->edges, cursor, edge) {
496     const char *src_s = instr_node_name (edge->src);
497     const char *dst_s = instr_node_name (edge->dst);
498     if (g->directed)
499       fprintf(file, "  \"%s\" -> \"%s\";\n", src_s, dst_s);
500     else
501       fprintf(file, "  \"%s\" -- \"%s\";\n", src_s, dst_s);
502   }
503   fprintf(file, "}\n");
504   fclose(file);
505
506 }