Be more specific in the no SEEK_LAST fallback
[lttv.git] / lttv / lttv / traceset.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
4e4d11b3 19#ifdef HAVE_CONFIG_H
20#include <config.h>
21#endif
dc877563 22
23#include <lttv/traceset.h>
3e67c985 24#include <lttv/iattribute.h>
7a4bdb54 25#include <lttv/state.h>
9a366873 26#include <lttv/event.h>
7a4bdb54 27#include <lttv/hook.h>
f7afe191 28#include <stdio.h>
451aaf27 29#include <babeltrace/babeltrace.h>
cbb811b3 30#include <babeltrace/context.h>
451aaf27 31#include <babeltrace/ctf/iterator.h>
7a4bdb54 32#include <babeltrace/ctf/events.h>
3685e022 33
34/* To traverse a tree recursively */
35#include <fcntl.h>
36#include <fts.h>
451aaf27
FD
37/* For the use of realpath*/
38#include <limits.h>
39#include <stdlib.h>
40/* For strcpy*/
41#include <string.h>
3685e022 42
dc877563 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.
47*/
48
dc877563 49
7a4bdb54 50LttvTraceset *lttv_traceset_new(void)
dc877563 51{
9a366873
FD
52 LttvTraceset *ts;
53 struct bt_iter_pos begin_pos;
dc877563 54
9a366873
FD
55 ts = g_new(LttvTraceset, 1);
56 ts->filename = NULL;
57 ts->traces = g_ptr_array_new();
58 ts->context = bt_context_create();
59 ts->a = g_object_new(LTTV_ATTRIBUTE_TYPE, NULL);
7a4bdb54
YB
60 //TODO remove this when we have really mecanism
61 //s->tmpState = g_new(LttvTraceState *, 1);
62 //lttv_trace_state_init(s->tmpState,0);
7a4bdb54 63
9a366873
FD
64 /*Initialize iterator to the beginning of the traces*/
65 begin_pos.type = BT_SEEK_BEGIN;
66 ts->iter = bt_ctf_iter_create(ts->context, &begin_pos, NULL);
7a4bdb54 67
9a366873
FD
68 ts->event_hooks = lttv_hooks_new();
69
70 ts->state_trace_handle_index = g_ptr_array_new();
58b4e4ae 71 ts->has_precomputed_states = FALSE;
9a366873 72
eda74fe8
FD
73 ts->time_span.start_time = ltt_time_zero;
74 ts->time_span.end_time = ltt_time_zero;
762e15b0 75 lttv_traceset_get_time_span_real(ts);
9a366873 76 return ts;
dc877563 77}
78
49bf71b5 79char * lttv_traceset_name(LttvTraceset * s)
80{
90e19f82 81 return s->filename;
49bf71b5 82}
83
2bc1bcfb 84#ifdef BABEL_CLEANUP
85LttvTrace *lttv_trace_new(LttTrace *t)
308711e5 86{
90e19f82 87 LttvTrace *new_trace;
308711e5 88
90e19f82
AM
89 new_trace = g_new(LttvTrace, 1);
90 new_trace->a = g_object_new(LTTV_ATTRIBUTE_TYPE, NULL);
2bc1bcfb 91 new_trace->id = t;
90e19f82
AM
92 new_trace->ref_count = 0;
93 return new_trace;
308711e5 94}
2bc1bcfb 95#endif
451aaf27
FD
96/*
97 * get_absolute_pathname : Return the unique pathname in the system
98 *
99 * pathname is the relative path.
100 *
101 * abs_pathname is being set to the absolute path.
102 *
103 */
104void get_absolute_pathname(const gchar *pathname, gchar * abs_pathname)
105{
106 abs_pathname[0] = '\0';
107
108 if (realpath(pathname, abs_pathname) != NULL)
109 return;
110 else
111 {
112 /* error, return the original path unmodified */
113 strcpy(abs_pathname, pathname);
114 return;
115 }
116 return;
117}
118
119
308711e5 120
2bc1bcfb 121/*
122 * lttv_trace_create : Create a trace from a path
123 *
124 * ts is the traceset in which will be contained the trace
125 *
126 * path is the path where to find a trace. It is not recursive.
127 *
128 * This function is static since a trace should always be contained in a
129 * traceset.
130 *
131 * return the created trace or NULL on failure
132 */
133static LttvTrace *lttv_trace_create(LttvTraceset *ts, const char *path)
134{
9a366873
FD
135 int id = bt_context_add_trace(lttv_traceset_get_context(ts),
136 path,
137 "ctf",
138 NULL,
139 NULL,
140 NULL);
141 if (id < 0) {
142 return NULL;
143 }
144 // Create the trace and save the trace handle id returned by babeltrace
145 LttvTrace *new_trace;
2bc1bcfb 146
9a366873
FD
147 new_trace = g_new(LttvTrace, 1);
148 new_trace->a = g_object_new(LTTV_ATTRIBUTE_TYPE, NULL);
149 new_trace->id = id;
150 new_trace->ref_count = 0;
151 new_trace->traceset = ts;
152 new_trace->state = g_new(LttvTraceState,1);
153 lttv_trace_state_init(new_trace->state,new_trace);
115c78c2 154
9a366873
FD
155 /* Add the state to the trace_handle to state index */
156 g_ptr_array_set_size(ts->state_trace_handle_index,id+1);
157 g_ptr_array_index(ts->state_trace_handle_index,id) = new_trace->state;
115c78c2 158
9a366873 159 return new_trace;
2bc1bcfb 160}
161
162/*
163 * lttv_trace_create : Create and add a single trace to a traceset
164 *
165 * ts is the traceset in which will be contained the trace
166 *
167 * path is the path where to find a trace. It is not recursive.
168 *
169 * return a positive integer (>=0)on success or -1 on failure
170 */
171static int lttv_traceset_create_trace(LttvTraceset *ts, const char *path)
172{
9a366873
FD
173 LttvTrace *trace = lttv_trace_create(ts, path);
174 if (trace == NULL) {
175 return -1;
176 }
177 lttv_traceset_add(ts, trace);
178 return 0;
2bc1bcfb 179}
308711e5 180
f7afe191 181LttvTraceset *lttv_traceset_copy(LttvTraceset *s_orig)
182{
90e19f82
AM
183 guint i;
184 LttvTraceset *s;
185 LttvTrace * trace;
f7afe191 186
90e19f82
AM
187 s = g_new(LttvTraceset, 1);
188 s->filename = NULL;
189 s->traces = g_ptr_array_new();
115c78c2 190 s->state_trace_handle_index = g_ptr_array_new();
90e19f82
AM
191 for(i=0;i<s_orig->traces->len;i++)
192 {
193 trace = g_ptr_array_index(s_orig->traces, i);
194 trace->ref_count++;
2176f952 195
7a4bdb54 196 /* WARNING: this is an alias, not a copy. */
90e19f82 197 g_ptr_array_add(s->traces, trace);
115c78c2
YB
198
199 g_ptr_array_set_size(s->state_trace_handle_index,trace->id+1);
200 g_ptr_array_index(s->state_trace_handle_index,trace->id) = trace->state;
201
90e19f82 202 }
cbb811b3
YB
203 s->context = s_orig->context;
204 bt_context_get(s->context);
90e19f82
AM
205 s->a = LTTV_ATTRIBUTE(lttv_iattribute_deep_copy(LTTV_IATTRIBUTE(s_orig->a)));
206 return s;
f7afe191 207}
dc877563 208
f7afe191 209
210LttvTraceset *lttv_traceset_load(const gchar *filename)
211{
90e19f82
AM
212 LttvTraceset *s = g_new(LttvTraceset,1);
213 FILE *tf;
f7afe191 214
90e19f82
AM
215 s->filename = g_strdup(filename);
216 tf = fopen(filename,"r");
217
218 g_critical("NOT IMPLEMENTED : load traceset data from a XML file");
219
220 fclose(tf);
221 return s;
f7afe191 222}
223
224gint lttv_traceset_save(LttvTraceset *s)
225{
90e19f82 226 FILE *tf;
f7afe191 227
90e19f82 228 tf = fopen(s->filename, "w");
f7afe191 229
90e19f82
AM
230 g_critical("NOT IMPLEMENTED : save traceset data in a XML file");
231
232 fclose(tf);
233 return 0;
f7afe191 234}
308711e5 235
ba576a78 236void lttv_traceset_destroy(LttvTraceset *s)
dc877563 237{
90e19f82 238 guint i;
5e2c04a2 239
90e19f82
AM
240 for(i=0;i<s->traces->len;i++) {
241 LttvTrace *trace = g_ptr_array_index(s->traces, i);
242 lttv_trace_unref(trace);
2bc1bcfb 243 // todo mdenis 2012-03-27: uncomment when babeltrace gets fixed
244 //bt_context_remove_trace(lttv_traceset_get_context(s), trace->id);
90e19f82
AM
245 if(lttv_trace_get_ref_number(trace) == 0)
246 lttv_trace_destroy(trace);
247 }
248 g_ptr_array_free(s->traces, TRUE);
cbb811b3 249 bt_context_put(s->context);
90e19f82
AM
250 g_object_unref(s->a);
251 g_free(s);
dc877563 252}
253
922581a4
YB
254struct bt_context *lttv_traceset_get_context(LttvTraceset *s)
255{
256 return s->context;
257}
258
7a4bdb54
YB
259LttvTraceset *lttv_trace_get_traceset(LttvTrace *trace)
260{
261 return trace->traceset;
262}
263
264LttvHooks *lttv_traceset_get_hooks(LttvTraceset *s)
265{
266 return s->event_hooks;
267}
268
308711e5 269void lttv_trace_destroy(LttvTrace *t)
270{
90e19f82
AM
271 g_object_unref(t->a);
272 g_free(t);
308711e5 273}
274
308711e5 275void lttv_traceset_add(LttvTraceset *s, LttvTrace *t)
dc877563 276{
90e19f82
AM
277 t->ref_count++;
278 g_ptr_array_add(s->traces, t);
dc877563 279}
280
3685e022 281int lttv_traceset_add_path(LttvTraceset *ts, char *trace_path)
2bc1bcfb 282{
3685e022 283 FTS *tree;
284 FTSENT *node;
285 char * const paths[2] = { trace_path, NULL };
286 int ret = -1;
861fbe5f
FD
287
288 gboolean metaFileFound = FALSE;
451aaf27 289
3685e022 290 tree = fts_open(paths, FTS_NOCHDIR | FTS_LOGICAL, 0);
291 if (tree == NULL) {
292 g_warning("Cannot traverse \"%s\" for reading.\n",
293 trace_path);
294 return ret;
295 }
296
297 int dirfd, metafd;
298 while ((node = fts_read(tree))) {
299
300 if (!(node->fts_info & FTS_D))
301 continue;
302
303 dirfd = open(node->fts_accpath, 0);
304 if (dirfd < 0) {
305 g_warning("Unable to open trace "
306 "directory file descriptor : %s.", node->fts_accpath);
307 ret = dirfd;
308 goto error;
309 }
310
311 // Check if a metadata file exists in the current directory
312 metafd = openat(dirfd, "metadata", O_RDONLY);
313 if (metafd < 0) {
314 ret = close(dirfd);
315 if (ret < 0) {
316 g_warning("Unable to open metadata "
317 "file descriptor : %s.", node->fts_accpath);
318 goto error;
319 }
320 } else {
321 ret = close(metafd);
322 if (ret < 0) {
323 g_warning("Unable to close metadata "
324 "file descriptor : %s.", node->fts_accpath);
325 goto error;
326 }
327 ret = close(dirfd);
328 if (ret < 0) {
329 g_warning("Unable to close trace "
330 "directory file descriptor : %s.", node->fts_accpath);
331 goto error;
332 }
333
334 ret = lttv_traceset_create_trace(ts, node->fts_accpath);
335 if (ret < 0) {
336 g_warning("Opening trace \"%s\" from %s "
337 "for reading.", node->fts_accpath, trace_path);
338 goto error;
339 }
861fbe5f 340 metaFileFound = TRUE;
3685e022 341 }
342 }
343
344error:
345 ret = fts_close(tree);
346 if (ret < 0) {
347 g_warning("Unable to close tree "
348 "file descriptor : %s.", trace_path);
349 }
861fbe5f
FD
350 if(metaFileFound)
351 return ret;
352 else
353 return -1;
2bc1bcfb 354}
dc877563 355
861fbe5f 356
dc877563 357unsigned lttv_traceset_number(LttvTraceset *s)
358{
90e19f82 359 return s->traces->len;
dc877563 360}
361
362
308711e5 363LttvTrace *lttv_traceset_get(LttvTraceset *s, unsigned i)
dc877563 364{
90e19f82
AM
365 g_assert(s->traces->len > i);
366 return ((LttvTrace *)s->traces->pdata[i]);
dc877563 367}
368
369
ba576a78 370void lttv_traceset_remove(LttvTraceset *s, unsigned i)
dc877563 371{
90e19f82
AM
372 LttvTrace * t;
373 g_assert(s->traces->len > i);
374 t = (LttvTrace *)s->traces->pdata[i];
375 t->ref_count--;
2bc1bcfb 376 bt_context_remove_trace(lttv_traceset_get_context(s), t->id);
90e19f82 377 g_ptr_array_remove_index(s->traces, i);
dc877563 378}
379
380
381/* A set of attributes is attached to each trace set, trace and tracefile
90e19f82 382 to store user defined data as needed. */
dc877563 383
384LttvAttribute *lttv_traceset_attribute(LttvTraceset *s)
385{
90e19f82 386 return s->a;
dc877563 387}
388
389
308711e5 390LttvAttribute *lttv_trace_attribute(LttvTrace *t)
391{
90e19f82 392 return t->a;
308711e5 393}
394
2bc1bcfb 395
396gint lttv_trace_get_id(LttvTrace *t)
397{
9a366873 398 return t->id;
2bc1bcfb 399}
308711e5 400
2176f952 401guint lttv_trace_get_ref_number(LttvTrace * t)
402{
2bc1bcfb 403 // todo mdenis: adapt to babeltrace
90e19f82 404 return t->ref_count;
2176f952 405}
a43d67ba 406
407guint lttv_trace_ref(LttvTrace * t)
408{
90e19f82
AM
409 t->ref_count++;
410
411 return t->ref_count;
a43d67ba 412}
413
414guint lttv_trace_unref(LttvTrace * t)
415{
90e19f82
AM
416 if(likely(t->ref_count > 0))
417 t->ref_count--;
a43d67ba 418
90e19f82 419 return t->ref_count;
a43d67ba 420}
421
7a4bdb54
YB
422guint lttv_trace_get_num_cpu(LttvTrace *t)
423{
424#warning "TODO - Set the right number of CPU"
425 return 24;
426}
427
68573dd0 428LttvTracesetPosition *lttv_traceset_create_current_position(LttvTraceset *traceset)
7a4bdb54 429{
3d1e7ee5
YB
430 LttvTracesetPosition *traceset_pos;
431
432 traceset_pos = g_new(LttvTracesetPosition, 1);
433
9a366873 434 /* Check if the new passed */
3d1e7ee5
YB
435 if(traceset_pos == NULL) {
436 return NULL;
437 }
438
439 traceset_pos->iter = traceset->iter;
440 traceset_pos->bt_pos = bt_iter_get_pos(bt_ctf_get_iter(traceset->iter));
c73ce169
FD
441 traceset_pos->timestamp = G_MAXUINT64;
442 traceset_pos->cpu_id = INT_MAX;
443
3d1e7ee5 444 return traceset_pos;
7a4bdb54
YB
445}
446
9a366873
FD
447LttvTracesetPosition *lttv_traceset_create_time_position(LttvTraceset *traceset,
448 LttTime timestamp)
449{
450 LttvTracesetPosition *traceset_pos;
451
452 traceset_pos = g_new(LttvTracesetPosition, 1);
453
454 /* Check if the new passed */
455 if(traceset_pos == NULL) {
456 return NULL;
457 }
458
459 traceset_pos->iter = traceset->iter;
c73ce169 460 traceset_pos->bt_pos = bt_iter_create_time_pos(
9a366873
FD
461 bt_ctf_get_iter(traceset_pos->iter),
462 ltt_time_to_uint64(timestamp));
c73ce169
FD
463 traceset_pos->timestamp = G_MAXUINT64;
464 traceset_pos->cpu_id = INT_MAX;
9a366873
FD
465 return traceset_pos;
466}
467
7a4bdb54
YB
468void lttv_traceset_destroy_position(LttvTracesetPosition *traceset_pos)
469{
3d1e7ee5
YB
470 bt_iter_free_pos(traceset_pos->bt_pos);
471 g_free(traceset_pos);
7a4bdb54
YB
472}
473
9a366873 474void lttv_traceset_seek_to_position(const LttvTracesetPosition *traceset_pos)
7a4bdb54 475{
9a366873 476 bt_iter_set_pos(bt_ctf_get_iter(traceset_pos->iter), traceset_pos->bt_pos);
7a4bdb54
YB
477}
478
479guint lttv_traceset_get_cpuid_from_event(LttvEvent *event)
480{
7a4bdb54
YB
481 unsigned long timestamp;
482 unsigned int cpu_id;
483
484 struct bt_ctf_event *ctf_event = event->bt_event;
485 timestamp = bt_ctf_get_timestamp(ctf_event);
486 if (timestamp == -1ULL) {
487 return 0;
488 }
9a366873 489 const struct definition *scope = bt_ctf_get_top_level_scope(ctf_event, BT_STREAM_PACKET_CONTEXT);
7a4bdb54
YB
490 if (bt_ctf_field_get_error()) {
491 return 0;
492 }
493 cpu_id = bt_ctf_get_uint64(bt_ctf_get_field(ctf_event, scope, "cpu_id"));
494 if (bt_ctf_field_get_error()) {
495 return 0;
496 } else {
497 return cpu_id;
498 }
499}
9a366873
FD
500
501guint64 lttv_traceset_get_timestamp_first_event(LttvTraceset *ts)
502{
503 LttvTracesetPosition begin_position;
504 struct bt_iter_pos pos;
505 begin_position.bt_pos = &pos;
c73ce169
FD
506 begin_position.timestamp = G_MAXUINT64;
507 begin_position.cpu_id = INT_MAX;
9a366873
FD
508
509 /* Assign iterator to the beginning of the traces */
510 begin_position.bt_pos->type = BT_SEEK_BEGIN;
511 begin_position.iter = ts->iter;
512
513 return lttv_traceset_position_get_timestamp(&begin_position);
514}
515
8924e3e4
FD
516guint64 lttv_traceset_get_timestamp_last_event(LttvTraceset *ts)
517{
518 LttvTracesetPosition last_position;
519 struct bt_iter_pos pos;
520 last_position.bt_pos = &pos;
521 last_position.timestamp = G_MAXUINT64;
522 last_position.cpu_id = INT_MAX;
979bddf1 523#ifdef BABEL_HAS_SEEK_LAST
8924e3e4
FD
524 /* Assign iterator to the last event of the traces */
525 last_position.bt_pos->type = BT_SEEK_LAST;
526 last_position.iter = ts->iter;
979bddf1 527#endif
8924e3e4
FD
528 return lttv_traceset_position_get_timestamp(&last_position);
529}
530
451aaf27
FD
531/*
532 * lttv_traceset_get_timestamp_begin : returns the minimum timestamp of
533 * all the traces in the traceset.
534 *
535 */
451aaf27
FD
536guint64 lttv_traceset_get_timestamp_begin(LttvTraceset *traceset)
537{
9a366873
FD
538 struct bt_context *bt_ctx;
539 bt_ctx = lttv_traceset_get_context(traceset);
540 guint64 timestamp_min, timestamp_cur = 0;
541 int i;
542 int trace_count;
543 LttvTrace *currentTrace;
544 trace_count = traceset->traces->len;
545 if(trace_count == 0)
546 timestamp_min = 0;
547 else{
548 timestamp_min = G_MAXUINT64;
549 for(i = 0; i < trace_count;i++)
550 {
551 currentTrace = g_ptr_array_index(traceset->traces,i);
552 timestamp_cur = bt_trace_handle_get_timestamp_begin(bt_ctx,
762e15b0
FD
553 currentTrace->id,
554 BT_CLOCK_REAL);
9a366873
FD
555 if(timestamp_cur < timestamp_min)
556 timestamp_min = timestamp_cur;
557 }
558 }
559 return timestamp_min;
451aaf27
FD
560}
561
562/*
563 * lttv_traceset_get_timestamp_end: returns the maximum timestamp of
564 * all the traces in the traceset.
565 *
566 */
567guint64 lttv_traceset_get_timestamp_end(LttvTraceset *traceset)
568{
9a366873
FD
569 struct bt_context *bt_ctx;
570 bt_ctx = lttv_traceset_get_context(traceset);
571 guint64 timestamp_max, timestamp_cur = 0;
572 int i;
573 int trace_count;
574 LttvTrace *currentTrace;
575 trace_count = traceset->traces->len;
576
577 if(trace_count == 0){
578 timestamp_max = 1;
579 }
580 else{
581 timestamp_max = 0;
582 for(i =0; i < trace_count;i++)
583 {
584 currentTrace = g_ptr_array_index(traceset->traces,i);
585 timestamp_cur = bt_trace_handle_get_timestamp_end(bt_ctx,
762e15b0
FD
586 currentTrace->id,
587 BT_CLOCK_REAL);
9a366873
FD
588 if(timestamp_cur > timestamp_max){
589 timestamp_max = timestamp_cur;
590 }
591 }
592 }
593 return timestamp_max;
594}
595/*
596 * lttv_traceset_get_time_span_real : return a TimeInterval representing the
8924e3e4 597 * minimum timestamp and the maximum timestamp of the traceset.
9a366873
FD
598 *
599 */
600TimeInterval lttv_traceset_get_time_span_real(LttvTraceset *ts)
601{
b9410cf1 602
979bddf1 603
8924e3e4 604 if(ltt_time_compare(ts->time_span.start_time,
eda74fe8 605 ltt_time_zero) == 0 && ts->traces->len > 0){
8924e3e4
FD
606 ts->time_span.start_time = ltt_time_from_uint64(
607 lttv_traceset_get_timestamp_first_event(ts));
b9410cf1 608#ifdef BABEL_HAS_SEEK_LAST
8924e3e4 609 ts->time_span.end_time = ltt_time_from_uint64(
762e15b0 610 lttv_traceset_get_timestamp_end(ts));
979bddf1 611#else
b9410cf1 612 ts->time_span.end_time = lttv_traceset_get_time_span(ts).end_time;
979bddf1 613#endif
b9410cf1
YB
614 }
615 return ts->time_span;
9aaa78dc
FD
616}
617
618/*
619 * lttv_traceset_get_time_span : return a TimeInterval representing the
8924e3e4 620 * minimum timestamp and the maximum timestamp of the traceset.
9aaa78dc
FD
621 *
622 */
623TimeInterval lttv_traceset_get_time_span(LttvTraceset *ts)
624{
eda74fe8 625 if(ltt_time_compare(ts->time_span.start_time, ltt_time_zero) == 0){
8924e3e4
FD
626 ts->time_span.start_time =ltt_time_from_uint64(
627 lttv_traceset_get_timestamp_begin(ts));
628 ts->time_span.end_time = ltt_time_from_uint64(
629 lttv_traceset_get_timestamp_end(ts));
630 }
631 return ts->time_span;
451aaf27 632}
7a4bdb54
YB
633
634const char *lttv_traceset_get_name_from_event(LttvEvent *event)
635{
636 return bt_ctf_event_name(event->bt_event);
637}
9a366873 638
c73ce169
FD
639int set_values_position(const LttvTracesetPosition *pos)
640{
641 LttvTracesetPosition previous_pos;
642 previous_pos.iter = pos->iter;
643 previous_pos.bt_pos = bt_iter_get_pos(bt_ctf_get_iter(pos->iter));
9a366873 644 /* Seek to the new desired position */
c73ce169 645 lttv_traceset_seek_to_position(pos);
9a366873 646 /*Read the event*/
c73ce169
FD
647 struct bt_ctf_event *event = bt_ctf_iter_read_event(pos->iter);
648
9a366873 649 if(event != NULL){
762e15b0 650 ((LttvTracesetPosition *)pos)->timestamp = bt_ctf_get_timestamp(event);
c73ce169
FD
651
652 LttvEvent lttv_event;
653 lttv_event.bt_event = event;
654 ((LttvTracesetPosition *)pos)->cpu_id = lttv_traceset_get_cpuid_from_event(&lttv_event);
655 }
656 else {
657 /* The event is null */
658 return 0;
9a366873 659 }
c73ce169
FD
660
661 /* Reassign the previously saved position */
662 lttv_traceset_seek_to_position(&previous_pos);
663 /*We must desallocate because the function bt_iter_get_pos() does a g_new */
664 bt_iter_free_pos(previous_pos.bt_pos);
762e15b0 665 return 1;
c73ce169
FD
666}
667
668guint64 lttv_traceset_position_get_timestamp(const LttvTracesetPosition *pos)
669{
670 if(pos->timestamp == G_MAXUINT64){
671 if(set_values_position(pos) == 0){
672 return 0;
673 }
674 }
675
676 return pos->timestamp;
677}
678
679int lttv_traceset_position_get_cpuid(const LttvTracesetPosition *pos){
680 if(pos->cpu_id == INT_MAX ){
681 if(set_values_position(pos) == 0){
682 return 0;
683 }
684 }
685 return pos->cpu_id;
9a366873
FD
686}
687
688LttTime lttv_traceset_position_get_time(const LttvTracesetPosition *pos)
689{
690 return ltt_time_from_uint64(lttv_traceset_position_get_timestamp(pos));
691}
692
ff5c41f1
YB
693
694
9a366873
FD
695int lttv_traceset_position_compare(const LttvTracesetPosition *pos1, const LttvTracesetPosition *pos2)
696{
697#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"
698 if(pos1 == NULL || pos2 == NULL){
699 return -1;
700 }
701
702 guint64 timeStampPos1,timeStampPos2;
703 guint cpuId1, cpuId2;
9a366873
FD
704
705 timeStampPos1 = lttv_traceset_position_get_timestamp(pos1);
706 timeStampPos2 = lttv_traceset_position_get_timestamp(pos2);
707
9a366873 708
c73ce169
FD
709 cpuId1 = lttv_traceset_position_get_cpuid(pos1);
710 cpuId2 = lttv_traceset_position_get_cpuid(pos2);
9a366873
FD
711
712 if(timeStampPos1 == timeStampPos2 && cpuId1 == cpuId2){
713 return 0;
714 }
715 else{
716 return 1;
717 }
718}
ff5c41f1
YB
719
720int lttv_traceset_position_time_compare(const LttvTracesetPosition *pos1,
721 const LttvTracesetPosition *pos2)
722{
723 guint64 timeStampPos1,timeStampPos2;
724
725 timeStampPos1 = lttv_traceset_position_get_timestamp(pos1);
726 timeStampPos2 = lttv_traceset_position_get_timestamp(pos2);
727
728 return timeStampPos1 - timeStampPos2;
729}
730int lttv_traceset_position_compare_current(const LttvTraceset *ts,
731 const LttvTracesetPosition *pos)
732{
733 int result = 0;
734 LttvTracesetPosition *curPos = lttv_traceset_create_current_position(ts);
735
736 result = lttv_traceset_position_compare(curPos,pos);
737
738 lttv_traceset_destroy_position(curPos);
739
740 return result;
741}
742
743LttTime lttv_traceset_get_current_time(const LttvTraceset *ts)
744{
745 LttvTracesetPosition *curPos = lttv_traceset_create_current_position(ts);
746 guint64 currentTimestamp = lttv_traceset_position_get_timestamp(curPos);
747 lttv_traceset_destroy_position(curPos);
748
749 return ltt_time_from_uint64(currentTimestamp);
750}
This page took 0.102486 seconds and 4 git commands to generate.