Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
c8e4196af95cad5d5851e8c4fce74daca67651f8
[simgrid.git] / src / instr / interface.c
1 /*
2  * interface.c
3  *
4  *  Created on: Nov 23, 2009
5  *      Author: Lucas Schnorr
6  *     License: This program is free software; you can redistribute
7  *              it and/or modify it under the terms of the license
8  *              (GNU LGPL) which comes with this package.
9  *
10  *     Copyright (c) 2009 The SimGrid team.
11  */
12
13 #include "instr/private.h"
14
15
16 #ifdef HAVE_TRACING
17
18 XBT_LOG_NEW_DEFAULT_CATEGORY(tracing,"Tracing Interface");
19
20 static xbt_dict_t defined_types;
21 static xbt_dict_t created_categories;
22
23 int trace_mask;
24
25 /** \ingroup tracing
26  * \brief Simple initialization of tracing.
27  *
28  * \param filename of the file that will contain the traces
29  * \return 0 if everything is ok
30  */
31 int TRACE_start (const char *filename)
32 {
33   return TRACE_start_with_mask (filename, TRACE_PLATFORM);
34 }
35
36 /** \ingroup tracing
37  * \brief Initialization of tracing.
38  *
39  * Function to be called at first when tracing a simulation
40  *
41  * \param name of the file that will contain the traces
42  * \param mask to take into account during trace
43  * \return 0 if everything is ok
44  */
45 int TRACE_start_with_mask(const char *filename, int mask) {
46   if (IS_TRACING) { /* what? trace is already active... ignore.. */
47         THROW0 (tracing_error, TRACE_ERROR_START,
48                 "TRACE_start called, but tracing is already active");
49     return 0;
50   }
51
52   /* checking mask */
53   if (!(mask&TRACE_PLATFORM ||
54       mask&TRACE_TASK ||
55       mask&TRACE_PROCESS)){
56     THROW0 (tracing_error, TRACE_ERROR_MASK,
57           "unknown tracing mask");
58   }
59
60   FILE *file = fopen(filename, "w");
61   if (!file) {
62     THROW1 (tracing_error, TRACE_ERROR_START,
63                 "Tracefile %s could not be opened for writing.", filename);
64   } else {
65     TRACE_paje_start (file);
66   }
67   TRACE_paje_create_header();
68
69   /* setting the mask */
70   trace_mask = mask;
71
72   /* define paje hierarchy for tracing */
73   pajeDefineContainerType("PLATFORM", "0", "platform");
74   pajeDefineContainerType("HOST", "PLATFORM", "HOST");
75   pajeDefineContainerType("LINK", "PLATFORM", "LINK");
76
77   if (IS_TRACING_PLATFORM){
78     pajeDefineVariableType ("power", "HOST", "power");
79     pajeDefineVariableType ("bandwidth", "LINK", "bandwidth");
80     pajeDefineVariableType ("latency", "LINK", "latency");
81   }
82
83   if (IS_TRACING_PROCESSES){
84     //processes grouped by host
85     pajeDefineContainerType("PROCESS", "HOST", "PROCESS");
86     pajeDefineStateType("presence", "PROCESS", "presence");
87   }
88
89   if (IS_TRACING_TASKS){
90     //tasks grouped by host
91     pajeDefineContainerType("TASK", "HOST", "TASK");
92     pajeDefineStateType("category", "TASK", "category");
93     pajeDefineStateType("presence", "TASK", "presence");
94   }
95
96   /* creating the platform */
97   pajeCreateContainer(MSG_get_clock(), "platform", "PLATFORM", "0", "simgrid-platform");
98
99   /* other trace initialization */
100   defined_types = xbt_dict_new();
101   created_categories = xbt_dict_new();
102   __TRACE_msg_init();
103   __TRACE_surf_init();
104   __TRACE_msg_process_init ();
105
106   return 0;
107 }
108
109 int TRACE_end() {
110   if (!IS_TRACING) return 1;
111   FILE *file = TRACE_paje_end();
112   fclose (file);
113   return 0;
114 }
115
116 int TRACE_category (const char *category)
117 {
118   if (!IS_TRACING) return 1;
119   static int first_time = 1;
120   if (first_time){
121           TRACE_define_type ("user_type", "0", 1);
122           first_time = 0;
123   }
124   return TRACE_create_category (category, "user_type", "0");
125 }
126
127 void TRACE_define_type (const char *type,
128                 const char *parent_type, int final) {
129   if (!IS_TRACING) return;
130
131   //check if type is already defined
132   if (xbt_dict_get_or_null (defined_types, type)){
133     THROW1 (tracing_error, TRACE_ERROR_TYPE_ALREADY_DEFINED, "Type %s is already defined", type);
134   }
135   //check if parent_type is already defined
136   if (strcmp(parent_type, "0") && !xbt_dict_get_or_null (defined_types, parent_type)) {
137     THROW1 (tracing_error, TRACE_ERROR_TYPE_NOT_DEFINED, "Type (used as parent) %s is not defined", parent_type);
138   }
139
140   pajeDefineContainerType(type, parent_type, type);
141   if (final) {
142     //for m_process_t
143     if (IS_TRACING_PROCESSES) pajeDefineContainerType ("process", type, "process");
144     if (IS_TRACING_PROCESSES) pajeDefineStateType ("process-state", "process", "process-state");
145
146     if (IS_TRACING_TASKS) pajeDefineContainerType ("task", type, "task");
147     if (IS_TRACING_TASKS) pajeDefineStateType ("task-state", "task", "task-state");
148   }
149   xbt_dict_set (defined_types, type, xbt_strdup("1"), xbt_free);
150 }
151
152 int TRACE_create_category (const char *category,
153                 const char *type, const char *parent_category)
154 {
155   if (!IS_TRACING) return 1;
156
157   //check if type is defined
158   if (!xbt_dict_get_or_null (defined_types, type)) {
159          THROW1 (tracing_error, TRACE_ERROR_TYPE_NOT_DEFINED, "Type %s is not defined", type);
160          return 1;
161   }
162   //check if parent_category exists
163   if (strcmp(parent_category, "0") && !xbt_dict_get_or_null (created_categories, parent_category)){
164      THROW1 (tracing_error, TRACE_ERROR_CATEGORY_NOT_DEFINED, "Category (used as parent) %s is not created", parent_category);
165      return 1;
166   }
167   //check if category is created
168   if (xbt_dict_get_or_null (created_categories, category)){
169      return 1;
170   }
171
172   pajeCreateContainer(MSG_get_clock(), category, type, parent_category, category);
173
174   /* for registering application categories on top of platform */
175   char state[100];
176   snprintf (state, 100, "b%s", category);
177   if (IS_TRACING_PLATFORM) pajeDefineVariableType (state, "LINK", state);
178   snprintf (state, 100, "p%s", category);
179   if (IS_TRACING_PLATFORM) pajeDefineVariableType (state, "HOST", state);
180
181   xbt_dict_set (created_categories, category, xbt_strdup("1"), xbt_free);
182   return 0;
183 }
184
185 void TRACE_set_mask (int mask)
186 {
187   if (mask != TRACE_PLATFORM){
188      return;
189   }else{
190      trace_mask = mask;
191   }
192 }
193
194 #endif /* HAVE_TRACING */