Make some bt_param_validation_map_value_entry_descr variables static
[babeltrace.git] / src / plugins / utils / counter / counter.c
CommitLineData
358340ec
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
82e80647 23#define BT_COMP_LOG_SELF_COMP (counter->self_comp)
9d87d0ea 24#define BT_LOG_OUTPUT_LEVEL (counter->log_level)
350ad6c1 25#define BT_LOG_TAG "PLUGIN/FLT.UTILS.COUNTER"
d9c39b0a 26#include "logging/comp-logging.h"
fdd3a2da 27
3fadfbc0 28#include <babeltrace2/babeltrace.h>
91d81473 29#include "common/macros.h"
578e048b 30#include "common/common.h"
578e048b 31#include "common/assert.h"
358340ec 32#include <inttypes.h>
c4f23e30 33#include <stdbool.h>
358340ec 34#include <stdint.h>
21348968 35#include "plugins/common/param-validation/param-validation.h"
358340ec
PP
36
37#include "counter.h"
38
0e847b69 39#define PRINTF_COUNT(_what, _var, args...) \
358340ec
PP
40 do { \
41 if (counter->count._var != 0 || !counter->hide_zero) { \
0e847b69 42 printf("%15" PRIu64 " %s message%s\n", \
358340ec 43 counter->count._var, \
0e847b69
PP
44 (_what), \
45 counter->count._var == 1 ? "" : "s"); \
358340ec
PP
46 } \
47 } while (0)
48
5badd463
PP
49static
50const char * const in_port_name = "in";
51
358340ec
PP
52static
53uint64_t get_total_count(struct counter *counter)
54{
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 +
0e847b69
PP
60 counter->count.disc_events +
61 counter->count.disc_packets +
b9fd9cbb 62 counter->count.msg_iter_inactivity +
358340ec
PP
63 counter->count.other;
64}
65
66static
d4393e08 67void print_count(struct counter *counter)
358340ec 68{
d4393e08
PP
69 uint64_t total = get_total_count(counter);
70
0e847b69
PP
71 PRINTF_COUNT("Event", event);
72 PRINTF_COUNT("Stream beginning", stream_begin);
73 PRINTF_COUNT("Stream end", stream_end);
0e847b69
PP
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);
358340ec
PP
79
80 if (counter->count.other > 0) {
0e847b69 81 PRINTF_COUNT("Other (unknown)", other);
358340ec
PP
82 }
83
d6e69534 84 printf("%s%15" PRIu64 " message%s (TOTAL)%s\n",
358340ec
PP
85 bt_common_color_bold(), total, total == 1 ? "" : "s",
86 bt_common_color_reset());
87 counter->last_printed_total = total;
88}
89
90static
d6e69534 91void try_print_count(struct counter *counter, uint64_t msg_count)
358340ec 92{
358340ec
PP
93 if (counter->step == 0) {
94 /* No update */
95 return;
96 }
97
d6e69534 98 counter->at += msg_count;
358340ec 99
d4393e08
PP
100 if (counter->at >= counter->step) {
101 counter->at = 0;
102 print_count(counter);
358340ec
PP
103 putchar('\n');
104 }
105}
106
107static
108void try_print_last(struct counter *counter)
109{
110 const uint64_t total = get_total_count(counter);
111
112 if (total != counter->last_printed_total) {
d4393e08 113 print_count(counter);
358340ec
PP
114 }
115}
116
7c7301d5 117static
358340ec
PP
118void destroy_private_counter_data(struct counter *counter)
119{
718c4b7c
FD
120 if (counter) {
121 bt_self_component_port_input_message_iterator_put_ref(
122 counter->msg_iter);
123 g_free(counter);
124 }
358340ec
PP
125}
126
d94d92ac 127BT_HIDDEN
b19ff26f 128void counter_finalize(bt_self_component_sink *comp)
358340ec
PP
129{
130 struct counter *counter;
131
d94d92ac
PP
132 BT_ASSERT(comp);
133 counter = bt_self_component_get_data(
707b7d35 134 bt_self_component_sink_as_self_component(comp));
f6ccaed9 135 BT_ASSERT(counter);
358340ec 136 try_print_last(counter);
d6e69534 137 bt_self_component_port_input_message_iterator_put_ref(counter->msg_iter);
358340ec
PP
138 g_free(counter);
139}
140
d9120ccb 141static
21348968
SM
142struct 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
146};
147
d94d92ac 148BT_HIDDEN
21a9f056 149bt_component_class_initialize_method_status counter_init(
b19ff26f 150 bt_self_component_sink *component,
59225a3e 151 bt_self_component_sink_configuration *config,
b19ff26f 152 const bt_value *params,
c88dd1cb 153 __attribute__((unused)) void *init_method_data)
358340ec 154{
21348968 155 bt_component_class_initialize_method_status status;
d24d5663 156 bt_self_component_add_port_status add_port_status;
358340ec 157 struct counter *counter = g_new0(struct counter, 1);
b19ff26f
PP
158 const bt_value *step = NULL;
159 const bt_value *hide_zero = NULL;
21348968
SM
160 enum bt_param_validation_status validation_status;
161 gchar *validate_error = NULL;
358340ec
PP
162
163 if (!counter) {
21a9f056 164 status = BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_MEMORY_ERROR;
d94d92ac 165 goto error;
358340ec
PP
166 }
167
82e80647
PP
168 counter->self_comp =
169 bt_self_component_sink_as_self_component(component);
9d87d0ea 170 counter->log_level = bt_component_get_logging_level(
82e80647 171 bt_self_component_as_component(counter->self_comp));
d24d5663 172 add_port_status = bt_self_component_sink_add_input_port(component,
358340ec 173 "in", NULL, NULL);
21348968
SM
174 if (add_port_status != BT_SELF_COMPONENT_ADD_PORT_STATUS_OK) {
175 status = (int) add_port_status;
d94d92ac 176 goto error;
21348968
SM
177 }
178
179 validation_status = bt_param_validation_validate(params,
180 counter_params, &validate_error);
181 if (validation_status == BT_PARAM_VALIDATION_STATUS_MEMORY_ERROR) {
21a9f056 182 status = BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_MEMORY_ERROR;
d24d5663 183 goto error;
21348968
SM
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);
188 goto error;
358340ec
PP
189 }
190
191 counter->last_printed_total = -1ULL;
a5bc50e4 192 counter->step = 10000;
05e21286 193 step = bt_value_map_borrow_entry_value_const(params, "step");
fdd3a2da 194 if (step) {
9c08c816 195 counter->step = bt_value_integer_unsigned_get(step);
358340ec
PP
196 }
197
05e21286 198 hide_zero = bt_value_map_borrow_entry_value_const(params, "hide-zero");
fdd3a2da 199 if (hide_zero) {
fdd3a2da 200 counter->hide_zero = (bool) bt_value_bool_get(hide_zero);
358340ec
PP
201 }
202
d94d92ac 203 bt_self_component_set_data(
707b7d35 204 bt_self_component_sink_as_self_component(component),
d94d92ac 205 counter);
21348968
SM
206
207 status = BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_OK;
358340ec
PP
208 goto end;
209
210error:
211 destroy_private_counter_data(counter);
d24d5663 212
358340ec 213end:
21348968 214 g_free(validate_error);
d24d5663 215 return status;
358340ec
PP
216}
217
d94d92ac 218BT_HIDDEN
d24d5663
PP
219bt_component_class_sink_graph_is_configured_method_status
220counter_graph_is_configured(
5badd463 221 bt_self_component_sink *comp)
358340ec 222{
e803df70
SM
223 bt_component_class_sink_graph_is_configured_method_status status;
224 bt_self_component_port_input_message_iterator_create_from_sink_component_status
225 msg_iter_status;
358340ec 226 struct counter *counter;
d6e69534 227 bt_self_component_port_input_message_iterator *iterator;
358340ec 228
d94d92ac 229 counter = bt_self_component_get_data(
707b7d35 230 bt_self_component_sink_as_self_component(comp));
f6ccaed9 231 BT_ASSERT(counter);
e803df70
SM
232
233 msg_iter_status = bt_self_component_port_input_message_iterator_create_from_sink_component(
ca02df0a 234 comp, bt_self_component_sink_borrow_input_port_by_name(comp,
e803df70
SM
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;
358340ec
PP
238 goto end;
239 }
240
d6e69534
PP
241 BT_SELF_COMPONENT_PORT_INPUT_MESSAGE_ITERATOR_MOVE_REF(
242 counter->msg_iter, iterator);
358340ec 243
e803df70 244 status = BT_COMPONENT_CLASS_SINK_GRAPH_IS_CONFIGURED_METHOD_STATUS_OK;
358340ec 245end:
bf55043c 246 return status;
358340ec
PP
247}
248
d94d92ac 249BT_HIDDEN
d24d5663 250bt_component_class_sink_consume_method_status counter_consume(
b19ff26f 251 bt_self_component_sink *comp)
358340ec 252{
d24d5663
PP
253 bt_component_class_sink_consume_method_status status =
254 BT_COMPONENT_CLASS_SINK_CONSUME_METHOD_STATUS_OK;
358340ec 255 struct counter *counter;
d24d5663 256 bt_message_iterator_next_status next_status;
d6e69534
PP
257 uint64_t msg_count;
258 bt_message_array_const msgs;
358340ec 259
d94d92ac 260 counter = bt_self_component_get_data(
707b7d35 261 bt_self_component_sink_as_self_component(comp));
98b15851 262 BT_ASSERT_DBG(counter);
358340ec 263
91d81473 264 if (G_UNLIKELY(!counter->msg_iter)) {
358340ec 265 try_print_last(counter);
d24d5663 266 status = BT_COMPONENT_CLASS_SINK_CONSUME_METHOD_STATUS_END;
358340ec
PP
267 goto end;
268 }
269
d6e69534 270 /* Consume messages */
d24d5663 271 next_status = bt_self_component_port_input_message_iterator_next(
d6e69534 272 counter->msg_iter, &msgs, &msg_count);
d24d5663
PP
273 if (next_status < 0) {
274 status = (int) next_status;
358340ec
PP
275 goto end;
276 }
277
d24d5663
PP
278 switch (next_status) {
279 case BT_MESSAGE_ITERATOR_NEXT_STATUS_OK:
358340ec 280 {
d4393e08
PP
281 uint64_t i;
282
d6e69534
PP
283 for (i = 0; i < msg_count; i++) {
284 const bt_message *msg = msgs[i];
d4393e08 285
98b15851 286 BT_ASSERT_DBG(msg);
d6e69534
PP
287 switch (bt_message_get_type(msg)) {
288 case BT_MESSAGE_TYPE_EVENT:
d4393e08
PP
289 counter->count.event++;
290 break;
0e847b69
PP
291 case BT_MESSAGE_TYPE_PACKET_BEGINNING:
292 counter->count.packet_begin++;
293 break;
294 case BT_MESSAGE_TYPE_PACKET_END:
295 counter->count.packet_end++;
296 break;
b9fd9cbb
FD
297 case BT_MESSAGE_TYPE_MESSAGE_ITERATOR_INACTIVITY:
298 counter->count.msg_iter_inactivity++;
d4393e08 299 break;
d6e69534 300 case BT_MESSAGE_TYPE_STREAM_BEGINNING:
d4393e08
PP
301 counter->count.stream_begin++;
302 break;
d6e69534 303 case BT_MESSAGE_TYPE_STREAM_END:
d4393e08
PP
304 counter->count.stream_end++;
305 break;
0e847b69
PP
306 case BT_MESSAGE_TYPE_DISCARDED_EVENTS:
307 counter->count.disc_events++;
308 break;
309 case BT_MESSAGE_TYPE_DISCARDED_PACKETS:
310 counter->count.disc_packets++;
d4393e08 311 break;
d4393e08
PP
312 default:
313 counter->count.other++;
358340ec 314 }
d4393e08 315
d6e69534 316 bt_message_put_ref(msg);
358340ec 317 }
d94d92ac 318
d24d5663 319 status = BT_COMPONENT_CLASS_SINK_CONSUME_METHOD_STATUS_OK;
d94d92ac 320 break;
358340ec 321 }
d24d5663
PP
322 case BT_MESSAGE_ITERATOR_NEXT_STATUS_AGAIN:
323 status = BT_COMPONENT_CLASS_SINK_CONSUME_METHOD_STATUS_AGAIN;
d94d92ac 324 goto end;
d24d5663 325 case BT_MESSAGE_ITERATOR_NEXT_STATUS_END:
d94d92ac 326 try_print_last(counter);
d24d5663 327 status = BT_COMPONENT_CLASS_SINK_CONSUME_METHOD_STATUS_END;
d94d92ac 328 goto end;
d24d5663
PP
329 case BT_MESSAGE_ITERATOR_NEXT_STATUS_MEMORY_ERROR:
330 status = BT_COMPONENT_CLASS_SINK_CONSUME_METHOD_STATUS_MEMORY_ERROR;
d94d92ac 331 goto end;
358340ec
PP
332 default:
333 break;
334 }
335
d6e69534 336 try_print_count(counter, msg_count);
358340ec
PP
337
338end:
d24d5663 339 return status;
358340ec 340}
This page took 0.069015 seconds and 4 git commands to generate.