Always evaluate BT_ASSERT(); add BT_ASSERT_DBG() for debug mode only
[babeltrace.git] / src / plugins / utils / counter / counter.c
CommitLineData
14b7ef9e
PP
1/*
2 * Copyright 2017 Philippe Proulx <pproulx@efficios.com>
3 *
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:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
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
20 * SOFTWARE.
21 */
22
627c70e6 23#define BT_COMP_LOG_SELF_COMP (counter->self_comp)
c58e2582 24#define BT_LOG_OUTPUT_LEVEL (counter->log_level)
b03487ab 25#define BT_LOG_TAG "PLUGIN/FLT.UTILS.COUNTER"
3fa1b6a3 26#include "logging/comp-logging.h"
68d9d039 27
71c5da58 28#include <babeltrace2/babeltrace.h>
85e7137b 29#include "common/macros.h"
57952005 30#include "common/common.h"
57952005 31#include "common/assert.h"
14b7ef9e
PP
32#include <inttypes.h>
33#include <stdint.h>
9e632b22 34#include "plugins/common/param-validation/param-validation.h"
14b7ef9e
PP
35
36#include "counter.h"
37
168baad4 38#define PRINTF_COUNT(_what, _var, args...) \
14b7ef9e
PP
39 do { \
40 if (counter->count._var != 0 || !counter->hide_zero) { \
168baad4 41 printf("%15" PRIu64 " %s message%s\n", \
14b7ef9e 42 counter->count._var, \
168baad4
PP
43 (_what), \
44 counter->count._var == 1 ? "" : "s"); \
14b7ef9e
PP
45 } \
46 } while (0)
47
1043fdea
PP
48static
49const char * const in_port_name = "in";
50
14b7ef9e
PP
51static
52uint64_t get_total_count(struct counter *counter)
53{
54 return counter->count.event +
55 counter->count.stream_begin +
56 counter->count.stream_end +
57 counter->count.packet_begin +
58 counter->count.packet_end +
168baad4
PP
59 counter->count.disc_events +
60 counter->count.disc_packets +
40bf6fd0 61 counter->count.msg_iter_inactivity +
14b7ef9e
PP
62 counter->count.other;
63}
64
65static
3fd7b79d 66void print_count(struct counter *counter)
14b7ef9e 67{
3fd7b79d
PP
68 uint64_t total = get_total_count(counter);
69
168baad4
PP
70 PRINTF_COUNT("Event", event);
71 PRINTF_COUNT("Stream beginning", stream_begin);
72 PRINTF_COUNT("Stream end", stream_end);
168baad4
PP
73 PRINTF_COUNT("Packet beginning", packet_begin);
74 PRINTF_COUNT("Packet end", packet_end);
75 PRINTF_COUNT("Discarded event", disc_events);
76 PRINTF_COUNT("Discarded packet", disc_packets);
77 PRINTF_COUNT("Message iterator inactivity", msg_iter_inactivity);
14b7ef9e
PP
78
79 if (counter->count.other > 0) {
168baad4 80 PRINTF_COUNT("Other (unknown)", other);
14b7ef9e
PP
81 }
82
b09a5592 83 printf("%s%15" PRIu64 " message%s (TOTAL)%s\n",
14b7ef9e
PP
84 bt_common_color_bold(), total, total == 1 ? "" : "s",
85 bt_common_color_reset());
86 counter->last_printed_total = total;
87}
88
89static
b09a5592 90void try_print_count(struct counter *counter, uint64_t msg_count)
14b7ef9e 91{
14b7ef9e
PP
92 if (counter->step == 0) {
93 /* No update */
94 return;
95 }
96
b09a5592 97 counter->at += msg_count;
14b7ef9e 98
3fd7b79d
PP
99 if (counter->at >= counter->step) {
100 counter->at = 0;
101 print_count(counter);
14b7ef9e
PP
102 putchar('\n');
103 }
104}
105
106static
107void try_print_last(struct counter *counter)
108{
109 const uint64_t total = get_total_count(counter);
110
111 if (total != counter->last_printed_total) {
3fd7b79d 112 print_count(counter);
14b7ef9e
PP
113 }
114}
115
116void destroy_private_counter_data(struct counter *counter)
117{
888e0925
FD
118 if (counter) {
119 bt_self_component_port_input_message_iterator_put_ref(
120 counter->msg_iter);
121 g_free(counter);
122 }
14b7ef9e
PP
123}
124
834e9996 125BT_HIDDEN
8eee8ea2 126void counter_finalize(bt_self_component_sink *comp)
14b7ef9e
PP
127{
128 struct counter *counter;
129
834e9996
PP
130 BT_ASSERT(comp);
131 counter = bt_self_component_get_data(
bb61965b 132 bt_self_component_sink_as_self_component(comp));
8b45963b 133 BT_ASSERT(counter);
14b7ef9e 134 try_print_last(counter);
b09a5592 135 bt_self_component_port_input_message_iterator_put_ref(counter->msg_iter);
14b7ef9e
PP
136 g_free(counter);
137}
138
9e632b22
SM
139struct bt_param_validation_map_value_entry_descr counter_params[] = {
140 { "step", BT_PARAM_VALIDATION_MAP_VALUE_ENTRY_OPTIONAL, { .type = BT_VALUE_TYPE_UNSIGNED_INTEGER } },
141 { "hide-zero", BT_PARAM_VALIDATION_MAP_VALUE_ENTRY_OPTIONAL, { .type = BT_VALUE_TYPE_BOOL } },
142 BT_PARAM_VALIDATION_MAP_VALUE_ENTRY_END
143};
144
834e9996 145BT_HIDDEN
4175c1d5 146bt_component_class_initialize_method_status counter_init(
8eee8ea2 147 bt_self_component_sink *component,
e3250e61 148 bt_self_component_sink_configuration *config,
8eee8ea2 149 const bt_value *params,
f807570c 150 __attribute__((unused)) void *init_method_data)
14b7ef9e 151{
9e632b22 152 bt_component_class_initialize_method_status status;
fb25b9e3 153 bt_self_component_add_port_status add_port_status;
14b7ef9e 154 struct counter *counter = g_new0(struct counter, 1);
8eee8ea2
PP
155 const bt_value *step = NULL;
156 const bt_value *hide_zero = NULL;
9e632b22
SM
157 enum bt_param_validation_status validation_status;
158 gchar *validate_error = NULL;
14b7ef9e
PP
159
160 if (!counter) {
4175c1d5 161 status = BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_MEMORY_ERROR;
834e9996 162 goto error;
14b7ef9e
PP
163 }
164
627c70e6
PP
165 counter->self_comp =
166 bt_self_component_sink_as_self_component(component);
c58e2582 167 counter->log_level = bt_component_get_logging_level(
627c70e6 168 bt_self_component_as_component(counter->self_comp));
fb25b9e3 169 add_port_status = bt_self_component_sink_add_input_port(component,
14b7ef9e 170 "in", NULL, NULL);
9e632b22
SM
171 if (add_port_status != BT_SELF_COMPONENT_ADD_PORT_STATUS_OK) {
172 status = (int) add_port_status;
834e9996 173 goto error;
9e632b22
SM
174 }
175
176 validation_status = bt_param_validation_validate(params,
177 counter_params, &validate_error);
178 if (validation_status == BT_PARAM_VALIDATION_STATUS_MEMORY_ERROR) {
4175c1d5 179 status = BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_MEMORY_ERROR;
fb25b9e3 180 goto error;
9e632b22
SM
181 } else if (validation_status == BT_PARAM_VALIDATION_STATUS_VALIDATION_ERROR) {
182 status = BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_ERROR;
183 BT_COMP_LOGE_APPEND_CAUSE(counter->self_comp,
184 "%s", validate_error);
185 goto error;
14b7ef9e
PP
186 }
187
188 counter->last_printed_total = -1ULL;
a79f976c 189 counter->step = 10000;
ce141536 190 step = bt_value_map_borrow_entry_value_const(params, "step");
68d9d039 191 if (step) {
60bbfc7c 192 counter->step = bt_value_integer_unsigned_get(step);
14b7ef9e
PP
193 }
194
ce141536 195 hide_zero = bt_value_map_borrow_entry_value_const(params, "hide-zero");
68d9d039 196 if (hide_zero) {
68d9d039 197 counter->hide_zero = (bool) bt_value_bool_get(hide_zero);
14b7ef9e
PP
198 }
199
834e9996 200 bt_self_component_set_data(
bb61965b 201 bt_self_component_sink_as_self_component(component),
834e9996 202 counter);
9e632b22
SM
203
204 status = BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_OK;
14b7ef9e
PP
205 goto end;
206
207error:
208 destroy_private_counter_data(counter);
fb25b9e3 209
14b7ef9e 210end:
9e632b22 211 g_free(validate_error);
fb25b9e3 212 return status;
14b7ef9e
PP
213}
214
834e9996 215BT_HIDDEN
fb25b9e3
PP
216bt_component_class_sink_graph_is_configured_method_status
217counter_graph_is_configured(
1043fdea 218 bt_self_component_sink *comp)
14b7ef9e 219{
ab8b2b1b
SM
220 bt_component_class_sink_graph_is_configured_method_status status;
221 bt_self_component_port_input_message_iterator_create_from_sink_component_status
222 msg_iter_status;
14b7ef9e 223 struct counter *counter;
b09a5592 224 bt_self_component_port_input_message_iterator *iterator;
14b7ef9e 225
834e9996 226 counter = bt_self_component_get_data(
bb61965b 227 bt_self_component_sink_as_self_component(comp));
8b45963b 228 BT_ASSERT(counter);
ab8b2b1b
SM
229
230 msg_iter_status = bt_self_component_port_input_message_iterator_create_from_sink_component(
692f1a01 231 comp, bt_self_component_sink_borrow_input_port_by_name(comp,
ab8b2b1b
SM
232 in_port_name), &iterator);
233 if (msg_iter_status != BT_SELF_COMPONENT_PORT_INPUT_MESSAGE_ITERATOR_CREATE_FROM_SINK_COMPONENT_STATUS_OK) {
234 status = (int) msg_iter_status;
14b7ef9e
PP
235 goto end;
236 }
237
b09a5592
PP
238 BT_SELF_COMPONENT_PORT_INPUT_MESSAGE_ITERATOR_MOVE_REF(
239 counter->msg_iter, iterator);
14b7ef9e 240
ab8b2b1b 241 status = BT_COMPONENT_CLASS_SINK_GRAPH_IS_CONFIGURED_METHOD_STATUS_OK;
14b7ef9e 242end:
634f394c 243 return status;
14b7ef9e
PP
244}
245
834e9996 246BT_HIDDEN
fb25b9e3 247bt_component_class_sink_consume_method_status counter_consume(
8eee8ea2 248 bt_self_component_sink *comp)
14b7ef9e 249{
fb25b9e3
PP
250 bt_component_class_sink_consume_method_status status =
251 BT_COMPONENT_CLASS_SINK_CONSUME_METHOD_STATUS_OK;
14b7ef9e 252 struct counter *counter;
fb25b9e3 253 bt_message_iterator_next_status next_status;
b09a5592
PP
254 uint64_t msg_count;
255 bt_message_array_const msgs;
14b7ef9e 256
834e9996 257 counter = bt_self_component_get_data(
bb61965b 258 bt_self_component_sink_as_self_component(comp));
ec4a3354 259 BT_ASSERT_DBG(counter);
14b7ef9e 260
85e7137b 261 if (G_UNLIKELY(!counter->msg_iter)) {
14b7ef9e 262 try_print_last(counter);
fb25b9e3 263 status = BT_COMPONENT_CLASS_SINK_CONSUME_METHOD_STATUS_END;
14b7ef9e
PP
264 goto end;
265 }
266
b09a5592 267 /* Consume messages */
fb25b9e3 268 next_status = bt_self_component_port_input_message_iterator_next(
b09a5592 269 counter->msg_iter, &msgs, &msg_count);
fb25b9e3
PP
270 if (next_status < 0) {
271 status = (int) next_status;
14b7ef9e
PP
272 goto end;
273 }
274
fb25b9e3
PP
275 switch (next_status) {
276 case BT_MESSAGE_ITERATOR_NEXT_STATUS_OK:
14b7ef9e 277 {
3fd7b79d
PP
278 uint64_t i;
279
b09a5592
PP
280 for (i = 0; i < msg_count; i++) {
281 const bt_message *msg = msgs[i];
3fd7b79d 282
ec4a3354 283 BT_ASSERT_DBG(msg);
b09a5592
PP
284 switch (bt_message_get_type(msg)) {
285 case BT_MESSAGE_TYPE_EVENT:
3fd7b79d
PP
286 counter->count.event++;
287 break;
168baad4
PP
288 case BT_MESSAGE_TYPE_PACKET_BEGINNING:
289 counter->count.packet_begin++;
290 break;
291 case BT_MESSAGE_TYPE_PACKET_END:
292 counter->count.packet_end++;
293 break;
40bf6fd0
FD
294 case BT_MESSAGE_TYPE_MESSAGE_ITERATOR_INACTIVITY:
295 counter->count.msg_iter_inactivity++;
3fd7b79d 296 break;
b09a5592 297 case BT_MESSAGE_TYPE_STREAM_BEGINNING:
3fd7b79d
PP
298 counter->count.stream_begin++;
299 break;
b09a5592 300 case BT_MESSAGE_TYPE_STREAM_END:
3fd7b79d
PP
301 counter->count.stream_end++;
302 break;
168baad4
PP
303 case BT_MESSAGE_TYPE_DISCARDED_EVENTS:
304 counter->count.disc_events++;
305 break;
306 case BT_MESSAGE_TYPE_DISCARDED_PACKETS:
307 counter->count.disc_packets++;
3fd7b79d 308 break;
3fd7b79d
PP
309 default:
310 counter->count.other++;
14b7ef9e 311 }
3fd7b79d 312
b09a5592 313 bt_message_put_ref(msg);
14b7ef9e 314 }
834e9996 315
fb25b9e3 316 status = BT_COMPONENT_CLASS_SINK_CONSUME_METHOD_STATUS_OK;
834e9996 317 break;
14b7ef9e 318 }
fb25b9e3
PP
319 case BT_MESSAGE_ITERATOR_NEXT_STATUS_AGAIN:
320 status = BT_COMPONENT_CLASS_SINK_CONSUME_METHOD_STATUS_AGAIN;
834e9996 321 goto end;
fb25b9e3 322 case BT_MESSAGE_ITERATOR_NEXT_STATUS_END:
834e9996 323 try_print_last(counter);
fb25b9e3 324 status = BT_COMPONENT_CLASS_SINK_CONSUME_METHOD_STATUS_END;
834e9996 325 goto end;
fb25b9e3
PP
326 case BT_MESSAGE_ITERATOR_NEXT_STATUS_MEMORY_ERROR:
327 status = BT_COMPONENT_CLASS_SINK_CONSUME_METHOD_STATUS_MEMORY_ERROR;
834e9996 328 goto end;
14b7ef9e
PP
329 default:
330 break;
331 }
332
b09a5592 333 try_print_count(counter, msg_count);
14b7ef9e
PP
334
335end:
fb25b9e3 336 return status;
14b7ef9e 337}
This page took 0.05898 seconds and 4 git commands to generate.