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