tap-driver.sh: flush stdout after each test result
[babeltrace.git] / plugins / ctf / fs-src / fs.h
index ed65aa3c446fe21864f9e73e0fcd2ec36a61872c..9e9ee84d86fa91fcaac3e267a29b632d2743e42a 100644 (file)
@@ -29,8 +29,8 @@
  */
 
 #include <stdbool.h>
-#include <babeltrace/babeltrace-internal.h>
-#include <babeltrace/babeltrace.h>
+#include <babeltrace2/babeltrace-internal.h>
+#include <babeltrace2/babeltrace.h>
 #include "data-stream-file.h"
 #include "metadata.h"
 #include "../common/metadata/decoder.h"
@@ -99,6 +99,31 @@ struct ctf_fs_trace {
        uint64_t next_stream_id;
 };
 
+struct ctf_fs_ds_index_entry {
+       /* Position, in bytes, of the packet from the beginning of the file. */
+       uint64_t offset;
+
+       /* Size of the packet, in bytes. */
+       uint64_t packet_size;
+
+       /*
+        * Extracted from the packet context, relative to the respective fields'
+        * mapped clock classes (in cycles).
+        */
+       uint64_t timestamp_begin, timestamp_end;
+
+       /*
+        * Converted from the packet context, relative to the trace's EPOCH
+        * (in ns since EPOCH).
+        */
+       int64_t timestamp_begin_ns, timestamp_end_ns;
+};
+
+struct ctf_fs_ds_index {
+       /* Array of pointer to struct ctf_fs_fd_index_entry. */
+       GPtrArray *entries;
+};
+
 struct ctf_fs_ds_file_group {
        /*
         * Array of struct ctf_fs_ds_file_info, owned by this.
@@ -122,6 +147,16 @@ struct ctf_fs_ds_file_group {
 
        /* Weak, belongs to component */
        struct ctf_fs_trace *ctf_fs_trace;
+
+       /*
+        * Owned by this. May be NULL.
+        *
+        * A stream cannot be assumed to be indexed as the indexing might have
+        * been skipped. Moreover, the index's fields may not all be available
+        * depending on the producer (e.g. timestamp_begin/end are not
+        * mandatory).
+        */
+       struct ctf_fs_ds_index *index;
 };
 
 struct ctf_fs_port_data {
This page took 0.023648 seconds and 4 git commands to generate.