2 * SPDX-License-Identifier: MIT
4 * Copyright 2019 Philippe Proulx <pproulx@efficios.com>
7 #define BT_LOG_TAG "LIB/MIP"
8 #include "lib/logging.h"
10 #include "lib/assert-cond.h"
14 #include <babeltrace2/graph/graph.h>
16 #include "common/assert.h"
17 #include "compat/compiler.h"
18 #include "common/common.h"
19 #include "lib/value.h"
20 #include "component-descriptor-set.h"
21 #include "lib/integer-range-set.h"
24 bool unsigned_integer_range_set_contains(
25 const struct bt_integer_range_set
*range_set
, uint64_t value
)
27 bool contains
= false;
32 for (i
= 0; i
< range_set
->ranges
->len
; i
++) {
33 const struct bt_integer_range
*range
=
34 BT_INTEGER_RANGE_SET_RANGE_AT_INDEX(range_set
, i
);
36 if (value
>= range
->lower
.u
&& value
<= range
->upper
.u
) {
47 * As of this version, this function only validates that all the
48 * component descriptors in `descriptors` support MIP version 0, which
49 * is the only version supported by this library.
51 * If any component descriptor does not support MIP version 0, then this
52 * function returns `BT_FUNC_STATUS_NO_MATCH`.
55 int validate_operative_mip_version_in_array(GPtrArray
*descriptors
,
56 enum bt_logging_level log_level
)
58 typedef bt_component_class_get_supported_mip_versions_method_status
60 void * /* component class */,
61 const struct bt_value
*,
62 void * /* init method data */,
63 enum bt_logging_level
,
64 struct bt_integer_range_set
*);
66 int status
= BT_FUNC_STATUS_OK
;
68 struct bt_integer_range_set
*range_set
= NULL
;
70 for (i
= 0; i
< descriptors
->len
; i
++) {
71 struct bt_component_descriptor_set_entry
*descr
=
72 descriptors
->pdata
[i
];
73 method_t method
= NULL
;
74 const char *method_name
= NULL
;
75 bt_component_class_get_supported_mip_versions_method_status method_status
;
77 switch (descr
->comp_cls
->type
) {
78 case BT_COMPONENT_CLASS_TYPE_SOURCE
:
80 struct bt_component_class_source
*src_cc
= (void *)
83 method
= (method_t
) src_cc
->methods
.get_supported_mip_versions
;
84 method_name
= "bt_component_class_source_get_supported_mip_versions_method";
87 case BT_COMPONENT_CLASS_TYPE_FILTER
:
89 struct bt_component_class_filter
*flt_cc
= (void *)
92 method
= (method_t
) flt_cc
->methods
.get_supported_mip_versions
;
93 method_name
= "bt_component_class_filter_get_supported_mip_versions_method";
96 case BT_COMPONENT_CLASS_TYPE_SINK
:
98 struct bt_component_class_sink
*sink_cc
= (void *)
101 method
= (method_t
) sink_cc
->methods
.get_supported_mip_versions
;
102 method_name
= "bt_component_class_sink_get_supported_mip_versions_method";
114 range_set
= (void *) bt_integer_range_set_unsigned_create();
116 status
= BT_FUNC_STATUS_MEMORY_ERROR
;
120 BT_ASSERT(descr
->params
);
121 BT_LIB_LOGD("Calling user's \"get supported MIP versions\" method: "
122 "%![cc-]+C, %![params-]+v, init-method-data=%p, "
124 descr
->comp_cls
, descr
->params
,
125 descr
->init_method_data
,
126 bt_common_logging_level_string(log_level
));
127 method_status
= method(descr
->comp_cls
, descr
->params
,
128 descr
->init_method_data
, log_level
,
130 BT_LIB_LOGD("User method returned: status=%s",
131 bt_common_func_status_string(method_status
));
132 BT_ASSERT_POST(method_name
, "status-ok-with-at-least-one-range",
133 method_status
!= BT_FUNC_STATUS_OK
||
134 range_set
->ranges
->len
> 0,
135 "User method returned `BT_FUNC_STATUS_OK` without "
136 "adding a range to the supported MIP version range set.");
137 BT_ASSERT_POST_NO_ERROR_IF_NO_ERROR_STATUS(method_name
,
139 if (method_status
< 0) {
140 BT_LIB_LOGW_APPEND_CAUSE(
141 "Component class's \"get supported MIP versions\" method failed: "
142 "%![cc-]+C, %![params-]+v, init-method-data=%p, "
144 descr
->comp_cls
, descr
->params
,
145 descr
->init_method_data
,
146 bt_common_logging_level_string(log_level
));
147 status
= (int) method_status
;
151 if (!unsigned_integer_range_set_contains(range_set
, 0)) {
153 * Supported MIP versions do not include 0,
154 * which is the only MIP versions currently
155 * supported by the library itself.
157 status
= BT_FUNC_STATUS_NO_MATCH
;
161 BT_OBJECT_PUT_REF_AND_RESET(range_set
);
165 bt_object_put_ref(range_set
);
170 * The purpose of this function is eventually to find the greatest
171 * common supported MIP version amongst all the component descriptors.
172 * But as of this version of the library, only MIP version 0 is
173 * supported, so it only checks that they all support MIP version 0 and
174 * always sets `*operative_mip_version` to 0.
176 * When any component descriptor does not support MIP version 0, this
177 * function returns `BT_FUNC_STATUS_NO_MATCH`.
179 enum bt_get_greatest_operative_mip_version_status
180 bt_get_greatest_operative_mip_version(
181 const struct bt_component_descriptor_set
*comp_descr_set
,
182 enum bt_logging_level log_level
,
183 uint64_t *operative_mip_version
)
185 int status
= BT_FUNC_STATUS_OK
;
187 BT_ASSERT_PRE_NO_ERROR();
188 BT_ASSERT_PRE_COMP_DESCR_SET_NON_NULL(comp_descr_set
);
189 BT_ASSERT_PRE_NON_NULL("operative-mip-version-output",
190 operative_mip_version
,
191 "Operative MIP version (output)");
192 BT_ASSERT_PRE("component-descriptor-set-is-not-empty",
193 comp_descr_set
->sources
->len
+
194 comp_descr_set
->filters
->len
+
195 comp_descr_set
->sinks
->len
> 0,
196 "Component descriptor set is empty: addr=%p", comp_descr_set
);
197 status
= validate_operative_mip_version_in_array(
198 comp_descr_set
->sources
, log_level
);
203 status
= validate_operative_mip_version_in_array(
204 comp_descr_set
->filters
, log_level
);
209 status
= validate_operative_mip_version_in_array(
210 comp_descr_set
->sinks
, log_level
);
215 *operative_mip_version
= 0;
221 uint64_t bt_get_maximal_mip_version(void)