Make API CTF-agnostic
[babeltrace.git] / include / babeltrace / ctf-ir / stream-internal.h
index 3214c1653c09073b79019712f6b8193b35a0a124..0cbd18b561539217621099ac837370d2f625dc74 100644 (file)
@@ -1,5 +1,5 @@
-#ifndef BABELTRACE_CTF_WRITER_STREAM_INTERNAL_H
-#define BABELTRACE_CTF_WRITER_STREAM_INTERNAL_H
+#ifndef BABELTRACE_CTF_IR_STREAM_INTERNAL_H
+#define BABELTRACE_CTF_IR_STREAM_INTERNAL_H
 
 /*
  * BabelTrace - CTF Writer: Stream internal
  */
 
 #include <babeltrace/ctf-ir/stream.h>
+#include <babeltrace/ctf-ir/utils-internal.h>
 #include <babeltrace/object-internal.h>
-#include <babeltrace/ctf-writer/clock.h>
-#include <babeltrace/ctf-writer/event-fields.h>
-#include <babeltrace/ctf-writer/event-types.h>
-#include <babeltrace/ctf-writer/serialize-internal.h>
+#include <babeltrace/object-pool-internal.h>
 #include <babeltrace/babeltrace-internal.h>
-#include <babeltrace/assert-internal.h>
 #include <glib.h>
 
-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_class;
+struct bt_stream;
 
 struct bt_stream {
        struct bt_object base;
-       int64_t id;
-       struct bt_stream_class *stream_class;
-       GString *name;
-       struct bt_field *packet_header;
-       struct bt_field *packet_context;
 
-       /* Writer-specific members. */
-       /* Array of pointers to bt_event for the current packet */
-       GPtrArray *events;
-       struct bt_stream_pos pos;
-       unsigned int flushed_packet_count;
-       uint64_t discarded_events;
-       uint64_t size;
-       uint64_t last_ts_end;
+       /* Weak: parent is this class's trace */
+       struct bt_stream_class *class;
 
-       /* Array of struct bt_stream_destroy_listener */
-       GArray *destroy_listeners;
-};
+       struct {
+               GString *str;
 
-BT_HIDDEN
-int bt_stream_set_fd(struct bt_stream *stream, int fd);
+               /* NULL or `str->str` above */
+               const char *value;
+       } name;
 
-BT_HIDDEN
-void bt_stream_add_destroy_listener(struct bt_stream *stream,
-               bt_stream_destroy_listener_func func, void *data);
+       uint64_t id;
+
+       /* Pool of `struct bt_packet *` */
+       struct bt_object_pool packet_pool;
+
+       bool frozen;
+};
 
 BT_HIDDEN
-void bt_stream_remove_destroy_listener(struct bt_stream *stream,
-               bt_stream_destroy_listener_func func, void *data);
+void _bt_stream_freeze(struct bt_stream *stream);
 
-static inline
-struct bt_stream_class *bt_stream_borrow_stream_class(
-               struct bt_stream *stream)
-{
-       BT_ASSERT(stream);
-       return stream->stream_class;
-}
+#ifdef BT_DEV_MODE
+# define bt_stream_freeze              _bt_stream_freeze
+#else
+# define bt_stream_freeze(_stream)
+#endif
 
-#endif /* BABELTRACE_CTF_WRITER_STREAM_INTERNAL_H */
+#endif /* BABELTRACE_CTF_IR_STREAM_INTERNAL_H */
This page took 0.026922 seconds and 4 git commands to generate.