X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/24a9a43343e8bb1e6ae073d8a480de24ffcf4d2f..27522f54798d48ca54ec41a4d203f650cbfacdfd:/src/instr/instr_surf.c diff --git a/src/instr/instr_surf.c b/src/instr/instr_surf.c index 381224be28..9db0eb1fca 100644 --- a/src/instr/instr_surf.c +++ b/src/instr/instr_surf.c @@ -9,10 +9,8 @@ #ifdef HAVE_TRACING -XBT_LOG_NEW_DEFAULT_SUBCATEGORY(tracing_surf, tracing, "Tracing Surf"); +XBT_LOG_NEW_DEFAULT_SUBCATEGORY(instr_surf, instr, "Tracing Surf"); -static xbt_dict_t created_links; -static xbt_dict_t host_containers; static xbt_dict_t resource_variables; /* (host|link)#variable -> value */ /* to trace gtnets */ @@ -21,8 +19,6 @@ static xbt_dict_t gtnets_dst; /* %p (action) -> %s */ void TRACE_surf_alloc(void) { - created_links = xbt_dict_new(); - host_containers = xbt_dict_new(); resource_variables = xbt_dict_new(); gtnets_src = xbt_dict_new(); gtnets_dst = xbt_dict_new(); @@ -32,17 +28,8 @@ void TRACE_surf_alloc(void) void TRACE_surf_release(void) { - char *key, *value; - xbt_dict_cursor_t cursor = NULL; TRACE_surf_resource_utilization_release(); - - /* get all host from host_containers */ - xbt_dict_foreach(host_containers, cursor, key, value) { - pajeDestroyContainer(MSG_get_clock(), "HOST", key); - } - xbt_dict_foreach(created_links, cursor, key, value) { - pajeDestroyContainer(MSG_get_clock(), "LINK", key); - } + instr_destroy_platform(); } static void TRACE_surf_set_resource_variable(double date, @@ -68,55 +55,6 @@ static void TRACE_surf_set_resource_variable(double date, xbt_free); } -/* - * TRACE_surf_link_declaration (name, bandwidth, latency): this function - * saves the bandwidth and latency of a link identified by name. This - * information is used in the future to create the link container in the trace. - * - * caller: net_link_new (from each network model) - * main: create LINK container, set initial bandwidth and latency - * return: void - */ -void TRACE_surf_link_declaration(void *link, char *name, double bw, - double lat) -{ - if (!TRACE_is_active()) - return; - - if (!link){ - xbt_die ("link is NULL"); - } - - //filter out loopback - if (!strcmp(name, "loopback") || !strcmp(name, "__loopback__")) - return; - - char alias[100]; - snprintf(alias, 100, "%p", link); - pajeCreateContainer(SIMIX_get_clock(), alias, "LINK", "platform", name); - xbt_dict_set(created_links, alias, xbt_strdup("1"), xbt_free); - TRACE_surf_link_set_bandwidth(SIMIX_get_clock(), link, bw); - TRACE_surf_link_set_latency(SIMIX_get_clock(), link, lat); -} - -/* - * TRACE_surf_host_declaration (name, power): this function - * saves the power of a host identified by name. This information - * is used to create the host container in the trace. - * - * caller: cpu_new (from each cpu model) + router parser - * main: create HOST containers, set initial power value - * return: void - */ -void TRACE_surf_host_declaration(const char *name, double power) -{ - if (!TRACE_is_active()) - return; - pajeCreateContainer(SIMIX_get_clock(), name, "HOST", "platform", name); - xbt_dict_set(host_containers, name, xbt_strdup("1"), xbt_free); - TRACE_surf_host_set_power(SIMIX_get_clock(), name, power); -} - void TRACE_surf_host_set_power(double date, const char *resource, double power) { @@ -221,56 +159,15 @@ void TRACE_surf_host_vivaldi_parse(char *host, double x, double y, pajeSetVariable(0, "vivaldi_h", host, valuestr); } -extern routing_global_t global_routing; -void TRACE_surf_save_onelink(void) -{ - if (!TRACE_is_active()) - return; - - //get the onelinks from the parsed platform - xbt_dynar_t onelink_routes = global_routing->get_onelink_routes(); - if (!onelink_routes) - return; - - //save them in trace file - onelink_t onelink; - unsigned int iter; - xbt_dynar_foreach(onelink_routes, iter, onelink) { - char *src = onelink->src; - char *dst = onelink->dst; - void *link = onelink->link_ptr; - - if (TRACE_surf_link_is_traced(link)) { - char resource[100]; - snprintf(resource, 100, "%p", link); - - pajeNewEvent(0, "source", resource, src); - pajeNewEvent(0, "destination", resource, dst); - } - } -} - -int TRACE_surf_link_is_traced(void *link) -{ - char alias[100]; - snprintf(alias, 100, "%p", link); - if (xbt_dict_get_or_null(created_links, alias)) { - return 1; - } else { - return 0; - } -} - void TRACE_surf_action(surf_action_t surf_action, const char *category) { if (!TRACE_is_active()) return; - if (!TRACE_platform_is_enabled()) + if (!TRACE_categorized ()) return; if (!category) return; - surf_action->category = xbt_new(char, strlen(category) + 1); - strncpy(surf_action->category, category, strlen(category) + 1); + surf_action->category = xbt_strdup(category); } #endif /* HAVE_TRACING */