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,
23 #include <lttv/traceset.h>
24 #include <lttv/iattribute.h>
25 #include <lttv/state.h>
26 #include <lttv/event.h>
27 #include <lttv/hook.h>
29 #include <babeltrace/babeltrace.h>
30 #include <babeltrace/context.h>
31 #include <babeltrace/ctf/iterator.h>
32 #include <babeltrace/ctf/events.h>
34 /* To traverse a tree recursively */
36 /* For the use of realpath*/
43 /* A trace is a sequence of events gathered in the same tracing session. The
44 events may be stored in several tracefiles in the same directory.
45 A trace set is defined when several traces are to be analyzed together,
46 possibly to study the interactions between events in the different traces.
50 LttvTraceset
*lttv_traceset_new(void)
53 struct bt_iter_pos begin_pos
;
55 ts
= g_new(LttvTraceset
, 1);
57 ts
->common_path
= NULL
;
58 ts
->traces
= g_ptr_array_new();
59 ts
->context
= bt_context_create();
60 ts
->a
= g_object_new(LTTV_ATTRIBUTE_TYPE
, NULL
);
62 /*Initialize iterator to the beginning of the traces*/
63 begin_pos
.type
= BT_SEEK_BEGIN
;
64 ts
->iter
= bt_ctf_iter_create(ts
->context
, &begin_pos
, NULL
);
66 ts
->event_hooks
= lttv_hooks_new();
68 ts
->state_trace_handle_index
= g_ptr_array_new();
69 ts
->has_precomputed_states
= FALSE
;
71 ts
->time_span
.start_time
= ltt_time_zero
;
72 ts
->time_span
.end_time
= ltt_time_zero
;
73 lttv_traceset_get_time_span_real(ts
);
77 char * lttv_traceset_name(LttvTraceset
* s
)
83 LttvTrace
*lttv_trace_new(LttTrace
*t
)
87 new_trace
= g_new(LttvTrace
, 1);
88 new_trace
->a
= g_object_new(LTTV_ATTRIBUTE_TYPE
, NULL
);
90 new_trace
->ref_count
= 0;
95 * get_absolute_pathname : Return the unique pathname in the system
97 * pathname is the relative path.
99 * abs_pathname is being set to the absolute path.
102 void get_absolute_pathname(const gchar
*pathname
, gchar
* abs_pathname
)
104 abs_pathname
[0] = '\0';
106 if (realpath(pathname
, abs_pathname
) != NULL
)
110 /* error, return the original path unmodified */
111 strcpy(abs_pathname
, pathname
);
120 * lttv_trace_create : Create a trace from a path
122 * ts is the traceset in which will be contained the trace
124 * path is the path where to find a trace. It is not recursive.
126 * This function is static since a trace should always be contained in a
129 * return the created trace or NULL on failure
131 static LttvTrace
*lttv_trace_create(LttvTraceset
*ts
, const char *path
)
133 int id
= bt_context_add_trace(lttv_traceset_get_context(ts
),
142 // Create the trace and save the trace handle id returned by babeltrace
143 LttvTrace
*new_trace
;
145 new_trace
= g_new(LttvTrace
, 1);
146 new_trace
->a
= g_object_new(LTTV_ATTRIBUTE_TYPE
, NULL
);
148 new_trace
->ref_count
= 0;
149 new_trace
->traceset
= ts
;
150 new_trace
->state
= g_new(LttvTraceState
,1);
151 lttv_trace_state_init(new_trace
->state
,new_trace
);
153 /* Add the state to the trace_handle to state index */
154 g_ptr_array_set_size(ts
->state_trace_handle_index
,id
+1);
155 g_ptr_array_index(ts
->state_trace_handle_index
,id
) = new_trace
->state
;
157 /* Find common path */
158 if (ts
->common_path
== NULL
) {
159 ts
->common_path
= strdup(path
);
161 /* TODO ybrosseau 2013-05-24: consider put that in a function */
164 ts
->common_path
!= '\0';
166 if (path
[i
] != ts
->common_path
[i
]) {
167 /* The common path has changed, redo the other traces */
168 for(j
= 0; j
< ts
->traces
->len
; j
++) {
169 LttvTrace
*t
= g_ptr_array_index(ts
->traces
, j
);
170 strncpy(t
->short_name
, t
->full_path
+i
, TRACE_NAME_SIZE
);
176 strncpy(new_trace
->short_name
, path
+i
, TRACE_NAME_SIZE
);
178 new_trace
->full_path
= strdup(path
);
184 * lttv_trace_create : Create and add a single trace to a traceset
186 * ts is the traceset in which will be contained the trace
188 * path is the path where to find a trace. It is not recursive.
190 * return a positive integer (>=0)on success or -1 on failure
192 static int lttv_traceset_create_trace(LttvTraceset
*ts
, const char *path
)
194 LttvTrace
*trace
= lttv_trace_create(ts
, path
);
198 lttv_traceset_add(ts
, trace
);
202 LttvTraceset
*lttv_traceset_copy(LttvTraceset
*s_orig
)
208 s
= g_new(LttvTraceset
, 1);
210 s
->common_path
= strdup(s_orig
->common_path
);
211 s
->traces
= g_ptr_array_new();
212 s
->state_trace_handle_index
= g_ptr_array_new();
213 for(i
=0;i
<s_orig
->traces
->len
;i
++)
215 trace
= g_ptr_array_index(s_orig
->traces
, i
);
218 /* WARNING: this is an alias, not a copy. */
219 g_ptr_array_add(s
->traces
, trace
);
221 g_ptr_array_set_size(s
->state_trace_handle_index
,trace
->id
+1);
222 g_ptr_array_index(s
->state_trace_handle_index
,trace
->id
) = trace
->state
;
225 s
->context
= s_orig
->context
;
226 bt_context_get(s
->context
);
227 s
->a
= LTTV_ATTRIBUTE(lttv_iattribute_deep_copy(LTTV_IATTRIBUTE(s_orig
->a
)));
232 LttvTraceset
*lttv_traceset_load(const gchar
*filename
)
234 LttvTraceset
*s
= g_new(LttvTraceset
,1);
237 s
->filename
= g_strdup(filename
);
238 tf
= fopen(filename
,"r");
240 g_critical("NOT IMPLEMENTED : load traceset data from a XML file");
246 gint
lttv_traceset_save(LttvTraceset
*s
)
250 tf
= fopen(s
->filename
, "w");
252 g_critical("NOT IMPLEMENTED : save traceset data in a XML file");
258 void lttv_traceset_destroy(LttvTraceset
*s
)
262 for(i
=0;i
<s
->traces
->len
;i
++) {
263 LttvTrace
*trace
= g_ptr_array_index(s
->traces
, i
);
264 lttv_trace_unref(trace
);
265 // todo mdenis 2012-03-27: uncomment when babeltrace gets fixed
266 //bt_context_remove_trace(lttv_traceset_get_context(s), trace->id);
267 if(lttv_trace_get_ref_number(trace
) == 0)
268 lttv_trace_destroy(trace
);
270 free(s
->common_path
);
271 g_ptr_array_free(s
->traces
, TRUE
);
272 bt_context_put(s
->context
);
273 g_object_unref(s
->a
);
277 struct bt_context
*lttv_traceset_get_context(LttvTraceset
*s
)
282 LttvTraceset
*lttv_trace_get_traceset(LttvTrace
*trace
)
284 return trace
->traceset
;
287 LttvHooks
*lttv_traceset_get_hooks(LttvTraceset
*s
)
289 return s
->event_hooks
;
292 void lttv_trace_destroy(LttvTrace
*t
)
295 g_object_unref(t
->a
);
299 void lttv_traceset_add(LttvTraceset
*s
, LttvTrace
*t
)
302 g_ptr_array_add(s
->traces
, t
);
305 int lttv_traceset_get_trace_index_from_event(LttvEvent
*event
)
307 LttvTraceset
*ts
= event
->state
->trace
->traceset
;
309 return lttv_traceset_get_trace_index_from_handle_id(ts
, bt_ctf_event_get_handle_id(event
->bt_event
));
312 int lttv_traceset_get_trace_index_from_handle_id(LttvTraceset
*ts
, int handle_id
)
316 /* TODO ybrosseau 2013-05-22: use a map to speedup the lookup */
318 for(i
= 0; i
< ts
->traces
->len
; i
++) {
319 LttvTrace
*t
= g_ptr_array_index(ts
->traces
, i
);
320 if (t
&& t
->id
== handle_id
) {
325 /* Handle id not found */
330 int lttv_traceset_add_path(LttvTraceset
*ts
, char *trace_path
)
334 gboolean metaFileFound
= FALSE
;
336 /* Open top level directory */
337 curdir
= opendir(trace_path
);
338 if (curdir
== NULL
) {
339 g_warning("Cannot open directory %s (%s)", trace_path
, strerror(errno
));
343 // Check if a metadata file exists in the current directory
344 int metafd
= openat(dirfd(curdir
), "metadata", O_RDONLY
);
350 g_warning("Unable to close metadata "
351 "file descriptor : %s.", trace_path
);
355 ret
= lttv_traceset_create_trace(ts
, trace_path
);
357 g_warning("Opening trace \"%s\" "
358 "for reading.", trace_path
);
361 metaFileFound
= TRUE
;
364 struct dirent curentry
;
365 struct dirent
*resultentry
;
366 while ((ret
= readdir_r(curdir
, &curentry
, &resultentry
)) == 0) {
367 if (resultentry
== NULL
) {
371 if (curentry
.d_name
[0] != '.') {
372 if (curentry
.d_type
== DT_DIR
) {
374 char curpath
[PATH_MAX
];
375 snprintf(curpath
, PATH_MAX
, "%s/%s", trace_path
, curentry
.d_name
);
376 ret
= lttv_traceset_add_path(ts
, curpath
);
378 metaFileFound
= TRUE
;
385 g_warning("Invalid readdir");
395 unsigned lttv_traceset_number(LttvTraceset
*s
)
397 return s
->traces
->len
;
401 LttvTrace
*lttv_traceset_get(LttvTraceset
*s
, unsigned i
)
403 g_assert(s
->traces
->len
> i
);
404 return ((LttvTrace
*)s
->traces
->pdata
[i
]);
408 void lttv_traceset_remove(LttvTraceset
*s
, unsigned i
)
411 g_assert(s
->traces
->len
> i
);
412 t
= (LttvTrace
*)s
->traces
->pdata
[i
];
414 bt_context_remove_trace(lttv_traceset_get_context(s
), t
->id
);
415 g_ptr_array_remove_index(s
->traces
, i
);
419 /* A set of attributes is attached to each trace set, trace and tracefile
420 to store user defined data as needed. */
422 LttvAttribute
*lttv_traceset_attribute(LttvTraceset
*s
)
428 LttvAttribute
*lttv_trace_attribute(LttvTrace
*t
)
434 gint
lttv_trace_get_id(LttvTrace
*t
)
439 guint
lttv_trace_get_ref_number(LttvTrace
* t
)
441 // todo mdenis: adapt to babeltrace
445 guint
lttv_trace_ref(LttvTrace
* t
)
452 guint
lttv_trace_unref(LttvTrace
* t
)
454 if(likely(t
->ref_count
> 0))
460 guint
lttv_trace_get_num_cpu(LttvTrace
*t
)
462 #warning "TODO - Set the right number of CPU"
466 LttvTracesetPosition
*lttv_traceset_create_current_position(LttvTraceset
*traceset
)
468 LttvTracesetPosition
*traceset_pos
;
470 traceset_pos
= g_new(LttvTracesetPosition
, 1);
472 /* Check if the new passed */
473 if(traceset_pos
== NULL
) {
477 traceset_pos
->iter
= traceset
->iter
;
478 traceset_pos
->bt_pos
= bt_iter_get_pos(bt_ctf_get_iter(traceset
->iter
));
479 traceset_pos
->timestamp
= G_MAXUINT64
;
480 traceset_pos
->cpu_id
= INT_MAX
;
485 LttvTracesetPosition
*lttv_traceset_create_time_position(LttvTraceset
*traceset
,
488 LttvTracesetPosition
*traceset_pos
;
490 traceset_pos
= g_new(LttvTracesetPosition
, 1);
492 /* Check if the new passed */
493 if(traceset_pos
== NULL
) {
497 traceset_pos
->iter
= traceset
->iter
;
498 traceset_pos
->bt_pos
= bt_iter_create_time_pos(
499 bt_ctf_get_iter(traceset_pos
->iter
),
500 ltt_time_to_uint64(timestamp
));
501 traceset_pos
->timestamp
= G_MAXUINT64
;
502 traceset_pos
->cpu_id
= INT_MAX
;
506 void lttv_traceset_destroy_position(LttvTracesetPosition
*traceset_pos
)
508 bt_iter_free_pos(traceset_pos
->bt_pos
);
509 g_free(traceset_pos
);
512 void lttv_traceset_seek_to_position(const LttvTracesetPosition
*traceset_pos
)
514 bt_iter_set_pos(bt_ctf_get_iter(traceset_pos
->iter
), traceset_pos
->bt_pos
);
517 guint
lttv_traceset_get_cpuid_from_event(LttvEvent
*event
)
519 unsigned long timestamp
;
522 struct bt_ctf_event
*ctf_event
= event
->bt_event
;
523 timestamp
= bt_ctf_get_timestamp(ctf_event
);
524 if (timestamp
== -1ULL) {
527 const struct bt_definition
*scope
= bt_ctf_get_top_level_scope(ctf_event
, BT_STREAM_PACKET_CONTEXT
);
528 if (bt_ctf_field_get_error()) {
531 cpu_id
= bt_ctf_get_uint64(bt_ctf_get_field(ctf_event
, scope
, "cpu_id"));
532 if (bt_ctf_field_get_error()) {
539 guint64
lttv_traceset_get_timestamp_first_event(LttvTraceset
*ts
)
541 LttvTracesetPosition begin_position
;
542 struct bt_iter_pos pos
;
543 begin_position
.bt_pos
= &pos
;
544 begin_position
.timestamp
= G_MAXUINT64
;
545 begin_position
.cpu_id
= INT_MAX
;
547 /* Assign iterator to the beginning of the traces */
548 begin_position
.bt_pos
->type
= BT_SEEK_BEGIN
;
549 begin_position
.iter
= ts
->iter
;
551 return lttv_traceset_position_get_timestamp(&begin_position
);
554 guint64
lttv_traceset_get_timestamp_last_event(LttvTraceset
*ts
)
556 LttvTracesetPosition last_position
;
557 struct bt_iter_pos pos
;
558 last_position
.bt_pos
= &pos
;
559 last_position
.timestamp
= G_MAXUINT64
;
560 last_position
.cpu_id
= INT_MAX
;
562 /* Assign iterator to the last event of the traces */
563 last_position
.bt_pos
->type
= BT_SEEK_LAST
;
564 last_position
.iter
= ts
->iter
;
566 return lttv_traceset_position_get_timestamp(&last_position
);
570 * lttv_traceset_get_timestamp_begin : returns the minimum timestamp of
571 * all the traces in the traceset.
574 guint64
lttv_traceset_get_timestamp_begin(LttvTraceset
*traceset
)
576 struct bt_context
*bt_ctx
;
577 bt_ctx
= lttv_traceset_get_context(traceset
);
578 guint64 timestamp_min
, timestamp_cur
= 0;
581 LttvTrace
*currentTrace
;
582 trace_count
= traceset
->traces
->len
;
586 timestamp_min
= G_MAXUINT64
;
587 for(i
= 0; i
< trace_count
;i
++)
589 currentTrace
= g_ptr_array_index(traceset
->traces
,i
);
590 timestamp_cur
= bt_trace_handle_get_timestamp_begin(bt_ctx
,
593 if(timestamp_cur
< timestamp_min
)
594 timestamp_min
= timestamp_cur
;
597 return timestamp_min
;
601 * lttv_traceset_get_timestamp_end: returns the maximum timestamp of
602 * all the traces in the traceset.
605 guint64
lttv_traceset_get_timestamp_end(LttvTraceset
*traceset
)
607 struct bt_context
*bt_ctx
;
608 bt_ctx
= lttv_traceset_get_context(traceset
);
609 guint64 timestamp_max
, timestamp_cur
= 0;
612 LttvTrace
*currentTrace
;
613 trace_count
= traceset
->traces
->len
;
615 if(trace_count
== 0){
620 for(i
=0; i
< trace_count
;i
++)
622 currentTrace
= g_ptr_array_index(traceset
->traces
,i
);
623 timestamp_cur
= bt_trace_handle_get_timestamp_end(bt_ctx
,
626 if(timestamp_cur
> timestamp_max
){
627 timestamp_max
= timestamp_cur
;
631 return timestamp_max
;
634 * lttv_traceset_get_time_span_real : return a TimeInterval representing the
635 * minimum timestamp and the maximum timestamp of the traceset.
638 TimeInterval
lttv_traceset_get_time_span_real(LttvTraceset
*ts
)
642 if(ltt_time_compare(ts
->time_span
.start_time
,
643 ltt_time_zero
) == 0 && ts
->traces
->len
> 0){
644 ts
->time_span
.start_time
= ltt_time_from_uint64(
645 lttv_traceset_get_timestamp_first_event(ts
));
646 ts
->time_span
.end_time
= ltt_time_from_uint64(
647 lttv_traceset_get_timestamp_last_event(ts
));
649 return ts
->time_span
;
653 * lttv_traceset_get_time_span : return a TimeInterval representing the
654 * minimum timestamp and the maximum timestamp of the traceset.
657 TimeInterval
lttv_traceset_get_time_span(LttvTraceset
*ts
)
659 if(ltt_time_compare(ts
->time_span
.start_time
, ltt_time_zero
) == 0){
660 ts
->time_span
.start_time
=ltt_time_from_uint64(
661 lttv_traceset_get_timestamp_begin(ts
));
662 ts
->time_span
.end_time
= ltt_time_from_uint64(
663 lttv_traceset_get_timestamp_end(ts
));
665 return ts
->time_span
;
668 const char *lttv_traceset_get_name_from_event(LttvEvent
*event
)
670 return bt_ctf_event_name(event
->bt_event
);
673 int set_values_position(const LttvTracesetPosition
*pos
)
675 LttvTracesetPosition previous_pos
;
676 previous_pos
.iter
= pos
->iter
;
677 previous_pos
.bt_pos
= bt_iter_get_pos(bt_ctf_get_iter(pos
->iter
));
678 /* Seek to the new desired position */
679 lttv_traceset_seek_to_position(pos
);
681 struct bt_ctf_event
*event
= bt_ctf_iter_read_event(pos
->iter
);
684 ((LttvTracesetPosition
*)pos
)->timestamp
= bt_ctf_get_timestamp(event
);
686 LttvEvent lttv_event
;
687 lttv_event
.bt_event
= event
;
688 ((LttvTracesetPosition
*)pos
)->cpu_id
= lttv_traceset_get_cpuid_from_event(<tv_event
);
691 /* The event is null */
695 /* Reassign the previously saved position */
696 lttv_traceset_seek_to_position(&previous_pos
);
697 /*We must desallocate because the function bt_iter_get_pos() does a g_new */
698 bt_iter_free_pos(previous_pos
.bt_pos
);
699 if (pos
->timestamp
== G_MAXUINT64
) {
705 guint64
lttv_traceset_position_get_timestamp(const LttvTracesetPosition
*pos
)
707 if(pos
->timestamp
== G_MAXUINT64
){
708 if(set_values_position(pos
) == 0){
713 return pos
->timestamp
;
716 int lttv_traceset_position_get_cpuid(const LttvTracesetPosition
*pos
){
717 if(pos
->cpu_id
== INT_MAX
){
718 if(set_values_position(pos
) == 0){
725 LttTime
lttv_traceset_position_get_time(const LttvTracesetPosition
*pos
)
727 return ltt_time_from_uint64(lttv_traceset_position_get_timestamp(pos
));
731 /* 0 if equals, other is different */
732 int lttv_traceset_position_compare(const LttvTracesetPosition
*pos1
, const LttvTracesetPosition
*pos2
)
734 #warning " TODO :Rename for lttv_traceset_position_equals && Must return COMPARAISON OF THE 2 POSITION && verify if it is the best way to compare position"
735 if(pos1
== NULL
|| pos2
== NULL
){
740 #ifdef HAVE_BT_ITER_EQUALS_POS
741 if(pos1
->timestamp
== G_MAXUINT64
|| pos2
->timestamp
== G_MAXUINT64
) {
742 res
= bt_iter_equals_pos(pos1
->bt_pos
, pos2
->bt_pos
);
747 guint64 timeStampPos1
,timeStampPos2
;
748 guint cpuId1
, cpuId2
;
750 timeStampPos1
= lttv_traceset_position_get_timestamp(pos1
);
751 timeStampPos2
= lttv_traceset_position_get_timestamp(pos2
);
753 if (timeStampPos1
== timeStampPos2
) {
755 cpuId1
= lttv_traceset_position_get_cpuid(pos1
);
756 cpuId2
= lttv_traceset_position_get_cpuid(pos2
);
758 if(cpuId1
== cpuId2
){
769 int lttv_traceset_position_time_compare(const LttvTracesetPosition
*pos1
,
770 const LttvTracesetPosition
*pos2
)
772 guint64 timeStampPos1
,timeStampPos2
;
774 timeStampPos1
= lttv_traceset_position_get_timestamp(pos1
);
775 timeStampPos2
= lttv_traceset_position_get_timestamp(pos2
);
777 return timeStampPos1
- timeStampPos2
;
779 int lttv_traceset_position_compare_current(const LttvTraceset
*ts
,
780 const LttvTracesetPosition
*pos
)
783 LttvTracesetPosition
*curPos
= lttv_traceset_create_current_position(ts
);
785 result
= lttv_traceset_position_compare(curPos
,pos
);
787 lttv_traceset_destroy_position(curPos
);
792 LttTime
lttv_traceset_get_current_time(const LttvTraceset
*ts
)
794 LttvTracesetPosition
*curPos
= lttv_traceset_create_current_position(ts
);
795 guint64 currentTimestamp
= lttv_traceset_position_get_timestamp(curPos
);
796 lttv_traceset_destroy_position(curPos
);
798 return ltt_time_from_uint64(currentTimestamp
);