1 #ifndef BABELTRACE_PLUGIN_PLUGIN_INTERNAL_H
2 #define BABELTRACE_PLUGIN_PLUGIN_INTERNAL_H
5 * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
6 * Copyright 2015 Jérémie Galarneau <jeremie.galarneau@efficios.com>
8 * Permission is hereby granted, free of charge, to any person obtaining a copy
9 * of this software and associated documentation files (the "Software"), to deal
10 * in the Software without restriction, including without limitation the rights
11 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 * copies of the Software, and to permit persons to whom the Software is
13 * furnished to do so, subject to the following conditions:
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27 #include "common/macros.h"
28 #include "lib/graph/component-class.h"
29 #include <babeltrace2/plugin/plugin-const.h>
30 #include <babeltrace2/plugin/plugin-dev.h>
31 #include "lib/object.h"
32 #include <babeltrace2/types.h>
33 #include "common/assert.h"
36 #include "plugin-so.h"
38 /* Protection: this file uses BT_LIB_LOG*() macros directly */
39 #ifndef BT_LIB_LOG_SUPPORTED
40 # error Please include "lib/lib-logging.h" before including this file.
44 BT_PLUGIN_TYPE_SO
= 0,
45 BT_PLUGIN_TYPE_PYTHON
= 1,
48 enum bt_plugin_status
{
49 BT_PLUGIN_STATUS_OK
= 0,
50 BT_PLUGIN_STATUS_ERROR
= -1,
51 BT_PLUGIN_STATUS_NOMEM
= -12,
55 struct bt_object base
;
56 enum bt_plugin_type type
;
58 /* Arrays of `struct bt_component_class *` (owned by this) */
59 GPtrArray
*src_comp_classes
;
60 GPtrArray
*flt_comp_classes
;
61 GPtrArray
*sink_comp_classes
;
63 /* Info (owned by this) */
84 /* Value depends on the specific plugin type */
86 void (*destroy_spec_data
)(struct bt_plugin
*);
89 struct bt_plugin_set
{
90 struct bt_object base
;
92 /* Array of struct bt_plugin * */
97 const char *bt_plugin_status_string(enum bt_plugin_status status
)
100 case BT_PLUGIN_STATUS_OK
:
101 return "BT_PLUGIN_STATUS_OK";
102 case BT_PLUGIN_STATUS_ERROR
:
103 return "BT_PLUGIN_STATUS_ERROR";
104 case BT_PLUGIN_STATUS_NOMEM
:
105 return "BT_PLUGIN_STATUS_NOMEM";
112 const char *bt_plugin_type_string(enum bt_plugin_type type
)
115 case BT_PLUGIN_TYPE_SO
:
116 return "BT_PLUGIN_TYPE_SO";
117 case BT_PLUGIN_TYPE_PYTHON
:
118 return "BT_PLUGIN_TYPE_PYTHON";
125 void bt_plugin_destroy(struct bt_object
*obj
)
127 struct bt_plugin
*plugin
;
130 plugin
= container_of(obj
, struct bt_plugin
, base
);
131 BT_LIB_LOGI("Destroying plugin object: %!+l", plugin
);
133 if (plugin
->destroy_spec_data
) {
134 plugin
->destroy_spec_data(plugin
);
137 if (plugin
->src_comp_classes
) {
138 BT_LOGD_STR("Putting source component classes.");
139 g_ptr_array_free(plugin
->src_comp_classes
, TRUE
);
140 plugin
->src_comp_classes
= NULL
;
143 if (plugin
->flt_comp_classes
) {
144 BT_LOGD_STR("Putting filter component classes.");
145 g_ptr_array_free(plugin
->flt_comp_classes
, TRUE
);
146 plugin
->flt_comp_classes
= NULL
;
149 if (plugin
->sink_comp_classes
) {
150 BT_LOGD_STR("Putting sink component classes.");
151 g_ptr_array_free(plugin
->sink_comp_classes
, TRUE
);
152 plugin
->sink_comp_classes
= NULL
;
155 if (plugin
->info
.name
) {
156 g_string_free(plugin
->info
.name
, TRUE
);
157 plugin
->info
.name
= NULL
;
160 if (plugin
->info
.path
) {
161 g_string_free(plugin
->info
.path
, TRUE
);
162 plugin
->info
.path
= NULL
;
165 if (plugin
->info
.description
) {
166 g_string_free(plugin
->info
.description
, TRUE
);
167 plugin
->info
.description
= NULL
;
170 if (plugin
->info
.author
) {
171 g_string_free(plugin
->info
.author
, TRUE
);
172 plugin
->info
.author
= NULL
;
175 if (plugin
->info
.license
) {
176 g_string_free(plugin
->info
.license
, TRUE
);
177 plugin
->info
.license
= NULL
;
180 if (plugin
->info
.version
.extra
) {
181 g_string_free(plugin
->info
.version
.extra
, TRUE
);
182 plugin
->info
.version
.extra
= NULL
;
189 struct bt_plugin
*bt_plugin_create_empty(enum bt_plugin_type type
)
191 struct bt_plugin
*plugin
= NULL
;
193 BT_LOGD("Creating empty plugin object: type=%s",
194 bt_plugin_type_string(type
));
196 plugin
= g_new0(struct bt_plugin
, 1);
198 BT_LOGE_STR("Failed to allocate one plugin.");
202 bt_object_init_shared(&plugin
->base
, bt_plugin_destroy
);
205 /* Create empty arrays of component classes */
206 plugin
->src_comp_classes
=
207 g_ptr_array_new_with_free_func(
208 (GDestroyNotify
) bt_object_put_ref
);
209 if (!plugin
->src_comp_classes
) {
210 BT_LOGE_STR("Failed to allocate a GPtrArray.");
214 plugin
->flt_comp_classes
=
215 g_ptr_array_new_with_free_func(
216 (GDestroyNotify
) bt_object_put_ref
);
217 if (!plugin
->flt_comp_classes
) {
218 BT_LOGE_STR("Failed to allocate a GPtrArray.");
222 plugin
->sink_comp_classes
=
223 g_ptr_array_new_with_free_func(
224 (GDestroyNotify
) bt_object_put_ref
);
225 if (!plugin
->sink_comp_classes
) {
226 BT_LOGE_STR("Failed to allocate a GPtrArray.");
230 /* Create empty info */
231 plugin
->info
.name
= g_string_new(NULL
);
232 if (!plugin
->info
.name
) {
233 BT_LOGE_STR("Failed to allocate a GString.");
237 plugin
->info
.path
= g_string_new(NULL
);
238 if (!plugin
->info
.path
) {
239 BT_LOGE_STR("Failed to allocate a GString.");
243 plugin
->info
.description
= g_string_new(NULL
);
244 if (!plugin
->info
.description
) {
245 BT_LOGE_STR("Failed to allocate a GString.");
249 plugin
->info
.author
= g_string_new(NULL
);
250 if (!plugin
->info
.author
) {
251 BT_LOGE_STR("Failed to allocate a GString.");
255 plugin
->info
.license
= g_string_new(NULL
);
256 if (!plugin
->info
.license
) {
257 BT_LOGE_STR("Failed to allocate a GString.");
261 plugin
->info
.version
.extra
= g_string_new(NULL
);
262 if (!plugin
->info
.version
.extra
) {
263 BT_LOGE_STR("Failed to allocate a GString.");
267 BT_LIB_LOGD("Created empty plugin object: %!+l", plugin
);
271 BT_OBJECT_PUT_REF_AND_RESET(plugin
);
278 void bt_plugin_set_path(struct bt_plugin
*plugin
, const char *path
)
282 g_string_assign(plugin
->info
.path
, path
);
283 plugin
->info
.path_set
= BT_TRUE
;
284 BT_LIB_LOGD("Set plugin's path: %![plugin-]+l, path=\"%s\"",
289 void bt_plugin_set_name(struct bt_plugin
*plugin
, const char *name
)
293 g_string_assign(plugin
->info
.name
, name
);
294 plugin
->info
.name_set
= BT_TRUE
;
295 BT_LIB_LOGD("Set plugin's name: %![plugin-]+l, name=\"%s\"",
300 void bt_plugin_set_description(struct bt_plugin
*plugin
,
301 const char *description
)
304 BT_ASSERT(description
);
305 g_string_assign(plugin
->info
.description
, description
);
306 plugin
->info
.description_set
= BT_TRUE
;
307 BT_LIB_LOGD("Set plugin's description: %![plugin-]+l", plugin
);
311 void bt_plugin_set_author(struct bt_plugin
*plugin
, const char *author
)
315 g_string_assign(plugin
->info
.author
, author
);
316 plugin
->info
.author_set
= BT_TRUE
;
317 BT_LIB_LOGD("Set plugin's author: %![plugin-]+l, author=\"%s\"",
322 void bt_plugin_set_license(struct bt_plugin
*plugin
, const char *license
)
326 g_string_assign(plugin
->info
.license
, license
);
327 plugin
->info
.license_set
= BT_TRUE
;
328 BT_LIB_LOGD("Set plugin's path: %![plugin-]+l, license=\"%s\"",
333 void bt_plugin_set_version(struct bt_plugin
*plugin
, unsigned int major
,
334 unsigned int minor
, unsigned int patch
, const char *extra
)
337 plugin
->info
.version
.major
= major
;
338 plugin
->info
.version
.minor
= minor
;
339 plugin
->info
.version
.patch
= patch
;
342 g_string_assign(plugin
->info
.version
.extra
, extra
);
345 plugin
->info
.version_set
= BT_TRUE
;
346 BT_LIB_LOGD("Set plugin's version: %![plugin-]+l, "
347 "major=%u, minor=%u, patch=%u, extra=\"%s\"",
348 plugin
, major
, minor
, patch
, extra
);
352 enum bt_plugin_status
bt_plugin_add_component_class(
353 struct bt_plugin
*plugin
, struct bt_component_class
*comp_class
)
355 GPtrArray
*comp_classes
;
358 BT_ASSERT(comp_class
);
360 switch (comp_class
->type
) {
361 case BT_COMPONENT_CLASS_TYPE_SOURCE
:
362 comp_classes
= plugin
->src_comp_classes
;
364 case BT_COMPONENT_CLASS_TYPE_FILTER
:
365 comp_classes
= plugin
->flt_comp_classes
;
367 case BT_COMPONENT_CLASS_TYPE_SINK
:
368 comp_classes
= plugin
->sink_comp_classes
;
374 /* Add new component class */
375 bt_object_get_ref(comp_class
);
376 g_ptr_array_add(comp_classes
, comp_class
);
378 /* Special case for a shared object plugin */
379 if (plugin
->type
== BT_PLUGIN_TYPE_SO
) {
380 bt_plugin_so_on_add_component_class(plugin
, comp_class
);
383 BT_LIB_LOGD("Added component class to plugin: "
384 "%![plugin-]+l, %![cc-]+C", plugin
, comp_class
);
385 return BT_PLUGIN_STATUS_OK
;
389 void bt_plugin_set_destroy(struct bt_object
*obj
)
391 struct bt_plugin_set
*plugin_set
=
392 container_of(obj
, struct bt_plugin_set
, base
);
398 BT_LOGD("Destroying plugin set: addr=%p", plugin_set
);
400 if (plugin_set
->plugins
) {
401 BT_LOGD_STR("Putting plugins.");
402 g_ptr_array_free(plugin_set
->plugins
, TRUE
);
409 struct bt_plugin_set
*bt_plugin_set_create(void)
411 struct bt_plugin_set
*plugin_set
= g_new0(struct bt_plugin_set
, 1);
417 BT_LOGD_STR("Creating empty plugin set.");
418 bt_object_init_shared(&plugin_set
->base
, bt_plugin_set_destroy
);
420 plugin_set
->plugins
= g_ptr_array_new_with_free_func(
421 (GDestroyNotify
) bt_object_put_ref
);
422 if (!plugin_set
->plugins
) {
423 BT_LOGE_STR("Failed to allocate a GPtrArray.");
424 BT_OBJECT_PUT_REF_AND_RESET(plugin_set
);
428 BT_LOGD("Created empty plugin set: addr=%p", plugin_set
);
435 void bt_plugin_set_add_plugin(struct bt_plugin_set
*plugin_set
,
436 struct bt_plugin
*plugin
)
438 BT_ASSERT(plugin_set
);
440 bt_object_get_ref(plugin
);
441 g_ptr_array_add(plugin_set
->plugins
, plugin
);
442 BT_LIB_LOGD("Added plugin to plugin set: "
443 "plugin-set-addr=%p, %![plugin-]+l",
447 #endif /* BABELTRACE_PLUGIN_PLUGIN_INTERNAL_H */