header missing
[lttv.git] / ltt / branches / poly / lttv / modules / text / textDump.c
1 /* This file is part of the Linux Trace Toolkit viewer
2 * Copyright (C) 2003-2004 Michel Dagenais
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License Version 2 as
6 * published by the Free Software Foundation;
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
16 * MA 02111-1307, USA.
17 */
18
19 /* The text dump facility needs to print headers before the trace set and
20 before each trace, to print each event, and to print statistics
21 after each trace. */
22
23 #include <lttv/lttv.h>
24 #include <lttv/option.h>
25 #include <lttv/module.h>
26 #include <lttv/hook.h>
27 #include <lttv/attribute.h>
28 #include <lttv/iattribute.h>
29 #include <lttv/stats.h>
30 #include <lttv/filter.h>
31 #include <ltt/ltt.h>
32 #include <ltt/event.h>
33 #include <ltt/type.h>
34 #include <ltt/trace.h>
35 #include <ltt/facility.h>
36 #include <stdio.h>
37
38 static gboolean
39 a_field_names,
40 a_state,
41 a_cpu_stats,
42 a_process_stats;
43
44 static char
45 *a_file_name = NULL;
46
47 static LttvHooks
48 *before_traceset,
49 *after_traceset,
50 *before_trace,
51 *event_hook;
52
53 void print_field(LttEvent *e, LttField *f, GString *s, gboolean field_names) {
54
55 LttType *type;
56
57 LttField *element;
58
59 char *name;
60
61 int nb, i;
62
63 type = ltt_field_type(f);
64 switch(ltt_type_class(type)) {
65 case LTT_INT:
66 g_string_append_printf(s, " %lld", ltt_event_get_long_int(e,f));
67 break;
68
69 case LTT_UINT:
70 g_string_append_printf(s, " %llu", ltt_event_get_long_unsigned(e,f));
71 break;
72
73 case LTT_FLOAT:
74 g_string_append_printf(s, " %g", ltt_event_get_double(e,f));
75 break;
76
77 case LTT_STRING:
78 g_string_append_printf(s, " \"%s\"", ltt_event_get_string(e,f));
79 break;
80
81 case LTT_ENUM:
82 g_string_append_printf(s, " %s", ltt_enum_string_get(type,
83 ltt_event_get_unsigned(e,f)-1));
84 break;
85
86 case LTT_ARRAY:
87 case LTT_SEQUENCE:
88 g_string_append_printf(s, " {");
89 nb = ltt_event_field_element_number(e,f);
90 element = ltt_field_element(f);
91 for(i = 0 ; i < nb ; i++) {
92 ltt_event_field_element_select(e,f,i);
93 print_field(e, element, s, field_names);
94 }
95 g_string_append_printf(s, " }");
96 break;
97
98 case LTT_STRUCT:
99 g_string_append_printf(s, " {");
100 nb = ltt_type_member_number(type);
101 for(i = 0 ; i < nb ; i++) {
102 element = ltt_field_member(f,i);
103 if(field_names) {
104 ltt_type_member_type(type, i, &name);
105 g_string_append_printf(s, " %s = ", name);
106 }
107 print_field(e, element, s, field_names);
108 }
109 g_string_append_printf(s, " }");
110 break;
111
112 case LTT_UNION:
113 g_string_append_printf(s, " {");
114 nb = ltt_type_member_number(type);
115 for(i = 0 ; i < nb ; i++) {
116 element = ltt_field_member(f,i);
117 if(field_names) {
118 ltt_type_member_type(type, i, &name);
119 g_string_append_printf(s, " %s = ", name);
120 }
121 print_field(e, element, s, field_names);
122 }
123 g_string_append_printf(s, " }");
124 break;
125
126 }
127 }
128
129
130 void lttv_event_to_string(LttEvent *e, GString *s,
131 gboolean mandatory_fields, gboolean field_names, LttvTracefileState *tfs)
132 {
133 LttFacility *facility;
134
135 LttEventType *event_type;
136
137 LttType *type;
138
139 LttField *field;
140
141 LttTime time;
142
143 g_string_set_size(s,0);
144
145 facility = ltt_event_facility(e);
146 event_type = ltt_event_eventtype(e);
147 field = ltt_event_field(e);
148
149 if(mandatory_fields) {
150 time = ltt_event_time(e);
151 g_string_append_printf(s,"%s.%s: %ld.%09ld (%s)",
152 ltt_facility_name(facility),
153 ltt_eventtype_name(event_type), (long)time.tv_sec, time.tv_nsec,
154 g_quark_to_string(tfs->cpu_name));
155 /* Print the process id and the state/interrupt type of the process */
156 g_string_append_printf(s,", %u, %u, %s", tfs->process->pid,
157 tfs->process->ppid,
158 g_quark_to_string(tfs->process->state->t));
159 }
160
161 if(field)
162 print_field(e, field, s, field_names);
163 }
164
165
166 static void
167 print_tree(FILE *fp, GString *indent, LttvAttribute *tree)
168 {
169 int i, nb, saved_length;
170
171 LttvAttribute *subtree;
172
173 LttvAttributeName name;
174
175 LttvAttributeValue value;
176
177 LttvAttributeType type;
178
179 nb = lttv_attribute_get_number(tree);
180 for(i = 0 ; i < nb ; i++) {
181 type = lttv_attribute_get(tree, i, &name, &value);
182 fprintf(fp, "%s%s: ", indent->str, g_quark_to_string(name));
183
184 switch(type) {
185 case LTTV_INT:
186 fprintf(fp, "%d\n", *value.v_int);
187 break;
188 case LTTV_UINT:
189 fprintf(fp, "%u\n", *value.v_uint);
190 break;
191 case LTTV_LONG:
192 fprintf(fp, "%ld\n", *value.v_long);
193 break;
194 case LTTV_ULONG:
195 fprintf(fp, "%lu\n", *value.v_ulong);
196 break;
197 case LTTV_FLOAT:
198 fprintf(fp, "%f\n", (double)*value.v_float);
199 break;
200 case LTTV_DOUBLE:
201 fprintf(fp, "%f\n", *value.v_double);
202 break;
203 case LTTV_TIME:
204 fprintf(fp, "%10lu.%09lu\n", value.v_time->tv_sec,
205 value.v_time->tv_nsec);
206 break;
207 case LTTV_POINTER:
208 fprintf(fp, "POINTER\n");
209 break;
210 case LTTV_STRING:
211 fprintf(fp, "%s\n", *value.v_string);
212 break;
213 case LTTV_GOBJECT:
214 if(LTTV_IS_ATTRIBUTE(*(value.v_gobject))) {
215 fprintf(fp, "\n");
216 subtree = (LttvAttribute *)*(value.v_gobject);
217 saved_length = indent->len;
218 g_string_append(indent, " ");
219 print_tree(fp, indent, subtree);
220 g_string_truncate(indent, saved_length);
221 }
222 else fprintf(fp, "GOBJECT\n");
223 break;
224 case LTTV_NONE:
225 break;
226 }
227 }
228 }
229
230
231 static void
232 print_stats(FILE *fp, LttvTracesetStats *tscs)
233 {
234 int i, nb, saved_length;
235
236 LttvTraceset *ts;
237
238 LttvTraceStats *tcs;
239
240 GString *indent;
241
242 LttSystemDescription *desc;
243
244 if(tscs->stats == NULL) return;
245 indent = g_string_new("");
246 fprintf(fp, "Traceset statistics:\n\n");
247 print_tree(fp, indent, tscs->stats);
248
249 ts = tscs->parent.parent.ts;
250 nb = lttv_traceset_number(ts);
251
252 for(i = 0 ; i < nb ; i++) {
253 tcs = (LttvTraceStats *)(LTTV_TRACESET_CONTEXT(tscs)->traces[i]);
254 desc = ltt_trace_system_description(tcs->parent.parent.t);
255 LttTime start_time = ltt_trace_system_description_trace_start_time(desc);
256 fprintf(fp, "Trace on system %s at time %lu.%09lu :\n",
257 ltt_trace_system_description_node_name(desc),
258 start_time.tv_sec,
259 start_time.tv_nsec);
260 saved_length = indent->len;
261 g_string_append(indent, " ");
262 print_tree(fp, indent, tcs->stats);
263 g_string_truncate(indent, saved_length);
264 }
265 g_string_free(indent, TRUE);
266 }
267
268
269 /* Insert the hooks before and after each trace and tracefile, and for each
270 event. Print a global header. */
271
272 static FILE *a_file;
273
274 static GString *a_string;
275
276 static gboolean write_traceset_header(void *hook_data, void *call_data)
277 {
278 LttvTracesetContext *tc = (LttvTracesetContext *)call_data;
279
280 g_info("TextDump traceset header");
281
282 if(a_file_name == NULL) a_file = stdout;
283 else a_file = fopen(a_file_name, "w");
284
285 if(a_file == NULL) g_error("cannot open file %s", a_file_name);
286
287 /* Print the trace set header */
288 fprintf(a_file,"Trace set contains %d traces\n\n",
289 lttv_traceset_number(tc->ts));
290
291 return FALSE;
292 }
293
294
295 static gboolean write_traceset_footer(void *hook_data, void *call_data)
296 {
297 LttvTracesetContext *tc = (LttvTracesetContext *)call_data;
298
299 g_info("TextDump traceset footer");
300
301 fprintf(a_file,"End trace set\n\n");
302
303 if(LTTV_IS_TRACESET_STATS(tc)) {
304 lttv_stats_sum_traceset((LttvTracesetStats *)tc);
305 print_stats(a_file, (LttvTracesetStats *)tc);
306 }
307
308 if(a_file_name != NULL) fclose(a_file);
309
310 return FALSE;
311 }
312
313
314 static gboolean write_trace_header(void *hook_data, void *call_data)
315 {
316 LttvTraceContext *tc = (LttvTraceContext *)call_data;
317
318 LttSystemDescription *system = ltt_trace_system_description(tc->t);
319
320 fprintf(a_file," Trace from %s in %s\n%s\n\n",
321 ltt_trace_system_description_node_name(system),
322 ltt_trace_system_description_domain_name(system),
323 ltt_trace_system_description_description(system));
324 return FALSE;
325 }
326
327
328 static int write_event_content(void *hook_data, void *call_data)
329 {
330 LttvIAttribute *attributes = LTTV_IATTRIBUTE(lttv_global_attributes());
331
332 LttvTracefileContext *tfc = (LttvTracefileContext *)call_data;
333
334 LttvTracefileState *tfs = (LttvTracefileState *)call_data;
335
336 LttEvent *e;
337
338 LttvAttributeValue value_filter;
339
340 LttvFilter *filter;
341
342 e = tfc->e;
343
344
345 g_assert(lttv_iattribute_find_by_path(attributes, "filter/lttv_filter",
346 LTTV_POINTER, &value_filter));
347 filter = (LttvFilter*)*(value_filter.v_pointer);
348
349 /*
350 * call to the filter if available
351 */
352 if(!lttv_filter_tree_parse(filter->head,e,tfc->tf,tfc->t_context->t,tfs->process,tfc)) {
353 return FALSE;
354 }
355
356 lttv_event_to_string(e, a_string, TRUE, a_field_names, tfs);
357 g_string_append_printf(a_string,"\n");
358
359 if(a_state) {
360 g_string_append_printf(a_string, " %s ",
361 g_quark_to_string(tfs->process->state->s));
362 }
363
364 fputs(a_string->str, a_file);
365 return FALSE;
366 }
367
368
369 static void init()
370 {
371 LttvAttributeValue value;
372
373 LttvIAttribute *attributes = LTTV_IATTRIBUTE(lttv_global_attributes());
374
375 g_info("Init textDump.c");
376
377 a_string = g_string_new("");
378
379 a_file_name = NULL;
380 lttv_option_add("output", 'o',
381 "output file where the text is written",
382 "file name",
383 LTTV_OPT_STRING, &a_file_name, NULL, NULL);
384
385 a_field_names = FALSE;
386 lttv_option_add("field_names", 'l',
387 "write the field names for each event",
388 "",
389 LTTV_OPT_NONE, &a_field_names, NULL, NULL);
390
391 a_state = FALSE;
392 lttv_option_add("process_state", 's',
393 "write the pid and state for each event",
394 "",
395 LTTV_OPT_NONE, &a_state, NULL, NULL);
396
397 a_cpu_stats = FALSE;
398 lttv_option_add("cpu_stats", 'c',
399 "write the per cpu statistics",
400 "",
401 LTTV_OPT_NONE, &a_cpu_stats, NULL, NULL);
402
403 a_process_stats = FALSE;
404 lttv_option_add("process_stats", 'p',
405 "write the per process statistics",
406 "",
407 LTTV_OPT_NONE, &a_process_stats, NULL, NULL);
408
409 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/event",
410 LTTV_POINTER, &value));
411 g_assert((event_hook = *(value.v_pointer)) != NULL);
412 lttv_hooks_add(event_hook, write_event_content, NULL, LTTV_PRIO_DEFAULT);
413
414 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/trace/before",
415 LTTV_POINTER, &value));
416 g_assert((before_trace = *(value.v_pointer)) != NULL);
417 lttv_hooks_add(before_trace, write_trace_header, NULL, LTTV_PRIO_DEFAULT);
418
419 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/traceset/before",
420 LTTV_POINTER, &value));
421 g_assert((before_traceset = *(value.v_pointer)) != NULL);
422 lttv_hooks_add(before_traceset, write_traceset_header, NULL,
423 LTTV_PRIO_DEFAULT);
424
425 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/traceset/after",
426 LTTV_POINTER, &value));
427 g_assert((after_traceset = *(value.v_pointer)) != NULL);
428 lttv_hooks_add(after_traceset, write_traceset_footer, NULL,
429 LTTV_PRIO_DEFAULT);
430 }
431
432
433 static void destroy()
434 {
435 g_info("Destroy textDump");
436
437 lttv_option_remove("output");
438
439 lttv_option_remove("field_names");
440
441 lttv_option_remove("process_state");
442
443 lttv_option_remove("cpu_stats");
444
445 lttv_option_remove("process_stats");
446
447 g_string_free(a_string, TRUE);
448
449 lttv_hooks_remove_data(event_hook, write_event_content, NULL);
450
451 lttv_hooks_remove_data(before_trace, write_trace_header, NULL);
452
453 lttv_hooks_remove_data(before_trace, write_traceset_header, NULL);
454
455 lttv_hooks_remove_data(before_trace, write_traceset_footer, NULL);
456 }
457
458
459 LTTV_MODULE("textDump", "Print events in a file", \
460 "Produce a detailed text printout of a trace", \
461 init, destroy, "stats", "batchAnalysis", "option")
462
This page took 0.041539 seconds and 5 git commands to generate.