Notification iterator: transform precondition checks to BT_ASSERT_PRE()
[babeltrace.git] / include / babeltrace / ctf-ir / stream-internal.h
index c101236e275a96a4cbf9a268903b791b955e9136..3214c1653c09073b79019712f6b8193b35a0a124 100644 (file)
 #include <babeltrace/ctf-writer/event-types.h>
 #include <babeltrace/ctf-writer/serialize-internal.h>
 #include <babeltrace/babeltrace-internal.h>
+#include <babeltrace/assert-internal.h>
 #include <glib.h>
 
-struct bt_ctf_stream {
+struct bt_port;
+struct bt_component;
+
+typedef void (*bt_stream_destroy_listener_func)(
+               struct bt_stream *stream, void *data);
+
+struct bt_stream_destroy_listener {
+       bt_stream_destroy_listener_func func;
+       void *data;
+};
+
+struct bt_stream {
        struct bt_object base;
-       uint32_t id;
-       struct bt_ctf_stream_class *stream_class;
+       int64_t id;
+       struct bt_stream_class *stream_class;
        GString *name;
-       struct bt_ctf_field *packet_header;
-       struct bt_ctf_field *packet_context;
+       struct bt_field *packet_header;
+       struct bt_field *packet_context;
 
        /* Writer-specific members. */
-       /* Array of pointers to bt_ctf_event for the current packet */
+       /* Array of pointers to bt_event for the current packet */
        GPtrArray *events;
-       struct bt_ctf_stream_pos pos;
+       struct bt_stream_pos pos;
        unsigned int flushed_packet_count;
+       uint64_t discarded_events;
        uint64_t size;
+       uint64_t last_ts_end;
+
+       /* Array of struct bt_stream_destroy_listener */
+       GArray *destroy_listeners;
 };
 
 BT_HIDDEN
-int bt_ctf_stream_set_fd(struct bt_ctf_stream *stream, int fd);
+int bt_stream_set_fd(struct bt_stream *stream, int fd);
+
+BT_HIDDEN
+void bt_stream_add_destroy_listener(struct bt_stream *stream,
+               bt_stream_destroy_listener_func func, void *data);
+
+BT_HIDDEN
+void bt_stream_remove_destroy_listener(struct bt_stream *stream,
+               bt_stream_destroy_listener_func func, void *data);
+
+static inline
+struct bt_stream_class *bt_stream_borrow_stream_class(
+               struct bt_stream *stream)
+{
+       BT_ASSERT(stream);
+       return stream->stream_class;
+}
 
 #endif /* BABELTRACE_CTF_WRITER_STREAM_INTERNAL_H */
This page took 0.049183 seconds and 4 git commands to generate.