2 * SPDX-License-Identifier: MIT
4 * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
5 * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
8 #ifndef BABELTRACE_PLUGIN_PLUGIN_SO_INTERNAL_H
9 #define BABELTRACE_PLUGIN_PLUGIN_SO_INTERNAL_H
14 #include <babeltrace2/types.h>
17 struct bt_component_class
;
19 struct bt_plugin_so_shared_lib_handle
{
20 struct bt_object base
;
24 /* True if initialization function was called */
26 bt_plugin_finalize_func exit
;
29 struct bt_plugin_so_spec_data
{
30 /* Shared lib. handle: owned by this */
31 struct bt_plugin_so_shared_lib_handle
*shared_lib_handle
;
33 /* Pointers to plugin's memory: do NOT free */
34 const struct __bt_plugin_descriptor
*descriptor
;
35 bt_plugin_initialize_func init
;
36 const struct __bt_plugin_descriptor_version
*version
;
39 int bt_plugin_so_create_all_from_file(const char *path
,
40 bool fail_on_load_error
, struct bt_plugin_set
**plugin_set_out
);
42 int bt_plugin_so_create_all_from_static(bool fail_on_load_error
,
43 struct bt_plugin_set
**plugin_set_out
);
45 void bt_plugin_so_on_add_component_class(struct bt_plugin
*plugin
,
46 struct bt_component_class
*comp_class
);
48 #endif /* BABELTRACE_PLUGIN_PLUGIN_SO_INTERNAL_H */