2 * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
4 * Permission is hereby granted, free of charge, to any person obtaining a copy
5 * of this software and associated documentation files (the "Software"), to deal
6 * in the Software without restriction, including without limitation the rights
7 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 * copies of the Software, and to permit persons to whom the Software is
9 * furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 #define BT_LOG_TAG "COLANDER"
24 #include <babeltrace/lib-logging-internal.h>
26 #include <babeltrace/assert-internal.h>
27 #include <babeltrace/assert-pre-internal.h>
28 #include <babeltrace/object-internal.h>
29 #include <babeltrace/graph/component-class-sink.h>
30 #include <babeltrace/graph/self-component-sink.h>
31 #include <babeltrace/graph/self-component-port.h>
32 #include <babeltrace/graph/self-component-port-input-notification-iterator.h>
33 #include <babeltrace/graph/self-component.h>
34 #include <babeltrace/graph/component-class-sink-colander-internal.h>
38 struct bt_component_class_sink
*colander_comp_cls
;
40 struct colander_data
{
41 bt_notification_array_const notifs
;
43 struct bt_self_component_port_input_notification_iterator
*notif_iter
;
47 enum bt_self_component_status
colander_init(
48 struct bt_self_component_sink
*self_comp
,
49 const struct bt_value
*params
, void *init_method_data
)
51 enum bt_self_component_status status
= BT_SELF_COMPONENT_STATUS_OK
;
52 struct colander_data
*colander_data
= NULL
;
53 struct bt_component_class_sink_colander_data
*user_provided_data
=
56 if (!init_method_data
) {
57 BT_LOGW_STR("Component initialization method data is NULL.");
58 status
= BT_SELF_COMPONENT_STATUS_ERROR
;
62 colander_data
= g_new0(struct colander_data
, 1);
64 BT_LOGE_STR("Failed to allocate colander data.");
65 status
= BT_SELF_COMPONENT_STATUS_NOMEM
;
69 colander_data
->notifs
= user_provided_data
->notifs
;
70 colander_data
->count_addr
= user_provided_data
->count_addr
;
71 status
= bt_self_component_sink_add_input_port(self_comp
, "in",
73 if (status
!= BT_SELF_COMPONENT_STATUS_OK
) {
74 BT_LOGE_STR("Cannot add input port.");
78 bt_self_component_set_data(
79 bt_self_component_sink_as_self_component(self_comp
),
87 void colander_finalize(struct bt_self_component_sink
*self_comp
)
89 struct colander_data
*colander_data
=
90 bt_self_component_get_data(
91 bt_self_component_sink_as_self_component(self_comp
));
97 BT_OBJECT_PUT_REF_AND_RESET(colander_data
->notif_iter
);
98 g_free(colander_data
);
102 enum bt_self_component_status
colander_input_port_connected(
103 struct bt_self_component_sink
*self_comp
,
104 struct bt_self_component_port_input
*self_port
,
105 const struct bt_port_output
*other_port
)
107 enum bt_self_component_status status
= BT_SELF_COMPONENT_STATUS_OK
;
108 struct colander_data
*colander_data
=
109 bt_self_component_get_data(
110 bt_self_component_sink_as_self_component(self_comp
));
112 BT_ASSERT(colander_data
);
113 BT_OBJECT_PUT_REF_AND_RESET(colander_data
->notif_iter
);
114 colander_data
->notif_iter
=
115 bt_self_component_port_input_notification_iterator_create(
117 if (!colander_data
->notif_iter
) {
118 BT_LIB_LOGE("Cannot create notification iterator on "
119 "self component input port: %![port-]+p",
121 status
= BT_SELF_COMPONENT_STATUS_NOMEM
;
130 enum bt_self_component_status
colander_consume(
131 struct bt_self_component_sink
*self_comp
)
133 enum bt_self_component_status status
= BT_SELF_COMPONENT_STATUS_OK
;
134 enum bt_notification_iterator_status notif_iter_status
;
135 struct colander_data
*colander_data
=
136 bt_self_component_get_data(
137 bt_self_component_sink_as_self_component(self_comp
));
138 bt_notification_array_const notifs
;
140 BT_ASSERT(colander_data
);
142 if (!colander_data
->notif_iter
) {
143 BT_LIB_LOGW("Trying to consume without an "
144 "upstream notification iterator: %![comp-]+c",
150 bt_self_component_port_input_notification_iterator_next(
151 colander_data
->notif_iter
, ¬ifs
,
152 colander_data
->count_addr
);
153 switch (notif_iter_status
) {
154 case BT_NOTIFICATION_ITERATOR_STATUS_CANCELED
:
155 status
= BT_SELF_COMPONENT_STATUS_OK
;
157 case BT_NOTIFICATION_ITERATOR_STATUS_AGAIN
:
158 status
= BT_SELF_COMPONENT_STATUS_AGAIN
;
160 case BT_NOTIFICATION_ITERATOR_STATUS_END
:
161 status
= BT_SELF_COMPONENT_STATUS_END
;
163 case BT_NOTIFICATION_ITERATOR_STATUS_OK
:
164 /* Move notifications to user (count already set) */
165 memcpy(colander_data
->notifs
, notifs
,
166 sizeof(*notifs
) * *colander_data
->count_addr
);
169 status
= BT_SELF_COMPONENT_STATUS_ERROR
;
177 struct bt_component_class_sink
*bt_component_class_sink_colander_get(void)
179 if (colander_comp_cls
) {
183 colander_comp_cls
= bt_component_class_sink_create("colander",
185 if (!colander_comp_cls
) {
186 BT_LOGE_STR("Cannot create sink colander component class.");
190 (void) bt_component_class_sink_set_init_method(
191 colander_comp_cls
, colander_init
);
192 (void) bt_component_class_sink_set_finalize_method(
193 colander_comp_cls
, colander_finalize
);
194 (void) bt_component_class_sink_set_input_port_connected_method(
195 colander_comp_cls
, colander_input_port_connected
);
198 bt_object_get_ref(colander_comp_cls
);
199 return (void *) colander_comp_cls
;
202 __attribute__((destructor
)) static
203 void put_colander(void) {
204 BT_OBJECT_PUT_REF_AND_RESET(colander_comp_cls
);