Change "handler" terminology to the more specific listener
[babeltrace.git] / include / babeltrace / ctf-ir / trace-internal.h
index 4a76c1a187819342ea04268a6db8b69a37dc0c61..2ea7109788e533128cc7cd47d386a210275dc300 100644 (file)
  */
 
 #include <babeltrace/ctf-ir/trace.h>
-#include <babeltrace/ctf-ir/event-types.h>
-#include <babeltrace/ctf-ir/event-fields.h>
-#include <babeltrace/ctf-ir/common-internal.h>
+#include <babeltrace/ctf-ir/field-types.h>
+#include <babeltrace/ctf-ir/fields.h>
+#include <babeltrace/object-internal.h>
 #include <babeltrace/babeltrace-internal.h>
-#include <babeltrace/objects.h>
+#include <babeltrace/values.h>
 #include <glib.h>
 #include <sys/types.h>
 #include <uuid/uuid.h>
@@ -48,16 +48,24 @@ enum field_type_alias {
 };
 
 struct bt_ctf_trace {
-       struct bt_ctf_base base;
+       struct bt_object base;
        int frozen;
        uuid_t uuid;
        int byte_order; /* A value defined in Babeltrace's "endian.h" */
-       struct bt_object *environment;
+       struct bt_value *environment;
        GPtrArray *clocks; /* Array of pointers to bt_ctf_clock */
        GPtrArray *stream_classes; /* Array of ptrs to bt_ctf_stream_class */
        GPtrArray *streams; /* Array of ptrs to bt_ctf_stream */
        struct bt_ctf_field_type *packet_header_type;
        uint64_t next_stream_id;
+       int is_created_by_writer;
+
+       /*
+        * This flag indicates if the trace is valid. A valid
+        * trace is _always_ frozen.
+        */
+       int valid;
+       GPtrArray *listeners; /* Array of struct listener_wrapper */
 };
 
 struct metadata_context {
This page took 0.025621 seconds and 4 git commands to generate.