src.ctf.fs: implement "seek beginning" method
[babeltrace.git] / plugins / ctf / fs-src / fs.c
index 24bfa04a5ebeaa605e8245b770c0b33bf40173c6..6260a24899b99cdb0f8f9aff8b690fcaeb20e750 100644 (file)
@@ -37,7 +37,7 @@
 #include "data-stream-file.h"
 #include "file.h"
 #include "../common/metadata/decoder.h"
-#include "../common/notif-iter/notif-iter.h"
+#include "../common/msg-iter/msg-iter.h"
 #include "../common/utils/utils.h"
 #include "query.h"
 
 #include "logging.h"
 
 static
-int notif_iter_data_set_current_ds_file(struct ctf_fs_notif_iter_data *notif_iter_data)
+int msg_iter_data_set_current_ds_file(struct ctf_fs_msg_iter_data *msg_iter_data)
 {
        struct ctf_fs_ds_file_info *ds_file_info;
        int ret = 0;
 
-       BT_ASSERT(notif_iter_data->ds_file_info_index <
-               notif_iter_data->ds_file_group->ds_file_infos->len);
+       BT_ASSERT(msg_iter_data->ds_file_info_index <
+               msg_iter_data->ds_file_group->ds_file_infos->len);
        ds_file_info = g_ptr_array_index(
-               notif_iter_data->ds_file_group->ds_file_infos,
-               notif_iter_data->ds_file_info_index);
-
-       ctf_fs_ds_file_destroy(notif_iter_data->ds_file);
-       notif_iter_data->ds_file = ctf_fs_ds_file_create(
-               notif_iter_data->ds_file_group->ctf_fs_trace,
-               notif_iter_data->pc_notif_iter,
-               notif_iter_data->notif_iter,
-               notif_iter_data->ds_file_group->stream,
+               msg_iter_data->ds_file_group->ds_file_infos,
+               msg_iter_data->ds_file_info_index);
+
+       ctf_fs_ds_file_destroy(msg_iter_data->ds_file);
+       msg_iter_data->ds_file = ctf_fs_ds_file_create(
+               msg_iter_data->ds_file_group->ctf_fs_trace,
+               msg_iter_data->pc_msg_iter,
+               msg_iter_data->msg_iter,
+               msg_iter_data->ds_file_group->stream,
                ds_file_info->path->str);
-       if (!notif_iter_data->ds_file) {
+       if (!msg_iter_data->ds_file) {
                ret = -1;
        }
 
@@ -71,121 +71,84 @@ int notif_iter_data_set_current_ds_file(struct ctf_fs_notif_iter_data *notif_ite
 }
 
 static
-void ctf_fs_notif_iter_data_destroy(
-               struct ctf_fs_notif_iter_data *notif_iter_data)
+void ctf_fs_msg_iter_data_destroy(
+               struct ctf_fs_msg_iter_data *msg_iter_data)
 {
-       if (!notif_iter_data) {
+       if (!msg_iter_data) {
                return;
        }
 
-       ctf_fs_ds_file_destroy(notif_iter_data->ds_file);
+       ctf_fs_ds_file_destroy(msg_iter_data->ds_file);
 
-       if (notif_iter_data->notif_iter) {
-               bt_notif_iter_destroy(notif_iter_data->notif_iter);
+       if (msg_iter_data->msg_iter) {
+               bt_msg_iter_destroy(msg_iter_data->msg_iter);
        }
 
-       g_free(notif_iter_data);
+       g_free(msg_iter_data);
 }
 
 static
-enum bt_self_notification_iterator_status ctf_fs_iterator_next_one(
-               struct ctf_fs_notif_iter_data *notif_iter_data,
-               struct bt_notification **notif)
+void set_msg_iter_emits_stream_beginning_end_messages(
+               struct ctf_fs_msg_iter_data *msg_iter_data)
 {
-       enum bt_self_notification_iterator_status status;
-       struct bt_private_notification *priv_notif;
-       int ret;
+       bt_msg_iter_set_emit_stream_beginning_message(
+               msg_iter_data->ds_file->msg_iter,
+               msg_iter_data->ds_file_info_index == 0);
+       bt_msg_iter_set_emit_stream_end_message(
+               msg_iter_data->ds_file->msg_iter,
+               msg_iter_data->ds_file_info_index ==
+                       msg_iter_data->ds_file_group->ds_file_infos->len - 1);
+}
 
-       BT_ASSERT(notif_iter_data->ds_file);
-       status = ctf_fs_ds_file_next(notif_iter_data->ds_file, &priv_notif);
-       *notif = bt_private_notification_as_notification(priv_notif);
+static
+bt_self_message_iterator_status ctf_fs_iterator_next_one(
+               struct ctf_fs_msg_iter_data *msg_iter_data,
+               const bt_message **out_msg)
+{
+       bt_self_message_iterator_status status;
 
-       if (status == BT_SELF_NOTIFICATION_ITERATOR_STATUS_OK &&
-                       bt_notification_get_type(*notif) ==
-                       BT_NOTIFICATION_TYPE_STREAM_BEGIN) {
-               if (notif_iter_data->skip_stream_begin_notifs) {
-                       /*
-                        * We already emitted a
-                        * BT_NOTIFICATION_TYPE_STREAM_BEGIN
-                        * notification: skip this one, get a new one.
-                        */
-                       BT_OBJECT_PUT_REF_AND_RESET(*notif);
-                       status = ctf_fs_ds_file_next(notif_iter_data->ds_file,
-                               &priv_notif);
-                       *notif = bt_private_notification_as_notification(priv_notif);
-                       BT_ASSERT(status != BT_SELF_NOTIFICATION_ITERATOR_STATUS_END);
-                       goto end;
-               } else {
-                       /*
-                        * First BT_NOTIFICATION_TYPE_STREAM_BEGIN
-                        * notification: skip all following.
-                        */
-                       notif_iter_data->skip_stream_begin_notifs = true;
-                       goto end;
-               }
-       }
+       BT_ASSERT(msg_iter_data->ds_file);
 
-       if (status == BT_SELF_NOTIFICATION_ITERATOR_STATUS_OK &&
-                       bt_notification_get_type(*notif) ==
-                       BT_NOTIFICATION_TYPE_STREAM_END) {
-               notif_iter_data->ds_file_info_index++;
+       while (true) {
+               bt_message *msg;
 
-               if (notif_iter_data->ds_file_info_index ==
-                               notif_iter_data->ds_file_group->ds_file_infos->len) {
-                       /*
-                        * No more stream files to read: we reached the
-                        * real end. Emit this
-                        * BT_NOTIFICATION_TYPE_STREAM_END notification.
-                        * The next time ctf_fs_iterator_next() is
-                        * called for this notification iterator,
-                        * ctf_fs_ds_file_next() will return
-                        * BT_SELF_NOTIFICATION_ITERATOR_STATUS_END().
-                        */
+               status = ctf_fs_ds_file_next(msg_iter_data->ds_file, &msg);
+               switch (status) {
+               case BT_SELF_MESSAGE_ITERATOR_STATUS_OK:
+                       *out_msg = msg;
+                       msg = NULL;
                        goto end;
-               }
+               case BT_SELF_MESSAGE_ITERATOR_STATUS_END:
+               {
+                       int ret;
+
+                       if (msg_iter_data->ds_file_info_index ==
+                                       msg_iter_data->ds_file_group->ds_file_infos->len - 1) {
+                               /* End of all group's stream files */
+                               goto end;
+                       }
+
+                       msg_iter_data->ds_file_info_index++;
+                       bt_msg_iter_reset_for_next_stream_file(
+                               msg_iter_data->msg_iter);
+                       set_msg_iter_emits_stream_beginning_end_messages(
+                               msg_iter_data);
 
-               BT_OBJECT_PUT_REF_AND_RESET(*notif);
-               bt_notif_iter_reset(notif_iter_data->notif_iter);
+                       /*
+                        * Open and start reading the next stream file
+                        * within our stream file group.
+                        */
+                       ret = msg_iter_data_set_current_ds_file(msg_iter_data);
+                       if (ret) {
+                               status = BT_SELF_MESSAGE_ITERATOR_STATUS_ERROR;
+                               goto end;
+                       }
 
-               /*
-                * Open and start reading the next stream file within
-                * our stream file group.
-                */
-               ret = notif_iter_data_set_current_ds_file(notif_iter_data);
-               if (ret) {
-                       status = BT_SELF_NOTIFICATION_ITERATOR_STATUS_ERROR;
-                       goto end;
+                       /* Continue the loop to get the next message */
+                       break;
                }
-
-               status = ctf_fs_ds_file_next(notif_iter_data->ds_file, &priv_notif);
-               *notif = bt_private_notification_as_notification(priv_notif);
-
-               /*
-                * If we get a notification, we expect to get a
-                * BT_NOTIFICATION_TYPE_STREAM_BEGIN notification
-                * because the iterator's state machine emits one before
-                * even requesting the first block of data from the
-                * medium. Skip this notification because we're not
-                * really starting a new stream here, and try getting a
-                * new notification (which, if it works, is a
-                * BT_NOTIFICATION_TYPE_PACKET_BEGIN one). We're sure to
-                * get at least one pair of
-                * BT_NOTIFICATION_TYPE_PACKET_BEGIN and
-                * BT_NOTIFICATION_TYPE_PACKET_END notifications in the
-                * case of a single, empty packet. We know there's at
-                * least one packet because the stream file group does
-                * not contain empty stream files.
-                */
-               BT_ASSERT(notif_iter_data->skip_stream_begin_notifs);
-
-               if (status == BT_SELF_NOTIFICATION_ITERATOR_STATUS_OK) {
-                       BT_ASSERT(bt_notification_get_type(*notif) ==
-                               BT_NOTIFICATION_TYPE_STREAM_BEGIN);
-                       BT_OBJECT_PUT_REF_AND_RESET(*notif);
-                       status = ctf_fs_ds_file_next(notif_iter_data->ds_file,
-                               &priv_notif);
-                       *notif = bt_private_notification_as_notification(priv_notif);
-                       BT_ASSERT(status != BT_SELF_NOTIFICATION_ITERATOR_STATUS_END);
+               default:
+                       goto end;
                }
        }
 
@@ -194,20 +157,20 @@ end:
 }
 
 BT_HIDDEN
-enum bt_self_notification_iterator_status ctf_fs_iterator_next(
-               struct bt_self_notification_iterator *iterator,
-               bt_notification_array notifs, uint64_t capacity,
+bt_self_message_iterator_status ctf_fs_iterator_next(
+               bt_self_message_iterator *iterator,
+               bt_message_array_const msgs, uint64_t capacity,
                uint64_t *count)
 {
-       enum bt_self_notification_iterator_status status =
-               BT_SELF_NOTIFICATION_ITERATOR_STATUS_OK;
-       struct ctf_fs_notif_iter_data *notif_iter_data =
-               bt_self_notification_iterator_get_data(iterator);
+       bt_self_message_iterator_status status =
+               BT_SELF_MESSAGE_ITERATOR_STATUS_OK;
+       struct ctf_fs_msg_iter_data *msg_iter_data =
+               bt_self_message_iterator_get_data(iterator);
        uint64_t i = 0;
 
-       while (i < capacity && status == BT_SELF_NOTIFICATION_ITERATOR_STATUS_OK) {
-               status = ctf_fs_iterator_next_one(notif_iter_data, &notifs[i]);
-               if (status == BT_SELF_NOTIFICATION_ITERATOR_STATUS_OK) {
+       while (i < capacity && status == BT_SELF_MESSAGE_ITERATOR_STATUS_OK) {
+               status = ctf_fs_iterator_next_one(msg_iter_data, &msgs[i]);
+               if (status == BT_SELF_MESSAGE_ITERATOR_STATUS_OK) {
                        i++;
                }
        }
@@ -215,81 +178,116 @@ enum bt_self_notification_iterator_status ctf_fs_iterator_next(
        if (i > 0) {
                /*
                 * Even if ctf_fs_iterator_next_one() returned something
-                * else than BT_SELF_NOTIFICATION_ITERATOR_STATUS_OK, we
-                * accumulated notification objects in the output
-                * notification array, so we need to return
-                * BT_SELF_NOTIFICATION_ITERATOR_STATUS_OK so that they are
+                * else than BT_SELF_MESSAGE_ITERATOR_STATUS_OK, we
+                * accumulated message objects in the output
+                * message array, so we need to return
+                * BT_SELF_MESSAGE_ITERATOR_STATUS_OK so that they are
                 * transfered to downstream. This other status occurs
-                * again the next time muxer_notif_iter_do_next() is
+                * again the next time muxer_msg_iter_do_next() is
                 * called, possibly without any accumulated
-                * notification, in which case we'll return it.
+                * message, in which case we'll return it.
                 */
                *count = i;
-               status = BT_SELF_NOTIFICATION_ITERATOR_STATUS_OK;
+               status = BT_SELF_MESSAGE_ITERATOR_STATUS_OK;
        }
 
        return status;
 }
 
-void ctf_fs_iterator_finalize(struct bt_self_notification_iterator *it)
+static
+int ctf_fs_iterator_reset(struct ctf_fs_msg_iter_data *msg_iter_data)
+{
+       int ret;
+
+       msg_iter_data->ds_file_info_index = 0;
+       ret = msg_iter_data_set_current_ds_file(msg_iter_data);
+       if (ret) {
+               goto end;
+       }
+
+       bt_msg_iter_reset(msg_iter_data->msg_iter);
+       set_msg_iter_emits_stream_beginning_end_messages(msg_iter_data);
+
+end:
+       return ret;
+}
+
+BT_HIDDEN
+bt_self_message_iterator_status ctf_fs_iterator_seek_beginning(
+               bt_self_message_iterator *it)
 {
-       ctf_fs_notif_iter_data_destroy(
-               bt_self_notification_iterator_get_data(it));
+       struct ctf_fs_msg_iter_data *msg_iter_data =
+               bt_self_message_iterator_get_data(it);
+       bt_self_message_iterator_status status =
+               BT_SELF_MESSAGE_ITERATOR_STATUS_OK;
+
+       BT_ASSERT(msg_iter_data);
+       if (ctf_fs_iterator_reset(msg_iter_data)) {
+               status = BT_SELF_MESSAGE_ITERATOR_STATUS_ERROR;
+       }
+
+       return status;
 }
 
-enum bt_self_notification_iterator_status ctf_fs_iterator_init(
-               struct bt_self_notification_iterator *self_notif_iter,
-               struct bt_self_component_source *self_comp,
-               struct bt_self_component_port_output *self_port)
+BT_HIDDEN
+void ctf_fs_iterator_finalize(bt_self_message_iterator *it)
+{
+       ctf_fs_msg_iter_data_destroy(
+               bt_self_message_iterator_get_data(it));
+}
+
+BT_HIDDEN
+bt_self_message_iterator_status ctf_fs_iterator_init(
+               bt_self_message_iterator *self_msg_iter,
+               bt_self_component_source *self_comp,
+               bt_self_component_port_output *self_port)
 {
        struct ctf_fs_port_data *port_data;
-       struct ctf_fs_notif_iter_data *notif_iter_data = NULL;
-       enum bt_self_notification_iterator_status ret =
-               BT_SELF_NOTIFICATION_ITERATOR_STATUS_OK;
-       int iret;
+       struct ctf_fs_msg_iter_data *msg_iter_data = NULL;
+       bt_self_message_iterator_status ret =
+               BT_SELF_MESSAGE_ITERATOR_STATUS_OK;
 
        port_data = bt_self_component_port_get_data(
                bt_self_component_port_output_as_self_component_port(
                        self_port));
        BT_ASSERT(port_data);
-       notif_iter_data = g_new0(struct ctf_fs_notif_iter_data, 1);
-       if (!notif_iter_data) {
-               ret = BT_SELF_NOTIFICATION_ITERATOR_STATUS_NOMEM;
+       msg_iter_data = g_new0(struct ctf_fs_msg_iter_data, 1);
+       if (!msg_iter_data) {
+               ret = BT_SELF_MESSAGE_ITERATOR_STATUS_NOMEM;
                goto error;
        }
 
-       notif_iter_data->pc_notif_iter = self_notif_iter;
-       notif_iter_data->notif_iter = bt_notif_iter_create(
+       msg_iter_data->pc_msg_iter = self_msg_iter;
+       msg_iter_data->msg_iter = bt_msg_iter_create(
                port_data->ds_file_group->ctf_fs_trace->metadata->tc,
                bt_common_get_page_size() * 8,
                ctf_fs_ds_file_medops, NULL);
-       if (!notif_iter_data->notif_iter) {
-               BT_LOGE_STR("Cannot create a CTF notification iterator.");
-               ret = BT_SELF_NOTIFICATION_ITERATOR_STATUS_NOMEM;
+       if (!msg_iter_data->msg_iter) {
+               BT_LOGE_STR("Cannot create a CTF message iterator.");
+               ret = BT_SELF_MESSAGE_ITERATOR_STATUS_NOMEM;
                goto error;
        }
 
-       notif_iter_data->ds_file_group = port_data->ds_file_group;
-       iret = notif_iter_data_set_current_ds_file(notif_iter_data);
-       if (iret) {
-               ret = BT_SELF_NOTIFICATION_ITERATOR_STATUS_ERROR;
+       msg_iter_data->ds_file_group = port_data->ds_file_group;
+       if (ctf_fs_iterator_reset(msg_iter_data)) {
+               ret = BT_SELF_MESSAGE_ITERATOR_STATUS_ERROR;
                goto error;
        }
 
-       bt_self_notification_iterator_set_data(self_notif_iter,
-               notif_iter_data);
-       if (ret != BT_SELF_NOTIFICATION_ITERATOR_STATUS_OK) {
+       bt_self_message_iterator_set_data(self_msg_iter,
+               msg_iter_data);
+       if (ret != BT_SELF_MESSAGE_ITERATOR_STATUS_OK) {
                goto error;
        }
 
-       notif_iter_data = NULL;
+       msg_iter_data = NULL;
        goto end;
 
 error:
-       bt_self_notification_iterator_set_data(self_notif_iter, NULL);
+       bt_self_message_iterator_set_data(self_msg_iter, NULL);
 
 end:
-       ctf_fs_notif_iter_data_destroy(notif_iter_data);
+       ctf_fs_msg_iter_data_destroy(msg_iter_data);
        return ret;
 }
 
@@ -322,6 +320,8 @@ void ctf_fs_trace_destroy(struct ctf_fs_trace *ctf_fs_trace)
                g_ptr_array_free(ctf_fs_trace->ds_file_groups, TRUE);
        }
 
+       BT_TRACE_PUT_REF_AND_RESET(ctf_fs_trace->trace);
+
        if (ctf_fs_trace->path) {
                g_string_free(ctf_fs_trace->path, TRUE);
        }
@@ -345,7 +345,7 @@ void ctf_fs_trace_destroy_notifier(void *data)
        ctf_fs_trace_destroy(trace);
 }
 
-void ctf_fs_finalize(struct bt_self_component_source *component)
+void ctf_fs_finalize(bt_self_component_source *component)
 {
        ctf_fs_destroy(bt_self_component_get_data(
                bt_self_component_source_as_self_component(component)));
@@ -510,15 +510,15 @@ void ctf_fs_ds_file_group_destroy(struct ctf_fs_ds_file_group *ds_file_group)
                g_ptr_array_free(ds_file_group->ds_file_infos, TRUE);
        }
 
-       bt_object_put_ref(ds_file_group->stream);
-       bt_object_put_ref(ds_file_group->stream_class);
+       bt_stream_put_ref(ds_file_group->stream);
+       bt_stream_class_put_ref(ds_file_group->stream_class);
        g_free(ds_file_group);
 }
 
 static
 struct ctf_fs_ds_file_group *ctf_fs_ds_file_group_create(
                struct ctf_fs_trace *ctf_fs_trace,
-               struct bt_private_stream_class *stream_class,
+               bt_stream_class *stream_class,
                uint64_t stream_instance_id)
 {
        struct ctf_fs_ds_file_group *ds_file_group;
@@ -537,7 +537,7 @@ struct ctf_fs_ds_file_group *ctf_fs_ds_file_group_create(
        ds_file_group->stream_id = stream_instance_id;
        BT_ASSERT(stream_class);
        ds_file_group->stream_class = stream_class;
-       bt_object_get_ref(ds_file_group->stream_class);
+       bt_stream_class_get_ref(ds_file_group->stream_class);
        ds_file_group->ctf_fs_trace = ctf_fs_trace;
        goto end;
 
@@ -612,7 +612,7 @@ static
 int add_ds_file_to_ds_file_group(struct ctf_fs_trace *ctf_fs_trace,
                const char *path)
 {
-       struct bt_private_stream_class *stream_class = NULL;
+       bt_stream_class *stream_class = NULL;
        int64_t stream_instance_id = -1;
        int64_t begin_ns = -1;
        struct ctf_fs_ds_file_group *ds_file_group = NULL;
@@ -621,33 +621,30 @@ int add_ds_file_to_ds_file_group(struct ctf_fs_trace *ctf_fs_trace,
        size_t i;
        struct ctf_fs_ds_file *ds_file = NULL;
        struct ctf_fs_ds_index *index = NULL;
-       struct bt_notif_iter *notif_iter = NULL;
+       struct bt_msg_iter *msg_iter = NULL;
        struct ctf_stream_class *sc = NULL;
-       struct bt_notif_iter_packet_properties props;
+       struct bt_msg_iter_packet_properties props;
 
-       notif_iter = bt_notif_iter_create(ctf_fs_trace->metadata->tc,
+       msg_iter = bt_msg_iter_create(ctf_fs_trace->metadata->tc,
                bt_common_get_page_size() * 8, ctf_fs_ds_file_medops, NULL);
-       if (!notif_iter) {
-               BT_LOGE_STR("Cannot create a CTF notification iterator.");
+       if (!msg_iter) {
+               BT_LOGE_STR("Cannot create a CTF message iterator.");
                goto error;
        }
 
-       ds_file = ctf_fs_ds_file_create(ctf_fs_trace, NULL, notif_iter,
+       ds_file = ctf_fs_ds_file_create(ctf_fs_trace, NULL, msg_iter,
                NULL, path);
        if (!ds_file) {
                goto error;
        }
 
-       ret = ctf_fs_ds_file_borrow_packet_header_context_fields(ds_file,
-               NULL, NULL);
+       ret = bt_msg_iter_get_packet_properties(ds_file->msg_iter, &props);
        if (ret) {
                BT_LOGE("Cannot get stream file's first packet's header and context fields (`%s`).",
                        path);
                goto error;
        }
 
-       ret = bt_notif_iter_get_packet_properties(ds_file->notif_iter, &props);
-       BT_ASSERT(ret == 0);
        sc = ctf_trace_class_borrow_stream_class_by_id(ds_file->metadata->tc,
                props.stream_class_id);
        BT_ASSERT(sc);
@@ -657,10 +654,11 @@ int add_ds_file_to_ds_file_group(struct ctf_fs_trace *ctf_fs_trace,
 
        if (props.snapshots.beginning_clock != UINT64_C(-1)) {
                BT_ASSERT(sc->default_clock_class);
-               ret = bt_clock_class_cycles_to_ns_from_origin(
-                       bt_private_clock_class_as_clock_class(
-                               sc->default_clock_class),
-                       props.snapshots.beginning_clock, &begin_ns);
+               ret = bt_util_clock_cycles_to_ns_from_origin(
+                       props.snapshots.beginning_clock,
+                       sc->default_clock_class->frequency,
+                       sc->default_clock_class->offset_seconds,
+                       sc->default_clock_class->offset_cycles, &begin_ns);
                if (ret) {
                        BT_LOGE("Cannot convert clock cycles to nanoseconds from origin (`%s`).",
                                path);
@@ -756,8 +754,8 @@ end:
 
        ctf_fs_ds_file_destroy(ds_file);
 
-       if (notif_iter) {
-               bt_notif_iter_destroy(notif_iter);
+       if (msg_iter) {
+               bt_msg_iter_destroy(msg_iter);
        }
 
        ctf_fs_ds_index_destroy(index);
@@ -842,6 +840,10 @@ int create_ds_file_groups(struct ctf_fs_trace *ctf_fs_trace)
                ctf_fs_file_destroy(file);
        }
 
+       if (!ctf_fs_trace->trace) {
+               goto end;
+       }
+
        /*
         * At this point, DS file groupes are created, but their
         * associated stream objects do not exist yet. This is because
@@ -860,14 +862,16 @@ int create_ds_file_groups(struct ctf_fs_trace *ctf_fs_trace)
 
                if (ds_file_group->stream_id == UINT64_C(-1)) {
                        /* No stream ID: use 0 */
-                       ds_file_group->stream = bt_private_stream_create_with_id(
+                       ds_file_group->stream = bt_stream_create_with_id(
                                ds_file_group->stream_class,
+                               ctf_fs_trace->trace,
                                ctf_fs_trace->next_stream_id);
                        ctf_fs_trace->next_stream_id++;
                } else {
                        /* Specific stream ID */
-                       ds_file_group->stream = bt_private_stream_create_with_id(
+                       ds_file_group->stream = bt_stream_create_with_id(
                                ds_file_group->stream_class,
+                               ctf_fs_trace->trace,
                                (uint64_t) ds_file_group->stream_id);
                }
 
@@ -879,7 +883,7 @@ int create_ds_file_groups(struct ctf_fs_trace *ctf_fs_trace)
                        goto error;
                }
 
-               ret = bt_private_stream_set_name(ds_file_group->stream,
+               ret = bt_stream_set_name(ds_file_group->stream,
                        name->str);
                if (ret) {
                        BT_LOGE("Cannot set stream's name: "
@@ -910,8 +914,57 @@ end:
        return ret;
 }
 
+static
+int set_trace_name(bt_trace *trace, const char *name_suffix)
+{
+       int ret = 0;
+       const bt_trace_class *tc = bt_trace_borrow_class_const(trace);
+       const bt_value *val;
+       GString *name;
+
+       name = g_string_new(NULL);
+       if (!name) {
+               BT_LOGE_STR("Failed to allocate a GString.");
+               ret = -1;
+               goto end;
+       }
+
+       /*
+        * Check if we have a trace environment string value named `hostname`.
+        * If so, use it as the trace name's prefix.
+        */
+       val = bt_trace_class_borrow_environment_entry_value_by_name_const(
+               tc, "hostname");
+       if (val && bt_value_is_string(val)) {
+               g_string_append(name, bt_value_string_get(val));
+
+               if (name_suffix) {
+                       g_string_append_c(name, G_DIR_SEPARATOR);
+               }
+       }
+
+       if (name_suffix) {
+               g_string_append(name, name_suffix);
+       }
+
+       ret = bt_trace_set_name(trace, name->str);
+       if (ret) {
+               goto end;
+       }
+
+       goto end;
+
+end:
+       if (name) {
+               g_string_free(name, TRUE);
+       }
+
+       return ret;
+}
+
 BT_HIDDEN
-struct ctf_fs_trace *ctf_fs_trace_create(const char *path, const char *name,
+struct ctf_fs_trace *ctf_fs_trace_create(bt_self_component_source *self_comp,
+               const char *path, const char *name,
                struct ctf_fs_metadata_config *metadata_config)
 {
        struct ctf_fs_trace *ctf_fs_trace;
@@ -944,11 +997,27 @@ struct ctf_fs_trace *ctf_fs_trace_create(const char *path, const char *name,
                goto error;
        }
 
-       ret = ctf_fs_metadata_set_trace(ctf_fs_trace, metadata_config);
+       ret = ctf_fs_metadata_set_trace_class(self_comp,
+               ctf_fs_trace, metadata_config);
        if (ret) {
                goto error;
        }
 
+       if (ctf_fs_trace->metadata->trace_class) {
+               ctf_fs_trace->trace =
+                       bt_trace_create(ctf_fs_trace->metadata->trace_class);
+               if (!ctf_fs_trace->trace) {
+                       goto error;
+               }
+       }
+
+       if (ctf_fs_trace->trace) {
+               ret = set_trace_name(ctf_fs_trace->trace, name);
+               if (ret) {
+                       goto error;
+               }
+       }
+
        ret = create_ds_file_groups(ctf_fs_trace);
        if (ret) {
                goto error;
@@ -959,7 +1028,9 @@ struct ctf_fs_trace *ctf_fs_trace_create(const char *path, const char *name,
         * trace needs. There won't be any more. Therefore it is safe to
         * make this trace static.
         */
-       (void) bt_private_trace_make_static(ctf_fs_trace->metadata->trace);
+       if (ctf_fs_trace->trace) {
+               (void) bt_trace_make_static(ctf_fs_trace->trace);
+       }
 
        goto end;
 
@@ -1151,7 +1222,8 @@ GList *ctf_fs_create_trace_names(GList *trace_paths, const char *base_path) {
 }
 
 static
-int create_ctf_fs_traces(struct ctf_fs_component *ctf_fs,
+int create_ctf_fs_traces(bt_self_component_source *self_comp,
+               struct ctf_fs_component *ctf_fs,
                const char *path_param)
 {
        struct ctf_fs_trace *ctf_fs_trace = NULL;
@@ -1192,8 +1264,9 @@ int create_ctf_fs_traces(struct ctf_fs_component *ctf_fs,
                GString *trace_path = tp_node->data;
                GString *trace_name = tn_node->data;
 
-               ctf_fs_trace = ctf_fs_trace_create(trace_path->str,
-                               trace_name->str, &ctf_fs->metadata_config);
+               ctf_fs_trace = ctf_fs_trace_create(self_comp,
+                               trace_path->str, trace_name->str,
+                               &ctf_fs->metadata_config);
                if (!ctf_fs_trace) {
                        BT_LOGE("Cannot create trace for `%s`.",
                                trace_path->str);
@@ -1245,11 +1318,11 @@ end:
 
 static
 struct ctf_fs_component *ctf_fs_create(
-               struct bt_self_component_source *self_comp,
-               struct bt_value *params)
+               bt_self_component_source *self_comp,
+               const bt_value *params)
 {
        struct ctf_fs_component *ctf_fs;
-       struct bt_value *value = NULL;
+       const bt_value *value = NULL;
        const char *path_param;
 
        ctf_fs = g_new0(struct ctf_fs_component, 1);
@@ -1267,13 +1340,14 @@ struct ctf_fs_component *ctf_fs_create(
         * private component should also exist.
         */
        ctf_fs->self_comp = self_comp;
-       value = bt_value_map_borrow_entry_value(params, "path");
+       value = bt_value_map_borrow_entry_value_const(params, "path");
        if (value && !bt_value_is_string(value)) {
                goto error;
        }
 
        path_param = bt_value_string_get(value);
-       value = bt_value_map_borrow_entry_value(params, "clock-class-offset-s");
+       value = bt_value_map_borrow_entry_value_const(params,
+               "clock-class-offset-s");
        if (value) {
                if (!bt_value_is_integer(value)) {
                        BT_LOGE("clock-class-offset-s should be an integer");
@@ -1282,7 +1356,8 @@ struct ctf_fs_component *ctf_fs_create(
                ctf_fs->metadata_config.clock_class_offset_s = bt_value_integer_get(value);
        }
 
-       value = bt_value_map_borrow_entry_value(params, "clock-class-offset-ns");
+       value = bt_value_map_borrow_entry_value_const(params,
+               "clock-class-offset-ns");
        if (value) {
                if (!bt_value_is_integer(value)) {
                        BT_LOGE("clock-class-offset-ns should be an integer");
@@ -1302,7 +1377,7 @@ struct ctf_fs_component *ctf_fs_create(
                goto error;
        }
 
-       if (create_ctf_fs_traces(ctf_fs, path_param)) {
+       if (create_ctf_fs_traces(self_comp, ctf_fs, path_param)) {
                goto error;
        }
 
@@ -1320,12 +1395,12 @@ end:
 }
 
 BT_HIDDEN
-enum bt_self_component_status ctf_fs_init(
-               struct bt_self_component_source *self_comp,
-               struct bt_value *params, UNUSED_VAR void *init_method_data)
+bt_self_component_status ctf_fs_init(
+               bt_self_component_source *self_comp,
+               const bt_value *params, UNUSED_VAR void *init_method_data)
 {
        struct ctf_fs_component *ctf_fs;
-       enum bt_self_component_status ret = BT_SELF_COMPONENT_STATUS_OK;
+       bt_self_component_status ret = BT_SELF_COMPONENT_STATUS_OK;
 
        ctf_fs = ctf_fs_create(self_comp, params);
        if (!ctf_fs) {
@@ -1336,13 +1411,13 @@ enum bt_self_component_status ctf_fs_init(
 }
 
 BT_HIDDEN
-enum bt_query_status ctf_fs_query(
-               struct bt_self_component_class_source *comp_class,
-               struct bt_query_executor *query_exec,
-               const char *object, struct bt_value *params,
-               struct bt_value **result)
+bt_query_status ctf_fs_query(
+               bt_self_component_class_source *comp_class,
+               const bt_query_executor *query_exec,
+               const char *object, const bt_value *params,
+               const bt_value **result)
 {
-       enum bt_query_status status = BT_QUERY_STATUS_OK;
+       bt_query_status status = BT_QUERY_STATUS_OK;
 
        if (!strcmp(object, "metadata-info")) {
                status = metadata_info_query(comp_class, params, result);
This page took 0.03664 seconds and 4 git commands to generate.