X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=include%2Fbabeltrace%2Fctf-ir%2Fstream-internal.h;h=0e0e2498b4d43bf40c0303074a16cb845885b060;hb=0686ef9496b70a2b1e401375ca6ffd529c4b2a34;hp=daaa430b36572d3680b437a73d046800c2eaea5e;hpb=3f043b0587e8c2bc1f8921438c112e41fa54db8f;p=babeltrace.git diff --git a/include/babeltrace/ctf-ir/stream-internal.h b/include/babeltrace/ctf-ir/stream-internal.h index daaa430b..0e0e2498 100644 --- a/include/babeltrace/ctf-ir/stream-internal.h +++ b/include/babeltrace/ctf-ir/stream-internal.h @@ -27,7 +27,8 @@ * SOFTWARE. */ -#include +#include +#include #include #include #include @@ -35,33 +36,22 @@ #include #include -typedef void(*flush_func)(struct bt_ctf_stream *, void *); - -struct flush_callback { - flush_func func; - void *data; -}; - struct bt_ctf_stream { - struct bt_ctf_ref ref_count; + struct bt_object base; uint32_t id; struct bt_ctf_stream_class *stream_class; - struct flush_callback flush; + GString *name; + struct bt_ctf_field *packet_header; + struct bt_ctf_field *packet_context; + + /* Writer-specific members. */ /* Array of pointers to bt_ctf_event for the current packet */ GPtrArray *events; struct ctf_stream_pos pos; unsigned int flushed_packet_count; - uint64_t events_discarded; + uint64_t size; }; -BT_HIDDEN -struct bt_ctf_stream *bt_ctf_stream_create( - struct bt_ctf_stream_class *stream_class); - -BT_HIDDEN -int bt_ctf_stream_set_flush_callback(struct bt_ctf_stream *stream, - flush_func callback, void *data); - BT_HIDDEN int bt_ctf_stream_set_fd(struct bt_ctf_stream *stream, int fd);