Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[trace] new callback to end of platform parsing
[simgrid.git] / src / instr / instr_paje.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 "instr/instr_private.h"
8
9 #ifdef HAVE_TRACING
10
11 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(instr_paje, instr, "Paje tracing event system");
12
13 static FILE *tracing_file = NULL;
14
15 static int pajeDefineContainerTypeId = 0;
16 static int pajeDefineStateTypeId = 1;
17 static int pajeDefineEntityValueId = 2;
18 static int pajeDefineEventTypeId = 3;
19 static int pajeDefineLinkTypeId = 4;
20 static int pajeCreateContainerId = 5;
21 static int pajeSetStateId = 6;
22 #define UNUSED007 7
23 static int pajePopStateId = 8;
24 static int pajeDestroyContainerId = 9;
25 #define UNUSED006 10
26 #define UNUSED003 11
27 static int pajeStartLinkId = 12;
28 static int pajeEndLinkId = 13;
29 #define UNUSED000 14
30 #define UNUSED004 15
31 #define UNUSED008 16
32 #define UNUSED009 17
33 #define UNUSED005 18
34 static int pajePushStateId = 19;
35 #define UNUSED001 20
36 static int pajeDefineVariableTypeWithColorId = 21;
37 static int pajeSetVariableId = 22;
38 static int pajeAddVariableId = 23;
39 static int pajeSubVariableId = 24;
40 static int pajeDefineVariableTypeId = 25;
41 static int pajeStartLinkWithVolumeId = 26;
42 static int pajeNewEventId = 27;
43
44 #define TRACE_LINE_SIZE 1000
45
46 void TRACE_paje_start(void)
47 {
48   char *filename = TRACE_get_filename();
49   tracing_file = fopen(filename, "w");
50   xbt_assert1 (tracing_file != NULL, "Tracefile %s could not be opened for writing.", filename);
51
52   DEBUG1("Filename %s is open for writing", filename);
53
54   /* output header */
55   TRACE_paje_create_header();
56 }
57
58 void TRACE_paje_end(void)
59 {
60   fclose(tracing_file);
61   char *filename = TRACE_get_filename();
62   DEBUG1("Filename %s is closed", filename);
63 }
64
65 void TRACE_paje_create_header(void)
66 {
67   DEBUG0 ("Define paje header");
68   fprintf(tracing_file, "\
69 %%EventDef PajeDefineContainerType %d \n\
70 %%       Alias string \n\
71 %%       ContainerType string \n\
72 %%       Name string \n\
73 %%EndEventDef \n\
74 %%EventDef PajeDefineStateType %d \n\
75 %%       Alias string \n\
76 %%       ContainerType string \n\
77 %%       Name string \n\
78 %%EndEventDef \n\
79 %%EventDef PajeDefineEntityValue %d \n\
80 %%       Alias string \n\
81 %%       EntityType string \n\
82 %%       Name string \n\
83 %%EndEventDef \n\
84 %%EventDef PajeDefineEventType %d \n\
85 %%       Alias string \n\
86 %%       EntityType string \n\
87 %%       Name string \n\
88 %%EndEventDef \n\
89 %%EventDef PajeDefineLinkType %d \n\
90 %%       Alias string \n\
91 %%       ContainerType string \n\
92 %%       SourceContainerType string \n\
93 %%       DestContainerType string \n\
94 %%       Name string \n\
95 %%EndEventDef \n\
96 %%EventDef PajeCreateContainer %d \n\
97 %%       Time date \n\
98 %%       Alias string \n\
99 %%       Type string \n\
100 %%       Container string \n\
101 %%       Name string \n\
102 %%EndEventDef \n\
103 %%EventDef PajeDestroyContainer %d \n\
104 %%       Time date \n\
105 %%       Type string \n\
106 %%       Container string \n\
107 %%EndEventDef \n\
108 %%EventDef PajeSetState %d \n\
109 %%       Time date \n\
110 %%       EntityType string \n\
111 %%       Container string \n\
112 %%       Value string \n\
113 %%EndEventDef\n\
114 %%EventDef PajePopState %d \n\
115 %%       Time date \n\
116 %%       EntityType string \n\
117 %%       Container string \n\
118 %%EndEventDef\n\
119 %%EventDef PajeStartLink %d \n\
120 %%       Time date \n\
121 %%       EntityType string \n\
122 %%       Container string \n\
123 %%       Value string \n\
124 %%       SourceContainer string \n\
125 %%       Key string \n\
126 %%EndEventDef\n\
127 %%EventDef PajeEndLink %d \n\
128 %%       Time date \n\
129 %%       EntityType string \n\
130 %%       Container string \n\
131 %%       Value string \n\
132 %%       DestContainer string \n\
133 %%       Key string \n\
134 %%EndEventDef\n\
135 %%EventDef PajePushState %d \n\
136 %%       Time date \n\
137 %%       EntityType string \n\
138 %%       Container string \n\
139 %%       Value string \n\
140 %%EndEventDef\n\
141 %%EventDef PajeSetVariable %d \n\
142 %%       Time date \n\
143 %%       EntityType string \n\
144 %%       Container string \n\
145 %%       Value string \n\
146 %%EndEventDef\n\
147 %%EventDef PajeAddVariable %d \n\
148 %%       Time date \n\
149 %%       EntityType string \n\
150 %%       Container string \n\
151 %%       Value string \n\
152 %%EndEventDef\n\
153 %%EventDef PajeSubVariable %d \n\
154 %%       Time date \n\
155 %%       EntityType string \n\
156 %%       Container string \n\
157 %%       Value string \n\
158 %%EndEventDef\n\
159 %%EventDef PajeDefineVariableType %d \n\
160 %%       Alias string \n\
161 %%       ContainerType string \n\
162 %%       Name string \n\
163 %%EndEventDef \n\
164 %%EventDef PajeDefineVariableType %d \n\
165 %%       Alias string \n\
166 %%       ContainerType string \n\
167 %%       Name string \n\
168 %%       Color color \n\
169 %%EndEventDef \n\
170 %%EventDef PajeStartLink %d \n\
171 %%       Time date \n\
172 %%       EntityType string \n\
173 %%       Container string \n\
174 %%       Value string \n\
175 %%       SourceContainer string \n\
176 %%       Key string \n\
177 %%       Volume string \n\
178 %%EndEventDef\n\
179 %%EventDef PajeNewEvent %d \n\
180 %%       Time date \n\
181 %%       EntityType string \n\
182 %%       Container string \n\
183 %%       Value string \n\
184 %%EndEventDef\n", pajeDefineContainerTypeId, pajeDefineStateTypeId, pajeDefineEntityValueId, pajeDefineEventTypeId, pajeDefineLinkTypeId, pajeCreateContainerId, pajeDestroyContainerId, pajeSetStateId, pajePopStateId, pajeStartLinkId, pajeEndLinkId, pajePushStateId, pajeSetVariableId, pajeAddVariableId, pajeSubVariableId, pajeDefineVariableTypeId, pajeDefineVariableTypeWithColorId, pajeStartLinkWithVolumeId, pajeNewEventId);
185 }
186
187 /* internal to this file */
188 static void __pajeCreateContainer(char *output, int len, int eventid,
189                                   double time, const char *alias,
190                                   const char *type, const char *container,
191                                   const char *name)
192 {
193   snprintf(output, len, "%d %lf %s %s %s %s", eventid, time,
194            alias, type, container, name);
195 }
196
197 static void __pajeSetState(char *output, int len, int eventid, double time,
198                            const char *entityType, const char *container,
199                            const char *value)
200 {
201   snprintf(output, len, "%d %lf %s %s %s", eventid, time, entityType,
202            container, value);
203 }
204
205 static void __pajeSetVariable(char *output, int len, int eventid,
206                               double time, const char *entityType,
207                               const char *container, const char *value)
208 {
209   snprintf(output, len, "%d %lf %s %s %s", eventid, time, entityType,
210            container, value);
211 }
212
213 static void __pajeStartLink(char *output, int len, int eventid,
214                             double time, const char *entityType,
215                             const char *container, const char *value,
216                             const char *sourceContainer, const char *key)
217 {
218   snprintf(output, len, "%d %lf %s %s %s %s %s", eventid, time, entityType,
219            container, value, sourceContainer, key);
220 }
221
222 /* internal do the instrumentation module */
223 void pajeDefineContainerType(const char *alias, const char *containerType,
224                              const char *name)
225 {
226   fprintf(tracing_file, "%d %s %s %s\n", pajeDefineContainerTypeId, alias,
227           containerType, name);
228 }
229
230 void pajeDefineStateType(const char *alias, const char *containerType,
231                          const char *name)
232 {
233   fprintf(tracing_file, "%d %s %s %s\n", pajeDefineStateTypeId, alias,
234           containerType, name);
235 }
236
237 void pajeDefineEventType(const char *alias, const char *containerType,
238                          const char *name)
239 {
240   fprintf(tracing_file, "%d %s %s %s\n", pajeDefineEventTypeId, alias,
241           containerType, name);
242 }
243
244 void pajeDefineLinkType(const char *alias, const char *containerType,
245                         const char *sourceContainerType,
246                         const char *destContainerType, const char *name)
247 {
248   fprintf(tracing_file, "%d %s %s %s %s %s\n", pajeDefineLinkTypeId, alias,
249           containerType, sourceContainerType, destContainerType, name);
250 }
251
252 void pajeCreateContainer(double time, const char *alias, const char *type,
253                          const char *container, const char *name)
254 {
255   char line[TRACE_LINE_SIZE];
256   __pajeCreateContainer(line, TRACE_LINE_SIZE, pajeCreateContainerId, time,
257                         alias, type, container, name);
258   fprintf(tracing_file, "%s\n", line);
259 }
260
261 void pajeDestroyContainer(double time, const char *type,
262                           const char *container)
263 {
264   fprintf(tracing_file, "%d %lf %s %s\n", pajeDestroyContainerId, time,
265           type, container);
266 }
267
268 void pajeSetState(double time, const char *entityType,
269                   const char *container, const char *value)
270 {
271   char line[TRACE_LINE_SIZE];
272   __pajeSetState(line, TRACE_LINE_SIZE, pajeSetStateId, time, entityType,
273                  container, value);
274   fprintf(tracing_file, "%s\n", line);
275 }
276
277 void pajePushState(double time, const char *entityType,
278                    const char *container, const char *value)
279 {
280   char line[TRACE_LINE_SIZE];
281   __pajeSetState(line, TRACE_LINE_SIZE, pajePushStateId, time, entityType,
282                  container, value);
283   fprintf(tracing_file, "%s\n", line);
284 }
285
286 void pajePopState(double time, const char *entityType,
287                   const char *container)
288 {
289   fprintf(tracing_file, "%d %lf %s %s\n", pajePopStateId, time, entityType,
290           container);
291 }
292
293 void pajeStartLink(double time, const char *entityType,
294                    const char *container, const char *value,
295                    const char *sourceContainer, const char *key)
296 {
297   char line[TRACE_LINE_SIZE];
298   __pajeStartLink(line, TRACE_LINE_SIZE, pajeStartLinkId, time, entityType,
299                   container, value, sourceContainer, key);
300   fprintf(tracing_file, "%s\n", line);
301 }
302
303 void pajeStartLinkWithVolume(double time, const char *entityType,
304                              const char *container, const char *value,
305                              const char *sourceContainer, const char *key,
306                              double volume)
307 {
308   char line[TRACE_LINE_SIZE];
309   __pajeStartLink(line, TRACE_LINE_SIZE, pajeStartLinkWithVolumeId, time,
310                   entityType, container, value, sourceContainer, key);
311   fprintf(tracing_file, "%s %f\n", line, volume);
312 }
313
314 void pajeEndLink(double time, const char *entityType,
315                  const char *container, const char *value,
316                  const char *destContainer, const char *key)
317 {
318   fprintf(tracing_file, "%d %lf %s %s %s %s %s\n", pajeEndLinkId, time,
319           entityType, container, value, destContainer, key);
320 }
321
322 void pajeDefineVariableType(const char *alias, const char *containerType,
323                             const char *name)
324 {
325   fprintf(tracing_file, "%d %s %s %s\n", pajeDefineVariableTypeId, alias,
326           containerType, name);
327 }
328
329 void pajeDefineVariableTypeWithColor(const char *alias, const char *containerType,
330                             const char *name, const char *color)
331 {
332   fprintf(tracing_file, "%d %s %s %s \"%s\"\n", pajeDefineVariableTypeWithColorId, alias,
333           containerType, name, color);
334 }
335
336 void pajeSetVariable(double time, const char *entityType,
337                      const char *container, const char *value)
338 {
339   char line[TRACE_LINE_SIZE];
340   __pajeSetVariable(line, TRACE_LINE_SIZE, pajeSetVariableId, time,
341                     entityType, container, value);
342   fprintf(tracing_file, "%s\n", line);
343 }
344
345 void pajeAddVariable(double time, const char *entityType,
346                      const char *container, const char *value)
347 {
348   char line[TRACE_LINE_SIZE];
349   __pajeSetVariable(line, TRACE_LINE_SIZE, pajeAddVariableId, time,
350                     entityType, container, value);
351   fprintf(tracing_file, "%s\n", line);
352 }
353
354 void pajeSubVariable(double time, const char *entityType,
355                      const char *container, const char *value)
356 {
357   char line[TRACE_LINE_SIZE];
358   __pajeSetVariable(line, TRACE_LINE_SIZE, pajeSubVariableId, time,
359                     entityType, container, value);
360   fprintf(tracing_file, "%s\n", line);
361 }
362
363 void pajeNewEvent(double time, const char *entityType,
364                   const char *container, const char *value)
365 {
366   fprintf(tracing_file, "%d %lf %s %s %s\n", pajeNewEventId, time,
367           entityType, container, value);
368 }
369
370 #endif /* HAVE_TRACING */