Commit | Line | Data |
---|---|---|
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 | ||
9d408fca | 23 | #include <babeltrace/babeltrace.h> |
358340ec PP |
24 | #include <babeltrace/babeltrace-internal.h> |
25 | #include <babeltrace/common-internal.h> | |
358340ec | 26 | #include <plugins-common.h> |
f6ccaed9 | 27 | #include <babeltrace/assert-internal.h> |
358340ec PP |
28 | #include <inttypes.h> |
29 | #include <stdint.h> | |
30 | ||
31 | #include "counter.h" | |
32 | ||
33 | #define PRINTF_COUNT(_what_sing, _what_plur, _var, args...) \ | |
34 | do { \ | |
35 | if (counter->count._var != 0 || !counter->hide_zero) { \ | |
36 | printf("%15" PRIu64 " %s\n", \ | |
37 | counter->count._var, \ | |
38 | counter->count._var == 1 ? _what_sing : _what_plur); \ | |
39 | } \ | |
40 | } while (0) | |
41 | ||
42 | static | |
43 | uint64_t get_total_count(struct counter *counter) | |
44 | { | |
45 | return counter->count.event + | |
46 | counter->count.stream_begin + | |
47 | counter->count.stream_end + | |
48 | counter->count.packet_begin + | |
49 | counter->count.packet_end + | |
50 | counter->count.inactivity + | |
358340ec PP |
51 | counter->count.other; |
52 | } | |
53 | ||
54 | static | |
d4393e08 | 55 | void print_count(struct counter *counter) |
358340ec | 56 | { |
d4393e08 PP |
57 | uint64_t total = get_total_count(counter); |
58 | ||
358340ec PP |
59 | PRINTF_COUNT("event", "events", event); |
60 | PRINTF_COUNT("stream beginning", "stream beginnings", stream_begin); | |
61 | PRINTF_COUNT("stream end", "stream ends", stream_end); | |
62 | PRINTF_COUNT("packet beginning", "packet beginnings", packet_begin); | |
63 | PRINTF_COUNT("packet end", "packet ends", packet_end); | |
64 | PRINTF_COUNT("inactivity", "inactivities", inactivity); | |
358340ec PP |
65 | |
66 | if (counter->count.other > 0) { | |
67 | PRINTF_COUNT(" other (unknown) notification", | |
68 | " other (unknown) notifications", other); | |
69 | } | |
70 | ||
71 | printf("%s%15" PRIu64 " notification%s (TOTAL)%s\n", | |
72 | bt_common_color_bold(), total, total == 1 ? "" : "s", | |
73 | bt_common_color_reset()); | |
74 | counter->last_printed_total = total; | |
75 | } | |
76 | ||
77 | static | |
d4393e08 | 78 | void try_print_count(struct counter *counter, uint64_t notif_count) |
358340ec | 79 | { |
358340ec PP |
80 | if (counter->step == 0) { |
81 | /* No update */ | |
82 | return; | |
83 | } | |
84 | ||
d4393e08 | 85 | counter->at += notif_count; |
358340ec | 86 | |
d4393e08 PP |
87 | if (counter->at >= counter->step) { |
88 | counter->at = 0; | |
89 | print_count(counter); | |
358340ec PP |
90 | putchar('\n'); |
91 | } | |
92 | } | |
93 | ||
94 | static | |
95 | void try_print_last(struct counter *counter) | |
96 | { | |
97 | const uint64_t total = get_total_count(counter); | |
98 | ||
99 | if (total != counter->last_printed_total) { | |
d4393e08 | 100 | print_count(counter); |
358340ec PP |
101 | } |
102 | } | |
103 | ||
104 | void destroy_private_counter_data(struct counter *counter) | |
105 | { | |
65300d60 | 106 | bt_object_put_ref(counter->notif_iter); |
358340ec PP |
107 | g_free(counter); |
108 | } | |
109 | ||
d94d92ac PP |
110 | BT_HIDDEN |
111 | void counter_finalize(struct bt_self_component_sink *comp) | |
358340ec PP |
112 | { |
113 | struct counter *counter; | |
114 | ||
d94d92ac PP |
115 | BT_ASSERT(comp); |
116 | counter = bt_self_component_get_data( | |
707b7d35 | 117 | bt_self_component_sink_as_self_component(comp)); |
f6ccaed9 | 118 | BT_ASSERT(counter); |
358340ec | 119 | try_print_last(counter); |
65300d60 | 120 | bt_object_put_ref(counter->notif_iter); |
358340ec PP |
121 | g_free(counter); |
122 | } | |
123 | ||
d94d92ac PP |
124 | BT_HIDDEN |
125 | enum bt_self_component_status counter_init( | |
126 | struct bt_self_component_sink *component, | |
358340ec PP |
127 | struct bt_value *params, UNUSED_VAR void *init_method_data) |
128 | { | |
d94d92ac | 129 | enum bt_self_component_status ret; |
358340ec PP |
130 | struct counter *counter = g_new0(struct counter, 1); |
131 | struct bt_value *step = NULL; | |
132 | struct bt_value *hide_zero = NULL; | |
133 | ||
134 | if (!counter) { | |
d94d92ac PP |
135 | ret = BT_SELF_COMPONENT_STATUS_NOMEM; |
136 | goto error; | |
358340ec PP |
137 | } |
138 | ||
d94d92ac | 139 | ret = bt_self_component_sink_add_input_port(component, |
358340ec | 140 | "in", NULL, NULL); |
d94d92ac PP |
141 | if (ret != BT_SELF_COMPONENT_STATUS_OK) { |
142 | goto error; | |
358340ec PP |
143 | } |
144 | ||
145 | counter->last_printed_total = -1ULL; | |
146 | counter->step = 1000; | |
07208d85 | 147 | step = bt_value_map_borrow_entry_value(params, "step"); |
f6ccaed9 | 148 | if (step && bt_value_is_integer(step)) { |
358340ec | 149 | int64_t val; |
358340ec | 150 | |
601b0d3c | 151 | val = bt_value_integer_get(step); |
358340ec PP |
152 | if (val >= 0) { |
153 | counter->step = (uint64_t) val; | |
154 | } | |
155 | } | |
156 | ||
07208d85 | 157 | hide_zero = bt_value_map_borrow_entry_value(params, "hide-zero"); |
f6ccaed9 | 158 | if (hide_zero && bt_value_is_bool(hide_zero)) { |
358340ec | 159 | bt_bool val; |
358340ec | 160 | |
601b0d3c | 161 | val = bt_value_bool_get(hide_zero); |
358340ec PP |
162 | counter->hide_zero = (bool) val; |
163 | } | |
164 | ||
d94d92ac | 165 | bt_self_component_set_data( |
707b7d35 | 166 | bt_self_component_sink_as_self_component(component), |
d94d92ac | 167 | counter); |
358340ec PP |
168 | goto end; |
169 | ||
170 | error: | |
171 | destroy_private_counter_data(counter); | |
172 | ||
173 | end: | |
358340ec PP |
174 | return ret; |
175 | } | |
176 | ||
d94d92ac PP |
177 | BT_HIDDEN |
178 | enum bt_self_component_status counter_port_connected( | |
179 | struct bt_self_component_sink *comp, | |
180 | struct bt_self_component_port_input *self_port, | |
181 | struct bt_port_output *other_port) | |
358340ec | 182 | { |
d94d92ac | 183 | enum bt_self_component_status status = BT_SELF_COMPONENT_STATUS_OK; |
358340ec | 184 | struct counter *counter; |
d94d92ac | 185 | struct bt_self_component_port_input_notification_iterator *iterator; |
358340ec | 186 | |
d94d92ac | 187 | counter = bt_self_component_get_data( |
707b7d35 | 188 | bt_self_component_sink_as_self_component(comp)); |
f6ccaed9 | 189 | BT_ASSERT(counter); |
d94d92ac PP |
190 | iterator = bt_self_component_port_input_notification_iterator_create( |
191 | self_port); | |
192 | if (!iterator) { | |
193 | status = BT_SELF_COMPONENT_STATUS_NOMEM; | |
358340ec PP |
194 | goto end; |
195 | } | |
196 | ||
65300d60 | 197 | BT_OBJECT_MOVE_REF(counter->notif_iter, iterator); |
358340ec PP |
198 | |
199 | end: | |
bf55043c | 200 | return status; |
358340ec PP |
201 | } |
202 | ||
d94d92ac PP |
203 | BT_HIDDEN |
204 | enum bt_self_component_status counter_consume( | |
205 | struct bt_self_component_sink *comp) | |
358340ec | 206 | { |
d94d92ac | 207 | enum bt_self_component_status ret = BT_SELF_COMPONENT_STATUS_OK; |
358340ec PP |
208 | struct counter *counter; |
209 | enum bt_notification_iterator_status it_ret; | |
d4393e08 PP |
210 | uint64_t notif_count; |
211 | bt_notification_array notifs; | |
358340ec | 212 | |
d94d92ac | 213 | counter = bt_self_component_get_data( |
707b7d35 | 214 | bt_self_component_sink_as_self_component(comp)); |
f6ccaed9 | 215 | BT_ASSERT(counter); |
358340ec | 216 | |
358340ec PP |
217 | if (unlikely(!counter->notif_iter)) { |
218 | try_print_last(counter); | |
d94d92ac | 219 | ret = BT_SELF_COMPONENT_STATUS_END; |
358340ec PP |
220 | goto end; |
221 | } | |
222 | ||
d4393e08 | 223 | /* Consume notifications */ |
d94d92ac | 224 | it_ret = bt_self_component_port_input_notification_iterator_next( |
d4393e08 | 225 | counter->notif_iter, ¬ifs, ¬if_count); |
358340ec | 226 | if (it_ret < 0) { |
d94d92ac | 227 | ret = BT_SELF_COMPONENT_STATUS_ERROR; |
358340ec PP |
228 | goto end; |
229 | } | |
230 | ||
231 | switch (it_ret) { | |
358340ec PP |
232 | case BT_NOTIFICATION_ITERATOR_STATUS_OK: |
233 | { | |
d4393e08 PP |
234 | uint64_t i; |
235 | ||
236 | for (i = 0; i < notif_count; i++) { | |
237 | struct bt_notification *notif = notifs[i]; | |
238 | ||
239 | BT_ASSERT(notif); | |
240 | switch (bt_notification_get_type(notif)) { | |
241 | case BT_NOTIFICATION_TYPE_EVENT: | |
242 | counter->count.event++; | |
243 | break; | |
244 | case BT_NOTIFICATION_TYPE_INACTIVITY: | |
245 | counter->count.inactivity++; | |
246 | break; | |
247 | case BT_NOTIFICATION_TYPE_STREAM_BEGIN: | |
248 | counter->count.stream_begin++; | |
249 | break; | |
250 | case BT_NOTIFICATION_TYPE_STREAM_END: | |
251 | counter->count.stream_end++; | |
252 | break; | |
253 | case BT_NOTIFICATION_TYPE_PACKET_BEGIN: | |
254 | counter->count.packet_begin++; | |
255 | break; | |
256 | case BT_NOTIFICATION_TYPE_PACKET_END: | |
257 | counter->count.packet_end++; | |
258 | break; | |
d4393e08 PP |
259 | default: |
260 | counter->count.other++; | |
358340ec | 261 | } |
d4393e08 | 262 | |
65300d60 | 263 | bt_object_put_ref(notif); |
358340ec | 264 | } |
d94d92ac PP |
265 | |
266 | ret = BT_SELF_COMPONENT_STATUS_OK; | |
267 | break; | |
358340ec | 268 | } |
d94d92ac PP |
269 | case BT_NOTIFICATION_ITERATOR_STATUS_AGAIN: |
270 | ret = BT_SELF_COMPONENT_STATUS_AGAIN; | |
271 | goto end; | |
272 | case BT_NOTIFICATION_ITERATOR_STATUS_END: | |
273 | try_print_last(counter); | |
274 | ret = BT_SELF_COMPONENT_STATUS_END; | |
275 | goto end; | |
276 | case BT_NOTIFICATION_ITERATOR_STATUS_NOMEM: | |
277 | ret = BT_SELF_COMPONENT_STATUS_NOMEM; | |
278 | goto end; | |
358340ec PP |
279 | default: |
280 | break; | |
281 | } | |
282 | ||
d4393e08 | 283 | try_print_count(counter, notif_count); |
358340ec PP |
284 | |
285 | end: | |
358340ec PP |
286 | return ret; |
287 | } |