Plugin development API: use self enumeration and plugin types
[babeltrace.git] / lib / plugin / plugin-so.c
CommitLineData
55bb57e0 1/*
e2f7325d 2 * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
55bb57e0 3 * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
55bb57e0
PP
4 *
5 * Author: Jérémie Galarneau <jeremie.galarneau@efficios.com>
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 * SOFTWARE.
24 */
25
3fe0bf43
PP
26#define BT_LOG_TAG "PLUGIN-SO"
27#include <babeltrace/lib-logging-internal.h>
28
c5b9b441
PP
29#include <babeltrace/assert-internal.h>
30#include <babeltrace/assert-pre-internal.h>
3d9990ac 31#include <babeltrace/compiler-internal.h>
55bb57e0
PP
32#include <babeltrace/plugin/plugin-internal.h>
33#include <babeltrace/plugin/plugin-so-internal.h>
34#include <babeltrace/plugin/plugin-dev.h>
35#include <babeltrace/plugin/plugin-internal.h>
b2e0c907 36#include <babeltrace/graph/component-class-internal.h>
0d72b8c3
PP
37#include <babeltrace/graph/component-class.h>
38#include <babeltrace/graph/component-class-source.h>
39#include <babeltrace/graph/component-class-filter.h>
40#include <babeltrace/graph/component-class-sink.h>
c55a9f58 41#include <babeltrace/types.h>
bfa9a4be 42#include <babeltrace/list-internal.h>
55bb57e0 43#include <string.h>
0fbb9a9f 44#include <stdlib.h>
55bb57e0
PP
45#include <glib.h>
46#include <gmodule.h>
47
44a3451a 48#define NATIVE_PLUGIN_SUFFIX "." G_MODULE_SUFFIX
55bb57e0
PP
49#define NATIVE_PLUGIN_SUFFIX_LEN sizeof(NATIVE_PLUGIN_SUFFIX)
50#define LIBTOOL_PLUGIN_SUFFIX ".la"
51#define LIBTOOL_PLUGIN_SUFFIX_LEN sizeof(LIBTOOL_PLUGIN_SUFFIX)
52
53#define PLUGIN_SUFFIX_LEN max_t(size_t, sizeof(NATIVE_PLUGIN_SUFFIX), \
54 sizeof(LIBTOOL_PLUGIN_SUFFIX))
55
52238017 56BT_PLUGIN_MODULE();
55bb57e0
PP
57
58/*
bfa9a4be
MD
59 * This list, global to the library, keeps all component classes that
60 * have a reference to their shared library handles. It allows iteration
61 * on all component classes still present when the destructor executes
62 * to release the shared library handle references they might still have.
55bb57e0 63 *
bfa9a4be 64 * The list items are the component classes created with
55bb57e0
PP
65 * bt_plugin_add_component_class(). They keep the shared library handle
66 * object created by their plugin alive so that the plugin's code is
67 * not discarded when it could still be in use by living components
68 * created from those component classes:
69 *
bfa9a4be 70 * [component] --ref-> [component class]-> [shlib handle]
55bb57e0 71 *
bfa9a4be 72 * It allows this use-case:
55bb57e0 73 *
c8db3219 74 * my_plugins = bt_plugin_find_all_from_file("/path/to/my-plugin.so");
55bb57e0
PP
75 * // instantiate components from a plugin's component classes
76 * // put plugins and free my_plugins here
77 * // user code of instantiated components still exists
78 *
bfa9a4be
MD
79 * An entry is removed from this list when a component class is
80 * destroyed thanks to a custom destroy listener. When the entry is
81 * removed, the entry is removed from the list, and we release the
82 * reference on the shlib handle. Assuming the original plugin object
83 * which contained some component classes is put first, when the last
84 * component class is removed from this list, the shared library handle
85 * object's reference count falls to zero and the shared library is
86 * finally closed.
55bb57e0 87 */
bfa9a4be 88
55bb57e0 89static
bfa9a4be 90BT_LIST_HEAD(component_class_list);
55bb57e0
PP
91
92__attribute__((destructor)) static
bfa9a4be
MD
93void fini_comp_class_list(void)
94{
95 struct bt_component_class *comp_class, *tmp;
96
97 bt_list_for_each_entry_safe(comp_class, tmp, &component_class_list, node) {
98 bt_list_del(&comp_class->node);
65300d60 99 BT_OBJECT_PUT_REF_AND_RESET(comp_class->so_handle);
55bb57e0 100 }
d94d92ac 101
bfa9a4be 102 BT_LOGD_STR("Released references from all component classes to shared library handles.");
55bb57e0
PP
103}
104
9724cce9 105static inline
a21d1cb8 106const char *bt_self_plugin_status_string(enum bt_self_plugin_status status)
9724cce9
PP
107{
108 switch (status) {
a21d1cb8
PP
109 case BT_SELF_PLUGIN_STATUS_OK:
110 return "BT_SELF_PLUGIN_STATUS_OK";
111 case BT_SELF_PLUGIN_STATUS_ERROR:
112 return "BT_SELF_PLUGIN_STATUS_ERROR";
113 case BT_SELF_PLUGIN_STATUS_NOMEM:
114 return "BT_SELF_PLUGIN_STATUS_NOMEM";
9724cce9
PP
115 default:
116 return "(unknown)";
117 }
118}
119
55bb57e0
PP
120static
121void bt_plugin_so_shared_lib_handle_destroy(struct bt_object *obj)
122{
123 struct bt_plugin_so_shared_lib_handle *shared_lib_handle;
124
f6ccaed9 125 BT_ASSERT(obj);
55bb57e0
PP
126 shared_lib_handle = container_of(obj,
127 struct bt_plugin_so_shared_lib_handle, base);
3fe0bf43
PP
128 const char *path = shared_lib_handle->path ?
129 shared_lib_handle->path->str : NULL;
130
131 BT_LOGD("Destroying shared library handle: addr=%p, path=\"%s\"",
132 shared_lib_handle, path);
55bb57e0
PP
133
134 if (shared_lib_handle->init_called && shared_lib_handle->exit) {
3fe0bf43 135 BT_LOGD_STR("Calling user's plugin exit function.");
9724cce9
PP
136 shared_lib_handle->exit();
137 BT_LOGD_STR("User function returned.");
55bb57e0
PP
138 }
139
140 if (shared_lib_handle->module) {
f1447220
PP
141#ifndef NDEBUG
142 /*
143 * Valgrind shows incomplete stack traces when
144 * dynamically loaded libraries are closed before it
145 * finishes. Use the BABELTRACE_NO_DLCLOSE in a debug
146 * build to avoid this.
147 */
148 const char *var = getenv("BABELTRACE_NO_DLCLOSE");
149
150 if (!var || strcmp(var, "1") != 0) {
151#endif
3fe0bf43
PP
152 BT_LOGD("Closing GModule: path=\"%s\"", path);
153
f1447220 154 if (!g_module_close(shared_lib_handle->module)) {
3fe0bf43
PP
155 BT_LOGE("Cannot close GModule: %s: path=\"%s\"",
156 g_module_error(), path);
f1447220 157 }
db5504f9
PP
158
159 shared_lib_handle->module = NULL;
f1447220 160#ifndef NDEBUG
3fe0bf43
PP
161 } else {
162 BT_LOGD("Not closing GModule because `BABELTRACE_NO_DLCLOSE=1`: "
163 "path=\"%s\"", path);
55bb57e0 164 }
f1447220 165#endif
55bb57e0
PP
166 }
167
168 if (shared_lib_handle->path) {
169 g_string_free(shared_lib_handle->path, TRUE);
db5504f9 170 shared_lib_handle->path = NULL;
55bb57e0
PP
171 }
172
173 g_free(shared_lib_handle);
174}
175
176static
177struct bt_plugin_so_shared_lib_handle *bt_plugin_so_shared_lib_handle_create(
178 const char *path)
179{
180 struct bt_plugin_so_shared_lib_handle *shared_lib_handle = NULL;
181
3fe0bf43 182 BT_LOGD("Creating shared library handle: path=\"%s\"", path);
55bb57e0
PP
183 shared_lib_handle = g_new0(struct bt_plugin_so_shared_lib_handle, 1);
184 if (!shared_lib_handle) {
3fe0bf43 185 BT_LOGE_STR("Failed to allocate one shared library handle.");
55bb57e0
PP
186 goto error;
187 }
188
3fea54f6
PP
189 bt_object_init_shared(&shared_lib_handle->base,
190 bt_plugin_so_shared_lib_handle_destroy);
55bb57e0
PP
191
192 if (!path) {
193 goto end;
194 }
195
196 shared_lib_handle->path = g_string_new(path);
197 if (!shared_lib_handle->path) {
3fe0bf43 198 BT_LOGE_STR("Failed to allocate a GString.");
55bb57e0
PP
199 goto error;
200 }
201
424b8c43 202 shared_lib_handle->module = g_module_open(path, G_MODULE_BIND_LOCAL);
55bb57e0 203 if (!shared_lib_handle->module) {
50ad9320
PP
204 /*
205 * DEBUG-level logging because we're only _trying_ to
206 * open this file as a Babeltrace plugin: if it's not,
207 * it's not an error. And because this can be tried
c8db3219 208 * during bt_plugin_find_all_from_dir(), it's not even
50ad9320
PP
209 * a warning.
210 */
211 BT_LOGD("Cannot open GModule: %s: path=\"%s\"",
3fe0bf43 212 g_module_error(), path);
55bb57e0
PP
213 goto error;
214 }
215
216 goto end;
217
218error:
65300d60 219 BT_OBJECT_PUT_REF_AND_RESET(shared_lib_handle);
55bb57e0
PP
220
221end:
3fe0bf43
PP
222 if (shared_lib_handle) {
223 BT_LOGD("Created shared library handle: path=\"%s\", addr=%p",
224 path, shared_lib_handle);
225 }
226
55bb57e0
PP
227 return shared_lib_handle;
228}
229
6fbd4105 230static
55bb57e0
PP
231void bt_plugin_so_destroy_spec_data(struct bt_plugin *plugin)
232{
233 struct bt_plugin_so_spec_data *spec = plugin->spec_data;
234
235 if (!plugin->spec_data) {
236 return;
237 }
238
f6ccaed9
PP
239 BT_ASSERT(plugin->type == BT_PLUGIN_TYPE_SO);
240 BT_ASSERT(spec);
65300d60 241 BT_OBJECT_PUT_REF_AND_RESET(spec->shared_lib_handle);
55bb57e0
PP
242 g_free(plugin->spec_data);
243 plugin->spec_data = NULL;
244}
245
246/*
247 * This function does the following:
248 *
249 * 1. Iterate on the plugin descriptor attributes section and set the
250 * plugin's attributes depending on the attribute types. This
251 * includes the name of the plugin, its description, and its
252 * initialization function, for example.
253 *
254 * 2. Iterate on the component class descriptors section and create one
255 * "full descriptor" (temporary structure) for each one that is found
256 * and attached to our plugin descriptor.
257 *
258 * 3. Iterate on the component class descriptor attributes section and
259 * set the corresponding full descriptor's attributes depending on
260 * the attribute types. This includes the description of the
261 * component class, as well as its initialization and destroy
262 * methods.
263 *
264 * 4. Call the user's plugin initialization function, if any is
265 * defined.
266 *
267 * 5. For each full component class descriptor, create a component class
268 * object, set its optional attributes, and add it to the plugin
269 * object.
270 *
271 * 6. Freeze the plugin object.
272 */
273static
274enum bt_plugin_status bt_plugin_so_init(
275 struct bt_plugin *plugin,
276 const struct __bt_plugin_descriptor *descriptor,
277 struct __bt_plugin_descriptor_attribute const * const *attrs_begin,
278 struct __bt_plugin_descriptor_attribute const * const *attrs_end,
279 struct __bt_plugin_component_class_descriptor const * const *cc_descriptors_begin,
280 struct __bt_plugin_component_class_descriptor const * const *cc_descriptors_end,
281 struct __bt_plugin_component_class_descriptor_attribute const * const *cc_descr_attrs_begin,
282 struct __bt_plugin_component_class_descriptor_attribute const * const *cc_descr_attrs_end)
283{
284 /*
285 * This structure's members point to the plugin's memory
286 * (do NOT free).
287 */
288 struct comp_class_full_descriptor {
289 const struct __bt_plugin_component_class_descriptor *descriptor;
290 const char *description;
279b3f15 291 const char *help;
d94d92ac
PP
292
293 union {
294 struct {
0d72b8c3
PP
295 bt_component_class_source_init_method init;
296 bt_component_class_source_finalize_method finalize;
297 bt_component_class_source_query_method query;
298 bt_component_class_source_accept_output_port_connection_method accept_output_port_connection;
299 bt_component_class_source_output_port_connected_method output_port_connected;
300 bt_component_class_source_output_port_disconnected_method output_port_disconnected;
d6e69534
PP
301 bt_component_class_source_message_iterator_init_method msg_iter_init;
302 bt_component_class_source_message_iterator_finalize_method msg_iter_finalize;
d94d92ac
PP
303 } source;
304
305 struct {
0d72b8c3
PP
306 bt_component_class_filter_init_method init;
307 bt_component_class_filter_finalize_method finalize;
308 bt_component_class_filter_query_method query;
309 bt_component_class_filter_accept_input_port_connection_method accept_input_port_connection;
310 bt_component_class_filter_accept_output_port_connection_method accept_output_port_connection;
311 bt_component_class_filter_input_port_connected_method input_port_connected;
312 bt_component_class_filter_output_port_connected_method output_port_connected;
313 bt_component_class_filter_input_port_disconnected_method input_port_disconnected;
314 bt_component_class_filter_output_port_disconnected_method output_port_disconnected;
d6e69534
PP
315 bt_component_class_filter_message_iterator_init_method msg_iter_init;
316 bt_component_class_filter_message_iterator_finalize_method msg_iter_finalize;
d94d92ac
PP
317 } filter;
318
319 struct {
0d72b8c3
PP
320 bt_component_class_sink_init_method init;
321 bt_component_class_sink_finalize_method finalize;
322 bt_component_class_sink_query_method query;
323 bt_component_class_sink_accept_input_port_connection_method accept_input_port_connection;
324 bt_component_class_sink_input_port_connected_method input_port_connected;
325 bt_component_class_sink_input_port_disconnected_method input_port_disconnected;
d94d92ac
PP
326 } sink;
327 } methods;
55bb57e0
PP
328 };
329
330 enum bt_plugin_status status = BT_PLUGIN_STATUS_OK;
331 struct __bt_plugin_descriptor_attribute const * const *cur_attr_ptr;
332 struct __bt_plugin_component_class_descriptor const * const *cur_cc_descr_ptr;
333 struct __bt_plugin_component_class_descriptor_attribute const * const *cur_cc_descr_attr_ptr;
334 struct bt_plugin_so_spec_data *spec = plugin->spec_data;
335 GArray *comp_class_full_descriptors;
336 size_t i;
337 int ret;
338
3fe0bf43
PP
339 BT_LOGD("Initializing plugin object from descriptors found in sections: "
340 "plugin-addr=%p, plugin-path=\"%s\", "
341 "attrs-begin-addr=%p, attrs-end-addr=%p, "
342 "cc-descr-begin-addr=%p, cc-descr-end-addr=%p, "
343 "cc-descr-attrs-begin-addr=%p, cc-descr-attrs-end-addr=%p",
344 plugin,
345 spec->shared_lib_handle->path ?
346 spec->shared_lib_handle->path->str : NULL,
347 attrs_begin, attrs_end,
348 cc_descriptors_begin, cc_descriptors_end,
349 cc_descr_attrs_begin, cc_descr_attrs_end);
55bb57e0
PP
350 comp_class_full_descriptors = g_array_new(FALSE, TRUE,
351 sizeof(struct comp_class_full_descriptor));
352 if (!comp_class_full_descriptors) {
3fe0bf43 353 BT_LOGE_STR("Failed to allocate a GArray.");
55bb57e0
PP
354 status = BT_PLUGIN_STATUS_ERROR;
355 goto end;
356 }
357
358 /* Set mandatory attributes */
359 spec->descriptor = descriptor;
360 bt_plugin_set_name(plugin, descriptor->name);
361
362 /*
363 * Find and set optional attributes attached to this plugin
364 * descriptor.
365 */
366 for (cur_attr_ptr = attrs_begin; cur_attr_ptr != attrs_end; cur_attr_ptr++) {
367 const struct __bt_plugin_descriptor_attribute *cur_attr =
368 *cur_attr_ptr;
369
52238017
MJ
370 if (cur_attr == NULL) {
371 continue;
372 }
373
55bb57e0
PP
374 if (cur_attr->plugin_descriptor != descriptor) {
375 continue;
376 }
377
378 switch (cur_attr->type) {
379 case BT_PLUGIN_DESCRIPTOR_ATTRIBUTE_TYPE_INIT:
380 spec->init = cur_attr->value.init;
381 break;
382 case BT_PLUGIN_DESCRIPTOR_ATTRIBUTE_TYPE_EXIT:
383 spec->shared_lib_handle->exit = cur_attr->value.exit;
384 break;
385 case BT_PLUGIN_DESCRIPTOR_ATTRIBUTE_TYPE_AUTHOR:
386 bt_plugin_set_author(plugin, cur_attr->value.author);
387 break;
388 case BT_PLUGIN_DESCRIPTOR_ATTRIBUTE_TYPE_LICENSE:
389 bt_plugin_set_license(plugin, cur_attr->value.license);
390 break;
391 case BT_PLUGIN_DESCRIPTOR_ATTRIBUTE_TYPE_DESCRIPTION:
392 bt_plugin_set_description(plugin, cur_attr->value.description);
393 break;
394 case BT_PLUGIN_DESCRIPTOR_ATTRIBUTE_TYPE_VERSION:
395 bt_plugin_set_version(plugin,
396 (unsigned int) cur_attr->value.version.major,
397 (unsigned int) cur_attr->value.version.minor,
398 (unsigned int) cur_attr->value.version.patch,
399 cur_attr->value.version.extra);
400 break;
401 default:
50ad9320
PP
402 /*
403 * WARN-level logging because this should not
404 * happen with the appropriate ABI version. If
405 * we're here, we know that for the reported
406 * version of the ABI, this attribute is
407 * unknown.
408 */
3fe0bf43
PP
409 BT_LOGW("Ignoring unknown plugin descriptor attribute: "
410 "plugin-path=\"%s\", plugin-name=\"%s\", "
411 "attr-type-name=\"%s\", attr-type-id=%d",
412 spec->shared_lib_handle->path ?
413 spec->shared_lib_handle->path->str :
414 NULL,
415 descriptor->name, cur_attr->type_name,
416 cur_attr->type);
55bb57e0
PP
417 break;
418 }
419 }
420
421 /*
422 * Find component class descriptors attached to this plugin
423 * descriptor and initialize corresponding full component class
424 * descriptors in the array.
425 */
426 for (cur_cc_descr_ptr = cc_descriptors_begin; cur_cc_descr_ptr != cc_descriptors_end; cur_cc_descr_ptr++) {
427 const struct __bt_plugin_component_class_descriptor *cur_cc_descr =
428 *cur_cc_descr_ptr;
429 struct comp_class_full_descriptor full_descriptor = {0};
430
52238017
MJ
431 if (cur_cc_descr == NULL) {
432 continue;
433 }
434
55bb57e0
PP
435 if (cur_cc_descr->plugin_descriptor != descriptor) {
436 continue;
437 }
438
439 full_descriptor.descriptor = cur_cc_descr;
440 g_array_append_val(comp_class_full_descriptors,
441 full_descriptor);
442 }
443
444 /*
445 * Find component class descriptor attributes attached to this
446 * plugin descriptor and update corresponding full component
447 * class descriptors in the array.
448 */
449 for (cur_cc_descr_attr_ptr = cc_descr_attrs_begin; cur_cc_descr_attr_ptr != cc_descr_attrs_end; cur_cc_descr_attr_ptr++) {
450 const struct __bt_plugin_component_class_descriptor_attribute *cur_cc_descr_attr =
451 *cur_cc_descr_attr_ptr;
d94d92ac 452 enum bt_component_class_type cc_type;
55bb57e0 453
52238017
MJ
454 if (cur_cc_descr_attr == NULL) {
455 continue;
456 }
457
55bb57e0
PP
458 if (cur_cc_descr_attr->comp_class_descriptor->plugin_descriptor !=
459 descriptor) {
460 continue;
461 }
462
d94d92ac
PP
463 cc_type = cur_cc_descr_attr->comp_class_descriptor->type;
464
55bb57e0
PP
465 /* Find the corresponding component class descriptor entry */
466 for (i = 0; i < comp_class_full_descriptors->len; i++) {
467 struct comp_class_full_descriptor *cc_full_descr =
468 &g_array_index(comp_class_full_descriptors,
469 struct comp_class_full_descriptor, i);
470
d94d92ac 471 if (cur_cc_descr_attr->comp_class_descriptor !=
55bb57e0 472 cc_full_descr->descriptor) {
d94d92ac
PP
473 continue;
474 }
475
476 switch (cur_cc_descr_attr->type) {
477 case BT_PLUGIN_COMPONENT_CLASS_DESCRIPTOR_ATTRIBUTE_TYPE_DESCRIPTION:
478 cc_full_descr->description =
479 cur_cc_descr_attr->value.description;
480 break;
481 case BT_PLUGIN_COMPONENT_CLASS_DESCRIPTOR_ATTRIBUTE_TYPE_HELP:
482 cc_full_descr->help =
483 cur_cc_descr_attr->value.help;
484 break;
485 case BT_PLUGIN_COMPONENT_CLASS_DESCRIPTOR_ATTRIBUTE_TYPE_INIT_METHOD:
486 switch (cc_type) {
487 case BT_COMPONENT_CLASS_TYPE_SOURCE:
488 cc_full_descr->methods.source.init =
489 cur_cc_descr_attr->value.source_init_method;
55bb57e0 490 break;
d94d92ac
PP
491 case BT_COMPONENT_CLASS_TYPE_FILTER:
492 cc_full_descr->methods.filter.init =
493 cur_cc_descr_attr->value.filter_init_method;
279b3f15 494 break;
d94d92ac
PP
495 case BT_COMPONENT_CLASS_TYPE_SINK:
496 cc_full_descr->methods.sink.init =
497 cur_cc_descr_attr->value.sink_init_method;
55bb57e0 498 break;
d94d92ac
PP
499 default:
500 abort();
501 }
502 break;
503 case BT_PLUGIN_COMPONENT_CLASS_DESCRIPTOR_ATTRIBUTE_TYPE_FINALIZE_METHOD:
504 switch (cc_type) {
505 case BT_COMPONENT_CLASS_TYPE_SOURCE:
506 cc_full_descr->methods.source.finalize =
507 cur_cc_descr_attr->value.source_finalize_method;
55bb57e0 508 break;
d94d92ac
PP
509 case BT_COMPONENT_CLASS_TYPE_FILTER:
510 cc_full_descr->methods.filter.finalize =
511 cur_cc_descr_attr->value.filter_finalize_method;
8463eac2 512 break;
d94d92ac
PP
513 case BT_COMPONENT_CLASS_TYPE_SINK:
514 cc_full_descr->methods.sink.finalize =
515 cur_cc_descr_attr->value.sink_finalize_method;
72b913fb 516 break;
d94d92ac
PP
517 default:
518 abort();
519 }
520 break;
521 case BT_PLUGIN_COMPONENT_CLASS_DESCRIPTOR_ATTRIBUTE_TYPE_QUERY_METHOD:
522 switch (cc_type) {
523 case BT_COMPONENT_CLASS_TYPE_SOURCE:
524 cc_full_descr->methods.source.query =
525 cur_cc_descr_attr->value.source_query_method;
0d8b4d8e 526 break;
d94d92ac
PP
527 case BT_COMPONENT_CLASS_TYPE_FILTER:
528 cc_full_descr->methods.filter.query =
529 cur_cc_descr_attr->value.filter_query_method;
55bb57e0 530 break;
d94d92ac
PP
531 case BT_COMPONENT_CLASS_TYPE_SINK:
532 cc_full_descr->methods.sink.query =
533 cur_cc_descr_attr->value.sink_query_method;
55bb57e0 534 break;
d94d92ac
PP
535 default:
536 abort();
537 }
538 break;
539 case BT_PLUGIN_COMPONENT_CLASS_DESCRIPTOR_ATTRIBUTE_TYPE_ACCEPT_INPUT_PORT_CONNECTION_METHOD:
540 switch (cc_type) {
541 case BT_COMPONENT_CLASS_TYPE_FILTER:
542 cc_full_descr->methods.filter.accept_input_port_connection =
543 cur_cc_descr_attr->value.filter_accept_input_port_connection_method;
544 break;
545 case BT_COMPONENT_CLASS_TYPE_SINK:
546 cc_full_descr->methods.sink.accept_input_port_connection =
547 cur_cc_descr_attr->value.sink_accept_input_port_connection_method;
548 break;
549 default:
550 abort();
551 }
552 break;
553 case BT_PLUGIN_COMPONENT_CLASS_DESCRIPTOR_ATTRIBUTE_TYPE_ACCEPT_OUTPUT_PORT_CONNECTION_METHOD:
554 switch (cc_type) {
555 case BT_COMPONENT_CLASS_TYPE_SOURCE:
556 cc_full_descr->methods.source.accept_output_port_connection =
557 cur_cc_descr_attr->value.source_accept_output_port_connection_method;
558 break;
559 case BT_COMPONENT_CLASS_TYPE_FILTER:
560 cc_full_descr->methods.filter.accept_output_port_connection =
561 cur_cc_descr_attr->value.filter_accept_output_port_connection_method;
562 break;
563 default:
564 abort();
565 }
566 break;
567 case BT_PLUGIN_COMPONENT_CLASS_DESCRIPTOR_ATTRIBUTE_TYPE_INPUT_PORT_CONNECTED_METHOD:
568 switch (cc_type) {
569 case BT_COMPONENT_CLASS_TYPE_FILTER:
570 cc_full_descr->methods.filter.input_port_connected =
571 cur_cc_descr_attr->value.filter_input_port_connected_method;
572 break;
573 case BT_COMPONENT_CLASS_TYPE_SINK:
574 cc_full_descr->methods.sink.input_port_connected =
575 cur_cc_descr_attr->value.sink_input_port_connected_method;
55bb57e0 576 break;
55bb57e0 577 default:
d94d92ac
PP
578 abort();
579 }
580 break;
581 case BT_PLUGIN_COMPONENT_CLASS_DESCRIPTOR_ATTRIBUTE_TYPE_OUTPUT_PORT_CONNECTED_METHOD:
582 switch (cc_type) {
583 case BT_COMPONENT_CLASS_TYPE_SOURCE:
584 cc_full_descr->methods.source.output_port_connected =
585 cur_cc_descr_attr->value.source_output_port_connected_method;
586 break;
587 case BT_COMPONENT_CLASS_TYPE_FILTER:
588 cc_full_descr->methods.filter.output_port_connected =
589 cur_cc_descr_attr->value.filter_output_port_connected_method;
55bb57e0 590 break;
d94d92ac
PP
591 default:
592 abort();
55bb57e0 593 }
d94d92ac
PP
594 break;
595 case BT_PLUGIN_COMPONENT_CLASS_DESCRIPTOR_ATTRIBUTE_TYPE_INPUT_PORT_DISCONNECTED_METHOD:
596 switch (cc_type) {
597 case BT_COMPONENT_CLASS_TYPE_FILTER:
598 cc_full_descr->methods.filter.input_port_disconnected =
599 cur_cc_descr_attr->value.filter_input_port_disconnected_method;
600 break;
601 case BT_COMPONENT_CLASS_TYPE_SINK:
602 cc_full_descr->methods.sink.input_port_disconnected =
603 cur_cc_descr_attr->value.sink_input_port_disconnected_method;
604 break;
605 default:
606 abort();
607 }
608 break;
609 case BT_PLUGIN_COMPONENT_CLASS_DESCRIPTOR_ATTRIBUTE_TYPE_OUTPUT_PORT_DISCONNECTED_METHOD:
610 switch (cc_type) {
611 case BT_COMPONENT_CLASS_TYPE_SOURCE:
612 cc_full_descr->methods.source.output_port_disconnected =
613 cur_cc_descr_attr->value.source_output_port_disconnected_method;
614 break;
615 case BT_COMPONENT_CLASS_TYPE_FILTER:
616 cc_full_descr->methods.filter.output_port_disconnected =
617 cur_cc_descr_attr->value.filter_output_port_disconnected_method;
618 break;
619 default:
620 abort();
621 }
622 break;
d6e69534 623 case BT_PLUGIN_COMPONENT_CLASS_DESCRIPTOR_ATTRIBUTE_TYPE_MSG_ITER_INIT_METHOD:
d94d92ac
PP
624 switch (cc_type) {
625 case BT_COMPONENT_CLASS_TYPE_SOURCE:
d6e69534
PP
626 cc_full_descr->methods.source.msg_iter_init =
627 cur_cc_descr_attr->value.source_msg_iter_init_method;
d94d92ac
PP
628 break;
629 case BT_COMPONENT_CLASS_TYPE_FILTER:
d6e69534
PP
630 cc_full_descr->methods.filter.msg_iter_init =
631 cur_cc_descr_attr->value.filter_msg_iter_init_method;
d94d92ac
PP
632 break;
633 default:
634 abort();
635 }
636 break;
d6e69534 637 case BT_PLUGIN_COMPONENT_CLASS_DESCRIPTOR_ATTRIBUTE_TYPE_MSG_ITER_FINALIZE_METHOD:
d94d92ac
PP
638 switch (cc_type) {
639 case BT_COMPONENT_CLASS_TYPE_SOURCE:
d6e69534
PP
640 cc_full_descr->methods.source.msg_iter_finalize =
641 cur_cc_descr_attr->value.source_msg_iter_finalize_method;
d94d92ac
PP
642 break;
643 case BT_COMPONENT_CLASS_TYPE_FILTER:
d6e69534
PP
644 cc_full_descr->methods.filter.msg_iter_finalize =
645 cur_cc_descr_attr->value.filter_msg_iter_finalize_method;
d94d92ac
PP
646 break;
647 default:
648 abort();
649 }
650 break;
651 default:
652 /*
653 * WARN-level logging because this
654 * should not happen with the
655 * appropriate ABI version. If we're
656 * here, we know that for the reported
657 * version of the ABI, this attribute is
658 * unknown.
659 */
660 BT_LOGW("Ignoring unknown component class descriptor attribute: "
661 "plugin-path=\"%s\", "
662 "plugin-name=\"%s\", "
663 "comp-class-name=\"%s\", "
664 "comp-class-type=%s, "
665 "attr-type-name=\"%s\", "
666 "attr-type-id=%d",
667 spec->shared_lib_handle->path ?
668 spec->shared_lib_handle->path->str :
669 NULL,
670 descriptor->name,
671 cur_cc_descr_attr->comp_class_descriptor->name,
672 bt_component_class_type_string(
673 cur_cc_descr_attr->comp_class_descriptor->type),
674 cur_cc_descr_attr->type_name,
675 cur_cc_descr_attr->type);
676 break;
55bb57e0
PP
677 }
678 }
679 }
680
681 /* Initialize plugin */
682 if (spec->init) {
a21d1cb8
PP
683 enum bt_self_plugin_status init_status;
684
3fe0bf43 685 BT_LOGD_STR("Calling user's plugin initialization function.");
a21d1cb8 686 init_status = spec->init((void *) plugin);
3fe0bf43 687 BT_LOGD("User function returned: %s",
a21d1cb8 688 bt_self_plugin_status_string(init_status));
3fe0bf43 689
9724cce9 690 if (init_status < 0) {
3fe0bf43 691 BT_LOGW_STR("User's plugin initialization function failed.");
9724cce9 692 status = BT_PLUGIN_STATUS_ERROR;
55bb57e0
PP
693 goto end;
694 }
695 }
696
c55a9f58 697 spec->shared_lib_handle->init_called = BT_TRUE;
55bb57e0
PP
698
699 /* Add described component classes to plugin */
700 for (i = 0; i < comp_class_full_descriptors->len; i++) {
701 struct comp_class_full_descriptor *cc_full_descr =
702 &g_array_index(comp_class_full_descriptors,
703 struct comp_class_full_descriptor, i);
0d72b8c3
PP
704 struct bt_component_class *comp_class = NULL;
705 struct bt_component_class_source *src_comp_class = NULL;
706 struct bt_component_class_filter *flt_comp_class = NULL;
707 struct bt_component_class_sink *sink_comp_class = NULL;
55bb57e0 708
3fe0bf43
PP
709 BT_LOGD("Creating and setting properties of plugin's component class: "
710 "plugin-path=\"%s\", plugin-name=\"%s\", "
711 "comp-class-name=\"%s\", comp-class-type=%s",
712 spec->shared_lib_handle->path ?
713 spec->shared_lib_handle->path->str :
714 NULL,
715 descriptor->name,
716 cc_full_descr->descriptor->name,
717 bt_component_class_type_string(
718 cc_full_descr->descriptor->type));
719
55bb57e0
PP
720 switch (cc_full_descr->descriptor->type) {
721 case BT_COMPONENT_CLASS_TYPE_SOURCE:
0d72b8c3 722 src_comp_class = bt_component_class_source_create(
55bb57e0 723 cc_full_descr->descriptor->name,
d6e69534 724 cc_full_descr->descriptor->methods.source.msg_iter_next);
0d72b8c3 725 comp_class = bt_component_class_source_as_component_class(
d94d92ac 726 src_comp_class);
55bb57e0
PP
727 break;
728 case BT_COMPONENT_CLASS_TYPE_FILTER:
0d72b8c3 729 flt_comp_class = bt_component_class_filter_create(
55bb57e0 730 cc_full_descr->descriptor->name,
d6e69534 731 cc_full_descr->descriptor->methods.source.msg_iter_next);
0d72b8c3 732 comp_class = bt_component_class_filter_as_component_class(
d94d92ac 733 flt_comp_class);
55bb57e0
PP
734 break;
735 case BT_COMPONENT_CLASS_TYPE_SINK:
0d72b8c3 736 sink_comp_class = bt_component_class_sink_create(
55bb57e0
PP
737 cc_full_descr->descriptor->name,
738 cc_full_descr->descriptor->methods.sink.consume);
0d72b8c3 739 comp_class = bt_component_class_sink_as_component_class(
d94d92ac 740 sink_comp_class);
55bb57e0
PP
741 break;
742 default:
50ad9320
PP
743 /*
744 * WARN-level logging because this should not
745 * happen with the appropriate ABI version. If
746 * we're here, we know that for the reported
747 * version of the ABI, this component class type
748 * is unknown.
749 */
3fe0bf43
PP
750 BT_LOGW("Ignoring unknown component class type: "
751 "plugin-path=\"%s\", plugin-name=\"%s\", "
752 "comp-class-name=\"%s\", comp-class-type=%d",
753 spec->shared_lib_handle->path->str ?
754 spec->shared_lib_handle->path->str :
755 NULL,
756 descriptor->name,
55bb57e0 757 cc_full_descr->descriptor->name,
3fe0bf43 758 cc_full_descr->descriptor->type);
55bb57e0
PP
759 continue;
760 }
761
762 if (!comp_class) {
3fe0bf43 763 BT_LOGE_STR("Cannot create component class.");
55bb57e0
PP
764 status = BT_PLUGIN_STATUS_ERROR;
765 goto end;
766 }
767
768 if (cc_full_descr->description) {
0d72b8c3 769 ret = bt_component_class_set_description(
d94d92ac 770 comp_class, cc_full_descr->description);
55bb57e0 771 if (ret) {
3fe0bf43 772 BT_LOGE_STR("Cannot set component class's description.");
55bb57e0 773 status = BT_PLUGIN_STATUS_ERROR;
65300d60 774 BT_OBJECT_PUT_REF_AND_RESET(comp_class);
55bb57e0
PP
775 goto end;
776 }
777 }
778
279b3f15 779 if (cc_full_descr->help) {
0d72b8c3 780 ret = bt_component_class_set_help(comp_class,
279b3f15
PP
781 cc_full_descr->help);
782 if (ret) {
3fe0bf43 783 BT_LOGE_STR("Cannot set component class's help string.");
279b3f15 784 status = BT_PLUGIN_STATUS_ERROR;
65300d60 785 BT_OBJECT_PUT_REF_AND_RESET(comp_class);
279b3f15
PP
786 goto end;
787 }
788 }
789
d94d92ac
PP
790 switch (cc_full_descr->descriptor->type) {
791 case BT_COMPONENT_CLASS_TYPE_SOURCE:
792 if (cc_full_descr->methods.source.init) {
0d72b8c3 793 ret = bt_component_class_source_set_init_method(
d94d92ac
PP
794 src_comp_class,
795 cc_full_descr->methods.source.init);
796 if (ret) {
797 BT_LOGE_STR("Cannot set source component class's initialization method.");
798 status = BT_PLUGIN_STATUS_ERROR;
799 BT_OBJECT_PUT_REF_AND_RESET(src_comp_class);
800 goto end;
801 }
55bb57e0 802 }
55bb57e0 803
d94d92ac 804 if (cc_full_descr->methods.source.finalize) {
0d72b8c3 805 ret = bt_component_class_source_set_finalize_method(
d94d92ac
PP
806 src_comp_class,
807 cc_full_descr->methods.source.finalize);
808 if (ret) {
809 BT_LOGE_STR("Cannot set source component class's finalization method.");
810 status = BT_PLUGIN_STATUS_ERROR;
811 BT_OBJECT_PUT_REF_AND_RESET(src_comp_class);
812 goto end;
813 }
55bb57e0 814 }
55bb57e0 815
d94d92ac 816 if (cc_full_descr->methods.source.query) {
0d72b8c3 817 ret = bt_component_class_source_set_query_method(
d94d92ac
PP
818 src_comp_class,
819 cc_full_descr->methods.source.query);
820 if (ret) {
821 BT_LOGE_STR("Cannot set source component class's query method.");
822 status = BT_PLUGIN_STATUS_ERROR;
823 BT_OBJECT_PUT_REF_AND_RESET(src_comp_class);
824 goto end;
825 }
8463eac2 826 }
8463eac2 827
d94d92ac 828 if (cc_full_descr->methods.source.accept_output_port_connection) {
0d72b8c3 829 ret = bt_component_class_source_set_accept_output_port_connection_method(
d94d92ac
PP
830 src_comp_class,
831 cc_full_descr->methods.source.accept_output_port_connection);
832 if (ret) {
833 BT_LOGE_STR("Cannot set source component class's \"accept input output connection\" method.");
834 status = BT_PLUGIN_STATUS_ERROR;
835 BT_OBJECT_PUT_REF_AND_RESET(src_comp_class);
836 goto end;
837 }
72b913fb 838 }
72b913fb 839
d94d92ac 840 if (cc_full_descr->methods.source.output_port_connected) {
0d72b8c3 841 ret = bt_component_class_source_set_output_port_connected_method(
d94d92ac
PP
842 src_comp_class,
843 cc_full_descr->methods.source.output_port_connected);
844 if (ret) {
845 BT_LOGE_STR("Cannot set source component class's \"output port connected\" method.");
846 status = BT_PLUGIN_STATUS_ERROR;
847 BT_OBJECT_PUT_REF_AND_RESET(src_comp_class);
848 goto end;
849 }
0d8b4d8e 850 }
0d8b4d8e 851
d94d92ac 852 if (cc_full_descr->methods.source.output_port_disconnected) {
0d72b8c3 853 ret = bt_component_class_source_set_output_port_disconnected_method(
d94d92ac
PP
854 src_comp_class,
855 cc_full_descr->methods.source.output_port_disconnected);
856 if (ret) {
857 BT_LOGE_STR("Cannot set source component class's \"output port disconnected\" method.");
858 status = BT_PLUGIN_STATUS_ERROR;
859 BT_OBJECT_PUT_REF_AND_RESET(src_comp_class);
860 goto end;
861 }
2d41b99e 862 }
2d41b99e 863
d6e69534
PP
864 if (cc_full_descr->methods.source.msg_iter_init) {
865 ret = bt_component_class_source_set_message_iterator_init_method(
d94d92ac 866 src_comp_class,
d6e69534 867 cc_full_descr->methods.source.msg_iter_init);
55bb57e0 868 if (ret) {
d6e69534 869 BT_LOGE_STR("Cannot set source component class's message iterator initialization method.");
55bb57e0 870 status = BT_PLUGIN_STATUS_ERROR;
d94d92ac 871 BT_OBJECT_PUT_REF_AND_RESET(src_comp_class);
55bb57e0
PP
872 goto end;
873 }
874 }
875
d6e69534
PP
876 if (cc_full_descr->methods.source.msg_iter_finalize) {
877 ret = bt_component_class_source_set_message_iterator_finalize_method(
d94d92ac 878 src_comp_class,
d6e69534 879 cc_full_descr->methods.source.msg_iter_finalize);
55bb57e0 880 if (ret) {
d6e69534 881 BT_LOGE_STR("Cannot set source component class's message iterator finalization method.");
55bb57e0 882 status = BT_PLUGIN_STATUS_ERROR;
d94d92ac 883 BT_OBJECT_PUT_REF_AND_RESET(src_comp_class);
55bb57e0
PP
884 goto end;
885 }
886 }
d94d92ac 887
55bb57e0
PP
888 break;
889 case BT_COMPONENT_CLASS_TYPE_FILTER:
d94d92ac 890 if (cc_full_descr->methods.filter.init) {
0d72b8c3 891 ret = bt_component_class_filter_set_init_method(
d94d92ac
PP
892 flt_comp_class,
893 cc_full_descr->methods.filter.init);
894 if (ret) {
895 BT_LOGE_STR("Cannot set filter component class's initialization method.");
896 status = BT_PLUGIN_STATUS_ERROR;
897 BT_OBJECT_PUT_REF_AND_RESET(flt_comp_class);
898 goto end;
899 }
900 }
901
902 if (cc_full_descr->methods.filter.finalize) {
0d72b8c3 903 ret = bt_component_class_filter_set_finalize_method(
d94d92ac
PP
904 flt_comp_class,
905 cc_full_descr->methods.filter.finalize);
906 if (ret) {
907 BT_LOGE_STR("Cannot set filter component class's finalization method.");
908 status = BT_PLUGIN_STATUS_ERROR;
909 BT_OBJECT_PUT_REF_AND_RESET(flt_comp_class);
910 goto end;
911 }
912 }
913
914 if (cc_full_descr->methods.filter.query) {
0d72b8c3 915 ret = bt_component_class_filter_set_query_method(
d94d92ac
PP
916 flt_comp_class,
917 cc_full_descr->methods.filter.query);
918 if (ret) {
919 BT_LOGE_STR("Cannot set filter component class's query method.");
920 status = BT_PLUGIN_STATUS_ERROR;
921 BT_OBJECT_PUT_REF_AND_RESET(flt_comp_class);
922 goto end;
923 }
924 }
925
926 if (cc_full_descr->methods.filter.accept_input_port_connection) {
0d72b8c3 927 ret = bt_component_class_filter_set_accept_input_port_connection_method(
d94d92ac
PP
928 flt_comp_class,
929 cc_full_descr->methods.filter.accept_input_port_connection);
930 if (ret) {
931 BT_LOGE_STR("Cannot set filter component class's \"accept input port connection\" method.");
932 status = BT_PLUGIN_STATUS_ERROR;
933 BT_OBJECT_PUT_REF_AND_RESET(flt_comp_class);
934 goto end;
935 }
936 }
937
938 if (cc_full_descr->methods.filter.accept_output_port_connection) {
0d72b8c3 939 ret = bt_component_class_filter_set_accept_output_port_connection_method(
d94d92ac
PP
940 flt_comp_class,
941 cc_full_descr->methods.filter.accept_output_port_connection);
942 if (ret) {
943 BT_LOGE_STR("Cannot set filter component class's \"accept input output connection\" method.");
944 status = BT_PLUGIN_STATUS_ERROR;
945 BT_OBJECT_PUT_REF_AND_RESET(flt_comp_class);
946 goto end;
947 }
948 }
949
950 if (cc_full_descr->methods.filter.input_port_connected) {
0d72b8c3 951 ret = bt_component_class_filter_set_input_port_connected_method(
d94d92ac
PP
952 flt_comp_class,
953 cc_full_descr->methods.filter.input_port_connected);
954 if (ret) {
955 BT_LOGE_STR("Cannot set filter component class's \"input port connected\" method.");
956 status = BT_PLUGIN_STATUS_ERROR;
957 BT_OBJECT_PUT_REF_AND_RESET(flt_comp_class);
958 goto end;
959 }
960 }
961
962 if (cc_full_descr->methods.filter.output_port_connected) {
0d72b8c3 963 ret = bt_component_class_filter_set_output_port_connected_method(
d94d92ac
PP
964 flt_comp_class,
965 cc_full_descr->methods.filter.output_port_connected);
966 if (ret) {
967 BT_LOGE_STR("Cannot set filter component class's \"output port connected\" method.");
968 status = BT_PLUGIN_STATUS_ERROR;
969 BT_OBJECT_PUT_REF_AND_RESET(flt_comp_class);
970 goto end;
971 }
972 }
973
974 if (cc_full_descr->methods.filter.input_port_disconnected) {
0d72b8c3 975 ret = bt_component_class_filter_set_input_port_disconnected_method(
d94d92ac
PP
976 flt_comp_class,
977 cc_full_descr->methods.filter.input_port_disconnected);
978 if (ret) {
979 BT_LOGE_STR("Cannot set filter component class's \"input port disconnected\" method.");
980 status = BT_PLUGIN_STATUS_ERROR;
981 BT_OBJECT_PUT_REF_AND_RESET(flt_comp_class);
982 goto end;
983 }
984 }
985
986 if (cc_full_descr->methods.filter.output_port_disconnected) {
0d72b8c3 987 ret = bt_component_class_filter_set_output_port_disconnected_method(
d94d92ac
PP
988 flt_comp_class,
989 cc_full_descr->methods.filter.output_port_disconnected);
990 if (ret) {
991 BT_LOGE_STR("Cannot set filter component class's \"output port disconnected\" method.");
992 status = BT_PLUGIN_STATUS_ERROR;
993 BT_OBJECT_PUT_REF_AND_RESET(flt_comp_class);
994 goto end;
995 }
996 }
997
d6e69534
PP
998 if (cc_full_descr->methods.filter.msg_iter_init) {
999 ret = bt_component_class_filter_set_message_iterator_init_method(
d94d92ac 1000 flt_comp_class,
d6e69534 1001 cc_full_descr->methods.filter.msg_iter_init);
55bb57e0 1002 if (ret) {
d6e69534 1003 BT_LOGE_STR("Cannot set filter component class's message iterator initialization method.");
55bb57e0 1004 status = BT_PLUGIN_STATUS_ERROR;
d94d92ac 1005 BT_OBJECT_PUT_REF_AND_RESET(flt_comp_class);
55bb57e0
PP
1006 goto end;
1007 }
1008 }
1009
d6e69534
PP
1010 if (cc_full_descr->methods.filter.msg_iter_finalize) {
1011 ret = bt_component_class_filter_set_message_iterator_finalize_method(
d94d92ac 1012 flt_comp_class,
d6e69534 1013 cc_full_descr->methods.filter.msg_iter_finalize);
55bb57e0 1014 if (ret) {
d6e69534 1015 BT_LOGE_STR("Cannot set filter component class's message iterator finalization method.");
55bb57e0 1016 status = BT_PLUGIN_STATUS_ERROR;
d94d92ac 1017 BT_OBJECT_PUT_REF_AND_RESET(flt_comp_class);
55bb57e0
PP
1018 goto end;
1019 }
1020 }
d94d92ac 1021
55bb57e0
PP
1022 break;
1023 case BT_COMPONENT_CLASS_TYPE_SINK:
d94d92ac 1024 if (cc_full_descr->methods.sink.init) {
0d72b8c3 1025 ret = bt_component_class_sink_set_init_method(
d94d92ac
PP
1026 sink_comp_class,
1027 cc_full_descr->methods.sink.init);
1028 if (ret) {
1029 BT_LOGE_STR("Cannot set sink component class's initialization method.");
1030 status = BT_PLUGIN_STATUS_ERROR;
1031 BT_OBJECT_PUT_REF_AND_RESET(sink_comp_class);
1032 goto end;
1033 }
1034 }
1035
1036 if (cc_full_descr->methods.sink.finalize) {
0d72b8c3 1037 ret = bt_component_class_sink_set_finalize_method(
d94d92ac
PP
1038 sink_comp_class,
1039 cc_full_descr->methods.sink.finalize);
1040 if (ret) {
1041 BT_LOGE_STR("Cannot set sink component class's finalization method.");
1042 status = BT_PLUGIN_STATUS_ERROR;
1043 BT_OBJECT_PUT_REF_AND_RESET(sink_comp_class);
1044 goto end;
1045 }
1046 }
1047
1048 if (cc_full_descr->methods.sink.query) {
0d72b8c3 1049 ret = bt_component_class_sink_set_query_method(
d94d92ac
PP
1050 sink_comp_class,
1051 cc_full_descr->methods.sink.query);
1052 if (ret) {
1053 BT_LOGE_STR("Cannot set sink component class's query method.");
1054 status = BT_PLUGIN_STATUS_ERROR;
1055 BT_OBJECT_PUT_REF_AND_RESET(sink_comp_class);
1056 goto end;
1057 }
1058 }
1059
1060 if (cc_full_descr->methods.sink.accept_input_port_connection) {
0d72b8c3 1061 ret = bt_component_class_sink_set_accept_input_port_connection_method(
d94d92ac
PP
1062 sink_comp_class,
1063 cc_full_descr->methods.sink.accept_input_port_connection);
1064 if (ret) {
1065 BT_LOGE_STR("Cannot set sink component class's \"accept input port connection\" method.");
1066 status = BT_PLUGIN_STATUS_ERROR;
1067 BT_OBJECT_PUT_REF_AND_RESET(sink_comp_class);
1068 goto end;
1069 }
1070 }
1071
1072 if (cc_full_descr->methods.sink.input_port_connected) {
0d72b8c3 1073 ret = bt_component_class_sink_set_input_port_connected_method(
d94d92ac
PP
1074 sink_comp_class,
1075 cc_full_descr->methods.sink.input_port_connected);
1076 if (ret) {
1077 BT_LOGE_STR("Cannot set sink component class's \"input port connected\" method.");
1078 status = BT_PLUGIN_STATUS_ERROR;
1079 BT_OBJECT_PUT_REF_AND_RESET(sink_comp_class);
1080 goto end;
1081 }
1082 }
1083
1084 if (cc_full_descr->methods.sink.input_port_disconnected) {
0d72b8c3 1085 ret = bt_component_class_sink_set_input_port_disconnected_method(
d94d92ac
PP
1086 sink_comp_class,
1087 cc_full_descr->methods.sink.input_port_disconnected);
1088 if (ret) {
1089 BT_LOGE_STR("Cannot set sink component class's \"input port disconnected\" method.");
1090 status = BT_PLUGIN_STATUS_ERROR;
1091 BT_OBJECT_PUT_REF_AND_RESET(sink_comp_class);
1092 goto end;
1093 }
1094 }
1095
55bb57e0
PP
1096 break;
1097 default:
0fbb9a9f 1098 abort();
55bb57e0
PP
1099 }
1100
1101 /*
1102 * Add component class to the plugin object.
1103 *
1104 * This will call back
1105 * bt_plugin_so_on_add_component_class() so that we can
d94d92ac
PP
1106 * add a mapping in the component class list when we
1107 * know the component class is successfully added.
55bb57e0
PP
1108 */
1109 status = bt_plugin_add_component_class(plugin,
d94d92ac 1110 (void *) comp_class);
65300d60 1111 BT_OBJECT_PUT_REF_AND_RESET(comp_class);
55bb57e0 1112 if (status < 0) {
3fe0bf43 1113 BT_LOGE("Cannot add component class to plugin.");
55bb57e0
PP
1114 goto end;
1115 }
1116 }
1117
55bb57e0
PP
1118end:
1119 g_array_free(comp_class_full_descriptors, TRUE);
1120 return status;
1121}
1122
1123static
1124struct bt_plugin *bt_plugin_so_create_empty(
1125 struct bt_plugin_so_shared_lib_handle *shared_lib_handle)
1126{
1127 struct bt_plugin *plugin;
1128 struct bt_plugin_so_spec_data *spec;
1129
1130 plugin = bt_plugin_create_empty(BT_PLUGIN_TYPE_SO);
1131 if (!plugin) {
1132 goto error;
1133 }
1134
6fbd4105 1135 plugin->destroy_spec_data = bt_plugin_so_destroy_spec_data;
55bb57e0
PP
1136 plugin->spec_data = g_new0(struct bt_plugin_so_spec_data, 1);
1137 if (!plugin->spec_data) {
3fe0bf43 1138 BT_LOGE_STR("Failed to allocate one SO plugin specific data structure.");
55bb57e0
PP
1139 goto error;
1140 }
1141
1142 spec = plugin->spec_data;
398454ed
PP
1143 spec->shared_lib_handle = shared_lib_handle;
1144 bt_object_get_no_null_check(spec->shared_lib_handle);
55bb57e0
PP
1145 goto end;
1146
1147error:
65300d60 1148 BT_OBJECT_PUT_REF_AND_RESET(plugin);
55bb57e0
PP
1149
1150end:
1151 return plugin;
1152}
1153
52238017
MJ
1154static
1155size_t count_non_null_items_in_section(const void *begin, const void *end)
1156{
1157 size_t count = 0;
1158 const int * const *begin_int = (const int * const *) begin;
1159 const int * const *end_int = (const int * const *) end;
1160 const int * const *iter;
1161
1162 for (iter = begin_int; iter != end_int; iter++) {
1163 if (*iter) {
1164 count++;
1165 }
1166 }
1167
1168 return count;
1169}
1170
55bb57e0 1171static
a8ff38ef 1172struct bt_plugin_set *bt_plugin_so_create_all_from_sections(
55bb57e0
PP
1173 struct bt_plugin_so_shared_lib_handle *shared_lib_handle,
1174 struct __bt_plugin_descriptor const * const *descriptors_begin,
1175 struct __bt_plugin_descriptor const * const *descriptors_end,
1176 struct __bt_plugin_descriptor_attribute const * const *attrs_begin,
1177 struct __bt_plugin_descriptor_attribute const * const *attrs_end,
1178 struct __bt_plugin_component_class_descriptor const * const *cc_descriptors_begin,
1179 struct __bt_plugin_component_class_descriptor const * const *cc_descriptors_end,
1180 struct __bt_plugin_component_class_descriptor_attribute const * const *cc_descr_attrs_begin,
1181 struct __bt_plugin_component_class_descriptor_attribute const * const *cc_descr_attrs_end)
1182{
1183 size_t descriptor_count;
1184 size_t attrs_count;
1185 size_t cc_descriptors_count;
1186 size_t cc_descr_attrs_count;
1187 size_t i;
a8ff38ef 1188 struct bt_plugin_set *plugin_set = NULL;
55bb57e0 1189
52238017
MJ
1190 descriptor_count = count_non_null_items_in_section(descriptors_begin, descriptors_end);
1191 attrs_count = count_non_null_items_in_section(attrs_begin, attrs_end);
1192 cc_descriptors_count = count_non_null_items_in_section(cc_descriptors_begin, cc_descriptors_end);
1193 cc_descr_attrs_count = count_non_null_items_in_section(cc_descr_attrs_begin, cc_descr_attrs_end);
3fe0bf43
PP
1194
1195 BT_LOGD("Creating all SO plugins from sections: "
1196 "plugin-path=\"%s\", "
1197 "descr-begin-addr=%p, descr-end-addr=%p, "
1198 "attrs-begin-addr=%p, attrs-end-addr=%p, "
1199 "cc-descr-begin-addr=%p, cc-descr-end-addr=%p, "
1200 "cc-descr-attrs-begin-addr=%p, cc-descr-attrs-end-addr=%p, "
1201 "descr-count=%zu, attrs-count=%zu, "
1202 "cc-descr-count=%zu, cc-descr-attrs-count=%zu",
1203 shared_lib_handle->path ? shared_lib_handle->path->str : NULL,
1204 descriptors_begin, descriptors_end,
1205 attrs_begin, attrs_end,
1206 cc_descriptors_begin, cc_descriptors_end,
1207 cc_descr_attrs_begin, cc_descr_attrs_end,
1208 descriptor_count, attrs_count,
1209 cc_descriptors_count, cc_descr_attrs_count);
a8ff38ef
PP
1210 plugin_set = bt_plugin_set_create();
1211 if (!plugin_set) {
3fe0bf43 1212 BT_LOGE_STR("Cannot create empty plugin set.");
55bb57e0
PP
1213 goto error;
1214 }
1215
52238017 1216 for (i = 0; i < descriptors_end - descriptors_begin; i++) {
55bb57e0
PP
1217 enum bt_plugin_status status;
1218 const struct __bt_plugin_descriptor *descriptor =
1219 descriptors_begin[i];
1220 struct bt_plugin *plugin;
1221
52238017
MJ
1222 if (descriptor == NULL) {
1223 continue;
1224 }
1225
3fe0bf43
PP
1226 BT_LOGD("Creating plugin object for plugin: "
1227 "name=\"%s\", abi-major=%d, abi-minor=%d",
1228 descriptor->name, descriptor->major, descriptor->minor);
55bb57e0
PP
1229
1230 if (descriptor->major > __BT_PLUGIN_VERSION_MAJOR) {
50ad9320
PP
1231 /*
1232 * DEBUG-level logging because we're only
1233 * _trying_ to open this file as a compatible
1234 * Babeltrace plugin: if it's not, it's not an
1235 * error. And because this can be tried during
c8db3219 1236 * bt_plugin_find_all_from_dir(), it's not
50ad9320
PP
1237 * even a warning.
1238 */
1239 BT_LOGD("Unknown ABI major version: abi-major=%d",
55bb57e0
PP
1240 descriptor->major);
1241 goto error;
1242 }
1243
1244 plugin = bt_plugin_so_create_empty(shared_lib_handle);
1245 if (!plugin) {
3fe0bf43 1246 BT_LOGE_STR("Cannot create empty shared library handle.");
55bb57e0
PP
1247 goto error;
1248 }
1249
1250 if (shared_lib_handle && shared_lib_handle->path) {
1251 bt_plugin_set_path(plugin, shared_lib_handle->path->str);
1252 }
1253
1254 status = bt_plugin_so_init(plugin, descriptor, attrs_begin,
1255 attrs_end, cc_descriptors_begin, cc_descriptors_end,
1256 cc_descr_attrs_begin, cc_descr_attrs_end);
1257 if (status < 0) {
50ad9320
PP
1258 /*
1259 * DEBUG-level logging because we're only
1260 * _trying_ to open this file as a compatible
1261 * Babeltrace plugin: if it's not, it's not an
1262 * error. And because this can be tried during
c8db3219 1263 * bt_plugin_find_all_from_dir(), it's not
50ad9320
PP
1264 * even a warning.
1265 */
1266 BT_LOGD_STR("Cannot initialize SO plugin object from sections.");
65300d60 1267 BT_OBJECT_PUT_REF_AND_RESET(plugin);
55bb57e0
PP
1268 goto error;
1269 }
1270
a8ff38ef
PP
1271 /* Add to plugin set */
1272 bt_plugin_set_add_plugin(plugin_set, plugin);
65300d60 1273 bt_object_put_ref(plugin);
55bb57e0
PP
1274 }
1275
1276 goto end;
1277
1278error:
65300d60 1279 BT_OBJECT_PUT_REF_AND_RESET(plugin_set);
55bb57e0
PP
1280
1281end:
a8ff38ef 1282 return plugin_set;
55bb57e0
PP
1283}
1284
1285BT_HIDDEN
a8ff38ef 1286struct bt_plugin_set *bt_plugin_so_create_all_from_static(void)
55bb57e0 1287{
a8ff38ef 1288 struct bt_plugin_set *plugin_set = NULL;
55bb57e0
PP
1289 struct bt_plugin_so_shared_lib_handle *shared_lib_handle =
1290 bt_plugin_so_shared_lib_handle_create(NULL);
1291
1292 if (!shared_lib_handle) {
1293 goto end;
1294 }
1295
3fe0bf43 1296 BT_LOGD_STR("Creating all SO plugins from built-in plugins.");
a8ff38ef 1297 plugin_set = bt_plugin_so_create_all_from_sections(shared_lib_handle,
52238017
MJ
1298 __bt_get_begin_section_plugin_descriptors(),
1299 __bt_get_end_section_plugin_descriptors(),
1300 __bt_get_begin_section_plugin_descriptor_attributes(),
1301 __bt_get_end_section_plugin_descriptor_attributes(),
1302 __bt_get_begin_section_component_class_descriptors(),
1303 __bt_get_end_section_component_class_descriptors(),
1304 __bt_get_begin_section_component_class_descriptor_attributes(),
1305 __bt_get_end_section_component_class_descriptor_attributes());
55bb57e0
PP
1306
1307end:
65300d60 1308 BT_OBJECT_PUT_REF_AND_RESET(shared_lib_handle);
55bb57e0 1309
a8ff38ef 1310 return plugin_set;
55bb57e0
PP
1311}
1312
1313BT_HIDDEN
a8ff38ef 1314struct bt_plugin_set *bt_plugin_so_create_all_from_file(const char *path)
55bb57e0
PP
1315{
1316 size_t path_len;
a8ff38ef 1317 struct bt_plugin_set *plugin_set = NULL;
55bb57e0
PP
1318 struct __bt_plugin_descriptor const * const *descriptors_begin = NULL;
1319 struct __bt_plugin_descriptor const * const *descriptors_end = NULL;
1320 struct __bt_plugin_descriptor_attribute const * const *attrs_begin = NULL;
1321 struct __bt_plugin_descriptor_attribute const * const *attrs_end = NULL;
1322 struct __bt_plugin_component_class_descriptor const * const *cc_descriptors_begin = NULL;
1323 struct __bt_plugin_component_class_descriptor const * const *cc_descriptors_end = NULL;
1324 struct __bt_plugin_component_class_descriptor_attribute const * const *cc_descr_attrs_begin = NULL;
1325 struct __bt_plugin_component_class_descriptor_attribute const * const *cc_descr_attrs_end = NULL;
52238017
MJ
1326 struct __bt_plugin_descriptor const * const *(*get_begin_section_plugin_descriptors)(void);
1327 struct __bt_plugin_descriptor const * const *(*get_end_section_plugin_descriptors)(void);
1328 struct __bt_plugin_descriptor_attribute const * const *(*get_begin_section_plugin_descriptor_attributes)(void);
1329 struct __bt_plugin_descriptor_attribute const * const *(*get_end_section_plugin_descriptor_attributes)(void);
1330 struct __bt_plugin_component_class_descriptor const * const *(*get_begin_section_component_class_descriptors)(void);
1331 struct __bt_plugin_component_class_descriptor const * const *(*get_end_section_component_class_descriptors)(void);
1332 struct __bt_plugin_component_class_descriptor_attribute const * const *(*get_begin_section_component_class_descriptor_attributes)(void);
1333 struct __bt_plugin_component_class_descriptor_attribute const * const *(*get_end_section_component_class_descriptor_attributes)(void);
c55a9f58 1334 bt_bool is_libtool_wrapper = BT_FALSE, is_shared_object = BT_FALSE;
55bb57e0
PP
1335 struct bt_plugin_so_shared_lib_handle *shared_lib_handle = NULL;
1336
1337 if (!path) {
3fe0bf43 1338 BT_LOGW_STR("Invalid parameter: path is NULL.");
55bb57e0
PP
1339 goto end;
1340 }
1341
3fe0bf43 1342 BT_LOGD("Creating all SO plugins from file: path=\"%s\"", path);
55bb57e0
PP
1343 path_len = strlen(path);
1344 if (path_len <= PLUGIN_SUFFIX_LEN) {
3fe0bf43
PP
1345 BT_LOGW("Invalid parameter: path length is too short: "
1346 "path-length=%zu", path_len);
55bb57e0
PP
1347 goto end;
1348 }
1349
1350 path_len++;
1351 /*
1352 * Check if the file ends with a known plugin file type suffix (i.e. .so
1353 * or .la on Linux).
1354 */
1355 is_libtool_wrapper = !strncmp(LIBTOOL_PLUGIN_SUFFIX,
1356 path + path_len - LIBTOOL_PLUGIN_SUFFIX_LEN,
1357 LIBTOOL_PLUGIN_SUFFIX_LEN);
1358 is_shared_object = !strncmp(NATIVE_PLUGIN_SUFFIX,
1359 path + path_len - NATIVE_PLUGIN_SUFFIX_LEN,
1360 NATIVE_PLUGIN_SUFFIX_LEN);
1361 if (!is_shared_object && !is_libtool_wrapper) {
3fe0bf43
PP
1362 /* Name indicates this is not a plugin file; not an error */
1363 BT_LOGV("File is not a SO plugin file: path=\"%s\"", path);
55bb57e0
PP
1364 goto end;
1365 }
1366
1367 shared_lib_handle = bt_plugin_so_shared_lib_handle_create(path);
1368 if (!shared_lib_handle) {
50ad9320 1369 BT_LOGD_STR("Cannot create shared library handle.");
55bb57e0
PP
1370 goto end;
1371 }
1372
52238017
MJ
1373 if (g_module_symbol(shared_lib_handle->module, "__bt_get_begin_section_plugin_descriptors",
1374 (gpointer *) &get_begin_section_plugin_descriptors)) {
1375 descriptors_begin = get_begin_section_plugin_descriptors();
1376 } else {
3fe0bf43
PP
1377 BT_LOGD("Cannot resolve plugin symbol: path=\"%s\", "
1378 "symbol=\"%s\"", path,
52238017 1379 "__bt_get_begin_section_plugin_descriptors");
55bb57e0
PP
1380 goto end;
1381 }
1382
52238017
MJ
1383 if (g_module_symbol(shared_lib_handle->module, "__bt_get_end_section_plugin_descriptors",
1384 (gpointer *) &get_end_section_plugin_descriptors)) {
1385 descriptors_end = get_end_section_plugin_descriptors();
1386 } else {
3fe0bf43
PP
1387 BT_LOGD("Cannot resolve plugin symbol: path=\"%s\", "
1388 "symbol=\"%s\"", path,
52238017 1389 "__bt_get_end_section_plugin_descriptors");
55bb57e0
PP
1390 goto end;
1391 }
1392
52238017
MJ
1393 if (g_module_symbol(shared_lib_handle->module, "__bt_get_begin_section_plugin_descriptor_attributes",
1394 (gpointer *) &get_begin_section_plugin_descriptor_attributes)) {
1395 attrs_begin = get_begin_section_plugin_descriptor_attributes();
1396 } else {
3fe0bf43
PP
1397 BT_LOGD("Cannot resolve plugin symbol: path=\"%s\", "
1398 "symbol=\"%s\"", path,
52238017 1399 "__bt_get_begin_section_plugin_descriptor_attributes");
55bb57e0
PP
1400 }
1401
52238017
MJ
1402 if (g_module_symbol(shared_lib_handle->module, "__bt_get_end_section_plugin_descriptor_attributes",
1403 (gpointer *) &get_end_section_plugin_descriptor_attributes)) {
1404 attrs_end = get_end_section_plugin_descriptor_attributes();
1405 } else {
3fe0bf43
PP
1406 BT_LOGD("Cannot resolve plugin symbol: path=\"%s\", "
1407 "symbol=\"%s\"", path,
52238017 1408 "__bt_get_end_section_plugin_descriptor_attributes");
55bb57e0
PP
1409 }
1410
1411 if ((!!attrs_begin - !!attrs_end) != 0) {
3fe0bf43
PP
1412 BT_LOGD("Found section start or end symbol, but not both: "
1413 "path=\"%s\", symbol-start=\"%s\", "
1414 "symbol-end=\"%s\", symbol-start-addr=%p, "
1415 "symbol-end-addr=%p",
52238017
MJ
1416 path, "__bt_get_begin_section_plugin_descriptor_attributes",
1417 "__bt_get_end_section_plugin_descriptor_attributes",
3fe0bf43 1418 attrs_begin, attrs_end);
55bb57e0
PP
1419 goto end;
1420 }
1421
52238017
MJ
1422 if (g_module_symbol(shared_lib_handle->module, "__bt_get_begin_section_component_class_descriptors",
1423 (gpointer *) &get_begin_section_component_class_descriptors)) {
1424 cc_descriptors_begin = get_begin_section_component_class_descriptors();
1425 } else {
3fe0bf43
PP
1426 BT_LOGD("Cannot resolve plugin symbol: path=\"%s\", "
1427 "symbol=\"%s\"", path,
52238017 1428 "__bt_get_begin_section_component_class_descriptors");
55bb57e0
PP
1429 }
1430
52238017
MJ
1431 if (g_module_symbol(shared_lib_handle->module, "__bt_get_end_section_component_class_descriptors",
1432 (gpointer *) &get_end_section_component_class_descriptors)) {
1433 cc_descriptors_end = get_end_section_component_class_descriptors();
1434 } else {
3fe0bf43
PP
1435 BT_LOGD("Cannot resolve plugin symbol: path=\"%s\", "
1436 "symbol=\"%s\"", path,
52238017 1437 "__bt_get_end_section_component_class_descriptors");
55bb57e0
PP
1438 }
1439
1440 if ((!!cc_descriptors_begin - !!cc_descriptors_end) != 0) {
3fe0bf43
PP
1441 BT_LOGD("Found section start or end symbol, but not both: "
1442 "path=\"%s\", symbol-start=\"%s\", "
1443 "symbol-end=\"%s\", symbol-start-addr=%p, "
1444 "symbol-end-addr=%p",
52238017
MJ
1445 path, "__bt_get_begin_section_component_class_descriptors",
1446 "__bt_get_end_section_component_class_descriptors",
3fe0bf43 1447 cc_descriptors_begin, cc_descriptors_end);
55bb57e0
PP
1448 goto end;
1449 }
1450
52238017
MJ
1451 if (g_module_symbol(shared_lib_handle->module, "__bt_get_begin_section_component_class_descriptor_attributes",
1452 (gpointer *) &get_begin_section_component_class_descriptor_attributes)) {
1453 cc_descr_attrs_begin = get_begin_section_component_class_descriptor_attributes();
1454 } else {
3fe0bf43
PP
1455 BT_LOGD("Cannot resolve plugin symbol: path=\"%s\", "
1456 "symbol=\"%s\"", path,
52238017 1457 "__bt_get_begin_section_component_class_descriptor_attributes");
55bb57e0
PP
1458 }
1459
52238017
MJ
1460 if (g_module_symbol(shared_lib_handle->module, "__bt_get_end_section_component_class_descriptor_attributes",
1461 (gpointer *) &get_end_section_component_class_descriptor_attributes)) {
1462 cc_descr_attrs_end = get_end_section_component_class_descriptor_attributes();
1463 } else {
3fe0bf43
PP
1464 BT_LOGD("Cannot resolve plugin symbol: path=\"%s\", "
1465 "symbol=\"%s\"", path,
52238017 1466 "__bt_get_end_section_component_class_descriptor_attributes");
55bb57e0
PP
1467 }
1468
1469 if ((!!cc_descr_attrs_begin - !!cc_descr_attrs_end) != 0) {
3fe0bf43
PP
1470 BT_LOGD("Found section start or end symbol, but not both: "
1471 "path=\"%s\", symbol-start=\"%s\", "
1472 "symbol-end=\"%s\", symbol-start-addr=%p, "
1473 "symbol-end-addr=%p",
52238017
MJ
1474 path, "__bt_get_begin_section_component_class_descriptor_attributes",
1475 "__bt_get_end_section_component_class_descriptor_attributes",
3fe0bf43 1476 cc_descr_attrs_begin, cc_descr_attrs_end);
55bb57e0
PP
1477 goto end;
1478 }
1479
1480 /* Initialize plugin */
3fe0bf43 1481 BT_LOGD_STR("Initializing plugin object.");
a8ff38ef 1482 plugin_set = bt_plugin_so_create_all_from_sections(shared_lib_handle,
55bb57e0
PP
1483 descriptors_begin, descriptors_end, attrs_begin, attrs_end,
1484 cc_descriptors_begin, cc_descriptors_end,
1485 cc_descr_attrs_begin, cc_descr_attrs_end);
1486
1487end:
65300d60 1488 BT_OBJECT_PUT_REF_AND_RESET(shared_lib_handle);
a8ff38ef 1489 return plugin_set;
55bb57e0
PP
1490}
1491
1492static
1493void plugin_comp_class_destroy_listener(struct bt_component_class *comp_class,
1494 void *data)
1495{
bfa9a4be 1496 bt_list_del(&comp_class->node);
65300d60 1497 BT_OBJECT_PUT_REF_AND_RESET(comp_class->so_handle);
bfa9a4be 1498 BT_LOGV("Component class destroyed: removed entry from list: "
3fe0bf43 1499 "comp-cls-addr=%p", comp_class);
55bb57e0
PP
1500}
1501
1502BT_HIDDEN
3230ee6b 1503void bt_plugin_so_on_add_component_class(struct bt_plugin *plugin,
55bb57e0
PP
1504 struct bt_component_class *comp_class)
1505{
55bb57e0
PP
1506 struct bt_plugin_so_spec_data *spec = plugin->spec_data;
1507
f6ccaed9
PP
1508 BT_ASSERT(plugin->spec_data);
1509 BT_ASSERT(plugin->type == BT_PLUGIN_TYPE_SO);
55bb57e0 1510
bfa9a4be 1511 bt_list_add(&comp_class->node, &component_class_list);
398454ed
PP
1512 comp_class->so_handle = spec->shared_lib_handle;
1513 bt_object_get_no_null_check(comp_class->so_handle);
55bb57e0
PP
1514
1515 /* Add our custom destroy listener */
3230ee6b 1516 bt_component_class_add_destroy_listener(comp_class,
55bb57e0 1517 plugin_comp_class_destroy_listener, NULL);
55bb57e0 1518}
This page took 0.11104 seconds and 4 git commands to generate.