X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/cc5c4029e1b3601786e6373815f7f8b1ec2717b1..8a0897a9e49bac64240590312792e38a6e9dd448:/tools/graphicator/graphicator.c diff --git a/tools/graphicator/graphicator.c b/tools/graphicator/graphicator.c index 030f7cdfd2..7efa7dfaca 100644 --- a/tools/graphicator/graphicator.c +++ b/tools/graphicator/graphicator.c @@ -8,54 +8,33 @@ #include #endif -#include -#include -#include -#include -#include - - -#include "simdag/simdag.h" -#include "xbt/log.h" -#include "xbt/dict.h" -#include "xbt/ex.h" +#include "msg/msg.h" #include "xbt/graph.h" -#include "surf/surf.h" -#include "surf/surf_private.h" XBT_LOG_NEW_DEFAULT_CATEGORY(graphicator, "Graphicator Logging System"); int main(int argc, char **argv) { - char *platformFile = NULL; - char *graphvizFile = NULL; - - xbt_ex_t e; - +#ifdef HAVE_TRACING MSG_global_init(&argc, argv); if (argc < 3){ XBT_INFO("Usage: %s ", argv[0]); return 1; } - platformFile = argv[1]; - graphvizFile = argv[2]; + char *platformFile = argv[1]; + char *graphvizFile = argv[2]; - TRY { - MSG_create_environment(platformFile); - } CATCH(e) { - xbt_die("Error while loading %s: %s",platformFile,e.msg); - } + MSG_create_environment(platformFile); - //creating the graph structure - xbt_graph_t graph = TRACE_platform_graph(); - if (graph == NULL){ - XBT_INFO ("%s expects --cfg=tracing:1", argv[0]); - }else{ - xbt_graph_export_graphviz(graph, graphvizFile, &TRACE_node_name, NULL); - XBT_INFO ("Output is in file %s", graphvizFile); + int status = TRACE_platform_graph_export_graphviz (graphvizFile); + if (status == 0){ + XBT_INFO ("%s expects --cfg=tracing:1 --cfg=tracing/platform:1", argv[0]); } MSG_clean(); +#else + XBT_INFO ("works only if simgrid was compiled with tracing enabled."); +#endif return 0; }