1 /* This file is part of the Linux Trace Toolkit viewer
2 * Copyright (C) 2003-2004 Michel Dagenais
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;
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.
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,
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. */
29 #include <lttv/lttv.h>
30 #include <lttv/attribute.h>
31 #include <lttv/hook.h>
32 #include <lttv/option.h>
33 #include <lttv/module.h>
34 #include <lttv/tracecontext.h>
35 #include <lttv/state.h>
36 #include <lttv/stats.h>
37 #include <ltt/trace.h>
38 #include <ltt/event.h>
40 #define __UNUSED__ __attribute__((__unused__))
42 static LttvTraceset
*traceset
;
58 static char *a_dump_tracefiles
;
60 static char *a_save_sample
;
83 static GQuark QUARK_BLOCK_START
,
86 LttEventPosition
*a_event_position
;
88 typedef struct _save_state
{
99 static void lttv_trace_option(void __UNUSED__
*hook_data
)
103 trace
= ltt_trace_open(a_trace
);
105 g_critical("cannot open trace %s", a_trace
);
107 lttv_traceset_add(traceset
, lttv_trace_new(trace
));
111 static double get_time()
115 g_get_current_time(>
);
116 return gt
.tv_sec
+ (double)gt
.tv_usec
/ (double)1000000.0;
119 static double run_one_test(LttvTracesetState
*ts
, LttTime start
, LttTime end
)
125 //lttv_traceset_context_add_hooks(&ts->parent,
126 //before_traceset, after_traceset, NULL, before_trace, after_trace,
127 //NULL, before_tracefile, after_tracefile, NULL, before_event, after_event);
128 lttv_process_traceset_begin(&ts
->parent
,
135 for(i
= 0 ; i
< lttv_traceset_number(traceset
) ; i
++) {
136 ((LttvTraceState
*)(ts
->parent
.traces
[i
]))->save_interval
=a_save_interval
;
140 lttv_state_traceset_seek_time_closest(ts
, start
);
141 //lttv_process_traceset(&ts->parent, end, G_MAXULONG);
142 lttv_process_traceset_middle(&ts
->parent
,
148 //lttv_traceset_context_remove_hooks(&ts->parent,
149 //before_traceset, after_traceset, NULL, before_trace, after_trace,
150 //NULL, before_tracefile, after_tracefile, NULL, before_event, after_event);
151 lttv_process_traceset_end(&ts
->parent
,
162 gboolean
trace_event(void __UNUSED__
*hook_data
, void *call_data
)
164 LttvTracefileState
*tfs
= (LttvTracefileState
*)call_data
;
166 guint nb_block
, offset
;
171 LttEvent
*e
= ltt_tracefile_get_event(tfs
->parent
.tf
);
172 ltt_event_position(e
, a_event_position
);
173 ltt_event_position_get(a_event_position
, &tf
, &nb_block
, &offset
, &tsc
);
174 fprintf(stderr
, "Event %s %lu.%09lu [%u 0x%x tsc %" PRIu64
"]\n",
175 g_quark_to_string(marker_get_info_from_id(tf
->mdata
,
176 ltt_event_id(e
))->name
),
177 tfs
->parent
.timestamp
.tv_sec
, tfs
->parent
.timestamp
.tv_nsec
,
178 nb_block
, offset
, tsc
);
182 static LttTime count_previous_time
= { 0, 0 };
184 gboolean
count_event(void *hook_data
, void __UNUSED__
*call_data
)
186 LttvTracefileState
*tfs
= (LttvTracefileState
*)call_data
;
187 LttTracefile
*tracefile
= tfs
->parent
.tf
;
188 guint nb_block
, offset
;
189 LttTracefile
*tf_pos
;
191 LttEvent
* event
= ltt_tracefile_get_event(tracefile
);
193 guint
*pcount
= (guint
*)hook_data
;
197 time
= ltt_event_time(event
);
198 ltt_event_position(event
, a_event_position
);
199 ltt_event_position_get(a_event_position
, &tf_pos
, &nb_block
, &offset
, &tsc
);
201 if(ltt_time_compare(time
, count_previous_time
) < 0) {
202 g_warning("Time decreasing trace %s tracefile %s cpu %u position %u/0x%x",
203 g_quark_to_string(ltt_trace_name(ltt_tracefile_get_trace(tracefile
))),
204 g_quark_to_string(ltt_tracefile_name(tracefile
)),
205 tfs
->cpu
, nb_block
, offset
);
206 g_warning("last time %lu.%lu vs current %lu.%lu",
207 count_previous_time
.tv_sec
, count_previous_time
.tv_nsec
,
208 time
.tv_sec
, time
.tv_nsec
);
210 count_previous_time
= time
;
218 gboolean
save_state_copy_event(void *hook_data
, void *call_data
)
220 SaveState __UNUSED__
*save_state
= (SaveState
*)hook_data
;
222 LttvTracefileState
*tfs
= (LttvTracefileState
*)call_data
;
224 LttvTraceState
*ts
= (LttvTraceState
*)tfs
->parent
.t_context
;
226 LttEvent
*e
= ltt_tracefile_get_event(tfs
->parent
.tf
);
232 if(ts
->nb_event
== 0 &&
233 marker_get_info_from_id(tfs
->parent
.tf
->mdata
, e
->event_id
)->name
234 == QUARK_BLOCK_START
) {
235 if(a_save_sample
!= NULL
) {
236 filename
= g_string_new("");
237 g_string_printf(filename
, "%s.copy.%lu.%09lu.xml", a_save_sample
,
238 tfs
->parent
.timestamp
.tv_sec
, tfs
->parent
.timestamp
.tv_nsec
);
239 fp
= fopen(filename
->str
, "w");
240 if(fp
== NULL
) g_error("Cannot open %s", filename
->str
);
241 g_string_free(filename
, TRUE
);
242 lttv_state_write(ts
, tfs
->parent
.timestamp
, fp
);
244 } //else lttv_state_write(ts, tfs->parent.timestamp, save_state->fp);
250 gboolean
save_state_event(void *hook_data
, void *call_data
)
252 SaveState
*save_state
= (SaveState
*)hook_data
;
254 LttvTracefileState
*tfs
= (LttvTracefileState
*)call_data
;
256 LttvTraceState
*ts
= (LttvTraceState
*)tfs
->parent
.t_context
;
262 (save_state
->count
)++;
263 if(save_state
->count
% save_state
->interval
== 0 &&
264 save_state
->position
< save_state
->size
) {
265 if(a_save_sample
!= NULL
) {
266 filename
= g_string_new("");
267 g_string_printf(filename
, "%s.%u.xml.%u", a_save_sample
,
268 save_state
->position
, save_state
->version
);
269 fp
= fopen(filename
->str
, "w");
270 if(fp
== NULL
) g_error("Cannot open %s", filename
->str
);
271 g_string_free(filename
, TRUE
);
272 lttv_state_write(ts
, tfs
->parent
.timestamp
, fp
);
274 } //else lttv_state_write(ts, tfs->parent.timestamp, save_state->fp);
276 save_state
->write_time
[save_state
->position
] = tfs
->parent
.timestamp
;
277 save_state
->position
++;
283 static void sanitize_name(gchar
*name
)
285 while(*name
!= '\0') {
286 if(*name
== '/') *name
= '_';
293 static void compute_tracefile(LttTracefile
*tracefile
, void *hook_data
)
296 guint nb_equal
, nb_block
, offset
;
299 LttTime time
, previous_time
;
300 LttEvent
*event
= ltt_tracefile_get_event(tracefile
);
301 //LttEventType *event_type;
302 struct marker_info
*minfo
;
304 gchar mod_name
[PATH_MAX
];
306 /* start_count is always initialized in this function _if_ there is always
307 * a block_start before a block_end.
309 //long long unsigned cycle_count, start_count=0, delta_cycle;
312 filename
= g_string_new("");
313 strcpy(mod_name
, g_quark_to_string(ltt_tracefile_name(tracefile
)));
315 sanitize_name(mod_name
);
317 g_warning("test %s test", g_quark_to_string(ltt_tracefile_name(tracefile
)));
318 g_string_printf(filename
, "%s.%s.%u.trace", a_dump_tracefiles
,
319 mod_name
, ltt_tracefile_cpu(tracefile
));
320 fp
= fopen(filename
->str
, "w");
321 if(fp
== NULL
) g_error("Cannot open %s", filename
->str
);
322 g_string_free(filename
, TRUE
);
323 err
= ltt_tracefile_seek_time(tracefile
, ltt_time_zero
);
326 previous_time
= ltt_time_zero
;
330 LttTracefile
*tf_pos
;
331 //event_type = ltt_event_eventtype(event);
332 minfo
= marker_get_info_from_id(tracefile
->mdata
,
333 ltt_event_id(event
));
334 time
= ltt_event_time(event
);
335 ltt_event_position(event
, a_event_position
);
336 ltt_event_position_get(a_event_position
, &tf_pos
, &nb_block
, &offset
, &tsc
);
337 //fprintf(fp,"%s.%s: %llu %lu.%09lu position %u/%u\n",
338 fprintf(fp
, "%s: %" PRIu64
" %lu.%09lu position %u/%u, tracefile %s\n",
339 g_quark_to_string(minfo
->name
),
340 tsc
, (unsigned long)time
.tv_sec
,
341 (unsigned long)time
.tv_nsec
,
343 g_quark_to_string(ltt_tracefile_name(tracefile
)));
345 if(ltt_time_compare(time
, previous_time
) < 0) {
346 g_warning("Time decreasing trace %s tracefile %s cpu %u position %u/0x%x",
347 g_quark_to_string(ltt_trace_name(ltt_tracefile_get_trace(tracefile
))),
348 g_quark_to_string(ltt_tracefile_name(tracefile
)),
349 ltt_tracefile_cpu(tracefile
), nb_block
, offset
);
350 g_warning("last time %lu.%lu vs current %lu.%lu",
351 previous_time
.tv_sec
, previous_time
.tv_nsec
,
352 time
.tv_sec
, time
.tv_nsec
);
356 if(ltt_eventtype_name(event_type
) == QUARK_BLOCK_START
) {
357 start_count
= cycle_count
;
360 else if(ltt_eventtype_name(event_type
) == QUARK_BLOCK_END
) {
361 delta_cycle
= cycle_count
- start_count
;
362 end_nsec_sec
= (long long unsigned)time
.tv_sec
* (long long unsigned)1000000000;
363 end_nsec_nsec
= time
.tv_nsec
;
364 end_nsec
= end_nsec_sec
+ end_nsec_nsec
;
365 start_nsec
= (long long unsigned)start_time
.tv_sec
* (long long unsigned)1000000000 + (long long unsigned)start_time
.tv_nsec
;
366 delta_nsec
= end_nsec
- start_nsec
;
367 cycle_per_nsec
= (double)delta_cycle
/ (double)delta_nsec
;
368 nsec_per_cycle
= (double)delta_nsec
/ (double)delta_cycle
;
369 added_nsec
= (double)delta_cycle
* nsec_per_cycle
;
370 interpolated_nsec
= start_nsec
+ added_nsec
;
371 added_nsec2
= (double)delta_cycle
/ cycle_per_nsec
;
372 interpolated_nsec2
= start_nsec
+ added_nsec2
;
374 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
);
378 if(ltt_time_compare(time
, previous_time
) == 0)
380 else if(nb_equal
> 0) {
381 g_warning("Consecutive %d events with time %lu.%09lu",
382 nb_equal
+ 1, previous_time
.tv_sec
, previous_time
.tv_nsec
);
385 previous_time
= time
;
387 } while((!ltt_tracefile_read(tracefile
)));
393 static gboolean
process_traceset(void __UNUSED__
*hook_data
,
394 void __UNUSED__
*call_data
)
397 LttvTracesetStats
*tscs
;
399 LttvTracesetState
*ts
;
401 LttvTracesetContext
*tc
;
407 //guint count, nb_control, nb_tracefile, nb_block, nb_event;
408 //guint i, j, count, nb_control, nb_tracefile, nb_block, nb_event, nb_equal;
413 LttTime max_time
= { G_MAXULONG
, G_MAXULONG
};
415 a_event_position
= ltt_event_position_new();
417 GData
**tracefiles_groups
;
419 struct compute_tracefile_group_args args
;
421 args
.func
= compute_tracefile
;
422 args
.func_args
= NULL
;
424 if(a_dump_tracefiles
!= NULL
) {
425 for(i
= 0 ; i
< lttv_traceset_number(traceset
) ; i
++) {
426 trace
= lttv_trace(lttv_traceset_get(traceset
, i
));
427 tracefiles_groups
= ltt_trace_get_tracefiles_groups(trace
);
429 g_datalist_foreach(tracefiles_groups
,
430 (GDataForeachFunc
)compute_tracefile_group
, &args
);
435 tscs
= g_object_new(LTTV_TRACESET_STATS_TYPE
, NULL
);
437 tc
= &tscs
->parent
.parent
;
439 lttv_context_init(tc
, traceset
);
441 /* For each case compute and print the elapsed time.
442 The first case is simply to run through all events with a
445 if(a_test1
|| a_test_all
) {
447 lttv_hooks_add(event_hook
, count_event
, &count
, LTTV_PRIO_DEFAULT
);
448 t
= run_one_test(ts
, ltt_time_zero
, max_time
);
449 lttv_hooks_remove_data(event_hook
, count_event
, &count
);
450 g_message("Processing trace while counting events (%u events in %g seconds)",
454 /* Run through all events computing the state. */
456 if(a_test2
|| a_test_all
) {
457 lttv_state_add_event_hooks(ts
);
458 t
= run_one_test(ts
, ltt_time_zero
, max_time
);
459 lttv_state_remove_event_hooks(ts
);
460 g_message("Processing trace while updating state (%g seconds)", t
);
463 /* Run through all events computing the state and writing it out
466 SaveState save_state
;
468 save_state
.interval
= a_sample_interval
;
469 save_state
.size
= a_sample_number
;
470 save_state
.fp
= stderr
;
471 save_state
.write_time
= g_new(LttTime
, a_sample_number
);
474 if(a_test3
|| a_test_all
) {
475 for(i
= 0 ; i
< 2 ; i
++) {
476 save_state
.count
= 0;
477 save_state
.position
= 0;
478 save_state
.version
= i
;
479 lttv_state_add_event_hooks(ts
);
480 lttv_hooks_add(event_hook
, save_state_event
, &save_state
,
482 t
= run_one_test(ts
, ltt_time_zero
, max_time
);
483 lttv_state_remove_event_hooks(ts
);
484 lttv_hooks_remove_data(event_hook
, save_state_event
, &save_state
);
485 g_warning("Processing while updating/writing state (%g seconds)", t
);
489 /* Run through all events computing the stats. */
491 if(a_test4
|| a_test_all
) {
492 if(lttv_profile_memory
) {
493 g_message("Memory summary before computing stats");
497 lttv_stats_add_event_hooks(tscs
);
498 t
= run_one_test(ts
, ltt_time_zero
, max_time
);
499 lttv_stats_remove_event_hooks(tscs
);
500 g_message("Processing trace while counting stats (%g seconds)", t
);
502 if(lttv_profile_memory
) {
503 g_message("Memory summary after computing stats");
507 lttv_stats_sum_traceset(tscs
, ltt_time_infinite
);
509 if(lttv_profile_memory
) {
510 g_message("Memory summary after summing stats");
514 lttv_context_fini(tc
);
515 lttv_context_init(tc
, traceset
);
517 if(lttv_profile_memory
) {
518 g_message("Memory summary after cleaning up the stats");
523 /* Run through all events computing the state and stats. */
525 if(a_test5
|| a_test_all
) {
526 if(lttv_profile_memory
) {
527 g_message("Memory summary before computing state and stats");
531 lttv_state_add_event_hooks(ts
);
532 lttv_stats_add_event_hooks(tscs
);
533 t
= run_one_test(ts
, ltt_time_zero
, max_time
);
534 lttv_state_remove_event_hooks(ts
);
535 lttv_stats_remove_event_hooks(tscs
);
536 g_message("Processing trace while counting state and stats (%g seconds)", t
);
538 if(lttv_profile_memory
) {
539 g_message("Memory summary after computing and state and stats");
543 lttv_context_fini(tc
);
544 lttv_context_init(tc
, traceset
);
546 if(lttv_profile_memory
) {
547 g_message("Memory summary after cleaning up the stats");
552 /* Run through all events computing and saving the state. */
554 if(a_trace_event
) lttv_hooks_add(event_hook
, trace_event
, NULL
,
557 if(a_test6
|| a_test_all
) {
558 if(lttv_profile_memory
) {
559 g_message("Memory summary before computing and saving state");
563 lttv_state_add_event_hooks(ts
);
564 lttv_state_save_add_event_hooks(ts
);
565 if(a_save_state_copy
)
566 lttv_hooks_add(event_hook
, save_state_copy_event
, &save_state
,
568 t
= run_one_test(ts
, ltt_time_zero
, max_time
);
569 lttv_state_remove_event_hooks(ts
);
570 lttv_state_save_remove_event_hooks(ts
);
571 if(a_save_state_copy
)
572 lttv_hooks_remove_data(event_hook
,save_state_copy_event
, &save_state
);
574 g_message("Processing trace while updating/saving state (%g seconds)", t
);
576 if(lttv_profile_memory
) {
577 g_message("Memory summary after computing/saving state");
582 /* Seek a few times to each saved position */
584 if((a_test7
&& a_test3
) || a_test_all
) {
585 g_assert(a_seek_number
>= 0);
586 for(i
= 0 ; i
< (guint
)a_seek_number
; i
++) {
587 gint reverse_j
; /* just to make sure j is unsigned */
588 for(reverse_j
= save_state
.position
- 1 ; reverse_j
>= 0 ; reverse_j
--) {
589 j
= (guint
)reverse_j
;
590 lttv_state_add_event_hooks(ts
);
591 t
= run_one_test(ts
, save_state
.write_time
[j
],
592 save_state
.write_time
[j
]);
593 lttv_state_remove_event_hooks(ts
);
594 g_message("Seeking to %lu.%lu (%g seconds)",
595 save_state
.write_time
[j
].tv_sec
,
596 save_state
.write_time
[j
].tv_nsec
, t
);
598 if(a_save_sample
!= NULL
) {
599 filename
= g_string_new("");
600 g_string_printf(filename
, "%s.%d.xml.bak%d", a_save_sample
, j
, i
);
601 fp
= fopen(filename
->str
, "w");
602 if(fp
== NULL
) g_error("Cannot open %s", filename
->str
);
603 g_string_free(filename
, TRUE
);
604 lttv_state_write((LttvTraceState
*)tc
->traces
[0],
605 save_state
.write_time
[j
], fp
);
608 //else lttv_state_write((LttvTraceState *)tc->traces[0],
609 // save_state.write_time[j], save_state.fp);
614 /* Seek at specified interval, using states computed in 6, making
615 * sure that there is no more than the number of events between
616 * state save interval to read before getting there.
619 if((a_test8
&& a_test6
) || a_test_all
) {
620 g_message("Running test 8 : check save interval");
621 LttTime time
= tc
->time_span
.start_time
;
624 interval
.tv_nsec
= 175674987;
627 while(ltt_time_compare(time
, tc
->time_span
.end_time
) < 0) {
628 //g_message("Seeking at time %u.%u", time.tv_sec, time.tv_nsec);
629 lttv_process_traceset_seek_time(&ts
->parent
, ltt_time_zero
);
630 lttv_state_traceset_seek_time_closest(ts
, time
);
631 /* We add no hook to the traceset, not necessary */
632 count
= lttv_process_traceset_middle(&ts
->parent
,
633 time
, G_MAXUINT
, NULL
);
634 g_info("Number of events to jump over : %u", count
);
636 if(count
> LTTV_STATE_SAVE_INTERVAL
)
637 g_warning("Oops! Save interval is %u and it took %u events to seek to a time %lu.%lu supposed to be closer from the last saved state.",
638 LTTV_STATE_SAVE_INTERVAL
, count
, time
.tv_sec
, time
.tv_nsec
);
639 time
= ltt_time_add(time
, interval
);
644 if(a_test9
|| a_test_all
) {
646 /* Run seek_forward and seek_backward test */
648 LttvTracesetContext
*tsc
= &ts
->parent
;
649 LttvTracesetContextPosition
*saved_pos
=
650 lttv_traceset_context_position_new(tsc
);
651 g_message("Running test 9 : seek_forward and seek_backward");
652 lttv_process_traceset_seek_time(tsc
, ltt_time_zero
);
654 count
= lttv_process_traceset_seek_n_forward(tsc
, 500, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
);
655 g_assert(count
== 500);
656 lttv_traceset_context_position_save(tsc
, saved_pos
);
658 count
= lttv_process_traceset_seek_n_forward(tsc
, 150000, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
);
660 g_message("Seek forward 150000 events in %g seconds", t1
- t0
);
661 g_assert(count
== 150000);
663 count
= lttv_process_traceset_seek_n_backward(tsc
, 150000,
664 seek_back_default_offset
, lttv_process_traceset_seek_time
, NULL
,
665 NULL
, NULL
, NULL
, NULL
, NULL
);
667 g_message("Seek backward 150000 events in %g seconds", t1
- t0
);
668 g_assert(count
== 150000);
669 if(lttv_traceset_context_ctx_pos_compare(tsc
, saved_pos
)) {
670 g_warning("Problem with seek_n ! Positions differ. (1)");
673 lttv_process_traceset_seek_n_forward(tsc
, 500, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
);
674 lttv_traceset_context_position_save(tsc
, saved_pos
);
675 lttv_process_traceset_seek_n_forward(tsc
, 15000, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
);
676 lttv_process_traceset_seek_n_backward(tsc
, 15005,
677 seek_back_default_offset
, lttv_process_traceset_seek_time
, NULL
,
678 NULL
, NULL
, NULL
, NULL
, NULL
);
679 lttv_process_traceset_seek_n_forward(tsc
, 5, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
);
680 if(lttv_traceset_context_ctx_pos_compare(tsc
, saved_pos
)) {
681 g_warning("Problem with seek_n ! Positions differ. (2)");
684 lttv_process_traceset_seek_time(tsc
, ltt_time_infinite
);
686 count
= lttv_process_traceset_seek_n_forward(tsc
, 15000, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
);
688 g_warning("Problem with seek_n ! Forward at end of traceset.");
690 lttv_process_traceset_seek_time(tsc
, ltt_time_infinite
);
692 lttv_traceset_context_position_save(tsc
, saved_pos
);
694 lttv_process_traceset_seek_n_backward(tsc
, 300,
695 seek_back_default_offset
, lttv_process_traceset_seek_time
, NULL
,
696 NULL
, NULL
, NULL
, NULL
, NULL
);
698 g_message("Seek backward 300 events in %g seconds", t1
- t0
);
699 count
= lttv_process_traceset_seek_n_forward(tsc
, 299, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
);
700 count
= lttv_process_traceset_seek_n_forward(tsc
, 1, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
);
702 if(lttv_traceset_context_ctx_pos_compare(tsc
, saved_pos
)) {
703 g_warning("Problem with seek_n ! Positions differ. (4)");
706 lttv_traceset_context_position_save(tsc
, saved_pos
);
708 lttv_process_traceset_seek_n_backward(tsc
, 10,
709 seek_back_default_offset
, lttv_process_traceset_seek_time
, NULL
,
710 NULL
, NULL
, NULL
, NULL
, NULL
);
712 g_message("Seek backward 10 events in %g seconds", t1
- t0
);
714 count
= lttv_process_traceset_seek_n_forward(tsc
, 10, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
);
716 g_message("Seek forward 10 events in %g seconds", t1
- t0
);
719 /* try a volountary error */
720 lttv_process_traceset_seek_time(tsc
, ltt_time_infinite
);
722 lttv_traceset_context_position_save(tsc
, saved_pos
);
723 lttv_process_traceset_seek_n_backward(tsc
, 301,
724 seek_back_default_offset
, lttv_process_traceset_seek_time
, NULL
,
725 NULL
, NULL
, NULL
, NULL
, NULL
);
726 count
= lttv_process_traceset_seek_n_forward(tsc
, 299, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
);
727 count
= lttv_process_traceset_seek_n_forward(tsc
, 1, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
);
729 if(lttv_traceset_context_ctx_pos_compare(tsc
, saved_pos
) == 0) {
730 g_warning("Problem with seek_n ! Positions _should_ differ. (5)");
733 /* Try a seek by closest time : Hint : try this one with and without states
735 lttv_process_traceset_seek_time(tsc
, ltt_time_zero
);
736 count
= lttv_process_traceset_seek_n_forward(tsc
, 200000, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
);
737 lttv_traceset_context_position_save(tsc
, saved_pos
);
739 lttv_process_traceset_seek_n_backward(tsc
, 100301,
740 seek_back_default_offset
,
741 (seek_time_fct
)lttv_state_traceset_seek_time_closest
, NULL
,
742 NULL
, NULL
, NULL
, NULL
, NULL
);
744 g_message("Seek backward 100301 events (with seek closest) in %g seconds",
746 count
= lttv_process_traceset_seek_n_forward(tsc
, 100301, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
);
748 if(lttv_traceset_context_ctx_pos_compare(tsc
, saved_pos
)) {
749 g_warning("Problem with seek_n with state seek time! Positions differ. (6)");
752 lttv_traceset_context_position_destroy(saved_pos
);
755 if(a_test10
|| a_test_all
) {
756 g_message("Running test 10 : check seek traceset context position");
757 LttvTracesetContext
*tsc
= &ts
->parent
;
758 LttvTracesetContextPosition
*saved_pos
=
759 lttv_traceset_context_position_new(tsc
);
761 lttv_process_traceset_seek_time(tsc
, ltt_time_zero
);
762 lttv_process_traceset_seek_n_forward(tsc
, 200000, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
);
763 lttv_traceset_context_position_save(tsc
, saved_pos
);
764 if(lttv_traceset_context_ctx_pos_compare(tsc
, saved_pos
) != 0)
765 g_critical("Error in seek position. (1)");
767 lttv_process_traceset_seek_time(tsc
, ltt_time_infinite
);
768 lttv_process_traceset_seek_n_backward(tsc
, 500,
769 seek_back_default_offset
, lttv_process_traceset_seek_time
, NULL
,
770 NULL
, NULL
, NULL
, NULL
, NULL
);
771 lttv_traceset_context_position_save(tsc
, saved_pos
);
773 if(lttv_traceset_context_ctx_pos_compare(tsc
, saved_pos
) != 0)
774 g_critical("Error in seek position. (2)");
776 lttv_traceset_context_position_destroy(saved_pos
);
779 if(a_trace_event
) lttv_hooks_remove_data(event_hook
, trace_event
, NULL
);
781 g_free(save_state
.write_time
);
782 g_free(a_event_position
);
783 lttv_context_fini(tc
);
784 g_object_unref(tscs
);
786 if(lttv_profile_memory
) {
787 g_message("Memory summary at the end of batchtest");
791 g_info("BatchTest end process traceset");
798 LttvAttributeValue value
;
800 LttvIAttribute
*attributes
= LTTV_IATTRIBUTE(lttv_global_attributes());
803 g_info("Init batchtest.c");
806 QUARK_BLOCK_START
= g_quark_from_string("block_start");
807 QUARK_BLOCK_END
= g_quark_from_string("block_end");
810 lttv_option_add("trace", 't',
811 "add a trace to the trace set to analyse",
812 "pathname of the directory containing the trace",
813 LTTV_OPT_STRING
, &a_trace
, lttv_trace_option
, NULL
);
815 a_trace_event
= FALSE
;
817 a_dump_tracefiles
= NULL
;
818 lttv_option_add("dump-tracefiles", 'D',
819 "Write event by event the content of tracefiles",
820 "basename for the files where to dump events",
821 LTTV_OPT_STRING
, &a_dump_tracefiles
, NULL
, NULL
);
823 a_save_sample
= NULL
;
824 lttv_option_add("save-sample", 's',
825 "Save state samples to multiple files",
826 "basename for the files containing the state samples",
827 LTTV_OPT_STRING
, &a_save_sample
, NULL
, NULL
);
829 a_save_state_copy
= FALSE
;
830 lttv_option_add("save-state-copy", 'S', "Write the state saved for seeking",
831 "", LTTV_OPT_NONE
, &a_save_state_copy
, NULL
, NULL
);
833 a_save_interval
= 100000;
834 lttv_option_add("save-interval", 'i',
835 "Interval between saving state",
836 "number of events before a block start triggers saving state",
837 LTTV_OPT_INT
, &a_save_interval
, NULL
, NULL
);
839 a_sample_interval
= 100000;
840 lttv_option_add("sample-interval", 'S',
841 "Interval between sampling state",
842 "number of events before sampling and writing state",
843 LTTV_OPT_INT
, &a_sample_interval
, NULL
, NULL
);
845 a_sample_number
= 20;
846 lttv_option_add("sample-number", 'N',
847 "Number of state samples",
849 LTTV_OPT_INT
, &a_sample_number
, NULL
, NULL
);
852 lttv_option_add("seek-number", 'K',
855 LTTV_OPT_INT
, &a_seek_number
, NULL
, NULL
);
858 lttv_option_add("test1", '1', "Test just counting events", "",
859 LTTV_OPT_NONE
, &a_test1
, NULL
, NULL
);
862 lttv_option_add("test2", '2', "Test computing the state", "",
863 LTTV_OPT_NONE
, &a_test2
, NULL
, NULL
);
866 lttv_option_add("test3", '3', "Test computing the state, writing out a few",
867 "", LTTV_OPT_NONE
, &a_test3
, NULL
, NULL
);
870 lttv_option_add("test4", '4', "Test computing the stats", "",
871 LTTV_OPT_NONE
, &a_test4
, NULL
, NULL
);
874 lttv_option_add("test5", '5', "Test computing the state and stats", "",
875 LTTV_OPT_NONE
, &a_test5
, NULL
, NULL
);
878 lttv_option_add("test6", '6', "Test computing and saving the state", "",
879 LTTV_OPT_NONE
, &a_test6
, NULL
, NULL
);
882 lttv_option_add("test7", '7', "Test seeking to positions written out in 3",
883 "", LTTV_OPT_NONE
, &a_test7
, NULL
, NULL
);
886 lttv_option_add("test8", '8', "Test seeking to positions using saved states computed at 6 : check if number of events fits",
887 "", LTTV_OPT_NONE
, &a_test8
, NULL
, NULL
);
890 lttv_option_add("test9", '9', "Test seeking backward/forward positions",
891 "", LTTV_OPT_NONE
, &a_test9
, NULL
, NULL
);
894 lttv_option_add("test10", ' ', "Test seeking traceset by position",
895 "", LTTV_OPT_NONE
, &a_test10
, NULL
, NULL
);
900 lttv_option_add("testall", 'a', "Run all tests ", "",
901 LTTV_OPT_NONE
, &a_test_all
, NULL
, NULL
);
903 traceset
= lttv_traceset_new();
905 before_traceset
= lttv_hooks_new();
906 after_traceset
= lttv_hooks_new();
907 before_trace
= lttv_hooks_new();
908 after_trace
= lttv_hooks_new();
909 before_tracefile
= lttv_hooks_new();
910 after_tracefile
= lttv_hooks_new();
911 //before_event = lttv_hooks_new();
912 //after_event = lttv_hooks_new();
913 event_hook
= lttv_hooks_new();
916 retval
= lttv_iattribute_find_by_path(attributes
, "hooks/traceset/before",
917 LTTV_POINTER
, &value
);
919 *(value
.v_pointer
) = before_traceset
;
920 retval
= lttv_iattribute_find_by_path(attributes
, "hooks/traceset/after",
921 LTTV_POINTER
, &value
);
923 *(value
.v_pointer
) = after_traceset
;
924 retval
= lttv_iattribute_find_by_path(attributes
, "hooks/trace/before",
925 LTTV_POINTER
, &value
);
927 *(value
.v_pointer
) = before_trace
;
928 retval
= lttv_iattribute_find_by_path(attributes
, "hooks/trace/after",
929 LTTV_POINTER
, &value
);
931 *(value
.v_pointer
) = after_trace
;
932 retval
= lttv_iattribute_find_by_path(attributes
, "hooks/tracefile/before",
933 LTTV_POINTER
, &value
);
935 *(value
.v_pointer
) = before_tracefile
;
936 retval
= lttv_iattribute_find_by_path(attributes
, "hooks/tracefile/after",
937 LTTV_POINTER
, &value
);
939 *(value
.v_pointer
) = after_tracefile
;
940 //retval= lttv_iattribute_find_by_path(attributes, "hooks/event/before",
941 // LTTV_POINTER, &value);
942 //*(value.v_pointer) = before_event;
943 //retval= lttv_iattribute_find_by_path(attributes, "hooks/event/after",
944 // LTTV_POINTER, &value);
945 //*(value.v_pointer) = after_event;
946 retval
= lttv_iattribute_find_by_path(attributes
, "hooks/event",
947 LTTV_POINTER
, &value
);
949 *(value
.v_pointer
) = event_hook
;
950 retval
= lttv_iattribute_find_by_path(attributes
, "hooks/main/before",
951 LTTV_POINTER
, &value
);
953 g_assert((main_hooks
= *(value
.v_pointer
)) != NULL
);
954 lttv_hooks_add(main_hooks
, process_traceset
, NULL
, LTTV_PRIO_DEFAULT
);
958 static void destroy()
964 g_info("Destroy batchAnalysis.c");
966 lttv_option_remove("trace");
967 lttv_option_remove("dump-tracefiles");
968 lttv_option_remove("save-sample");
969 lttv_option_remove("save-state-copy");
970 lttv_option_remove("sample-interval");
971 lttv_option_remove("sample-number");
972 lttv_option_remove("seek-number");
973 lttv_option_remove("save-interval");
974 lttv_option_remove("test1");
975 lttv_option_remove("test2");
976 lttv_option_remove("test3");
977 lttv_option_remove("test4");
978 lttv_option_remove("test5");
979 lttv_option_remove("test6");
980 lttv_option_remove("test7");
981 lttv_option_remove("test8");
982 lttv_option_remove("test9");
983 lttv_option_remove("test10");
984 lttv_option_remove("testall");
986 lttv_hooks_destroy(before_traceset
);
987 lttv_hooks_destroy(after_traceset
);
988 lttv_hooks_destroy(before_trace
);
989 lttv_hooks_destroy(after_trace
);
990 lttv_hooks_destroy(before_tracefile
);
991 lttv_hooks_destroy(after_tracefile
);
992 //lttv_hooks_destroy(before_event);
993 //lttv_hooks_destroy(after_event);
994 lttv_hooks_destroy(event_hook
);
995 lttv_hooks_remove_data(main_hooks
, process_traceset
, NULL
);
997 nb
= lttv_traceset_number(traceset
);
998 for(i
= 0 ; i
< nb
; i
++) {
999 trace
= lttv_traceset_get(traceset
, i
);
1000 lttv_traceset_remove(traceset
,i
);
1001 ltt_trace_close(lttv_trace(trace
));
1002 lttv_trace_destroy(trace
);
1005 lttv_traceset_destroy(traceset
);
1009 LTTV_MODULE("batchtest", "Batch processing of a trace for tests", \
1010 "Run through a trace calling all the registered hooks for tests", \
1011 init
, destroy
, "state", "stats", "option" )