Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
fix the way to instanciate links via worsktation_ptask_L07 model when bypassing the...
[simgrid.git] / src / instr / interface.c
1 /* Copyright (c) 2010. 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 "simgrid_config.h"
8
9 #ifdef HAVE_TRACING
10
11 #include "instr/private.h"
12
13 XBT_LOG_NEW_DEFAULT_CATEGORY(tracing,"Tracing Interface");
14
15 static xbt_dict_t defined_types;
16 static xbt_dict_t created_categories;
17
18 int TRACE_start ()
19 {
20   if (!_TRACE_configured()){
21     THROW0 (tracing_error, TRACE_ERROR_START,
22             "TRACE_start should be called after SimGrid initialization functions.");
23     return 0;
24   }
25
26   if (IS_TRACING) { /* what? trace is already active... ignore.. */
27     THROW0 (tracing_error, TRACE_ERROR_START,
28                  "TRACE_start called, but tracing is already active.");
29     return 0;
30   }
31
32   char *filename = _TRACE_filename ();
33   if (!filename){
34     THROW0 (tracing_error, TRACE_ERROR_START,
35             "Trace filename is not initialized.");
36     return 0;
37   }
38   FILE *file = fopen(filename, "w");
39   if (!file) {
40     THROW1 (tracing_error, TRACE_ERROR_START,
41                 "Tracefile %s could not be opened for writing.", filename);
42   } else {
43     TRACE_paje_start (file);
44   }
45   TRACE_paje_create_header();
46
47   /* define paje hierarchy for tracing */
48   pajeDefineContainerType("PLATFORM", "0", "platform");
49   pajeDefineContainerType("HOST", "PLATFORM", "HOST");
50   pajeDefineContainerType("LINK", "PLATFORM", "LINK");
51
52   if (IS_TRACING_PLATFORM){
53     pajeDefineVariableType ("power", "HOST", "power");
54     pajeDefineVariableType ("bandwidth", "LINK", "bandwidth");
55     pajeDefineVariableType ("latency", "LINK", "latency");
56   }
57
58   if (IS_TRACING_PROCESSES || IS_TRACING_VOLUME){
59     //processes grouped by host
60     pajeDefineContainerType("PROCESS", "HOST", "PROCESS");
61   }
62
63   if (IS_TRACING_PROCESSES){
64     pajeDefineStateType("category", "PROCESS", "category");
65     pajeDefineStateType("presence", "PROCESS", "presence");
66   }
67
68   if (IS_TRACING_VOLUME){
69     pajeDefineLinkType ("volume", "0", "PROCESS", "PROCESS", "volume");
70   }
71
72   if (IS_TRACING_TASKS){
73     //tasks grouped by host
74     pajeDefineContainerType("TASK", "HOST", "TASK");
75     pajeDefineStateType("category", "TASK", "category");
76     pajeDefineStateType("presence", "TASK", "presence");
77   }
78
79   if (IS_TRACING_SMPI){
80     pajeDefineContainerType ("MPI_PROCESS", "HOST", "MPI_PROCESS");
81     pajeDefineStateType ("MPI_STATE", "MPI_PROCESS", "MPI_STATE");
82     pajeDefineLinkType ("MPI_LINK", "0", "MPI_PROCESS", "MPI_PROCESS", "MPI_LINK");
83   }
84
85   /* creating the platform */
86   pajeCreateContainer(MSG_get_clock(), "platform", "PLATFORM", "0", "simgrid-platform");
87
88   /* other trace initialization */
89   defined_types = xbt_dict_new();
90   created_categories = xbt_dict_new();
91   __TRACE_msg_init();
92   __TRACE_surf_init();
93   __TRACE_msg_process_init ();
94   __TRACE_smpi_init ();
95
96   return 0;
97 }
98
99 int TRACE_end() {
100         FILE *file = NULL;
101   if (!IS_TRACING) return 1;
102   file = TRACE_paje_end();
103   fclose (file);
104   return 0;
105 }
106
107 int TRACE_category (const char *category)
108 {
109   static int first_time = 1;
110   if (!IS_TRACING) return 1;
111
112   if (first_time){
113           TRACE_define_type ("user_type", "0", 1);
114           first_time = 0;
115   }
116   return TRACE_create_category (category, "user_type", "0");
117 }
118
119 void TRACE_define_type (const char *type,
120                 const char *parent_type, int final) {
121         char *val_one = NULL;
122   if (!IS_TRACING) return;
123
124   //check if type is already defined
125   if (xbt_dict_get_or_null (defined_types, type)){
126     THROW1 (tracing_error, TRACE_ERROR_TYPE_ALREADY_DEFINED, "Type %s is already defined", type);
127   }
128   //check if parent_type is already defined
129   if (strcmp(parent_type, "0") && !xbt_dict_get_or_null (defined_types, parent_type)) {
130     THROW1 (tracing_error, TRACE_ERROR_TYPE_NOT_DEFINED, "Type (used as parent) %s is not defined", parent_type);
131   }
132
133   pajeDefineContainerType(type, parent_type, type);
134   if (final) {
135     //for m_process_t
136     if (IS_TRACING_PROCESSES) pajeDefineContainerType ("process", type, "process");
137     if (IS_TRACING_PROCESSES) pajeDefineStateType ("process-state", "process", "process-state");
138
139     if (IS_TRACING_TASKS) pajeDefineContainerType ("task", type, "task");
140     if (IS_TRACING_TASKS) pajeDefineStateType ("task-state", "task", "task-state");
141   }
142   val_one = xbt_strdup ("1");
143   xbt_dict_set (defined_types, type, &val_one, xbt_free);
144 }
145
146 int TRACE_create_category (const char *category,
147                 const char *type, const char *parent_category)
148 {
149   char state[100];
150   char *val_one = NULL;
151   if (!IS_TRACING) return 1;
152
153   //check if type is defined
154   if (!xbt_dict_get_or_null (defined_types, type)) {
155          THROW1 (tracing_error, TRACE_ERROR_TYPE_NOT_DEFINED, "Type %s is not defined", type);
156          return 1;
157   }
158   //check if parent_category exists
159   if (strcmp(parent_category, "0") && !xbt_dict_get_or_null (created_categories, parent_category)){
160      THROW1 (tracing_error, TRACE_ERROR_CATEGORY_NOT_DEFINED, "Category (used as parent) %s is not created", parent_category);
161      return 1;
162   }
163   //check if category is created
164   if (xbt_dict_get_or_null (created_categories, category)){
165      return 1;
166   }
167
168   pajeCreateContainer(MSG_get_clock(), category, type, parent_category, category);
169
170   /* for registering application categories on top of platform */
171
172   snprintf (state, 100, "b%s", category);
173   if (IS_TRACING_PLATFORM) pajeDefineVariableType (state, "LINK", state);
174   snprintf (state, 100, "p%s", category);
175   if (IS_TRACING_PLATFORM) pajeDefineVariableType (state, "HOST", state);
176
177   val_one = xbt_strdup ("1");
178   xbt_dict_set (created_categories, category, &val_one, xbt_free);
179   return 0;
180 }
181
182 void TRACE_declare_mark (const char *mark_type)
183 {
184   if (!IS_TRACING) return;
185   if (!mark_type) return;
186
187   pajeDefineEventType (mark_type, "0", mark_type);
188 }
189
190 void TRACE_mark (const char *mark_type, const char *mark_value)
191 {
192   if (!IS_TRACING) return;
193   if (!mark_type || !mark_value) return;
194
195   pajeNewEvent (MSG_get_clock(), mark_type, "0", mark_value);
196 }
197
198 #endif /* HAVE_TRACING */