API : export the offsetted timestamp
authorSigned-off-by: Julien Desfossez <julien.desfossez@efficios.com>
Thu, 23 Feb 2012 12:37:06 +0000 (07:37 -0500)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Thu, 23 Feb 2012 12:37:06 +0000 (07:37 -0500)
We export now the offsetted view of the timestamp as well as the raw
timestamp to the users.

Signed-off-by: Julien Desfossez <julien.desfossez@efficios.com>
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
formats/ctf/events.c
include/babeltrace/ctf/events.h

index 22623aa52455a425427f61360508c34daaf64ebd..d14836b07135e25a447e23b68dd4c42e4f5229d6 100644 (file)
@@ -317,12 +317,39 @@ error:
        return -1;
 }
 
-uint64_t bt_ctf_get_timestamp(struct bt_ctf_event *event)
+uint64_t bt_ctf_get_timestamp_raw(struct bt_ctf_event *event)
 {
        if (event && event->stream->has_timestamp)
                return event->stream->timestamp;
        else
-               return 0;
+               return -1ULL;
+}
+
+uint64_t bt_ctf_get_timestamp(struct bt_ctf_event *event)
+{
+       uint64_t ts_nsec;
+       struct ctf_trace *trace;
+       struct trace_collection *tc;
+       uint64_t tc_offset;
+       uint64_t timestamp;
+
+       if (!event->stream->has_timestamp) {
+               return -1ULL;
+       }
+
+       trace = event->stream->stream_class->trace;
+       tc = trace->collection;
+       tc_offset = tc->single_clock_offset_avg;
+       timestamp = event->stream->timestamp;
+       if (event->stream->current_clock->freq == 1000000000ULL) {
+               ts_nsec = timestamp;
+       } else {
+               ts_nsec = (uint64_t) ((double) timestamp * 1000000000.0
+                               / (double) event->stream->current_clock->freq);
+       }
+       ts_nsec += tc_offset;
+
+       return ts_nsec;
 }
 
 static void bt_ctf_field_set_error(int error)
index c08314f8775bbb6d0418b9f7011ccc0c30fb04f1..01ee7a99dbd35c97d1ee2dd6119a67736719ea57 100644 (file)
@@ -123,7 +123,14 @@ struct definition *bt_ctf_get_top_level_scope(struct bt_ctf_event *event,
 const char *bt_ctf_event_name(struct bt_ctf_event *event);
 
 /*
- * bt_ctf_get_timestamp: returns the timestamp of the event or -1ULL on error
+ * bt_ctf_get_timestamp_raw: returns the timestamp of the event as written in
+ * the packet or -1ULL on error
+ */
+uint64_t bt_ctf_get_timestamp_raw(struct bt_ctf_event *event);
+
+/*
+ * bt_ctf_get_timestamp: returns the timestamp of the event offsetted with the
+ * system clock source or -1ULL on error
  */
 uint64_t bt_ctf_get_timestamp(struct bt_ctf_event *event);
 
This page took 0.025625 seconds and 4 git commands to generate.