small state.c fixes
[lttv.git] / ltt / branches / poly / lttv / lttv / batchtest.c
CommitLineData
08b1c66e 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/* This module inserts a hook in the program main loop. This hook processes
20 all the events in the main tracefile while testing the speed and
21 functionality of the state and stats computations. */
08b1c66e 22
4e4d11b3 23#ifdef HAVE_CONFIG_H
24#include <config.h>
25#endif
26
27#include <string.h>
08b1c66e 28#include <lttv/lttv.h>
29#include <lttv/attribute.h>
30#include <lttv/hook.h>
31#include <lttv/option.h>
32#include <lttv/module.h>
d8f124de 33#include <lttv/tracecontext.h>
08b1c66e 34#include <lttv/state.h>
35#include <lttv/stats.h>
36#include <ltt/trace.h>
37#include <ltt/event.h>
338d4282 38#include <ltt/type.h>
00e74b69 39#include <ltt/facility.h>
40
41#define __UNUSED__ __attribute__((__unused__))
08b1c66e 42
43static LttvTraceset *traceset;
44
45static LttvHooks
46 *before_traceset,
47 *after_traceset,
48 *before_trace,
49 *after_trace,
50 *before_tracefile,
51 *after_tracefile,
b8eccacd 52 //*before_event,
53 //*after_event,
54 *event_hook,
08b1c66e 55 *main_hooks;
56
57static char *a_trace;
58
59static char *a_dump_tracefiles;
60
61static char *a_save_sample;
62
63static int
64 a_sample_interval,
65 a_sample_number,
911b7a3c 66 a_seek_number,
08b1c66e 67 a_save_interval;
68
69static gboolean
f95bc830 70 a_trace_event,
71 a_save_state_copy,
08b1c66e 72 a_test1,
73 a_test2,
74 a_test3,
75 a_test4,
76 a_test5,
77 a_test6,
78 a_test7,
79 a_test_all;
80
eed2ef37 81static GQuark QUARK_BLOCK_START,
82 QUARK_BLOCK_END;
83
f95bc830 84LttEventPosition *a_event_position;
85
08b1c66e 86typedef struct _save_state {
87 guint count;
88 FILE *fp;
89 guint interval;
90 guint position;
91 guint size;
92 LttTime *write_time;
93 guint version;
94} SaveState;
95
96
00e74b69 97static void lttv_trace_option(void __UNUSED__ *hook_data)
08b1c66e 98{
99 LttTrace *trace;
100
101 trace = ltt_trace_open(a_trace);
102 if(trace == NULL) g_critical("cannot open trace %s", a_trace);
103 lttv_traceset_add(traceset, lttv_trace_new(trace));
104}
105
106static double get_time()
107{
108 GTimeVal gt;
109
110 g_get_current_time(&gt);
111 return gt.tv_sec + (double)gt.tv_usec / (double)1000000.0;
112}
113
114static double run_one_test(LttvTracesetState *ts, LttTime start, LttTime end)
115{
116 double t0, t1;
117
00e74b69 118 unsigned int i;
f95bc830 119
b8eccacd 120 //lttv_traceset_context_add_hooks(&ts->parent,
121 //before_traceset, after_traceset, NULL, before_trace, after_trace,
122 //NULL, before_tracefile, after_tracefile, NULL, before_event, after_event);
123 lttv_process_traceset_begin(&ts->parent,
124 before_traceset,
125 before_trace,
126 before_tracefile,
127 event_hook,
128 NULL);
08b1c66e 129
f95bc830 130 for(i = 0 ; i < lttv_traceset_number(traceset) ; i++) {
131 ((LttvTraceState *)(ts->parent.traces[i]))->save_interval =a_save_interval;
132 }
133
08b1c66e 134 t0 = get_time();
135 lttv_state_traceset_seek_time_closest(ts, start);
b8eccacd 136 //lttv_process_traceset(&ts->parent, end, G_MAXULONG);
137 lttv_process_traceset_middle(&ts->parent,
138 end,
139 G_MAXULONG,
140 NULL);
08b1c66e 141 t1 = get_time();
142
b8eccacd 143 //lttv_traceset_context_remove_hooks(&ts->parent,
144 //before_traceset, after_traceset, NULL, before_trace, after_trace,
145 //NULL, before_tracefile, after_tracefile, NULL, before_event, after_event);
146 lttv_process_traceset_end(&ts->parent,
147 after_traceset,
148 after_trace,
149 after_tracefile,
150 event_hook,
151 NULL);
08b1c66e 152
153 return t1 - t0;
154}
155
156
00e74b69 157gboolean trace_event(void __UNUSED__ *hook_data, void *call_data)
f95bc830 158{
159 LttvTracefileState *tfs = (LttvTracefileState *)call_data;
160
eed2ef37 161 guint nb_block, offset;
f95bc830 162
eed2ef37 163 guint64 tsc;
f95bc830 164
eed2ef37 165 LttTracefile *tf;
166 LttEvent *e = ltt_tracefile_get_event(tfs->parent.tf);
167 ltt_event_position(e, a_event_position);
168 ltt_event_position_get(a_event_position, &tf, &nb_block, &offset, &tsc);
169 fprintf(stderr,"Event %s %lu.%09lu [%u %u tsc %llu]\n",
170 g_quark_to_string(ltt_eventtype_name(ltt_event_eventtype(e))),
f95bc830 171 tfs->parent.timestamp.tv_sec, tfs->parent.timestamp.tv_nsec,
eed2ef37 172 nb_block, offset, tsc);
f95bc830 173 return FALSE;
174}
175
176
00e74b69 177gboolean count_event(void *hook_data, void __UNUSED__ *call_data)
08b1c66e 178{
179 guint *pcount = (guint *)hook_data;
180
181 (*pcount)++;
182 return FALSE;
183}
184
185
f95bc830 186gboolean save_state_copy_event(void *hook_data, void *call_data)
187{
00e74b69 188 SaveState __UNUSED__ *save_state = (SaveState *)hook_data;
f95bc830 189
190 LttvTracefileState *tfs = (LttvTracefileState *)call_data;
191
192 LttvTraceState *ts = (LttvTraceState *)tfs->parent.t_context;
193
eed2ef37 194 LttEvent *e = ltt_tracefile_get_event(tfs->parent.tf);
195
f95bc830 196 GString *filename;
197
198 FILE *fp;
199
eed2ef37 200 if(ts->nb_event == 0 &&
201 ltt_eventtype_name(ltt_event_eventtype(e))
202 == QUARK_BLOCK_START) {
f95bc830 203 if(a_save_sample != NULL) {
204 filename = g_string_new("");
205 g_string_printf(filename, "%s.copy.%lu.%09lu.xml", a_save_sample,
206 tfs->parent.timestamp.tv_sec, tfs->parent.timestamp.tv_nsec);
207 fp = fopen(filename->str, "w");
208 if(fp == NULL) g_error("Cannot open %s", filename->str);
209 g_string_free(filename, TRUE);
210 lttv_state_write(ts, tfs->parent.timestamp, fp);
211 fclose(fp);
212 } //else lttv_state_write(ts, tfs->parent.timestamp, save_state->fp);
213 }
214 return FALSE;
215}
216
217
08b1c66e 218gboolean save_state_event(void *hook_data, void *call_data)
219{
220 SaveState *save_state = (SaveState *)hook_data;
221
222 LttvTracefileState *tfs = (LttvTracefileState *)call_data;
223
224 LttvTraceState *ts = (LttvTraceState *)tfs->parent.t_context;
225
226 GString *filename;
227
228 FILE *fp;
229
230 (save_state->count)++;
231 if(save_state->count % save_state->interval == 0 &&
232 save_state->position < save_state->size) {
233 if(a_save_sample != NULL) {
234 filename = g_string_new("");
235 g_string_printf(filename, "%s.%u.xml.%u", a_save_sample,
236 save_state->position, save_state->version);
237 fp = fopen(filename->str, "w");
238 if(fp == NULL) g_error("Cannot open %s", filename->str);
239 g_string_free(filename, TRUE);
240 lttv_state_write(ts, tfs->parent.timestamp, fp);
241 fclose(fp);
f95bc830 242 } //else lttv_state_write(ts, tfs->parent.timestamp, save_state->fp);
08b1c66e 243
244 save_state->write_time[save_state->position] = tfs->parent.timestamp;
245 save_state->position++;
246 }
247 return FALSE;
248}
249
250
d3d34f49 251static void sanitize_name(gchar *name)
252{
253 while(*name != '\0') {
254 if(*name == '/') *name = '_';
255 name++;
256 }
257
258}
259
eed2ef37 260
27304273 261static void compute_tracefile(LttTracefile *tracefile, void *hook_data)
eed2ef37 262{
263 GString *filename;
d3d34f49 264 guint nb_equal, nb_block, offset;
eed2ef37 265 guint64 tsc;
266 FILE *fp;
267 LttTime time, previous_time;
27304273 268 LttEvent *event = ltt_tracefile_get_event(tracefile);
eed2ef37 269 LttFacility *facility;
270 LttEventType *event_type;
271 int err;
d3d34f49 272 gchar mod_name[PATH_MAX];
eed2ef37 273
274 /* start_count is always initialized in this function _if_ there is always
275 * a block_start before a block_end.
276 */
277 long long unsigned cycle_count, start_count=0, delta_cycle;
278
279
280 filename = g_string_new("");
d3d34f49 281 strcpy(mod_name, g_quark_to_string(ltt_tracefile_name(tracefile)));
282
283 sanitize_name(mod_name);
284
d052ffc3 285 g_warning("test %s test", g_quark_to_string(ltt_tracefile_name(tracefile)));
d3d34f49 286 g_string_printf(filename, "%s.%s.%u.trace", a_dump_tracefiles,
287 mod_name, ltt_tracefile_num(tracefile));
eed2ef37 288 fp = fopen(filename->str, "w");
289 if(fp == NULL) g_error("Cannot open %s", filename->str);
290 g_string_free(filename, TRUE);
291 err = ltt_tracefile_seek_time(tracefile, ltt_time_zero);
292 if(err) goto close;
293
294 previous_time = ltt_time_zero;
295 nb_equal = 0;
296
297 do {
298 LttTracefile *tf_pos;
299 facility = ltt_event_facility(event);
300 event_type = ltt_event_eventtype(event);
301 time = ltt_event_time(event);
302 ltt_event_position(event, a_event_position);
303 ltt_event_position_get(a_event_position, &tf_pos, &nb_block, &offset, &tsc);
27304273 304 //fprintf(fp,"%s.%s: %llu %lu.%09lu position %u/%u\n",
305 fprintf(fp, "%s.%s: %llu %lu.%09lu position %u/%u, tracefile %s\n",
306 g_quark_to_string(ltt_facility_name(facility)),
307 g_quark_to_string(ltt_eventtype_name(event_type)),
eed2ef37 308 tsc, (unsigned long)time.tv_sec,
309 (unsigned long)time.tv_nsec,
27304273 310 nb_block, offset,
311 g_quark_to_string(ltt_tracefile_name(tracefile)));
eed2ef37 312
313 if(ltt_time_compare(time, previous_time) < 0) {
d052ffc3 314 g_warning("Time decreasing trace %s tracefile %s cpu %u position %u/%u",
d3d34f49 315 g_quark_to_string(ltt_trace_name(ltt_tracefile_get_trace(tracefile))),
d052ffc3 316 g_quark_to_string(ltt_tracefile_name(tracefile)),
317 ltt_tracefile_num(tracefile), nb_block, offset);
318 g_warning("last time %lu.%lu vs current %lu.%lu",
319 previous_time.tv_sec, previous_time.tv_nsec,
320 time.tv_sec, time.tv_nsec);
eed2ef37 321 }
322
323#if 0 //FIXME
324 if(ltt_eventtype_name(event_type) == QUARK_BLOCK_START) {
325 start_count = cycle_count;
326 start_time = time;
327 }
328 else if(ltt_eventtype_name(event_type) == QUARK_BLOCK_END) {
329 delta_cycle = cycle_count - start_count;
330 end_nsec_sec = (long long unsigned)time.tv_sec * (long long unsigned)1000000000;
331 end_nsec_nsec = time.tv_nsec;
332 end_nsec = end_nsec_sec + end_nsec_nsec;
333 start_nsec = (long long unsigned)start_time.tv_sec * (long long unsigned)1000000000 + (long long unsigned)start_time.tv_nsec;
334 delta_nsec = end_nsec - start_nsec;
335 cycle_per_nsec = (double)delta_cycle / (double)delta_nsec;
336 nsec_per_cycle = (double)delta_nsec / (double)delta_cycle;
337 added_nsec = (double)delta_cycle * nsec_per_cycle;
338 interpolated_nsec = start_nsec + added_nsec;
339 added_nsec2 = (double)delta_cycle / cycle_per_nsec;
340 interpolated_nsec2 = start_nsec + added_nsec2;
341
342 fprintf(fp,"Time: start_count %llu, end_count %llu, delta_cycle %llu, start_nsec %llu, end_nsec_sec %llu, end_nsec_nsec %llu, end_nsec %llu, delta_nsec %llu, cycle_per_nsec %.25f, nsec_per_cycle %.25f, added_nsec %llu, added_nsec2 %llu, interpolated_nsec %llu, interpolated_nsec2 %llu\n", start_count, cycle_count, delta_cycle, start_nsec, end_nsec_sec, end_nsec_nsec, end_nsec, delta_nsec, cycle_per_nsec, nsec_per_cycle, added_nsec, added_nsec2, interpolated_nsec, interpolated_nsec2);
343 }
344 else {
345#endif //0
346 if(ltt_time_compare(time, previous_time) == 0) nb_equal++;
347 else if(nb_equal > 0) {
348 g_warning("Consecutive %d events with time %lu.%09lu",
349 nb_equal + 1, previous_time.tv_sec, previous_time.tv_nsec);
350 nb_equal = 0;
351 }
352 previous_time = time;
353 //}
354 } while((!ltt_tracefile_read(tracefile)));
355
356close:
357 fclose(fp);
eed2ef37 358}
359
00e74b69 360static gboolean process_traceset(void __UNUSED__ *hook_data,
361 void __UNUSED__ *call_data)
08b1c66e 362{
eed2ef37 363 GString *filename;
08b1c66e 364 LttvTracesetStats *tscs;
365
366 LttvTracesetState *ts;
367
368 LttvTracesetContext *tc;
369
08b1c66e 370 FILE *fp;
371
372 double t;
373
eed2ef37 374 //guint count, nb_control, nb_tracefile, nb_block, nb_event;
375 //guint i, j, count, nb_control, nb_tracefile, nb_block, nb_event, nb_equal;
376 guint i, j, count;
08b1c66e 377
378 LttTrace *trace;
379
338d4282 380 long long unsigned start_nsec, end_nsec, delta_nsec, added_nsec, added_nsec2;
381
382 double cycle_per_nsec, nsec_per_cycle;
383
384 long long interpolated_nsec, interpolated_nsec2, end_nsec_sec, end_nsec_nsec;
385
386 LttTime start_time;
387
08b1c66e 388 LttTime max_time = { G_MAXULONG, G_MAXULONG };
389
f95bc830 390 a_event_position = ltt_event_position_new();
391
3865ea09 392 GData **tracefiles_groups;
eed2ef37 393
27304273 394 struct compute_tracefile_group_args args;
395
396 args.func = compute_tracefile;
397 args.func_args = NULL;
398
08b1c66e 399 if(a_dump_tracefiles != NULL) {
08b1c66e 400 for(i = 0 ; i < lttv_traceset_number(traceset) ; i++) {
401 trace = lttv_trace(lttv_traceset_get(traceset, i));
eed2ef37 402 tracefiles_groups = ltt_trace_get_tracefiles_groups(trace);
08b1c66e 403
3865ea09 404 g_datalist_foreach(tracefiles_groups,
eed2ef37 405 (GDataForeachFunc)compute_tracefile_group,
27304273 406 &args);
eed2ef37 407
08b1c66e 408 }
08b1c66e 409 }
410
411 tscs = g_object_new(LTTV_TRACESET_STATS_TYPE, NULL);
412 ts = &tscs->parent;
413 tc = &tscs->parent.parent;
414
415 lttv_context_init(tc, traceset);
08b1c66e 416
417 /* For each case compute and print the elapsed time.
418 The first case is simply to run through all events with a
419 simple counter. */
420
421 if(a_test1 || a_test_all) {
422 count = 0;
b8eccacd 423 lttv_hooks_add(event_hook, count_event, &count, LTTV_PRIO_DEFAULT);
eed2ef37 424 t = run_one_test(ts, ltt_time_zero, max_time);
b8eccacd 425 lttv_hooks_remove_data(event_hook, count_event, &count);
08b1c66e 426 g_warning(
427 "Processing trace while counting events (%u events in %g seconds)",
428 count, t);
429 }
430
431 /* Run through all events computing the state. */
432
433 if(a_test2 || a_test_all) {
434 lttv_state_add_event_hooks(ts);
eed2ef37 435 t = run_one_test(ts, ltt_time_zero, max_time);
08b1c66e 436 lttv_state_remove_event_hooks(ts);
437 g_warning("Processing trace while updating state (%g seconds)", t);
438 }
439
440 /* Run through all events computing the state and writing it out
441 periodically. */
442
443 SaveState save_state;
444
445 save_state.interval = a_sample_interval;
446 save_state.size = a_sample_number;
447 save_state.fp = stderr;
448 save_state.write_time = g_new(LttTime, a_sample_number);
449
450
451 if(a_test3 || a_test_all) {
452 for(i = 0 ; i < 2 ; i++) {
453 save_state.count = 0;
454 save_state.position = 0;
455 save_state.version = i;
456 lttv_state_add_event_hooks(ts);
b8eccacd 457 lttv_hooks_add(event_hook, save_state_event, &save_state,
458 LTTV_PRIO_DEFAULT);
eed2ef37 459 t = run_one_test(ts, ltt_time_zero, max_time);
08b1c66e 460 lttv_state_remove_event_hooks(ts);
b8eccacd 461 lttv_hooks_remove_data(event_hook, save_state_event, &save_state);
08b1c66e 462 g_warning("Processing while updating/writing state (%g seconds)", t);
463 }
464 }
465
466 /* Run through all events computing the stats. */
467
468 if(a_test4 || a_test_all) {
469 if(lttv_profile_memory) {
470 g_message("Memory summary before computing stats");
471 g_mem_profile();
472 }
473
474 lttv_stats_add_event_hooks(tscs);
eed2ef37 475 t = run_one_test(ts, ltt_time_zero, max_time);
08b1c66e 476 lttv_stats_remove_event_hooks(tscs);
477 g_warning("Processing trace while counting stats (%g seconds)", t);
478
479 if(lttv_profile_memory) {
480 g_message("Memory summary after computing stats");
481 g_mem_profile();
482 }
f95bc830 483
484 lttv_stats_sum_traceset(tscs);
485
486 if(lttv_profile_memory) {
487 g_message("Memory summary after summing stats");
488 g_mem_profile();
489 }
490
491 lttv_context_fini(tc);
492 lttv_context_init(tc, traceset);
493
494 if(lttv_profile_memory) {
495 g_message("Memory summary after cleaning up the stats");
496 g_mem_profile();
497 }
08b1c66e 498 }
499
500 /* Run through all events computing the state and stats. */
501
502 if(a_test5 || a_test_all) {
503 if(lttv_profile_memory) {
504 g_message("Memory summary before computing state and stats");
505 g_mem_profile();
506 }
507
508 lttv_state_add_event_hooks(ts);
509 lttv_stats_add_event_hooks(tscs);
eed2ef37 510 t = run_one_test(ts, ltt_time_zero, max_time);
08b1c66e 511 lttv_state_remove_event_hooks(ts);
512 lttv_stats_remove_event_hooks(tscs);
513 g_warning(
514 "Processing trace while counting state and stats (%g seconds)", t);
515
516 if(lttv_profile_memory) {
517 g_message("Memory summary after computing and state and stats");
518 g_mem_profile();
519 }
f95bc830 520
521 lttv_context_fini(tc);
522 lttv_context_init(tc, traceset);
523
524 if(lttv_profile_memory) {
525 g_message("Memory summary after cleaning up the stats");
526 g_mem_profile();
527 }
08b1c66e 528 }
529
530 /* Run through all events computing and saving the state. */
531
b8eccacd 532 if(a_trace_event) lttv_hooks_add(event_hook, trace_event, NULL,
533 LTTV_PRIO_DEFAULT);
f95bc830 534
08b1c66e 535 if(a_test6 || a_test_all) {
536 if(lttv_profile_memory) {
537 g_message("Memory summary before computing and saving state");
538 g_mem_profile();
539 }
540
541 lttv_state_add_event_hooks(ts);
542 lttv_state_save_add_event_hooks(ts);
f95bc830 543 if(a_save_state_copy)
b8eccacd 544 lttv_hooks_add(event_hook, save_state_copy_event, &save_state,
545 LTTV_PRIO_DEFAULT);
eed2ef37 546 t = run_one_test(ts, ltt_time_zero, max_time);
08b1c66e 547 lttv_state_remove_event_hooks(ts);
548 lttv_state_save_remove_event_hooks(ts);
f95bc830 549 if(a_save_state_copy)
b8eccacd 550 lttv_hooks_remove_data(event_hook,save_state_copy_event, &save_state);
f95bc830 551
08b1c66e 552 g_warning("Processing trace while updating/saving state (%g seconds)", t);
553
554 if(lttv_profile_memory) {
555 g_message("Memory summary after computing/saving state");
556 g_mem_profile();
557 }
558 }
559
560 /* Seek a few times to each saved position */
561
562 if((a_test7 && a_test3) || a_test_all) {
00e74b69 563 g_assert(a_seek_number >= 0);
564 for(i = 0 ; i < (guint)a_seek_number ; i++) {
565 gint reverse_j; /* just to make sure j is unsigned */
566 for(reverse_j = save_state.position - 1 ; reverse_j >= 0 ; reverse_j--) {
567 j = (guint)reverse_j;
08b1c66e 568 lttv_state_add_event_hooks(ts);
569 t = run_one_test(ts, save_state.write_time[j],
570 save_state.write_time[j]);
571 lttv_state_remove_event_hooks(ts);
572 g_warning("Seeking to %lu.%lu (%g seconds)",
573 save_state.write_time[j].tv_sec, save_state.write_time[j].tv_nsec,
574 t);
575
576 if(a_save_sample != NULL) {
577 filename = g_string_new("");
578 g_string_printf(filename, "%s.%d.xml.bak%d", a_save_sample, j, i);
579 fp = fopen(filename->str, "w");
580 if(fp == NULL) g_error("Cannot open %s", filename->str);
581 g_string_free(filename, TRUE);
582 lttv_state_write((LttvTraceState *)tc->traces[0],
583 save_state.write_time[j], fp);
584 fclose(fp);
585 }
f95bc830 586 //else lttv_state_write((LttvTraceState *)tc->traces[0],
587 // save_state.write_time[j], save_state.fp);
08b1c66e 588 }
589 }
590 }
591
b8eccacd 592 if(a_trace_event) lttv_hooks_remove_data(event_hook, trace_event, NULL);
f95bc830 593
08b1c66e 594 g_free(save_state.write_time);
f95bc830 595 g_free(a_event_position);
08b1c66e 596 lttv_context_fini(tc);
597 g_object_unref(tscs);
598
f95bc830 599 if(lttv_profile_memory) {
600 g_message("Memory summary at the end of batchtest");
601 g_mem_profile();
602 }
603
08b1c66e 604 g_info("BatchTest end process traceset");
00e74b69 605 return 0;
08b1c66e 606}
607
608
609static void init()
610{
611 LttvAttributeValue value;
612
613 LttvIAttribute *attributes = LTTV_IATTRIBUTE(lttv_global_attributes());
614
615 g_info("Init batchtest.c");
616
eed2ef37 617 /* Init GQuarks */
618 QUARK_BLOCK_START = g_quark_from_string("block_start");
619 QUARK_BLOCK_END = g_quark_from_string("block_end");
620
621
08b1c66e 622 lttv_option_add("trace", 't',
623 "add a trace to the trace set to analyse",
624 "pathname of the directory containing the trace",
625 LTTV_OPT_STRING, &a_trace, lttv_trace_option, NULL);
626
f95bc830 627 a_trace_event = FALSE;
628
08b1c66e 629 a_dump_tracefiles = NULL;
630 lttv_option_add("dump-tracefiles", 'D',
631 "Write event by event the content of tracefiles",
632 "basename for the files where to dump events",
633 LTTV_OPT_STRING, &a_dump_tracefiles, NULL, NULL);
634
635 a_save_sample = NULL;
636 lttv_option_add("save-sample", 's',
637 "Save state samples to multiple files",
638 "basename for the files containing the state samples",
639 LTTV_OPT_STRING, &a_save_sample, NULL, NULL);
640
f95bc830 641 a_save_state_copy = FALSE;
642 lttv_option_add("save-state-copy", 'S', "Write the state saved for seeking",
643 "", LTTV_OPT_NONE, &a_save_state_copy, NULL, NULL);
644
08b1c66e 645 a_save_interval = 100000;
646 lttv_option_add("save-interval", 'i',
647 "Interval between saving state",
648 "number of events before a block start triggers saving state",
649 LTTV_OPT_INT, &a_save_interval, NULL, NULL);
650
651 a_sample_interval = 100000;
652 lttv_option_add("sample-interval", 'S',
653 "Interval between sampling state",
654 "number of events before sampling and writing state",
655 LTTV_OPT_INT, &a_sample_interval, NULL, NULL);
656
657 a_sample_number = 20;
658 lttv_option_add("sample-number", 'N',
659 "Number of state samples",
660 "maximum number",
661 LTTV_OPT_INT, &a_sample_number, NULL, NULL);
662
911b7a3c 663 a_seek_number = 200;
664 lttv_option_add("seek-number", 'K',
665 "Number of seek",
666 "number",
667 LTTV_OPT_INT, &a_seek_number, NULL, NULL);
668
08b1c66e 669 a_test1 = FALSE;
670 lttv_option_add("test1", '1', "Test just counting events", "",
671 LTTV_OPT_NONE, &a_test1, NULL, NULL);
672
673 a_test2 = FALSE;
674 lttv_option_add("test2", '2', "Test computing the state", "",
675 LTTV_OPT_NONE, &a_test2, NULL, NULL);
676
677 a_test3 = FALSE;
678 lttv_option_add("test3", '3', "Test computing the state, writing out a few",
679 "", LTTV_OPT_NONE, &a_test3, NULL, NULL);
680
681 a_test4 = FALSE;
682 lttv_option_add("test4", '4', "Test computing the stats", "",
683 LTTV_OPT_NONE, &a_test4, NULL, NULL);
684
685 a_test5 = FALSE;
686 lttv_option_add("test5", '5', "Test computing the state and stats", "",
687 LTTV_OPT_NONE, &a_test5, NULL, NULL);
688
689 a_test6 = FALSE;
690 lttv_option_add("test6", '6', "Test computing and saving the state", "",
691 LTTV_OPT_NONE, &a_test6, NULL, NULL);
692
693 a_test7 = FALSE;
694 lttv_option_add("test7", '7', "Test seeking to positions written out in 3",
695 "", LTTV_OPT_NONE, &a_test7, NULL, NULL);
696
697 a_test_all = FALSE;
698 lttv_option_add("testall", 'a', "Run all tests ", "",
699 LTTV_OPT_NONE, &a_test_all, NULL, NULL);
700
701 traceset = lttv_traceset_new();
702
703 before_traceset = lttv_hooks_new();
704 after_traceset = lttv_hooks_new();
705 before_trace = lttv_hooks_new();
706 after_trace = lttv_hooks_new();
707 before_tracefile = lttv_hooks_new();
708 after_tracefile = lttv_hooks_new();
b8eccacd 709 //before_event = lttv_hooks_new();
710 //after_event = lttv_hooks_new();
711 event_hook = lttv_hooks_new();
712
08b1c66e 713
714 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/traceset/before",
715 LTTV_POINTER, &value));
716 *(value.v_pointer) = before_traceset;
717 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/traceset/after",
718 LTTV_POINTER, &value));
719 *(value.v_pointer) = after_traceset;
720 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/trace/before",
721 LTTV_POINTER, &value));
722 *(value.v_pointer) = before_trace;
723 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/trace/after",
724 LTTV_POINTER, &value));
725 *(value.v_pointer) = after_trace;
726 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/tracefile/before",
727 LTTV_POINTER, &value));
728 *(value.v_pointer) = before_tracefile;
729 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/tracefile/after",
730 LTTV_POINTER, &value));
731 *(value.v_pointer) = after_tracefile;
b8eccacd 732 //g_assert(lttv_iattribute_find_by_path(attributes, "hooks/event/before",
733 // LTTV_POINTER, &value));
734 //*(value.v_pointer) = before_event;
735 //g_assert(lttv_iattribute_find_by_path(attributes, "hooks/event/after",
736 // LTTV_POINTER, &value));
737 //*(value.v_pointer) = after_event;
63a95338 738 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/event",
08b1c66e 739 LTTV_POINTER, &value));
b8eccacd 740 *(value.v_pointer) = event_hook;
08b1c66e 741 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/main/before",
742 LTTV_POINTER, &value));
743 g_assert((main_hooks = *(value.v_pointer)) != NULL);
b8eccacd 744 lttv_hooks_add(main_hooks, process_traceset, NULL, LTTV_PRIO_DEFAULT);
08b1c66e 745}
746
747
748static void destroy()
749{
750 guint i, nb;
751
752 LttvTrace *trace;
753
754 g_info("Destroy batchAnalysis.c");
755
756 lttv_option_remove("trace");
757 lttv_option_remove("dump-tracefiles");
758 lttv_option_remove("save-sample");
f95bc830 759 lttv_option_remove("save-state-copy");
08b1c66e 760 lttv_option_remove("sample-interval");
761 lttv_option_remove("sample-number");
911b7a3c 762 lttv_option_remove("seek-number");
08b1c66e 763 lttv_option_remove("save-interval");
764 lttv_option_remove("test1");
765 lttv_option_remove("test2");
766 lttv_option_remove("test3");
767 lttv_option_remove("test4");
768 lttv_option_remove("test5");
769 lttv_option_remove("test6");
770 lttv_option_remove("test7");
771 lttv_option_remove("testall");
772
773 lttv_hooks_destroy(before_traceset);
774 lttv_hooks_destroy(after_traceset);
775 lttv_hooks_destroy(before_trace);
776 lttv_hooks_destroy(after_trace);
777 lttv_hooks_destroy(before_tracefile);
778 lttv_hooks_destroy(after_tracefile);
b8eccacd 779 //lttv_hooks_destroy(before_event);
780 //lttv_hooks_destroy(after_event);
781 lttv_hooks_destroy(event_hook);
08b1c66e 782 lttv_hooks_remove_data(main_hooks, process_traceset, NULL);
783
784 nb = lttv_traceset_number(traceset);
785 for(i = 0 ; i < nb ; i++) {
786 trace = lttv_traceset_get(traceset, i);
443a558d 787 lttv_traceset_remove(traceset,i);
08b1c66e 788 ltt_trace_close(lttv_trace(trace));
789 lttv_trace_destroy(trace);
790 }
791
792 lttv_traceset_destroy(traceset);
793}
794
795
796LTTV_MODULE("batchtest", "Batch processing of a trace for tests", \
797 "Run through a trace calling all the registered hooks for tests", \
798 init, destroy, "state", "stats", "option" )
This page took 0.060446 seconds and 4 git commands to generate.