X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8f4c4fc9449a0047868401e41597aafc1ea97bc6..1dc68fca3f3bd110ddaaf88fb90a8bbb83a584b2:/src/instr/instr_surf.c diff --git a/src/instr/instr_surf.c b/src/instr/instr_surf.c index 0f67089e48..4318df001c 100644 --- a/src/instr/instr_surf.c +++ b/src/instr/instr_surf.c @@ -11,48 +11,24 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(instr_surf, instr, "Tracing Surf"); -static xbt_dict_t resource_variables; /* (host|link)#variable -> value */ - -/* to trace gtnets */ -static xbt_dict_t gtnets_src; /* %p (action) -> %s */ -static xbt_dict_t gtnets_dst; /* %p (action) -> %s */ - void TRACE_surf_alloc(void) { - resource_variables = xbt_dict_new(); - gtnets_src = xbt_dict_new(); - gtnets_dst = xbt_dict_new(); - TRACE_surf_resource_utilization_alloc(); } void TRACE_surf_release(void) { TRACE_surf_resource_utilization_release(); - instr_destroy_platform(); } -static void TRACE_surf_set_resource_variable(double date, - const char *variable, - const char *resource, - double value) -{ - char value_str[INSTR_DEFAULT_STR_SIZE]; - snprintf(value_str, 100, "%f", value); - pajeSetVariable(date, variable, resource, value_str); -} - -void TRACE_surf_host_set_power(double date, const char *resource, - double power) +void TRACE_surf_host_set_power(double date, const char *resource, double power) { if (!TRACE_is_active()) return; - char *host_type = instr_host_type (resource); - char variable_type[INSTR_DEFAULT_STR_SIZE]; - snprintf (variable_type, INSTR_DEFAULT_STR_SIZE, "power-%s", host_type); - - TRACE_surf_set_resource_variable(date, variable_type, resource, power); + container_t container = getContainerByName(resource); + type_t type = getVariableType("power", NULL, container->type); + new_pajeSetVariable(date, container, type, power); } void TRACE_surf_link_set_bandwidth(double date, const char *resource, double bandwidth) @@ -60,11 +36,9 @@ void TRACE_surf_link_set_bandwidth(double date, const char *resource, double ban if (!TRACE_is_active()) return; - char *link_type = instr_link_type (resource); - char variable_type[INSTR_DEFAULT_STR_SIZE]; - snprintf (variable_type, INSTR_DEFAULT_STR_SIZE, "bandwidth-%s", link_type); - - TRACE_surf_set_resource_variable(date, variable_type, resource, bandwidth); + container_t container = getContainerByName(resource); + type_t type = getVariableType("bandwidth", NULL, container->type); + new_pajeSetVariable(date, container, type, bandwidth); } //FIXME: this function is not used (latency availability traces support exists in surf network models?) @@ -73,67 +47,28 @@ void TRACE_surf_link_set_latency(double date, const char *resource, double laten if (!TRACE_is_active()) return; - char *link_type = instr_link_type (resource); - char variable_type[INSTR_DEFAULT_STR_SIZE]; - snprintf (variable_type, INSTR_DEFAULT_STR_SIZE, "latency-%s", link_type); - - TRACE_surf_set_resource_variable(date, variable_type, resource, latency); + container_t container = getContainerByName(resource); + type_t type = getVariableType("latency", NULL, container->type); + new_pajeSetVariable(date, container, type, latency); } /* to trace gtnets */ void TRACE_surf_gtnets_communicate(void *action, int src, int dst) { - char key[100], aux[100]; - if (!TRACE_is_active()) - return; - snprintf(key, 100, "%p", action); - - snprintf(aux, 100, "%d", src); - xbt_dict_set(gtnets_src, key, xbt_strdup(aux), xbt_free); - snprintf(aux, 100, "%d", dst); - xbt_dict_set(gtnets_dst, key, xbt_strdup(aux), xbt_free); } int TRACE_surf_gtnets_get_src(void *action) { - char key[100]; - char *aux = NULL; - if (!TRACE_is_active()) - return -1; - snprintf(key, 100, "%p", action); - - aux = xbt_dict_get_or_null(gtnets_src, key); - if (aux) { - return atoi(aux); - } else { - return -1; - } + return -1; } int TRACE_surf_gtnets_get_dst(void *action) { - char key[100]; - char *aux = NULL; - if (!TRACE_is_active()) - return -1; - snprintf(key, 100, "%p", action); - - aux = xbt_dict_get_or_null(gtnets_dst, key); - if (aux) { - return atoi(aux); - } else { - return -1; - } + return -1; } void TRACE_surf_gtnets_destroy(void *action) { - char key[100]; - if (!TRACE_is_active()) - return; - snprintf(key, 100, "%p", action); - xbt_dict_remove(gtnets_src, key); - xbt_dict_remove(gtnets_dst, key); } void TRACE_surf_action(surf_action_t surf_action, const char *category)