lib: rename "notification" -> "message"
[babeltrace.git] / plugins / lttng-utils / plugin.c
CommitLineData
4f45f9bb
JD
1/*
2 * plugin.c
3 *
4 * Babeltrace Debug Info Plug-in
5 *
6 * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
7 *
8 * Author: Jérémie Galarneau <jeremie.galarneau@efficios.com>
9 *
10 * Permission is hereby granted, free of charge, to any person obtaining a copy
11 * of this software and associated documentation files (the "Software"), to deal
12 * in the Software without restriction, including without limitation the rights
13 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14 * copies of the Software, and to permit persons to whom the Software is
15 * furnished to do so, subject to the following conditions:
16 *
17 * The above copyright notice and this permission notice shall be included in
18 * all copies or substantial portions of the Software.
19 *
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26 * SOFTWARE.
27 */
28
f4f9e43b
PP
29#define BT_LOG_TAG "PLUGIN-CTF-LTTNG-UTILS-DEBUG-INFO-FLT"
30#include "logging.h"
31
e0831b38 32#include <babeltrace/babeltrace.h>
4f45f9bb 33#include <plugins-common.h>
8b45963b 34#include <babeltrace/assert-internal.h>
4f45f9bb
JD
35#include "debug-info.h"
36#include "copy.h"
37
1c78e839
JD
38static
39gboolean empty_trace_map(gpointer key, gpointer value, gpointer user_data)
40{
41 struct debug_info_trace *di_trace = value;
42
43 di_trace->trace_static = 1;
44 debug_info_close_trace(di_trace->debug_it, di_trace);
45
46 return TRUE;
47}
48
4f45f9bb
JD
49static
50void destroy_debug_info_data(struct debug_info_component *debug_info)
51{
52 free(debug_info->arg_debug_info_field_name);
53 g_free(debug_info);
54}
55
56static
8eee8ea2 57void destroy_debug_info_component(bt_self_component *component)
4f45f9bb 58{
834e9996 59 void *data = bt_self_component_get_user_data(component);
4f45f9bb
JD
60 destroy_debug_info_data(data);
61}
62
63static
64struct debug_info_component *create_debug_info_component_data(void)
65{
66 struct debug_info_component *debug_info;
67
68 debug_info = g_new0(struct debug_info_component, 1);
69 if (!debug_info) {
70 goto end;
71 }
72 debug_info->err = stderr;
73
74end:
75 return debug_info;
76}
77
78static
504db471 79void unref_trace(struct debug_info_trace *di_trace)
4f45f9bb 80{
8c6884d9 81 bt_trace_put_ref(di_trace->writer_trace);
1c78e839 82 g_free(di_trace);
4f45f9bb
JD
83}
84
85static
b09a5592 86void debug_info_iterator_destroy(bt_self_message_iterator *it)
4f45f9bb
JD
87{
88 struct debug_info_iterator *it_data;
89
b09a5592 90 it_data = bt_self_message_iterator_get_user_data(it);
8b45963b 91 BT_ASSERT(it_data);
4f45f9bb
JD
92
93 if (it_data->input_iterator_group) {
94 g_ptr_array_free(it_data->input_iterator_group, TRUE);
95 }
1c78e839
JD
96
97 g_hash_table_foreach_remove(it_data->trace_map,
98 empty_trace_map, it_data);
99 g_hash_table_destroy(it_data->trace_map);
100
b09a5592 101 bt_message_put_ref(it_data->current_message);
8138bfe1 102 bt_object_put_ref(it_data->input_iterator);
1c78e839 103
4f45f9bb
JD
104 g_free(it_data);
105}
106
107static
b09a5592 108const bt_message *handle_message(FILE *err,
4f45f9bb 109 struct debug_info_iterator *debug_it,
b09a5592 110 const bt_message *message)
4f45f9bb 111{
b09a5592 112 const bt_message *new_message = NULL;
4f45f9bb 113
b09a5592
PP
114 switch (bt_message_get_type(message)) {
115 case BT_MESSAGE_TYPE_PACKET_BEGINNING:
4f45f9bb 116 {
8eee8ea2 117 const bt_packet *packet =
b09a5592 118 bt_message_packet_beginning_get_packet(message);
8eee8ea2 119 const bt_packet *writer_packet;
4f45f9bb
JD
120
121 if (!packet) {
122 goto end;
123 }
124
125 writer_packet = debug_info_new_packet(debug_it, packet);
8b45963b 126 BT_ASSERT(writer_packet);
b09a5592 127 new_message = bt_message_packet_beginning_create(
4f45f9bb 128 writer_packet);
b09a5592 129 BT_ASSERT(new_message);
8c6884d9
PP
130 bt_packet_put_ref(packet);
131 bt_packet_put_ref(writer_packet);
4f45f9bb
JD
132 break;
133 }
b09a5592 134 case BT_MESSAGE_TYPE_PACKET_END:
4f45f9bb 135 {
8eee8ea2 136 const bt_packet *packet =
b09a5592 137 bt_message_packet_end_get_packet(message);
8eee8ea2 138 const bt_packet *writer_packet;
4f45f9bb
JD
139
140 if (!packet) {
141 goto end;
142 }
143
144 writer_packet = debug_info_close_packet(debug_it, packet);
8b45963b 145 BT_ASSERT(writer_packet);
b09a5592 146 new_message = bt_message_packet_end_create(
4f45f9bb 147 writer_packet);
b09a5592 148 BT_ASSERT(new_message);
8c6884d9
PP
149 bt_packet_put_ref(packet);
150 bt_packet_put_ref(writer_packet);
4f45f9bb
JD
151 break;
152 }
b09a5592 153 case BT_MESSAGE_TYPE_EVENT:
4f45f9bb 154 {
b09a5592
PP
155 const bt_event *event = bt_message_event_get_event(
156 message);
8eee8ea2
PP
157 const bt_event *writer_event;
158 bt_clock_class_priority_map *cc_prio_map =
b09a5592
PP
159 bt_message_event_get_clock_class_priority_map(
160 message);
4f45f9bb
JD
161
162 if (!event) {
163 goto end;
164 }
165 writer_event = debug_info_output_event(debug_it, event);
8b45963b 166 BT_ASSERT(writer_event);
b09a5592 167 new_message = bt_message_event_create(writer_event,
4f45f9bb 168 cc_prio_map);
8138bfe1 169 bt_object_put_ref(cc_prio_map);
b09a5592 170 BT_ASSERT(new_message);
8138bfe1
PP
171 bt_object_put_ref(event);
172 bt_object_put_ref(writer_event);
4f45f9bb
JD
173 break;
174 }
b09a5592 175 case BT_MESSAGE_TYPE_STREAM_BEGINNING:
504db471 176 {
8eee8ea2 177 const bt_stream *stream =
b09a5592 178 bt_message_stream_beginning_get_stream(message);
8eee8ea2 179 const bt_stream *writer_stream;
504db471
JD
180
181 if (!stream) {
182 goto end;
183 }
184
185 writer_stream = debug_info_stream_begin(debug_it, stream);
8b45963b 186 BT_ASSERT(writer_stream);
b09a5592 187 new_message = bt_message_stream_beginning_create(
504db471 188 writer_stream);
b09a5592 189 BT_ASSERT(new_message);
8c6884d9
PP
190 bt_stream_put_ref(stream);
191 bt_stream_put_ref(writer_stream);
504db471
JD
192 break;
193 }
b09a5592 194 case BT_MESSAGE_TYPE_STREAM_END:
4f45f9bb 195 {
8eee8ea2 196 const bt_stream *stream =
b09a5592 197 bt_message_stream_end_get_stream(message);
8eee8ea2 198 const bt_stream *writer_stream;
4f45f9bb
JD
199
200 if (!stream) {
201 goto end;
202 }
203
204 writer_stream = debug_info_stream_end(debug_it, stream);
8b45963b 205 BT_ASSERT(writer_stream);
b09a5592 206 new_message = bt_message_stream_end_create(
4f45f9bb 207 writer_stream);
b09a5592 208 BT_ASSERT(new_message);
8c6884d9
PP
209 bt_stream_put_ref(stream);
210 bt_stream_put_ref(writer_stream);
4f45f9bb
JD
211 break;
212 }
355cd055 213 default:
b09a5592 214 new_message = bt_message_get_ref(message);
779fc95d
JD
215 break;
216 }
4f45f9bb
JD
217
218end:
b09a5592 219 return new_message;
4f45f9bb
JD
220}
221
222static
b09a5592
PP
223bt_message_iterator_next_method_return debug_info_iterator_next(
224 bt_self_message_iterator *iterator)
4f45f9bb
JD
225{
226 struct debug_info_iterator *debug_it = NULL;
8eee8ea2 227 bt_self_component *component = NULL;
4f45f9bb 228 struct debug_info_component *debug_info = NULL;
b09a5592
PP
229 bt_message_iterator *source_it = NULL;
230 const bt_message *message;
231 bt_message_iterator_next_method_return ret = {
232 .status = BT_MESSAGE_ITERATOR_STATUS_OK,
233 .message = NULL,
7b077a9d 234 };
4f45f9bb 235
b09a5592 236 debug_it = bt_self_message_iterator_get_user_data(iterator);
8b45963b 237 BT_ASSERT(debug_it);
4f45f9bb 238
b09a5592 239 component = bt_self_message_iterator_get_private_component(iterator);
8b45963b 240 BT_ASSERT(component);
834e9996 241 debug_info = bt_self_component_get_user_data(component);
8b45963b 242 BT_ASSERT(debug_info);
4f45f9bb
JD
243
244 source_it = debug_it->input_iterator;
245
b09a5592
PP
246 ret.status = bt_message_iterator_next(source_it);
247 if (ret.status != BT_MESSAGE_ITERATOR_STATUS_OK) {
4f45f9bb
JD
248 goto end;
249 }
250
b09a5592 251 message = bt_message_iterator_get_message(
4f45f9bb 252 source_it);
b09a5592
PP
253 if (!message) {
254 ret.status = BT_MESSAGE_ITERATOR_STATUS_ERROR;
4f45f9bb
JD
255 goto end;
256 }
257
b09a5592
PP
258 ret.message = handle_message(debug_info->err, debug_it,
259 message);
260 BT_ASSERT(ret.message);
261 bt_message_put_ref(message);
4f45f9bb 262
4f45f9bb 263end:
8138bfe1 264 bt_object_put_ref(component);
4f45f9bb
JD
265 return ret;
266}
267
4f45f9bb 268static
b09a5592
PP
269enum bt_message_iterator_status debug_info_iterator_init(
270 bt_self_message_iterator *iterator,
7b077a9d 271 struct bt_private_port *port)
4f45f9bb 272{
b09a5592
PP
273 enum bt_message_iterator_status ret =
274 BT_MESSAGE_ITERATOR_STATUS_OK;
275 enum bt_message_iterator_status it_ret;
73d5c1ad 276 enum bt_connection_status conn_status;
7b077a9d 277 struct bt_private_connection *connection = NULL;
8eee8ea2 278 bt_self_component *component =
b09a5592 279 bt_self_message_iterator_get_private_component(iterator);
4f45f9bb 280 struct debug_info_iterator *it_data = g_new0(struct debug_info_iterator, 1);
779fc95d 281 struct bt_private_port *input_port;
4f45f9bb
JD
282
283 if (!it_data) {
b09a5592 284 ret = BT_MESSAGE_ITERATOR_STATUS_NOMEM;
4f45f9bb
JD
285 goto end;
286 }
287
834e9996 288 input_port = bt_self_component_filter_get_input_port_by_name(
779fc95d
JD
289 component, "in");
290 if (!input_port) {
b09a5592 291 ret = BT_MESSAGE_ITERATOR_STATUS_ERROR;
779fc95d
JD
292 goto end;
293 }
294
96854e6a 295 connection = bt_private_port_get_connection(input_port);
8138bfe1 296 bt_object_put_ref(input_port);
779fc95d 297 if (!connection) {
b09a5592 298 ret = BT_MESSAGE_ITERATOR_STATUS_ERROR;
779fc95d
JD
299 goto end;
300 }
4f45f9bb 301
b09a5592 302 conn_status = bt_private_connection_create_message_iterator(
6ff151ad 303 connection, &it_data->input_iterator);
73d5c1ad 304 if (conn_status != BT_CONNECTION_STATUS_OK) {
b09a5592 305 ret = BT_MESSAGE_ITERATOR_STATUS_ERROR;
4f45f9bb
JD
306 goto end;
307 }
779fc95d 308
4f45f9bb 309 it_data->debug_info_component = (struct debug_info_component *)
834e9996 310 bt_self_component_get_user_data(component);
4f45f9bb
JD
311 it_data->err = it_data->debug_info_component->err;
312 it_data->trace_map = g_hash_table_new_full(g_direct_hash,
313 g_direct_equal, NULL, (GDestroyNotify) unref_trace);
4f45f9bb 314
b09a5592 315 it_ret = bt_self_message_iterator_set_user_data(iterator, it_data);
4f45f9bb
JD
316 if (it_ret) {
317 goto end;
318 }
319
320end:
8138bfe1
PP
321 bt_object_put_ref(connection);
322 bt_object_put_ref(component);
4f45f9bb
JD
323 return ret;
324}
325
326static
327enum bt_component_status init_from_params(
328 struct debug_info_component *debug_info_component,
8eee8ea2 329 bt_value *params)
4f45f9bb 330{
8eee8ea2 331 bt_value *value = NULL;
4f45f9bb
JD
332 enum bt_component_status ret = BT_COMPONENT_STATUS_OK;
333
8b45963b 334 BT_ASSERT(params);
4f45f9bb
JD
335
336 value = bt_value_map_get(params, "debug-info-field-name");
337 if (value) {
338 enum bt_value_status value_ret;
339 const char *tmp;
340
b5cdc106 341 tmp = bt_value_string_get(value);
4f45f9bb 342 strcpy(debug_info_component->arg_debug_info_field_name, tmp);
8c6884d9 343 bt_value_put_ref(value);
4f45f9bb
JD
344 } else {
345 debug_info_component->arg_debug_info_field_name =
346 malloc(strlen("debug_info") + 1);
347 if (!debug_info_component->arg_debug_info_field_name) {
348 ret = BT_COMPONENT_STATUS_NOMEM;
f4f9e43b 349 BT_LOGE_STR("Missing field name.");
1098a0ca 350 goto end;
4f45f9bb
JD
351 }
352 sprintf(debug_info_component->arg_debug_info_field_name,
353 "debug_info");
354 }
355 if (ret != BT_COMPONENT_STATUS_OK) {
356 goto end;
357 }
358
395a08d0 359 value = bt_value_map_get(params, "debug-info-dir");
4f45f9bb
JD
360 if (value) {
361 enum bt_value_status value_ret;
362
b5cdc106 363 debug_info_component->arg_debug_dir = bt_value_string_get(value);
4f45f9bb 364 }
8c6884d9 365 bt_value_put_ref(value);
4f45f9bb
JD
366 if (ret != BT_COMPONENT_STATUS_OK) {
367 goto end;
368 }
369
370 value = bt_value_map_get(params, "target-prefix");
371 if (value) {
372 enum bt_value_status value_ret;
373
b5cdc106 374 debug_info_component->arg_target_prefix = bt_value_string_get(value);
4f45f9bb 375 }
8c6884d9 376 bt_value_put_ref(value);
4f45f9bb
JD
377 if (ret != BT_COMPONENT_STATUS_OK) {
378 goto end;
379 }
380
381 value = bt_value_map_get(params, "full-path");
382 if (value) {
383 enum bt_value_status value_ret;
c55a9f58 384 bt_bool bool_val;
4f45f9bb 385
b5cdc106 386 bool_val = bt_value_bool_get(value);
c55a9f58
PP
387
388 debug_info_component->arg_full_path = bool_val;
4f45f9bb 389 }
8c6884d9 390 bt_value_put_ref(value);
4f45f9bb
JD
391 if (ret != BT_COMPONENT_STATUS_OK) {
392 goto end;
393 }
394
395end:
396 return ret;
397}
398
399enum bt_component_status debug_info_component_init(
8eee8ea2 400 bt_self_component *component, bt_value *params,
4f45f9bb
JD
401 UNUSED_VAR void *init_method_data)
402{
403 enum bt_component_status ret;
404 struct debug_info_component *debug_info = create_debug_info_component_data();
405
406 if (!debug_info) {
407 ret = BT_COMPONENT_STATUS_NOMEM;
408 goto end;
409 }
410
834e9996 411 ret = bt_self_component_set_user_data(component, debug_info);
4f45f9bb
JD
412 if (ret != BT_COMPONENT_STATUS_OK) {
413 goto error;
414 }
415
834e9996 416 ret = bt_self_component_filter_add_input_port(
147337a3
PP
417 component, "in", NULL, NULL);
418 if (ret != BT_COMPONENT_STATUS_OK) {
779fc95d
JD
419 goto end;
420 }
779fc95d 421
834e9996 422 ret = bt_self_component_filter_add_output_port(
147337a3
PP
423 component, "out", NULL, NULL);
424 if (ret != BT_COMPONENT_STATUS_OK) {
779fc95d
JD
425 goto end;
426 }
779fc95d 427
4f45f9bb
JD
428 ret = init_from_params(debug_info, params);
429end:
430 return ret;
431error:
432 destroy_debug_info_data(debug_info);
433 return ret;
434}
435
be3c4e36
MJ
436#ifndef BT_BUILT_IN_PLUGINS
437BT_PLUGIN_MODULE();
438#endif
439
4f45f9bb 440/* Initialize plug-in entry points. */
456a4476
PP
441BT_PLUGIN_WITH_ID(lttng_utils, "lttng-utils");
442BT_PLUGIN_DESCRIPTION_WITH_ID(lttng_utils, "LTTng utilities");
443BT_PLUGIN_AUTHOR_WITH_ID(lttng_utils, "Julien Desfossez");
444BT_PLUGIN_LICENSE_WITH_ID(lttng_utils, "MIT");
445
446BT_PLUGIN_FILTER_COMPONENT_CLASS_WITH_ID(lttng_utils, debug_info, "debug-info",
447 debug_info_iterator_next);
448BT_PLUGIN_FILTER_COMPONENT_CLASS_DESCRIPTION_WITH_ID(lttng_utils, debug_info,
449 "Augment compatible events with debugging information.");
450BT_PLUGIN_FILTER_COMPONENT_CLASS_INIT_METHOD_WITH_ID(lttng_utils,
451 debug_info, debug_info_component_init);
452BT_PLUGIN_FILTER_COMPONENT_CLASS_FINALIZE_METHOD_WITH_ID(lttng_utils,
453 debug_info, destroy_debug_info_component);
b09a5592 454BT_PLUGIN_FILTER_COMPONENT_CLASS_MESSAGE_ITERATOR_INIT_METHOD_WITH_ID(
456a4476 455 lttng_utils, debug_info, debug_info_iterator_init);
b09a5592 456BT_PLUGIN_FILTER_COMPONENT_CLASS_MESSAGE_ITERATOR_FINALIZE_METHOD_WITH_ID(
456a4476 457 lttng_utils, debug_info, debug_info_iterator_destroy);
This page took 0.056323 seconds and 4 git commands to generate.