bt2: fix some whitespace issues
[babeltrace.git] / src / lib / graph / iterator.c
index 86d7a1e414952ffda32415fbfa9d0d7c1d0eb944..a8fe3f15a95a8dc05a47938900aa5664fd22ca71 100644 (file)
@@ -49,9 +49,6 @@
 #include <babeltrace2/graph/message-packet-beginning.h>
 #include <babeltrace2/graph/message-packet-beginning-const.h>
 #include <babeltrace2/graph/message-packet-end-const.h>
-#include <babeltrace2/graph/message-stream-activity-beginning.h>
-#include <babeltrace2/graph/message-stream-activity-beginning-const.h>
-#include <babeltrace2/graph/message-stream-activity-end-const.h>
 #include <babeltrace2/graph/message-stream-beginning.h>
 #include <babeltrace2/graph/message-stream-beginning-const.h>
 #include <babeltrace2/graph/message-stream-end-const.h>
@@ -80,7 +77,6 @@
 #include "message/message-iterator-inactivity.h"
 #include "message/stream.h"
 #include "message/packet.h"
-#include "message/stream-activity.h"
 #include "lib/func-status.h"
 
 /*
@@ -192,7 +188,7 @@ void bt_self_component_port_input_message_iterator_try_finalize(
                        "%!+i", iterator);
                goto end;
        case BT_SELF_COMPONENT_PORT_INPUT_MESSAGE_ITERATOR_STATE_FINALIZING:
-               /* Already finalized */
+               /* Finalizing */
                BT_LIB_LOGF("Message iterator is already being finalized: "
                        "%!+i", iterator);
                abort();
@@ -267,7 +263,7 @@ int init_message_iterator(struct bt_message_iterator *iterator,
        iterator->type = type;
        iterator->msgs = g_ptr_array_new();
        if (!iterator->msgs) {
-               BT_LOGE_STR("Failed to allocate a GPtrArray.");
+               BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate a GPtrArray.");
                ret = -1;
                goto end;
        }
@@ -314,9 +310,10 @@ bt_self_component_port_input_message_iterator_create_initial(
        iterator = g_new0(
                struct bt_self_component_port_input_message_iterator, 1);
        if (!iterator) {
-               BT_LOGE_STR("Failed to allocate one self component input port "
+               BT_LIB_LOGE_APPEND_CAUSE(
+                       "Failed to allocate one self component input port "
                        "message iterator.");
-               goto end;
+               goto error;
        }
 
        ret = init_message_iterator((void *) iterator,
@@ -324,15 +321,14 @@ bt_self_component_port_input_message_iterator_create_initial(
                bt_self_component_port_input_message_iterator_destroy);
        if (ret) {
                /* init_message_iterator() logs errors */
-               BT_OBJECT_PUT_REF_AND_RESET(iterator);
-               goto end;
+               goto error;
        }
 
        iterator->last_ns_from_origin = INT64_MIN;
 
        iterator->auto_seek.msgs = g_queue_new();
        if (!iterator->auto_seek.msgs) {
-               BT_LOGE_STR("Failed to allocate a GQueue.");
+               BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate a GQueue.");
                ret = -1;
                goto end;
        }
@@ -410,6 +406,10 @@ bt_self_component_port_input_message_iterator_create_initial(
        BT_LIB_LOGI("Created initial message iterator on self component input port: "
                "%![up-port-]+p, %![up-comp-]+c, %![iter-]+i",
                upstream_port, upstream_comp, iterator);
+       goto end;
+
+error:
+       BT_OBJECT_PUT_REF_AND_RESET(iterator);
 
 end:
        return iterator;
@@ -458,9 +458,9 @@ bt_self_component_port_input_message_iterator_create(
        iterator = bt_self_component_port_input_message_iterator_create_initial(
                upstream_comp, upstream_port);
        if (!iterator) {
-               BT_LOGW_STR("Cannot create self component input port "
-                       "message iterator.");
-               goto end;
+               BT_LIB_LOGE_APPEND_CAUSE(
+                       "Cannot create self component input port message iterator.");
+               goto error;
        }
 
        switch (upstream_comp_cls->type) {
@@ -496,9 +496,12 @@ bt_self_component_port_input_message_iterator_create(
                BT_LOGD("User method returned: status=%s",
                        bt_common_func_status_string(iter_status));
                if (iter_status != BT_FUNC_STATUS_OK) {
-                       BT_LOGW_STR("Initialization method failed.");
-                       BT_OBJECT_PUT_REF_AND_RESET(iterator);
-                       goto end;
+                       BT_LIB_LOGW_APPEND_CAUSE(
+                               "Component input port message iterator initialization method failed: "
+                               "%![iter-]+i, status=%s",
+                               iterator,
+                               bt_common_func_status_string(iter_status));
+                       goto error;
                }
        }
 
@@ -508,6 +511,10 @@ bt_self_component_port_input_message_iterator_create(
        BT_LIB_LOGI("Created message iterator on self component input port: "
                "%![up-port-]+p, %![up-comp-]+c, %![iter-]+i",
                upstream_port, upstream_comp, iterator);
+       goto end;
+
+error:
+       BT_OBJECT_PUT_REF_AND_RESET(iterator);
 
 end:
        return iterator;
@@ -519,7 +526,7 @@ void *bt_self_message_iterator_get_data(
        struct bt_self_component_port_input_message_iterator *iterator =
                (void *) self_iterator;
 
-       BT_ASSERT_PRE_NON_NULL(iterator, "Message iterator");
+       BT_ASSERT_PRE_DEV_NON_NULL(iterator, "Message iterator");
        return iterator->user_data;
 }
 
@@ -529,7 +536,7 @@ void bt_self_message_iterator_set_data(
        struct bt_self_component_port_input_message_iterator *iterator =
                (void *) self_iterator;
 
-       BT_ASSERT_PRE_NON_NULL(iterator, "Message iterator");
+       BT_ASSERT_PRE_DEV_NON_NULL(iterator, "Message iterator");
        iterator->user_data = data;
        BT_LIB_LOGD("Set message iterator's user data: "
                "%!+i, user-data-addr=%p", iterator, data);
@@ -540,7 +547,7 @@ void bt_self_message_iterator_set_data(
  * time.
  */
 
-BT_ASSERT_POST_FUNC
+BT_ASSERT_POST_DEV_FUNC
 static
 bool clock_snapshots_are_monotonic_one(
                struct bt_self_component_port_input_message_iterator *iterator,
@@ -578,21 +585,17 @@ bool clock_snapshots_are_monotonic_one(
                clock_snapshot = packet_msg->default_cs;
                break;
        }
-       case BT_MESSAGE_TYPE_STREAM_ACTIVITY_BEGINNING:
-       case BT_MESSAGE_TYPE_STREAM_ACTIVITY_END:
+       case BT_MESSAGE_TYPE_STREAM_BEGINNING:
+       case BT_MESSAGE_TYPE_STREAM_END:
        {
-               struct bt_message_stream_activity *str_act_msg =
-                       (struct bt_message_stream_activity *) msg;
-
-               if (str_act_msg->default_cs_state == BT_MESSAGE_STREAM_ACTIVITY_CLOCK_SNAPSHOT_STATE_KNOWN) {
-                       clock_snapshot = str_act_msg->default_cs;
+               struct bt_message_stream *stream_msg = (struct bt_message_stream *) msg;
+               if (stream_msg->default_cs_state != BT_MESSAGE_STREAM_CLOCK_SNAPSHOT_STATE_KNOWN) {
+                       goto end;
                }
+
+               clock_snapshot = stream_msg->default_cs;
                break;
        }
-       case BT_MESSAGE_TYPE_STREAM_BEGINNING:
-       case BT_MESSAGE_TYPE_STREAM_END:
-               /* These messages don't have clock snapshots. */
-               goto end;
        case BT_MESSAGE_TYPE_DISCARDED_EVENTS:
        case BT_MESSAGE_TYPE_DISCARDED_PACKETS:
        {
@@ -619,7 +622,7 @@ end:
        return result;
 }
 
-BT_ASSERT_POST_FUNC
+BT_ASSERT_POST_DEV_FUNC
 static
 bool clock_snapshots_are_monotonic(
                struct bt_self_component_port_input_message_iterator *iterator,
@@ -646,7 +649,7 @@ end:
  * stream is compatible with what we've seen before.
  */
 
-BT_ASSERT_POST_FUNC
+BT_ASSERT_POST_DEV_FUNC
 static
 bool clock_classes_are_compatible_one(struct bt_self_component_port_input_message_iterator *iterator,
                const struct bt_message *msg)
@@ -678,7 +681,7 @@ bool clock_classes_are_compatible_one(struct bt_self_component_port_input_messag
                                iterator->clock_expectation.type = CLOCK_EXPECTATION_ORIGIN_UNIX;
                        } else if (clock_class_uuid) {
                                iterator->clock_expectation.type = CLOCK_EXPECTATION_ORIGIN_OTHER_UUID;
-                               memcpy(iterator->clock_expectation.uuid, clock_class_uuid, BABELTRACE_UUID_LEN);
+                               bt_uuid_copy(iterator->clock_expectation.uuid, clock_class_uuid);
                        } else {
                                iterator->clock_expectation.type = CLOCK_EXPECTATION_ORIGIN_OTHER_NO_UUID;
                        }
@@ -686,7 +689,8 @@ bool clock_classes_are_compatible_one(struct bt_self_component_port_input_messag
 
                case CLOCK_EXPECTATION_NONE:
                        if (clock_class) {
-                               BT_ASSERT_POST_MSG("Expecting no clock class, got one: %![cc-]+K",
+                               BT_ASSERT_POST_DEV_MSG(
+                                       "Expecting no clock class, got one: %![cc-]+K",
                                        clock_class);
                                result = false;
                                goto end;
@@ -696,13 +700,15 @@ bool clock_classes_are_compatible_one(struct bt_self_component_port_input_messag
 
                case CLOCK_EXPECTATION_ORIGIN_UNIX:
                        if (!clock_class) {
-                               BT_ASSERT_POST_MSG("Expecting a clock class, got none.");
+                               BT_ASSERT_POST_DEV_MSG(
+                                       "Expecting a clock class, got none.");
                                result = false;
                                goto end;
                        }
 
                        if (!bt_clock_class_origin_is_unix_epoch(clock_class)) {
-                               BT_ASSERT_POST_MSG("Expecting a clock class with Unix epoch origin: %![cc-]+K",
+                               BT_ASSERT_POST_DEV_MSG(
+                                       "Expecting a clock class with Unix epoch origin: %![cc-]+K",
                                        clock_class);
                                result = false;
                                goto end;
@@ -711,27 +717,31 @@ bool clock_classes_are_compatible_one(struct bt_self_component_port_input_messag
 
                case CLOCK_EXPECTATION_ORIGIN_OTHER_UUID:
                        if (!clock_class) {
-                               BT_ASSERT_POST_MSG("Expecting a clock class, got none.");
+                               BT_ASSERT_POST_DEV_MSG(
+                                       "Expecting a clock class, got none.");
                                result = false;
                                goto end;
                        }
 
                        if (bt_clock_class_origin_is_unix_epoch(clock_class)) {
-                               BT_ASSERT_POST_MSG("Expecting a clock class without Unix epoch origin: %![cc-]+K",
+                               BT_ASSERT_POST_DEV_MSG(
+                                       "Expecting a clock class without Unix epoch origin: %![cc-]+K",
                                        clock_class);
                                result = false;
                                goto end;
                        }
 
                        if (!clock_class_uuid) {
-                               BT_ASSERT_POST_MSG("Expecting a clock class with UUID: %![cc-]+K",
+                               BT_ASSERT_POST_DEV_MSG(
+                                       "Expecting a clock class with UUID: %![cc-]+K",
                                        clock_class);
                                result = false;
                                goto end;
                        }
 
                        if (bt_uuid_compare(iterator->clock_expectation.uuid, clock_class_uuid)) {
-                               BT_ASSERT_POST_MSG("Expecting a clock class with UUID, got one "
+                               BT_ASSERT_POST_DEV_MSG(
+                                       "Expecting a clock class with UUID, got one "
                                        "with a different UUID: %![cc-]+K, expected-uuid=%!u",
                                        clock_class, iterator->clock_expectation.uuid);
                                result = false;
@@ -741,20 +751,23 @@ bool clock_classes_are_compatible_one(struct bt_self_component_port_input_messag
 
                case CLOCK_EXPECTATION_ORIGIN_OTHER_NO_UUID:
                        if (!clock_class) {
-                               BT_ASSERT_POST_MSG("Expecting a clock class, got none.");
+                               BT_ASSERT_POST_DEV_MSG(
+                                       "Expecting a clock class, got none.");
                                result = false;
                                goto end;
                        }
 
                        if (bt_clock_class_origin_is_unix_epoch(clock_class)) {
-                               BT_ASSERT_POST_MSG("Expecting a clock class without Unix epoch origin: %![cc-]+K",
+                               BT_ASSERT_POST_DEV_MSG(
+                                       "Expecting a clock class without Unix epoch origin: %![cc-]+K",
                                        clock_class);
                                result = false;
                                goto end;
                        }
 
                        if (clock_class_uuid) {
-                               BT_ASSERT_POST_MSG("Expecting a clock class without UUID: %![cc-]+K",
+                               BT_ASSERT_POST_DEV_MSG(
+                                       "Expecting a clock class without UUID: %![cc-]+K",
                                        clock_class);
                                result = false;
                                goto end;
@@ -769,7 +782,7 @@ end:
        return result;
 }
 
-BT_ASSERT_POST_FUNC
+BT_ASSERT_POST_DEV_FUNC
 static
 bool clock_classes_are_compatible(
                struct bt_self_component_port_input_message_iterator *iterator,
@@ -811,9 +824,9 @@ call_iterator_next_method(
                bt_common_func_status_string(status), *user_count);
 
        if (status == BT_FUNC_STATUS_OK) {
-               BT_ASSERT_POST(clock_classes_are_compatible(iterator, msgs, *user_count),
+               BT_ASSERT_POST_DEV(clock_classes_are_compatible(iterator, msgs, *user_count),
                        "Clocks are not compatible");
-               BT_ASSERT_POST(clock_snapshots_are_monotonic(iterator, msgs, *user_count),
+               BT_ASSERT_POST_DEV(clock_snapshots_are_monotonic(iterator, msgs, *user_count),
                        "Clock snapshots are not monotonic");
        }
 
@@ -827,16 +840,16 @@ bt_self_component_port_input_message_iterator_next(
 {
        enum bt_message_iterator_next_status status = BT_FUNC_STATUS_OK;
 
-       BT_ASSERT_PRE_NON_NULL(iterator, "Message iterator");
-       BT_ASSERT_PRE_NON_NULL(msgs, "Message array (output)");
-       BT_ASSERT_PRE_NON_NULL(user_count, "Message count (output)");
-       BT_ASSERT_PRE(iterator->state ==
+       BT_ASSERT_PRE_DEV_NON_NULL(iterator, "Message iterator");
+       BT_ASSERT_PRE_DEV_NON_NULL(msgs, "Message array (output)");
+       BT_ASSERT_PRE_DEV_NON_NULL(user_count, "Message count (output)");
+       BT_ASSERT_PRE_DEV(iterator->state ==
                BT_SELF_COMPONENT_PORT_INPUT_MESSAGE_ITERATOR_STATE_ACTIVE,
                "Message iterator's \"next\" called, but "
                "message iterator is in the wrong state: %!+i", iterator);
        BT_ASSERT(iterator->upstream_component);
        BT_ASSERT(iterator->upstream_component->class);
-       BT_ASSERT_PRE(
+       BT_ASSERT_PRE_DEV(
                bt_component_borrow_graph(iterator->upstream_component)->config_state !=
                        BT_GRAPH_CONFIGURATION_STATE_CONFIGURING,
                "Graph is not configured: %!+g",
@@ -853,8 +866,13 @@ bt_self_component_port_input_message_iterator_next(
        status = (int) call_iterator_next_method(iterator,
                (void *) iterator->base.msgs->pdata, MSG_BATCH_SIZE,
                user_count);
+       BT_LOGD("User method returned: status=%s, msg-count=%" PRIu64,
+               bt_common_func_status_string(status), *user_count);
        if (status < 0) {
-               BT_LOGW_STR("User method failed.");
+               BT_LIB_LOGW_APPEND_CAUSE(
+                       "Component input port message iterator's \"next\" method failed: "
+                       "%![iter-]+i, status=%s",
+                       iterator, bt_common_func_status_string(status));
                goto end;
        }
 
@@ -872,7 +890,7 @@ bt_self_component_port_input_message_iterator_next(
 
        switch (status) {
        case BT_FUNC_STATUS_OK:
-               BT_ASSERT_POST(*user_count <= MSG_BATCH_SIZE,
+               BT_ASSERT_POST_DEV(*user_count <= MSG_BATCH_SIZE,
                        "Invalid returned message count: greater than "
                        "batch size: count=%" PRIu64 ", batch-size=%u",
                        *user_count, MSG_BATCH_SIZE);
@@ -901,9 +919,9 @@ enum bt_message_iterator_next_status bt_port_output_message_iterator_next(
        enum bt_message_iterator_next_status status;
        int graph_status;
 
-       BT_ASSERT_PRE_NON_NULL(iterator, "Message iterator");
-       BT_ASSERT_PRE_NON_NULL(msgs_to_user, "Message array (output)");
-       BT_ASSERT_PRE_NON_NULL(count_to_user, "Message count (output)");
+       BT_ASSERT_PRE_DEV_NON_NULL(iterator, "Message iterator");
+       BT_ASSERT_PRE_DEV_NON_NULL(msgs_to_user, "Message array (output)");
+       BT_ASSERT_PRE_DEV_NON_NULL(count_to_user, "Message count (output)");
        BT_LIB_LOGD("Getting next output port message iterator's messages: "
                "%!+i", iterator);
        graph_status = bt_graph_consume_sink_no_check(iterator->graph,
@@ -938,7 +956,7 @@ struct bt_component *
 bt_self_component_port_input_message_iterator_borrow_component(
                struct bt_self_component_port_input_message_iterator *iterator)
 {
-       BT_ASSERT_PRE_NON_NULL(iterator, "Message iterator");
+       BT_ASSERT_PRE_DEV_NON_NULL(iterator, "Message iterator");
        return iterator->upstream_component;
 }
 
@@ -946,7 +964,7 @@ const struct bt_component *
 bt_self_component_port_input_message_iterator_borrow_component_const(
                const struct bt_self_component_port_input_message_iterator *iterator)
 {
-       BT_ASSERT_PRE_NON_NULL(iterator, "Message iterator");
+       BT_ASSERT_PRE_DEV_NON_NULL(iterator, "Message iterator");
        return iterator->upstream_component;
 }
 
@@ -956,7 +974,7 @@ struct bt_self_component *bt_self_message_iterator_borrow_component(
        struct bt_self_component_port_input_message_iterator *iterator =
                (void *) self_iterator;
 
-       BT_ASSERT_PRE_NON_NULL(iterator, "Message iterator");
+       BT_ASSERT_PRE_DEV_NON_NULL(iterator, "Message iterator");
        return (void *) iterator->upstream_component;
 }
 
@@ -966,7 +984,7 @@ struct bt_self_port_output *bt_self_message_iterator_borrow_port(
        struct bt_self_component_port_input_message_iterator *iterator =
                (void *) self_iterator;
 
-       BT_ASSERT_PRE_NON_NULL(iterator, "Message iterator");
+       BT_ASSERT_PRE_DEV_NON_NULL(iterator, "Message iterator");
        return (void *) iterator->upstream_port;
 }
 
@@ -1015,7 +1033,8 @@ bt_port_output_message_iterator_create(struct bt_graph *graph,
                "%![port-]+p, %![comp-]+c", output_port, output_port_comp);
        iterator = g_new0(struct bt_port_output_message_iterator, 1);
        if (!iterator) {
-               BT_LOGE_STR("Failed to allocate one output port message iterator.");
+               BT_LIB_LOGE_APPEND_CAUSE(
+                       "Failed to allocate one output port message iterator.");
                goto error;
        }
 
@@ -1031,7 +1050,9 @@ bt_port_output_message_iterator_create(struct bt_graph *graph,
        /* Create colander component */
        colander_comp_cls = bt_component_class_sink_colander_get();
        if (!colander_comp_cls) {
-               BT_LOGW("Cannot get colander sink component class.");
+               /* bt_component_class_sink_colander_get() logs errors */
+               BT_LIB_LOGE_APPEND_CAUSE(
+                       "Cannot get colander sink component class.");
                goto error;
        }
 
@@ -1053,8 +1074,9 @@ bt_port_output_message_iterator_create(struct bt_graph *graph,
                        NULL, &colander_data, BT_LOGGING_LEVEL_NONE,
                        (void *) &iterator->colander);
        if (graph_status != BT_FUNC_STATUS_OK) {
-               BT_LIB_LOGW("Cannot add colander sink component to graph: "
-                       "%1[graph-]+g, status=%s", graph,
+               BT_LIB_LOGE_APPEND_CAUSE(
+                       "Cannot add colander sink component to graph: "
+                       "%![graph-]+g, status=%s", graph,
                        bt_common_func_status_string(graph_status));
                goto error;
        }
@@ -1070,7 +1092,8 @@ bt_port_output_message_iterator_create(struct bt_graph *graph,
        graph_status = bt_graph_connect_ports(graph,
                output_port, colander_in_port, NULL);
        if (graph_status != BT_FUNC_STATUS_OK) {
-               BT_LIB_LOGW("Cannot add colander sink component to graph: "
+               BT_LIB_LOGW_APPEND_CAUSE(
+                       "Cannot connect colander sink's port: "
                        "%![graph-]+g, %![comp-]+c, status=%s", graph,
                        iterator->colander,
                        bt_common_func_status_string(graph_status));
@@ -1090,8 +1113,11 @@ bt_port_output_message_iterator_create(struct bt_graph *graph,
        /* Also set the graph as being configured. */
        graph_status = bt_graph_configure(graph);
        if (graph_status != BT_FUNC_STATUS_OK) {
-               BT_LIB_LOGW("Cannot configure graph after having added colander: "
-                       "%![graph-]+g, status=%s", graph,
+               BT_LIB_LOGW_APPEND_CAUSE(
+                       "Cannot configure graph after having "
+                       "added and connected colander sink: "
+                       "%![graph-]+g, %![comp-]+c, status=%s", graph,
+                       iterator->colander,
                        bt_common_func_status_string(graph_status));
                goto error;
        }
@@ -1253,6 +1279,13 @@ bt_self_component_port_input_message_iterator_seek_beginning(
                status == BT_FUNC_STATUS_AGAIN,
                "Unexpected status: %![iter-]+i, status=%s",
                iterator, bt_common_func_status_string(status));
+       if (status < 0) {
+               BT_LIB_LOGW_APPEND_CAUSE(
+                       "Component input port message iterator's \"seek beginning\" method failed: "
+                       "%![iter-]+i, status=%s",
+                       iterator, bt_common_func_status_string(status));
+       }
+
        set_iterator_state_after_seeking(iterator, status);
        return status;
 }
@@ -1266,20 +1299,18 @@ struct auto_seek_stream_state {
         * Value representing which step of this timeline we are at.
         *
         *      time --->
-        *   [SB]  1  [SAB]  2  [PB]  3  [PE]  2  [SAE]  1  [SE]
+        *   [SB]  1  [PB]  2  [PE]  1  [SE]
         *
         * At each point in the timeline, the messages we need to replicate are:
         *
         *   1: Stream beginning
-        *   2: Stream beginning, stream activity beginning
-        *   3: Stream beginning, stream activity beginning, packet beginning
+        *   2: Stream beginning, packet beginning
         *
         * Before "Stream beginning" and after "Stream end", we don't need to
         * replicate anything as the stream doesn't exist.
         */
        enum {
                AUTO_SEEK_STREAM_STATE_STREAM_BEGAN,
-               AUTO_SEEK_STREAM_STATE_STREAM_ACTIVITY_BEGAN,
                AUTO_SEEK_STREAM_STATE_PACKET_BEGAN,
        } state;
 
@@ -1289,6 +1320,9 @@ struct auto_seek_stream_state {
         * alive by the time we use it.
         */
        struct bt_packet *packet;
+
+       /* Have we see a message with a clock snapshot yet? */
+       bool seen_clock_snapshot;
 };
 
 static
@@ -1349,7 +1383,7 @@ int auto_seek_handle_message(
                        (const void *) msg;
 
                clk_snapshot = event_msg->default_cs;
-               BT_ASSERT_POST(clk_snapshot,
+               BT_ASSERT_POST_DEV(clk_snapshot,
                        "Event message has no default clock snapshot: %!+n",
                        event_msg);
                break;
@@ -1370,7 +1404,7 @@ int auto_seek_handle_message(
                        (const void *) msg;
 
                clk_snapshot = packet_msg->default_cs;
-               BT_ASSERT_POST(clk_snapshot,
+               BT_ASSERT_POST_DEV(clk_snapshot,
                        "Packet message has no default clock snapshot: %!+n",
                        packet_msg);
                break;
@@ -1381,7 +1415,7 @@ int auto_seek_handle_message(
                struct bt_message_discarded_items *msg_disc_items =
                        (void *) msg;
 
-               BT_ASSERT_POST(msg_disc_items->default_begin_cs &&
+               BT_ASSERT_POST_DEV(msg_disc_items->default_begin_cs &&
                        msg_disc_items->default_end_cs,
                        "Discarded events/packets message has no default clock snapshots: %!+n",
                        msg_disc_items);
@@ -1416,7 +1450,7 @@ int auto_seek_handle_message(
                         * as we don't know if items were really
                         * discarded within the new time range.
                         */
-                       uint64_t new_begin_raw_value;
+                       uint64_t new_begin_raw_value = 0;
 
                        ret = bt_clock_class_clock_value_from_ns_from_origin(
                                msg_disc_items->default_end_cs->clock_class,
@@ -1441,63 +1475,20 @@ int auto_seek_handle_message(
                        goto skip_msg;
                }
        }
-       case BT_MESSAGE_TYPE_STREAM_ACTIVITY_BEGINNING:
+       case BT_MESSAGE_TYPE_STREAM_BEGINNING:
+       case BT_MESSAGE_TYPE_STREAM_END:
        {
-               const struct bt_message_stream_activity *stream_act_msg =
-                       (const void *) msg;
+               struct bt_message_stream *stream_msg =
+                       (struct bt_message_stream *) msg;
 
-               switch (stream_act_msg->default_cs_state) {
-               case BT_MESSAGE_STREAM_ACTIVITY_CLOCK_SNAPSHOT_STATE_UNKNOWN:
-               case BT_MESSAGE_STREAM_ACTIVITY_CLOCK_SNAPSHOT_STATE_INFINITE:
-                       /*
-                        * -inf is always less than any requested time,
-                        * and we can't assume any specific time for an
-                        * unknown clock snapshot, so skip this.
-                        */
+               if (stream_msg->default_cs_state != BT_MESSAGE_STREAM_CLOCK_SNAPSHOT_STATE_KNOWN) {
+                       /* Ignore */
                        goto skip_msg;
-               case BT_MESSAGE_STREAM_ACTIVITY_CLOCK_SNAPSHOT_STATE_KNOWN:
-                       clk_snapshot = stream_act_msg->default_cs;
-                       BT_ASSERT(clk_snapshot);
-                       break;
-               default:
-                       abort();
                }
 
+               clk_snapshot = stream_msg->default_cs;
                break;
        }
-       case BT_MESSAGE_TYPE_STREAM_ACTIVITY_END:
-       {
-               const struct bt_message_stream_activity *stream_act_msg =
-                       (const void *) msg;
-
-               switch (stream_act_msg->default_cs_state) {
-               case BT_MESSAGE_STREAM_ACTIVITY_CLOCK_SNAPSHOT_STATE_UNKNOWN:
-                       /*
-                        * We can't assume any specific time for an
-                        * unknown clock snapshot, so skip this.
-                        */
-                       goto skip_msg;
-               case BT_MESSAGE_STREAM_ACTIVITY_CLOCK_SNAPSHOT_STATE_INFINITE:
-                       /*
-                        * +inf is always greater than any requested
-                        * time.
-                        */
-                       *got_first = true;
-                       goto push_msg;
-               case BT_MESSAGE_STREAM_ACTIVITY_CLOCK_SNAPSHOT_STATE_KNOWN:
-                       clk_snapshot = stream_act_msg->default_cs;
-                       BT_ASSERT(clk_snapshot);
-                       break;
-               default:
-                       abort();
-               }
-
-               break;
-       }
-       case BT_MESSAGE_TYPE_STREAM_BEGINNING:
-       case BT_MESSAGE_TYPE_STREAM_END:
-               /* Ignore */
-               goto skip_msg;
        default:
                abort();
        }
@@ -1532,39 +1523,47 @@ skip_msg:
 
                stream_state->state = AUTO_SEEK_STREAM_STATE_STREAM_BEGAN;
 
+               if (stream_msg->default_cs_state == BT_MESSAGE_STREAM_CLOCK_SNAPSHOT_STATE_KNOWN) {
+                       stream_state->seen_clock_snapshot = true;
+               }
+
                BT_ASSERT(!bt_g_hash_table_contains(stream_states, stream_msg->stream));
                g_hash_table_insert(stream_states, stream_msg->stream, stream_state);
                break;
        }
-       case BT_MESSAGE_TYPE_STREAM_ACTIVITY_BEGINNING:
+       case BT_MESSAGE_TYPE_PACKET_BEGINNING:
        {
-               const struct bt_message_stream_activity *stream_act_msg =
+               const struct bt_message_packet *packet_msg =
                        (const void *) msg;
                struct auto_seek_stream_state *stream_state;
 
-               /* Update stream's state: stream activity began. */
-               stream_state = g_hash_table_lookup(stream_states, stream_act_msg->stream);
+               /* Update stream's state: packet began. */
+               stream_state = g_hash_table_lookup(stream_states, packet_msg->packet->stream);
                BT_ASSERT(stream_state);
 
                BT_ASSERT(stream_state->state == AUTO_SEEK_STREAM_STATE_STREAM_BEGAN);
-               stream_state->state = AUTO_SEEK_STREAM_STATE_STREAM_ACTIVITY_BEGAN;
+               stream_state->state = AUTO_SEEK_STREAM_STATE_PACKET_BEGAN;
                BT_ASSERT(!stream_state->packet);
+               stream_state->packet = packet_msg->packet;
+
+               if (packet_msg->packet->stream->class->packets_have_beginning_default_clock_snapshot) {
+                       stream_state->seen_clock_snapshot = true;
+               }
+
                break;
        }
-       case BT_MESSAGE_TYPE_PACKET_BEGINNING:
+       case BT_MESSAGE_TYPE_EVENT:
        {
-               const struct bt_message_packet *packet_msg =
-                       (const void *) msg;
+               const struct bt_message_event *event_msg = (const void *) msg;
                struct auto_seek_stream_state *stream_state;
 
-               /* Update stream's state: packet began. */
-               stream_state = g_hash_table_lookup(stream_states, packet_msg->packet->stream);
+               stream_state = g_hash_table_lookup(stream_states,
+                       event_msg->event->packet->stream);
                BT_ASSERT(stream_state);
 
-               BT_ASSERT(stream_state->state == AUTO_SEEK_STREAM_STATE_STREAM_ACTIVITY_BEGAN);
-               stream_state->state = AUTO_SEEK_STREAM_STATE_PACKET_BEGAN;
-               BT_ASSERT(!stream_state->packet);
-               stream_state->packet = packet_msg->packet;
+               // HELPME: are we sure that event messages have clock snapshots at this point?
+               stream_state->seen_clock_snapshot = true;
+
                break;
        }
        case BT_MESSAGE_TYPE_PACKET_END:
@@ -1578,24 +1577,14 @@ skip_msg:
                BT_ASSERT(stream_state);
 
                BT_ASSERT(stream_state->state == AUTO_SEEK_STREAM_STATE_PACKET_BEGAN);
-               stream_state->state = AUTO_SEEK_STREAM_STATE_STREAM_ACTIVITY_BEGAN;
+               stream_state->state = AUTO_SEEK_STREAM_STATE_STREAM_BEGAN;
                BT_ASSERT(stream_state->packet);
                stream_state->packet = NULL;
-               break;
-       }
-       case BT_MESSAGE_TYPE_STREAM_ACTIVITY_END:
-       {
-               const struct bt_message_stream_activity *stream_act_msg =
-                       (const void *) msg;
-               struct auto_seek_stream_state *stream_state;
 
-               /* Update stream's state: stream activity ended. */
-               stream_state = g_hash_table_lookup(stream_states, stream_act_msg->stream);
-               BT_ASSERT(stream_state);
+               if (packet_msg->packet->stream->class->packets_have_end_default_clock_snapshot) {
+                       stream_state->seen_clock_snapshot = true;
+               }
 
-               BT_ASSERT(stream_state->state == AUTO_SEEK_STREAM_STATE_STREAM_ACTIVITY_BEGAN);
-               stream_state->state = AUTO_SEEK_STREAM_STATE_STREAM_BEGAN;
-               BT_ASSERT(!stream_state->packet);
                break;
        }
        case BT_MESSAGE_TYPE_STREAM_END:
@@ -1612,6 +1601,23 @@ skip_msg:
                g_hash_table_remove(stream_states, stream_msg->stream);
                break;
        }
+       case BT_MESSAGE_TYPE_DISCARDED_EVENTS:
+       case BT_MESSAGE_TYPE_DISCARDED_PACKETS:
+       {
+               const struct bt_message_discarded_items *discarded_msg =
+                       (const void *) msg;
+               struct auto_seek_stream_state *stream_state;
+
+               stream_state = g_hash_table_lookup(stream_states, discarded_msg->stream);
+               BT_ASSERT(stream_state);
+
+               if ((msg->type == BT_MESSAGE_TYPE_DISCARDED_EVENTS && discarded_msg->stream->class->discarded_events_have_default_clock_snapshots) ||
+                       (msg->type == BT_MESSAGE_TYPE_DISCARDED_PACKETS && discarded_msg->stream->class->discarded_packets_have_default_clock_snapshots)) {
+                       stream_state->seen_clock_snapshot = true;
+               }
+
+               break;
+       }
        default:
                break;
        }
@@ -1661,6 +1667,14 @@ int find_message_ge_ns_from_origin(
                 */
                status = call_iterator_next_method(iterator,
                        &messages[0], MSG_BATCH_SIZE, &user_count);
+               BT_LOGD("User method returned: status=%s",
+                       bt_common_func_status_string(status));
+               if (status < 0) {
+                       BT_LIB_LOGW_APPEND_CAUSE(
+                               "Component input port message iterator's \"next\" method failed: "
+                               "%![iter-]+i, status=%s",
+                               iterator, bt_common_func_status_string(status));
+               }
 
                /*
                 * The user's "next" method must not do any action which
@@ -1671,7 +1685,7 @@ int find_message_ge_ns_from_origin(
 
                switch (status) {
                case BT_FUNC_STATUS_OK:
-                       BT_ASSERT_POST(user_count <= MSG_BATCH_SIZE,
+                       BT_ASSERT_POST_DEV(user_count <= MSG_BATCH_SIZE,
                                "Invalid returned message count: greater than "
                                "batch size: count=%" PRIu64 ", batch-size=%u",
                                user_count, MSG_BATCH_SIZE);
@@ -1811,6 +1825,12 @@ bt_self_component_port_input_message_iterator_seek_ns_from_origin(
                        status == BT_FUNC_STATUS_AGAIN,
                        "Unexpected status: %![iter-]+i, status=%s",
                        iterator, bt_common_func_status_string(status));
+               if (status < 0) {
+                       BT_LIB_LOGW_APPEND_CAUSE(
+                               "Component input port message iterator's \"seek nanoseconds from origin\" method failed: "
+                               "%![iter-]+i, status=%s",
+                               iterator, bt_common_func_status_string(status));
+               }
        } else {
                /*
                 * The iterator doesn't know how to seek to a particular time.  We will
@@ -1829,6 +1849,13 @@ bt_self_component_port_input_message_iterator_seek_ns_from_origin(
                        status == BT_FUNC_STATUS_AGAIN,
                        "Unexpected status: %![iter-]+i, status=%s",
                        iterator, bt_common_func_status_string(status));
+               if (status < 0) {
+                       BT_LIB_LOGW_APPEND_CAUSE(
+                               "Component input port message iterator's \"seek beginning\" method failed: "
+                               "%![iter-]+i, status=%s",
+                               iterator, bt_common_func_status_string(status));
+               }
+
                switch (status) {
                case BT_FUNC_STATUS_OK:
                        break;
@@ -1854,7 +1881,8 @@ bt_self_component_port_input_message_iterator_seek_ns_from_origin(
 
                stream_states = create_auto_seek_stream_states();
                if (!stream_states) {
-                       BT_LOGE_STR("Failed to allocate one GHashTable.");
+                       BT_LIB_LOGE_APPEND_CAUSE(
+                               "Failed to allocate one GHashTable.");
                        status = BT_FUNC_STATUS_MEMORY_ERROR;
                        goto end;
                }
@@ -1881,42 +1909,57 @@ bt_self_component_port_input_message_iterator_seek_ns_from_origin(
                                bt_message *msg;
                                const bt_clock_class *clock_class = bt_stream_class_borrow_default_clock_class_const(
                                        bt_stream_borrow_class_const(stream));
-                               uint64_t raw_value;
-
-                               if (clock_raw_value_from_ns_from_origin(clock_class, ns_from_origin, &raw_value) != 0) {
-                                       BT_LIB_LOGW("Could not convert nanoseconds from origin to clock value: ns-from-origin=%" PRId64 ", %![cc-]+K",
-                                               ns_from_origin, clock_class);
-                                       status = BT_FUNC_STATUS_ERROR;
-                                       goto end;
+                               /* Initialize to silence maybe-uninitialized warning. */
+                               uint64_t raw_value = 0;
+
+                               /*
+                                * If we haven't seen a message with a clock snapshot, we don't know if our seek time is within
+                                * the clock's range, so it wouldn't be safe to try to convert ns_from_origin to a clock value.
+                                *
+                                * Also, it would be a bit of a lie to generate a stream begin message with the seek time as its
+                                * clock snapshot, because we don't really know if the stream existed at that time.  If we have
+                                * seen a message with a clock snapshot in our seeking, then we are sure that the
+                                * seek time is not below the clock range, and we know the stream was active at that
+                                * time (and that we cut it short).
+                                */
+                               if (stream_state->seen_clock_snapshot) {
+                                       if (clock_raw_value_from_ns_from_origin(clock_class, ns_from_origin, &raw_value) != 0) {
+                                               BT_LIB_LOGW("Could not convert nanoseconds from origin to clock value: ns-from-origin=%" PRId64 ", %![cc-]+K",
+                                                       ns_from_origin, clock_class);
+                                               status = BT_FUNC_STATUS_ERROR;
+                                               goto end;
+                                       }
                                }
 
                                switch (stream_state->state) {
                                case AUTO_SEEK_STREAM_STATE_PACKET_BEGAN:
                                        BT_ASSERT(stream_state->packet);
                                        BT_LIB_LOGD("Creating packet message: %![packet-]+a", stream_state->packet);
-                                       msg = bt_message_packet_beginning_create_with_default_clock_snapshot(
-                                               (bt_self_message_iterator *) iterator, stream_state->packet, raw_value);
-                                       if (!msg) {
-                                               status = BT_FUNC_STATUS_MEMORY_ERROR;
-                                               goto end;
+
+                                       if (stream->class->packets_have_beginning_default_clock_snapshot) {
+                                               /*
+                                                * If we are in the PACKET_BEGAN state, it means we have seen a "packet beginning"
+                                                * message.  If "packet beginning" packets have clock snapshots, then we must have
+                                                * seen a clock snapshot.
+                                                */
+                                               BT_ASSERT(stream_state->seen_clock_snapshot);
+
+                                               msg = bt_message_packet_beginning_create_with_default_clock_snapshot(
+                                                       (bt_self_message_iterator *) iterator, stream_state->packet, raw_value);
+                                       } else {
+                                               msg = bt_message_packet_beginning_create((bt_self_message_iterator *) iterator,
+                                                               stream_state->packet);
                                        }
 
-                                       g_queue_push_head(iterator->auto_seek.msgs, msg);
-                                       msg = NULL;
-                                       /* fall-thru */
-                               case AUTO_SEEK_STREAM_STATE_STREAM_ACTIVITY_BEGAN:
-                                       msg = bt_message_stream_activity_beginning_create(
-                                               (bt_self_message_iterator *) iterator, stream);
                                        if (!msg) {
                                                status = BT_FUNC_STATUS_MEMORY_ERROR;
                                                goto end;
                                        }
 
-                                       bt_message_stream_activity_beginning_set_default_clock_snapshot(msg, raw_value);
-
                                        g_queue_push_head(iterator->auto_seek.msgs, msg);
                                        msg = NULL;
                                        /* fall-thru */
+
                                case AUTO_SEEK_STREAM_STATE_STREAM_BEGAN:
                                        msg = bt_message_stream_beginning_create(
                                                (bt_self_message_iterator *) iterator, stream);
@@ -1925,6 +1968,10 @@ bt_self_component_port_input_message_iterator_seek_ns_from_origin(
                                                goto end;
                                        }
 
+                                       if (stream_state->seen_clock_snapshot) {
+                                               bt_message_stream_beginning_set_default_clock_snapshot(msg, raw_value);
+                                       }
+
                                        g_queue_push_head(iterator->auto_seek.msgs, msg);
                                        msg = NULL;
                                        break;
@@ -1976,6 +2023,7 @@ end:
                destroy_auto_seek_stream_states(stream_states);
                stream_states = NULL;
        }
+
        set_iterator_state_after_seeking(iterator, status);
        return status;
 }
This page took 0.036156 seconds and 4 git commands to generate.