X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0e4aeb6a5d4165c8ba038514f09da26751a93538..c1194401ce4a41ff54a7591f4cf33c9ce2756978:/src/instr/instr_resource_utilization.cpp diff --git a/src/instr/instr_resource_utilization.cpp b/src/instr/instr_resource_utilization.cpp index 77dc1e9a99..aa7ad8ca1e 100644 --- a/src/instr/instr_resource_utilization.cpp +++ b/src/instr/instr_resource_utilization.cpp @@ -1,89 +1,32 @@ -/* Copyright (c) 2010-2017. The SimGrid Team. +/* Copyright (c) 2010-2019. 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.hpp" -#include #include XBT_LOG_NEW_DEFAULT_SUBCATEGORY (instr_resource, instr, "tracing (un)-categorized resource utilization"); -//to check if variables were previously set to 0, otherwise paje won't simulate them -static std::set platform_variables; - -static void instr_event(double now, double delta, simgrid::instr::VariableType* variable, container_t resource, - double value) -{ - /* To trace resource utilization, we use AddEvent and SubEvent only. This implies to add a SetEvent first to set the - * initial value of all variables for subsequent adds/subs. If we don't do so, the first AddEvent would be added to a - * non-determined value, hence causing analysis problems. - */ - - // create a key considering the resource and variable - std::string key = resource->getName() + variable->getName(); - - // check if key exists: if it doesn't, set the variable to zero and mark this in the global map. - if (platform_variables.find(key) == platform_variables.end()) { - variable->setEvent(now, 0); - platform_variables.insert(key); - } - - variable->addEvent(now, value); - variable->subEvent(now + delta, value); -} - -/* TRACE_surf_link_set_utilization: entry point from SimGrid */ -void TRACE_surf_link_set_utilization(const char *resource, const char *category, double value, double now, double delta) -{ - //only trace link utilization if link is known by tracing mechanism - container_t container = simgrid::instr::Container::byNameOrNull(resource); - if (not container || not value) - return; - - //trace uncategorized link utilization - if (TRACE_uncategorized()){ - XBT_DEBUG("UNCAT LINK [%f - %f] %s bandwidth_used %f", now, now + delta, resource, value); - simgrid::instr::VariableType* variable = container->getVariable("bandwidth_used"); - instr_event(now, delta, variable, container, value); - } - - //trace categorized utilization - if (TRACE_categorized()){ - if (not category) - return; - //variable of this category starts by 'b', because we have a link here - std::string category_type = std::string("b") + category; - XBT_DEBUG("CAT LINK [%f - %f] %s %s %f", now, now + delta, resource, category_type.c_str(), value); - simgrid::instr::VariableType* variable = container->getVariable(category_type); - instr_event(now, delta, variable, container, value); - } -} - -/* TRACE_surf_host_set_utilization: entry point from SimGrid */ -void TRACE_surf_host_set_utilization(const char *resource, const char *category, double value, double now, double delta) +void TRACE_surf_resource_set_utilization(const char* type, const char* name, const char* resource, + const std::string& category, double value, double now, double delta) { - //only trace host utilization if host is known by tracing mechanism - container_t container = simgrid::instr::Container::byNameOrNull(resource); + // only trace resource utilization if resource is known by tracing mechanism + container_t container = simgrid::instr::Container::by_name_or_null(resource); if (not container || not value) return; - //trace uncategorized host utilization + // trace uncategorized resource utilization if (TRACE_uncategorized()){ - XBT_DEBUG("UNCAT HOST [%f - %f] %s power_used %f", now, now+delta, resource, value); - simgrid::instr::VariableType* variable = container->getVariable("power_used"); - instr_event(now, delta, variable, container, value); + XBT_DEBUG("UNCAT %s [%f - %f] %s %s %f", type, now, now + delta, resource, name, value); + container->get_variable(name)->instr_event(now, delta, resource, value); } - //trace categorized utilization - if (TRACE_categorized()){ - if (not category) - return; - //variable of this category starts by 'p', because we have a host here - std::string category_type = std::string("p") + category; - XBT_DEBUG("CAT HOST [%f - %f] %s %s %f", now, now + delta, resource, category_type.c_str(), value); - simgrid::instr::VariableType* variable = container->getVariable(category_type); - instr_event(now, delta, variable, container, value); + // trace categorized resource utilization + if (TRACE_categorized() && not category.empty()) { + std::string category_type = name[0] + category; + XBT_DEBUG("CAT %s [%f - %f] %s %s %f", type, now, now + delta, resource, category_type.c_str(), value); + container->get_variable(name)->instr_event(now, delta, resource, value); } }