Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
clang-format these files, no change
[simgrid.git] / src / instr / instr_resource_utilization.cpp
1 /* Copyright (c) 2010-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include "src/instr/instr_private.h"
8
9 XBT_LOG_NEW_DEFAULT_SUBCATEGORY (instr_resource, instr, "tracing (un)-categorized resource utilization");
10
11 //to check if variables were previously set to 0, otherwise paje won't simulate them
12 static xbt_dict_t platform_variables;
13
14 //used by all methods
15 static void __TRACE_surf_check_variable_set_to_zero(double now, const char *variable, const char *resource)
16 {
17   /* To trace resource utilization, we use pajeAddVariable and pajeSubVariable only.
18    * The Paje simulator needs a pajeSetVariable in the first place so it knows the initial value of all variables for
19    * subsequent adds/subs. If we don't do so, the first pajeAddVariable is added to a non-determined value within
20    * the Paje simulator, causing analysis problems.
21    */
22
23   // create a key considering the resource and variable
24   char *key = bprintf ("%s%s", resource, variable);
25
26   // check if key exists: if it doesn't, set the variable to zero and mark this in the dict
27   if (!xbt_dict_get_or_null(platform_variables, key)) {
28     container_t container = PJ_container_get (resource);
29     type_t type = PJ_type_get (variable, container->type);
30     new_pajeSetVariable (now, container, type, 0);
31     xbt_dict_set(platform_variables, key, (char*)"", nullptr);
32   }
33   xbt_free(key);
34 }
35
36 static void instr_event (double now, double delta, type_t variable, container_t resource, double value)
37 {
38   __TRACE_surf_check_variable_set_to_zero(now, variable->name, resource->name);
39   new_pajeAddVariable(now, resource, variable, value);
40   new_pajeSubVariable(now + delta, resource, variable, value);
41 }
42
43 /* TRACE_surf_link_set_utilization: entry point from SimGrid */
44 void TRACE_surf_link_set_utilization(const char *resource, const char *category, double value, double now, double delta)
45 {
46   //only trace link utilization if link is known by tracing mechanism
47   if (!PJ_container_get_or_null(resource))
48     return;
49   if (!value)
50     return;
51
52   //trace uncategorized link utilization
53   if (TRACE_uncategorized()){
54     XBT_DEBUG("UNCAT LINK [%f - %f] %s bandwidth_used %f", now, now+delta, resource, value);
55     container_t container = PJ_container_get (resource);
56     type_t type = PJ_type_get ("bandwidth_used", container->type);
57     instr_event (now, delta, type, container, value);
58   }
59
60   //trace categorized utilization
61   if (TRACE_categorized()){
62     if (!category)
63       return;
64     //variable of this category starts by 'b', because we have a link here
65     char category_type[INSTR_DEFAULT_STR_SIZE];
66     snprintf (category_type, INSTR_DEFAULT_STR_SIZE, "b%s", category);
67     XBT_DEBUG("CAT LINK [%f - %f] %s %s %f", now, now+delta, resource, category_type, value);
68     container_t container = PJ_container_get (resource);
69     type_t type = PJ_type_get (category_type, container->type);
70     instr_event (now, delta, type, container, value);
71   }
72   return;
73 }
74
75 /* TRACE_surf_host_set_utilization: entry point from SimGrid */
76 void TRACE_surf_host_set_utilization(const char *resource, const char *category, double value, double now, double delta)
77 {
78   //only trace host utilization if host is known by tracing mechanism
79   container_t container = PJ_container_get_or_null(resource);
80   if (!container)
81     return;
82   if (!value)
83     return;
84
85   //trace uncategorized host utilization
86   if (TRACE_uncategorized()){
87     XBT_DEBUG("UNCAT HOST [%f - %f] %s power_used %f", now, now+delta, resource, value);
88     type_t type = PJ_type_get ("power_used", container->type);
89     instr_event (now, delta, type, container, value);
90   }
91
92   //trace categorized utilization
93   if (TRACE_categorized()){
94     if (!category)
95       return;
96     //variable of this category starts by 'p', because we have a host here
97     char category_type[INSTR_DEFAULT_STR_SIZE];
98     snprintf (category_type, INSTR_DEFAULT_STR_SIZE, "p%s", category);
99     XBT_DEBUG("CAT HOST [%f - %f] %s %s %f", now, now+delta, resource, category_type, value);
100     type_t type = PJ_type_get (category_type, container->type);
101     instr_event (now, delta, type, container, value);
102   }
103   return;
104 }
105
106 void TRACE_surf_resource_utilization_alloc()
107 {
108   platform_variables = xbt_dict_new_homogeneous(nullptr);
109 }
110
111 void TRACE_surf_resource_utilization_release()
112 {
113   xbt_dict_free(&platform_variables);
114 }