List detected component classes
[babeltrace.git] / plugins / plugin.c
CommitLineData
fb2dcc52
JG
1/*
2 * plugin.c
3 *
4 * Babeltrace Plugin
5 *
6 * Copyright 2015 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
29#include <babeltrace/compiler.h>
b8a06801 30#include <babeltrace/ref.h>
fb2dcc52
JG
31#include <babeltrace/plugin/plugin-internal.h>
32#include <glib.h>
33
7c7c0433
JG
34#define PLUGIN_SYMBOL_NAME "__bt_plugin_name"
35#define PLUGIN_SYMBOL_AUTHOR "__bt_plugin_author"
36#define PLUGIN_SYMBOL_LICENSE "__bt_plugin_license"
37#define PLUGIN_SYMBOL_INIT "__bt_plugin_init"
38#define PLUGIN_SYMBOL_EXIT "__bt_plugin_exit"
39#define PLUGIN_SYMBOL_DESCRIPTION "__bt_plugin_description"
50335272 40
fb2dcc52 41static
b8a06801 42void bt_plugin_destroy(struct bt_object *obj)
fb2dcc52
JG
43{
44 struct bt_plugin *plugin;
45
b8a06801
JG
46 assert(obj);
47 plugin = container_of(obj, struct bt_plugin, base);
48
fb2dcc52
JG
49 if (plugin->module) {
50 if (!g_module_close(plugin->module)) {
2e339de1
JG
51 printf_error("Module close error: %s",
52 g_module_error());
fb2dcc52
JG
53 }
54 }
7c7c0433
JG
55
56 if (plugin->exit) {
57 plugin->exit();
58 }
59 g_string_free(plugin->path, TRUE);
fb2dcc52
JG
60 g_free(plugin);
61}
62
63BT_HIDDEN
7c7c0433 64struct bt_plugin *bt_plugin_create(GModule *module, const char *path)
fb2dcc52 65{
50335272 66 struct bt_plugin *plugin = NULL;
2e339de1 67 gpointer symbol = NULL;
50335272 68
7c7c0433 69 if (!module || !path) {
50335272
JG
70 goto error;
71 }
fb2dcc52
JG
72
73 plugin = g_new0(struct bt_plugin, 1);
74 if (!plugin) {
50335272 75 goto error;
fb2dcc52
JG
76 }
77
b8a06801 78 bt_object_init(plugin, bt_plugin_destroy);
7c7c0433
JG
79 plugin->path = g_string_new(path);
80 if (!plugin->path) {
81 goto error;
82 }
83
50335272 84 if (!g_module_symbol(module, PLUGIN_SYMBOL_NAME,
2e339de1 85 (gpointer *) &plugin->name)) {
50335272 86 printf_error("Unable to resolve plugin symbol %s from %s",
2e339de1 87 PLUGIN_SYMBOL_NAME, g_module_name(module));
50335272
JG
88 goto error;
89 }
4647b93a 90
50335272 91 if (!g_module_symbol(module, PLUGIN_SYMBOL_LICENSE,
2e339de1 92 (gpointer *) &plugin->license)) {
50335272 93 printf_error("Unable to resolve plugin symbol %s from %s",
2e339de1 94 PLUGIN_SYMBOL_LICENSE, g_module_name(module));
50335272
JG
95 goto error;
96 }
2e339de1 97 if (!g_module_symbol(module, PLUGIN_SYMBOL_INIT, &symbol)) {
50335272 98 printf_error("Unable to resolve plugin symbol %s from %s",
2e339de1 99 PLUGIN_SYMBOL_INIT, g_module_name(module));
50335272 100 goto error;
2e339de1
JG
101 } else {
102 plugin->init = *((bt_plugin_init_func *) symbol);
103 if (!plugin->init) {
104 printf_error("NULL %s symbol target",
105 PLUGIN_SYMBOL_INIT);
106 goto error;
107 }
50335272
JG
108 }
109
2e339de1
JG
110 /* Optional */
111 if (g_module_symbol(module, PLUGIN_SYMBOL_EXIT,
112 (gpointer *) &symbol)) {
113 plugin->exit = *((bt_plugin_exit_func *) symbol);
114 }
50335272 115 g_module_symbol(module, PLUGIN_SYMBOL_AUTHOR,
2e339de1 116 (gpointer *) &plugin->author);
7c7c0433
JG
117 g_module_symbol(module, PLUGIN_SYMBOL_DESCRIPTION,
118 (gpointer *) &plugin->description);
50335272 119
fb2dcc52 120 return plugin;
50335272 121error:
b8a06801
JG
122 BT_PUT(plugin);
123 return plugin;
fb2dcc52
JG
124}
125
126BT_HIDDEN
127enum bt_component_status bt_plugin_register_component_classes(
128 struct bt_plugin *plugin, struct bt_component_factory *factory)
129{
130 assert(plugin && factory);
131 return plugin->init(factory);
132}
38b48196
JG
133
134const char *bt_plugin_get_name(struct bt_plugin *plugin)
135{
136 return plugin ? plugin->name : NULL;
137}
138
139const char *bt_plugin_get_author(struct bt_plugin *plugin)
140{
141 return plugin ? plugin->author : NULL;
142}
143
144const char *bt_plugin_get_license(struct bt_plugin *plugin)
145{
146 return plugin ? plugin->license : NULL;
147}
7c7c0433
JG
148
149const char *bt_plugin_get_path(struct bt_plugin *plugin)
150{
151 return plugin ? plugin->path->str : NULL;
152}
153
154const char *bt_plugin_get_description(struct bt_plugin *plugin)
155{
156 return plugin ? plugin->description : NULL;
157}
This page took 0.031235 seconds and 4 git commands to generate.