ctfser: have dedicated signed/unsigned integer writing functions
[babeltrace.git] / plugins / ctf / fs-sink / writer.h
index 07e8674affe9eaae2595140bf8ea47061b8a8e58..34f54ae71bd57967fbf51625f475bc1c9eda6c2e 100644 (file)
@@ -36,10 +36,10 @@ struct writer_component {
        GString *trace_name_base;
        /* For the directory name suffix. */
        int trace_id;
-       /* Map between struct bt_ctf_trace and struct fs_writer. */
+       /* Map between bt_trace and struct fs_writer. */
        GHashTable *trace_map;
        FILE *err;
-       struct bt_notification_iterator *input_iterator;
+       bt_message_iterator *input_iterator;
        bool error;
        bool single_trace;
        unsigned int nr_traces;
@@ -48,7 +48,7 @@ struct writer_component {
 enum fs_writer_stream_state {
        /*
         * We know the stream exists but we have never received a
-        * stream_begin notification for it.
+        * stream_begin message for it.
         */
        FS_WRITER_UNKNOWN_STREAM,
        /* We know this stream is active (between stream_begin and _end). */
@@ -59,8 +59,8 @@ enum fs_writer_stream_state {
 
 struct fs_writer {
        struct bt_ctf_writer *writer;
-       struct bt_ctf_trace *trace;
-       struct bt_ctf_trace *writer_trace;
+       const bt_trace *trace;
+       const bt_trace *writer_trace;
        struct writer_component *writer_component;
        int static_listener_id;
        int trace_static;
@@ -75,36 +75,36 @@ BT_HIDDEN
 void writer_close(struct writer_component *writer_component,
                struct fs_writer *fs_writer);
 BT_HIDDEN
-enum bt_component_status writer_output_event(struct writer_component *writer,
-               struct bt_ctf_event *event);
+bt_component_status writer_output_event(struct writer_component *writer,
+               const bt_event *event);
 BT_HIDDEN
-enum bt_component_status writer_new_packet(struct writer_component *writer,
-               struct bt_ctf_packet *packet);
+bt_component_status writer_new_packet(struct writer_component *writer,
+               const bt_packet *packet);
 BT_HIDDEN
-enum bt_component_status writer_close_packet(struct writer_component *writer,
-               struct bt_ctf_packet *packet);
+bt_component_status writer_close_packet(struct writer_component *writer,
+               const bt_packet *packet);
 BT_HIDDEN
-enum bt_component_status writer_stream_begin(struct writer_component *writer,
-               struct bt_ctf_stream *stream);
+bt_component_status writer_stream_begin(struct writer_component *writer,
+               const bt_stream *stream);
 BT_HIDDEN
-enum bt_component_status writer_stream_end(struct writer_component *writer,
-               struct bt_ctf_stream *stream);
+bt_component_status writer_stream_end(struct writer_component *writer,
+               const bt_stream *stream);
 
 BT_HIDDEN
-enum bt_component_status writer_component_init(
-       struct bt_private_component *component, struct bt_value *params,
+bt_component_status writer_component_init(
+       bt_self_component *component, bt_value *params,
        void *init_method_data);
 
 BT_HIDDEN
-enum bt_component_status writer_run(struct bt_private_component *component);
+bt_component_status writer_run(bt_self_component *component);
 
 BT_HIDDEN
 void writer_component_port_connected(
-               struct bt_private_component *component,
+               bt_self_component *component,
                struct bt_private_port *self_port,
-               struct bt_port *other_port);
+               const bt_port *other_port);
 
 BT_HIDDEN
-void writer_component_finalize(struct bt_private_component *component);
+void writer_component_finalize(bt_self_component *component);
 
 #endif /* BABELTRACE_PLUGIN_WRITER_H */
This page took 0.025595 seconds and 4 git commands to generate.