2 * Copyright 2017 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_COMP_LOG_SELF_COMP (counter->self_comp)
24 #define BT_LOG_OUTPUT_LEVEL (counter->log_level)
25 #define BT_LOG_TAG "PLUGIN/FLT.UTILS.COUNTER"
26 #include "logging/comp-logging.h"
28 #include <babeltrace2/babeltrace.h>
29 #include "common/macros.h"
30 #include "common/common.h"
31 #include "common/assert.h"
35 #include "plugins/common/param-validation/param-validation.h"
39 #define PRINTF_COUNT(_what, _var, args...) \
41 if (counter->count._var != 0 || !counter->hide_zero) { \
42 printf("%15" PRIu64 " %s message%s\n", \
43 counter->count._var, \
45 counter->count._var == 1 ? "" : "s"); \
50 const char * const in_port_name
= "in";
53 uint64_t get_total_count(struct counter
*counter
)
55 return counter
->count
.event
+
56 counter
->count
.stream_begin
+
57 counter
->count
.stream_end
+
58 counter
->count
.packet_begin
+
59 counter
->count
.packet_end
+
60 counter
->count
.disc_events
+
61 counter
->count
.disc_packets
+
62 counter
->count
.msg_iter_inactivity
+
67 void print_count(struct counter
*counter
)
69 uint64_t total
= get_total_count(counter
);
71 PRINTF_COUNT("Event", event
);
72 PRINTF_COUNT("Stream beginning", stream_begin
);
73 PRINTF_COUNT("Stream end", stream_end
);
74 PRINTF_COUNT("Packet beginning", packet_begin
);
75 PRINTF_COUNT("Packet end", packet_end
);
76 PRINTF_COUNT("Discarded event", disc_events
);
77 PRINTF_COUNT("Discarded packet", disc_packets
);
78 PRINTF_COUNT("Message iterator inactivity", msg_iter_inactivity
);
80 if (counter
->count
.other
> 0) {
81 PRINTF_COUNT("Other (unknown)", other
);
84 printf("%s%15" PRIu64
" message%s (TOTAL)%s\n",
85 bt_common_color_bold(), total
, total
== 1 ? "" : "s",
86 bt_common_color_reset());
87 counter
->last_printed_total
= total
;
91 void try_print_count(struct counter
*counter
, uint64_t msg_count
)
93 if (counter
->step
== 0) {
98 counter
->at
+= msg_count
;
100 if (counter
->at
>= counter
->step
) {
102 print_count(counter
);
108 void try_print_last(struct counter
*counter
)
110 const uint64_t total
= get_total_count(counter
);
112 if (total
!= counter
->last_printed_total
) {
113 print_count(counter
);
118 void destroy_private_counter_data(struct counter
*counter
)
121 bt_self_component_port_input_message_iterator_put_ref(
128 void counter_finalize(bt_self_component_sink
*comp
)
130 struct counter
*counter
;
133 counter
= bt_self_component_get_data(
134 bt_self_component_sink_as_self_component(comp
));
136 try_print_last(counter
);
137 bt_self_component_port_input_message_iterator_put_ref(counter
->msg_iter
);
142 struct bt_param_validation_map_value_entry_descr counter_params
[] = {
143 { "step", BT_PARAM_VALIDATION_MAP_VALUE_ENTRY_OPTIONAL
, { .type
= BT_VALUE_TYPE_UNSIGNED_INTEGER
} },
144 { "hide-zero", BT_PARAM_VALIDATION_MAP_VALUE_ENTRY_OPTIONAL
, { .type
= BT_VALUE_TYPE_BOOL
} },
145 BT_PARAM_VALIDATION_MAP_VALUE_ENTRY_END
149 bt_component_class_initialize_method_status
counter_init(
150 bt_self_component_sink
*component
,
151 bt_self_component_sink_configuration
*config
,
152 const bt_value
*params
,
153 __attribute__((unused
)) void *init_method_data
)
155 bt_component_class_initialize_method_status status
;
156 bt_self_component_add_port_status add_port_status
;
157 struct counter
*counter
= g_new0(struct counter
, 1);
158 const bt_value
*step
= NULL
;
159 const bt_value
*hide_zero
= NULL
;
160 enum bt_param_validation_status validation_status
;
161 gchar
*validate_error
= NULL
;
164 status
= BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_MEMORY_ERROR
;
169 bt_self_component_sink_as_self_component(component
);
170 counter
->log_level
= bt_component_get_logging_level(
171 bt_self_component_as_component(counter
->self_comp
));
172 add_port_status
= bt_self_component_sink_add_input_port(component
,
174 if (add_port_status
!= BT_SELF_COMPONENT_ADD_PORT_STATUS_OK
) {
175 status
= (int) add_port_status
;
179 validation_status
= bt_param_validation_validate(params
,
180 counter_params
, &validate_error
);
181 if (validation_status
== BT_PARAM_VALIDATION_STATUS_MEMORY_ERROR
) {
182 status
= BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_MEMORY_ERROR
;
184 } else if (validation_status
== BT_PARAM_VALIDATION_STATUS_VALIDATION_ERROR
) {
185 status
= BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_ERROR
;
186 BT_COMP_LOGE_APPEND_CAUSE(counter
->self_comp
,
187 "%s", validate_error
);
191 counter
->last_printed_total
= -1ULL;
192 counter
->step
= 10000;
193 step
= bt_value_map_borrow_entry_value_const(params
, "step");
195 counter
->step
= bt_value_integer_unsigned_get(step
);
198 hide_zero
= bt_value_map_borrow_entry_value_const(params
, "hide-zero");
200 counter
->hide_zero
= (bool) bt_value_bool_get(hide_zero
);
203 bt_self_component_set_data(
204 bt_self_component_sink_as_self_component(component
),
207 status
= BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_OK
;
211 destroy_private_counter_data(counter
);
214 g_free(validate_error
);
219 bt_component_class_sink_graph_is_configured_method_status
220 counter_graph_is_configured(
221 bt_self_component_sink
*comp
)
223 bt_component_class_sink_graph_is_configured_method_status status
;
224 bt_self_component_port_input_message_iterator_create_from_sink_component_status
226 struct counter
*counter
;
227 bt_self_component_port_input_message_iterator
*iterator
;
229 counter
= bt_self_component_get_data(
230 bt_self_component_sink_as_self_component(comp
));
233 msg_iter_status
= bt_self_component_port_input_message_iterator_create_from_sink_component(
234 comp
, bt_self_component_sink_borrow_input_port_by_name(comp
,
235 in_port_name
), &iterator
);
236 if (msg_iter_status
!= BT_SELF_COMPONENT_PORT_INPUT_MESSAGE_ITERATOR_CREATE_FROM_SINK_COMPONENT_STATUS_OK
) {
237 status
= (int) msg_iter_status
;
241 BT_SELF_COMPONENT_PORT_INPUT_MESSAGE_ITERATOR_MOVE_REF(
242 counter
->msg_iter
, iterator
);
244 status
= BT_COMPONENT_CLASS_SINK_GRAPH_IS_CONFIGURED_METHOD_STATUS_OK
;
250 bt_component_class_sink_consume_method_status
counter_consume(
251 bt_self_component_sink
*comp
)
253 bt_component_class_sink_consume_method_status status
=
254 BT_COMPONENT_CLASS_SINK_CONSUME_METHOD_STATUS_OK
;
255 struct counter
*counter
;
256 bt_message_iterator_next_status next_status
;
258 bt_message_array_const msgs
;
260 counter
= bt_self_component_get_data(
261 bt_self_component_sink_as_self_component(comp
));
262 BT_ASSERT_DBG(counter
);
264 if (G_UNLIKELY(!counter
->msg_iter
)) {
265 try_print_last(counter
);
266 status
= BT_COMPONENT_CLASS_SINK_CONSUME_METHOD_STATUS_END
;
270 /* Consume messages */
271 next_status
= bt_self_component_port_input_message_iterator_next(
272 counter
->msg_iter
, &msgs
, &msg_count
);
273 if (next_status
< 0) {
274 status
= (int) next_status
;
278 switch (next_status
) {
279 case BT_MESSAGE_ITERATOR_NEXT_STATUS_OK
:
283 for (i
= 0; i
< msg_count
; i
++) {
284 const bt_message
*msg
= msgs
[i
];
287 switch (bt_message_get_type(msg
)) {
288 case BT_MESSAGE_TYPE_EVENT
:
289 counter
->count
.event
++;
291 case BT_MESSAGE_TYPE_PACKET_BEGINNING
:
292 counter
->count
.packet_begin
++;
294 case BT_MESSAGE_TYPE_PACKET_END
:
295 counter
->count
.packet_end
++;
297 case BT_MESSAGE_TYPE_MESSAGE_ITERATOR_INACTIVITY
:
298 counter
->count
.msg_iter_inactivity
++;
300 case BT_MESSAGE_TYPE_STREAM_BEGINNING
:
301 counter
->count
.stream_begin
++;
303 case BT_MESSAGE_TYPE_STREAM_END
:
304 counter
->count
.stream_end
++;
306 case BT_MESSAGE_TYPE_DISCARDED_EVENTS
:
307 counter
->count
.disc_events
++;
309 case BT_MESSAGE_TYPE_DISCARDED_PACKETS
:
310 counter
->count
.disc_packets
++;
313 counter
->count
.other
++;
316 bt_message_put_ref(msg
);
319 status
= BT_COMPONENT_CLASS_SINK_CONSUME_METHOD_STATUS_OK
;
322 case BT_MESSAGE_ITERATOR_NEXT_STATUS_AGAIN
:
323 status
= BT_COMPONENT_CLASS_SINK_CONSUME_METHOD_STATUS_AGAIN
;
325 case BT_MESSAGE_ITERATOR_NEXT_STATUS_END
:
326 try_print_last(counter
);
327 status
= BT_COMPONENT_CLASS_SINK_CONSUME_METHOD_STATUS_END
;
329 case BT_MESSAGE_ITERATOR_NEXT_STATUS_MEMORY_ERROR
:
330 status
= BT_COMPONENT_CLASS_SINK_CONSUME_METHOD_STATUS_MEMORY_ERROR
;
336 try_print_count(counter
, msg_count
);