X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b857f66adac2e677a8a2642afe500e9a5f19e474..fc1f64e80cd03f4f1c74d92497326e8c2f92dc12:/src/instr/instr_surf.c diff --git a/src/instr/instr_surf.c b/src/instr/instr_surf.c index 4cff2e8742..4318df001c 100644 --- a/src/instr/instr_surf.c +++ b/src/instr/instr_surf.c @@ -19,18 +19,6 @@ void TRACE_surf_alloc(void) 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); - char *variable_type = instr_variable_type(variable, resource); - pajeSetVariable(date, variable, variable_type, value_str); } void TRACE_surf_host_set_power(double date, const char *resource, double power) @@ -38,8 +26,9 @@ void TRACE_surf_host_set_power(double date, const char *resource, double power) if (!TRACE_is_active()) return; - char *variable_type = instr_variable_type("power", resource); - 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) @@ -47,8 +36,9 @@ void TRACE_surf_link_set_bandwidth(double date, const char *resource, double ban if (!TRACE_is_active()) return; - char *variable_type = instr_variable_type("bandwidth", resource); - 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?) @@ -57,8 +47,9 @@ void TRACE_surf_link_set_latency(double date, const char *resource, double laten if (!TRACE_is_active()) return; - char *variable_type = instr_variable_type("latency", resource); - 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 */