X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f8a7ee5550baeac116375b64ea445aaed605f743..c7edbf695cf8cae1e5bbca502b505d349510eebb:/src/instr/instr_resource_utilization.cpp diff --git a/src/instr/instr_resource_utilization.cpp b/src/instr/instr_resource_utilization.cpp index 562a628b0e..62889c1ca9 100644 --- a/src/instr/instr_resource_utilization.cpp +++ b/src/instr/instr_resource_utilization.cpp @@ -1,10 +1,11 @@ -/* Copyright (c) 2010-2015. The SimGrid Team. +/* Copyright (c) 2010-2017. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ #include "src/instr/instr_private.h" +#include #include XBT_LOG_NEW_DEFAULT_SUBCATEGORY (instr_resource, instr, "tracing (un)-categorized resource utilization"); @@ -27,17 +28,17 @@ static void __TRACE_surf_check_variable_set_to_zero(double now, const char *vari // check if key exists: if it doesn't, set the variable to zero and mark this in the dict if (platform_variables.find(key) == platform_variables.end()) { container_t container = PJ_container_get (resource); - type_t type = PJ_type_get (variable, container->type); - new SetVariableEvent (now, container, type, 0); + simgrid::instr::Type* type = PJ_type_get(variable, container->type); + new simgrid::instr::SetVariableEvent(now, container, type, 0); platform_variables[key] = std::string(""); } } -static void instr_event (double now, double delta, type_t variable, container_t resource, double value) +static void instr_event(double now, double delta, simgrid::instr::Type* variable, container_t resource, double value) { __TRACE_surf_check_variable_set_to_zero(now, variable->name, resource->name); - new AddVariableEvent(now, resource, variable, value); - new SubVariableEvent(now + delta, resource, variable, value); + new simgrid::instr::AddVariableEvent(now, resource, variable, value); + new simgrid::instr::SubVariableEvent(now + delta, resource, variable, value); } /* TRACE_surf_link_set_utilization: entry point from SimGrid */ @@ -53,7 +54,7 @@ void TRACE_surf_link_set_utilization(const char *resource, const char *category, if (TRACE_uncategorized()){ XBT_DEBUG("UNCAT LINK [%f - %f] %s bandwidth_used %f", now, now+delta, resource, value); container_t container = PJ_container_get (resource); - type_t type = PJ_type_get ("bandwidth_used", container->type); + simgrid::instr::Type* type = PJ_type_get("bandwidth_used", container->type); instr_event (now, delta, type, container, value); } @@ -66,7 +67,7 @@ void TRACE_surf_link_set_utilization(const char *resource, const char *category, snprintf (category_type, INSTR_DEFAULT_STR_SIZE, "b%s", category); XBT_DEBUG("CAT LINK [%f - %f] %s %s %f", now, now+delta, resource, category_type, value); container_t container = PJ_container_get (resource); - type_t type = PJ_type_get (category_type, container->type); + simgrid::instr::Type* type = PJ_type_get(category_type, container->type); instr_event (now, delta, type, container, value); } } @@ -82,7 +83,7 @@ void TRACE_surf_host_set_utilization(const char *resource, const char *category, //trace uncategorized host utilization if (TRACE_uncategorized()){ XBT_DEBUG("UNCAT HOST [%f - %f] %s power_used %f", now, now+delta, resource, value); - type_t type = PJ_type_get ("power_used", container->type); + simgrid::instr::Type* type = PJ_type_get("power_used", container->type); instr_event (now, delta, type, container, value); } @@ -94,7 +95,7 @@ void TRACE_surf_host_set_utilization(const char *resource, const char *category, char category_type[INSTR_DEFAULT_STR_SIZE]; snprintf (category_type, INSTR_DEFAULT_STR_SIZE, "p%s", category); XBT_DEBUG("CAT HOST [%f - %f] %s %s %f", now, now+delta, resource, category_type, value); - type_t type = PJ_type_get (category_type, container->type); + simgrid::instr::Type* type = PJ_type_get(category_type, container->type); instr_event (now, delta, type, container, value); } }