lib: make message iterator creation functions return a status
[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
PP
32#include <inttypes.h>
33#include <stdint.h>
34
35#include "counter.h"
36
0e847b69 37#define PRINTF_COUNT(_what, _var, args...) \
358340ec
PP
38 do { \
39 if (counter->count._var != 0 || !counter->hide_zero) { \
0e847b69 40 printf("%15" PRIu64 " %s message%s\n", \
358340ec 41 counter->count._var, \
0e847b69
PP
42 (_what), \
43 counter->count._var == 1 ? "" : "s"); \
358340ec
PP
44 } \
45 } while (0)
46
5badd463
PP
47static
48const char * const in_port_name = "in";
49
358340ec
PP
50static
51uint64_t get_total_count(struct counter *counter)
52{
53 return counter->count.event +
54 counter->count.stream_begin +
55 counter->count.stream_end +
56 counter->count.packet_begin +
57 counter->count.packet_end +
0e847b69
PP
58 counter->count.disc_events +
59 counter->count.disc_packets +
b9fd9cbb 60 counter->count.msg_iter_inactivity +
358340ec
PP
61 counter->count.other;
62}
63
64static
d4393e08 65void print_count(struct counter *counter)
358340ec 66{
d4393e08
PP
67 uint64_t total = get_total_count(counter);
68
0e847b69
PP
69 PRINTF_COUNT("Event", event);
70 PRINTF_COUNT("Stream beginning", stream_begin);
71 PRINTF_COUNT("Stream end", stream_end);
0e847b69
PP
72 PRINTF_COUNT("Packet beginning", packet_begin);
73 PRINTF_COUNT("Packet end", packet_end);
74 PRINTF_COUNT("Discarded event", disc_events);
75 PRINTF_COUNT("Discarded packet", disc_packets);
76 PRINTF_COUNT("Message iterator inactivity", msg_iter_inactivity);
358340ec
PP
77
78 if (counter->count.other > 0) {
0e847b69 79 PRINTF_COUNT("Other (unknown)", other);
358340ec
PP
80 }
81
d6e69534 82 printf("%s%15" PRIu64 " message%s (TOTAL)%s\n",
358340ec
PP
83 bt_common_color_bold(), total, total == 1 ? "" : "s",
84 bt_common_color_reset());
85 counter->last_printed_total = total;
86}
87
88static
d6e69534 89void try_print_count(struct counter *counter, uint64_t msg_count)
358340ec 90{
358340ec
PP
91 if (counter->step == 0) {
92 /* No update */
93 return;
94 }
95
d6e69534 96 counter->at += msg_count;
358340ec 97
d4393e08
PP
98 if (counter->at >= counter->step) {
99 counter->at = 0;
100 print_count(counter);
358340ec
PP
101 putchar('\n');
102 }
103}
104
105static
106void try_print_last(struct counter *counter)
107{
108 const uint64_t total = get_total_count(counter);
109
110 if (total != counter->last_printed_total) {
d4393e08 111 print_count(counter);
358340ec
PP
112 }
113}
114
115void destroy_private_counter_data(struct counter *counter)
116{
718c4b7c
FD
117 if (counter) {
118 bt_self_component_port_input_message_iterator_put_ref(
119 counter->msg_iter);
120 g_free(counter);
121 }
358340ec
PP
122}
123
d94d92ac 124BT_HIDDEN
b19ff26f 125void counter_finalize(bt_self_component_sink *comp)
358340ec
PP
126{
127 struct counter *counter;
128
d94d92ac
PP
129 BT_ASSERT(comp);
130 counter = bt_self_component_get_data(
707b7d35 131 bt_self_component_sink_as_self_component(comp));
f6ccaed9 132 BT_ASSERT(counter);
358340ec 133 try_print_last(counter);
d6e69534 134 bt_self_component_port_input_message_iterator_put_ref(counter->msg_iter);
358340ec
PP
135 g_free(counter);
136}
137
d94d92ac 138BT_HIDDEN
d24d5663 139bt_component_class_init_method_status counter_init(
b19ff26f
PP
140 bt_self_component_sink *component,
141 const bt_value *params,
c88dd1cb 142 __attribute__((unused)) void *init_method_data)
358340ec 143{
d24d5663
PP
144 bt_component_class_init_method_status status =
145 BT_COMPONENT_CLASS_INIT_METHOD_STATUS_OK;
146 bt_self_component_add_port_status add_port_status;
358340ec 147 struct counter *counter = g_new0(struct counter, 1);
b19ff26f
PP
148 const bt_value *step = NULL;
149 const bt_value *hide_zero = NULL;
358340ec
PP
150
151 if (!counter) {
d24d5663 152 status = BT_COMPONENT_CLASS_INIT_METHOD_STATUS_MEMORY_ERROR;
d94d92ac 153 goto error;
358340ec
PP
154 }
155
82e80647
PP
156 counter->self_comp =
157 bt_self_component_sink_as_self_component(component);
9d87d0ea 158 counter->log_level = bt_component_get_logging_level(
82e80647 159 bt_self_component_as_component(counter->self_comp));
d24d5663 160 add_port_status = bt_self_component_sink_add_input_port(component,
358340ec 161 "in", NULL, NULL);
d24d5663
PP
162 switch (add_port_status) {
163 case BT_SELF_COMPONENT_ADD_PORT_STATUS_ERROR:
164 status = BT_COMPONENT_CLASS_INIT_METHOD_STATUS_ERROR;
d94d92ac 165 goto error;
d24d5663
PP
166 case BT_SELF_COMPONENT_ADD_PORT_STATUS_MEMORY_ERROR:
167 status = BT_COMPONENT_CLASS_INIT_METHOD_STATUS_MEMORY_ERROR;
168 goto error;
169 default:
170 break;
358340ec
PP
171 }
172
173 counter->last_printed_total = -1ULL;
a5bc50e4 174 counter->step = 10000;
05e21286 175 step = bt_value_map_borrow_entry_value_const(params, "step");
fdd3a2da
PP
176 if (step) {
177 if (!bt_value_is_unsigned_integer(step)) {
82e80647 178 BT_COMP_LOGE("`step` parameter: expecting an unsigned integer value: "
fdd3a2da
PP
179 "type=%s", bt_common_value_type_string(
180 bt_value_get_type(step)));
181 goto error;
358340ec 182 }
fdd3a2da 183
9c08c816 184 counter->step = bt_value_integer_unsigned_get(step);
358340ec
PP
185 }
186
05e21286 187 hide_zero = bt_value_map_borrow_entry_value_const(params, "hide-zero");
fdd3a2da
PP
188 if (hide_zero) {
189 if (!bt_value_is_bool(hide_zero)) {
82e80647 190 BT_COMP_LOGE("`hide-zero` parameter: expecting a boolean value: "
fdd3a2da
PP
191 "type=%s", bt_common_value_type_string(
192 bt_value_get_type(hide_zero)));
193 goto error;
194 }
358340ec 195
fdd3a2da 196 counter->hide_zero = (bool) bt_value_bool_get(hide_zero);
358340ec
PP
197 }
198
d94d92ac 199 bt_self_component_set_data(
707b7d35 200 bt_self_component_sink_as_self_component(component),
d94d92ac 201 counter);
358340ec
PP
202 goto end;
203
204error:
205 destroy_private_counter_data(counter);
d24d5663
PP
206
207 if (status == BT_COMPONENT_CLASS_INIT_METHOD_STATUS_OK) {
208 status = BT_COMPONENT_CLASS_INIT_METHOD_STATUS_ERROR;
209 }
358340ec
PP
210
211end:
d24d5663 212 return status;
358340ec
PP
213}
214
d94d92ac 215BT_HIDDEN
d24d5663
PP
216bt_component_class_sink_graph_is_configured_method_status
217counter_graph_is_configured(
5badd463 218 bt_self_component_sink *comp)
358340ec 219{
e803df70
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;
358340ec 223 struct counter *counter;
d6e69534 224 bt_self_component_port_input_message_iterator *iterator;
358340ec 225
d94d92ac 226 counter = bt_self_component_get_data(
707b7d35 227 bt_self_component_sink_as_self_component(comp));
f6ccaed9 228 BT_ASSERT(counter);
e803df70
SM
229
230 msg_iter_status = bt_self_component_port_input_message_iterator_create_from_sink_component(
ca02df0a 231 comp, bt_self_component_sink_borrow_input_port_by_name(comp,
e803df70
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;
358340ec
PP
235 goto end;
236 }
237
d6e69534
PP
238 BT_SELF_COMPONENT_PORT_INPUT_MESSAGE_ITERATOR_MOVE_REF(
239 counter->msg_iter, iterator);
358340ec 240
e803df70 241 status = BT_COMPONENT_CLASS_SINK_GRAPH_IS_CONFIGURED_METHOD_STATUS_OK;
358340ec 242end:
bf55043c 243 return status;
358340ec
PP
244}
245
d94d92ac 246BT_HIDDEN
d24d5663 247bt_component_class_sink_consume_method_status counter_consume(
b19ff26f 248 bt_self_component_sink *comp)
358340ec 249{
d24d5663
PP
250 bt_component_class_sink_consume_method_status status =
251 BT_COMPONENT_CLASS_SINK_CONSUME_METHOD_STATUS_OK;
358340ec 252 struct counter *counter;
d24d5663 253 bt_message_iterator_next_status next_status;
d6e69534
PP
254 uint64_t msg_count;
255 bt_message_array_const msgs;
358340ec 256
d94d92ac 257 counter = bt_self_component_get_data(
707b7d35 258 bt_self_component_sink_as_self_component(comp));
f6ccaed9 259 BT_ASSERT(counter);
358340ec 260
91d81473 261 if (G_UNLIKELY(!counter->msg_iter)) {
358340ec 262 try_print_last(counter);
d24d5663 263 status = BT_COMPONENT_CLASS_SINK_CONSUME_METHOD_STATUS_END;
358340ec
PP
264 goto end;
265 }
266
d6e69534 267 /* Consume messages */
d24d5663 268 next_status = bt_self_component_port_input_message_iterator_next(
d6e69534 269 counter->msg_iter, &msgs, &msg_count);
d24d5663
PP
270 if (next_status < 0) {
271 status = (int) next_status;
358340ec
PP
272 goto end;
273 }
274
d24d5663
PP
275 switch (next_status) {
276 case BT_MESSAGE_ITERATOR_NEXT_STATUS_OK:
358340ec 277 {
d4393e08
PP
278 uint64_t i;
279
d6e69534
PP
280 for (i = 0; i < msg_count; i++) {
281 const bt_message *msg = msgs[i];
d4393e08 282
d6e69534
PP
283 BT_ASSERT(msg);
284 switch (bt_message_get_type(msg)) {
285 case BT_MESSAGE_TYPE_EVENT:
d4393e08
PP
286 counter->count.event++;
287 break;
0e847b69
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;
b9fd9cbb
FD
294 case BT_MESSAGE_TYPE_MESSAGE_ITERATOR_INACTIVITY:
295 counter->count.msg_iter_inactivity++;
d4393e08 296 break;
d6e69534 297 case BT_MESSAGE_TYPE_STREAM_BEGINNING:
d4393e08
PP
298 counter->count.stream_begin++;
299 break;
d6e69534 300 case BT_MESSAGE_TYPE_STREAM_END:
d4393e08
PP
301 counter->count.stream_end++;
302 break;
0e847b69
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++;
d4393e08 308 break;
d4393e08
PP
309 default:
310 counter->count.other++;
358340ec 311 }
d4393e08 312
d6e69534 313 bt_message_put_ref(msg);
358340ec 314 }
d94d92ac 315
d24d5663 316 status = BT_COMPONENT_CLASS_SINK_CONSUME_METHOD_STATUS_OK;
d94d92ac 317 break;
358340ec 318 }
d24d5663
PP
319 case BT_MESSAGE_ITERATOR_NEXT_STATUS_AGAIN:
320 status = BT_COMPONENT_CLASS_SINK_CONSUME_METHOD_STATUS_AGAIN;
d94d92ac 321 goto end;
d24d5663 322 case BT_MESSAGE_ITERATOR_NEXT_STATUS_END:
d94d92ac 323 try_print_last(counter);
d24d5663 324 status = BT_COMPONENT_CLASS_SINK_CONSUME_METHOD_STATUS_END;
d94d92ac 325 goto end;
d24d5663
PP
326 case BT_MESSAGE_ITERATOR_NEXT_STATUS_MEMORY_ERROR:
327 status = BT_COMPONENT_CLASS_SINK_CONSUME_METHOD_STATUS_MEMORY_ERROR;
d94d92ac 328 goto end;
358340ec
PP
329 default:
330 break;
331 }
332
d6e69534 333 try_print_count(counter, msg_count);
358340ec
PP
334
335end:
d24d5663 336 return status;
358340ec 337}
This page took 0.062051 seconds and 4 git commands to generate.