lib: remove "unknown clock snapshot" concept
[babeltrace.git] / lib / trace-ir / stream-class.c
index ead41195c31f5b5c791d4cd8578f4a0850e65792..e4f48f4eccb252d740019121e08d4bd696a82488 100644 (file)
@@ -284,6 +284,14 @@ bt_stream_class_borrow_packet_context_field_class_const(
        return stream_class->packet_context_fc;
 }
 
+struct bt_field_class *
+bt_stream_class_borrow_packet_context_field_class(
+               struct bt_stream_class *stream_class)
+{
+       BT_ASSERT_PRE_NON_NULL(stream_class, "Stream class");
+       return stream_class->packet_context_fc;
+}
+
 enum bt_stream_class_status bt_stream_class_set_packet_context_field_class(
                struct bt_stream_class *stream_class,
                struct bt_field_class *field_class)
@@ -334,6 +342,14 @@ bt_stream_class_borrow_event_common_context_field_class_const(
        return stream_class->event_common_context_fc;
 }
 
+struct bt_field_class *
+bt_stream_class_borrow_event_common_context_field_class(
+               struct bt_stream_class *stream_class)
+{
+       BT_ASSERT_PRE_NON_NULL(stream_class, "Stream class");
+       return stream_class->event_common_context_fc;
+}
+
 enum bt_stream_class_status
 bt_stream_class_set_event_common_context_field_class(
                struct bt_stream_class *stream_class,
@@ -453,97 +469,6 @@ void bt_stream_class_set_assigns_automatic_stream_id(
                "assignment property: %!+S", stream_class);
 }
 
-bt_bool bt_stream_class_packets_have_discarded_event_counter_snapshot(
-               const struct bt_stream_class *stream_class)
-{
-       BT_ASSERT_PRE_NON_NULL(stream_class, "Stream class");
-       return (bt_bool) stream_class->packets_have_discarded_event_counter_snapshot;
-}
-
-void bt_stream_class_set_packets_have_discarded_event_counter_snapshot(
-               struct bt_stream_class *stream_class,
-               bt_bool value)
-{
-       BT_ASSERT_PRE_NON_NULL(stream_class, "Stream class");
-       BT_ASSERT_PRE_STREAM_CLASS_HOT(stream_class);
-       stream_class->packets_have_discarded_event_counter_snapshot =
-               (bool) value;
-       BT_LIB_LOGV("Set stream class's "
-               "\"packets have discarded event counter snapshot\" property: "
-               "%!+S", stream_class);
-}
-
-bt_bool bt_stream_class_packets_have_packet_counter_snapshot(
-               const struct bt_stream_class *stream_class)
-{
-       BT_ASSERT_PRE_NON_NULL(stream_class, "Stream class");
-       return (bt_bool) stream_class->packets_have_packet_counter_snapshot;
-}
-
-void bt_stream_class_set_packets_have_packet_counter_snapshot(
-               struct bt_stream_class *stream_class,
-               bt_bool value)
-{
-       BT_ASSERT_PRE_NON_NULL(stream_class, "Stream class");
-       BT_ASSERT_PRE_STREAM_CLASS_HOT(stream_class);
-       stream_class->packets_have_packet_counter_snapshot =
-               (bool) value;
-       BT_LIB_LOGV("Set stream class's "
-               "\"packets have packet counter snapshot\" property: "
-               "%!+S", stream_class);
-}
-
-bt_bool bt_stream_class_packets_have_default_beginning_clock_snapshot(
-               const struct bt_stream_class *stream_class)
-{
-       BT_ASSERT_PRE_NON_NULL(stream_class, "Stream class");
-       return (bt_bool) stream_class->packets_have_default_beginning_cs;
-}
-
-void bt_stream_class_set_packets_have_default_beginning_clock_snapshot(
-               struct bt_stream_class *stream_class,
-               bt_bool value)
-{
-       BT_ASSERT_PRE_NON_NULL(stream_class, "Stream class");
-       BT_ASSERT_PRE_STREAM_CLASS_HOT(stream_class);
-       BT_ASSERT_PRE(!value || stream_class->default_clock_class,
-               "Stream class does not have a default clock class: %!+S",
-               stream_class);
-       stream_class->packets_have_default_beginning_cs = (bool) value;
-       BT_LIB_LOGV("Set stream class's "
-               "\"packets have default beginning clock snapshot\" property: "
-               "%!+S", stream_class);
-}
-
-bt_bool bt_stream_class_packets_have_default_end_clock_snapshot(
-               const struct bt_stream_class *stream_class)
-{
-       BT_ASSERT_PRE_NON_NULL(stream_class, "Stream class");
-       return (bt_bool) stream_class->packets_have_default_end_cs;
-}
-
-void bt_stream_class_set_packets_have_default_end_clock_snapshot(
-               struct bt_stream_class *stream_class,
-               bt_bool value)
-{
-       BT_ASSERT_PRE_NON_NULL(stream_class, "Stream class");
-       BT_ASSERT_PRE_STREAM_CLASS_HOT(stream_class);
-       BT_ASSERT_PRE(!value || stream_class->default_clock_class,
-               "Stream class does not have a default clock class: %!+S",
-               stream_class);
-       stream_class->packets_have_default_end_cs = (bool) value;
-       BT_LIB_LOGV("Set stream class's "
-               "\"packets have default end clock snapshot\" property: "
-               "%!+S", stream_class);
-}
-
-bt_bool bt_stream_class_default_clock_is_always_known(
-               const struct bt_stream_class *stream_class)
-{
-       /* BT_CLOCK_SNAPSHOT_STATE_UNKNOWN is not supported as of 2.0 */
-       return BT_TRUE;
-}
-
 void bt_stream_class_get_ref(const struct bt_stream_class *stream_class)
 {
        bt_object_get_ref(stream_class);
This page took 0.025099 seconds and 4 git commands to generate.