Do not use `bool` type; use new `bt_bool` instead
[babeltrace.git] / include / babeltrace / plugin / plugin.h
1 #ifndef BABELTRACE_PLUGIN_PLUGIN_H
2 #define BABELTRACE_PLUGIN_PLUGIN_H
3
4 /*
5 * BabelTrace - Babeltrace Plug-in Interface
6 *
7 * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
8 * Copyright 2017 Philippe Proulx <pproulx@efficios.com>
9 *
10 * Author: Jérémie Galarneau <jeremie.galarneau@efficios.com>
11 *
12 * Permission is hereby granted, free of charge, to any person obtaining a copy
13 * of this software and associated documentation files (the "Software"), to deal
14 * in the Software without restriction, including without limitation the rights
15 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
16 * copies of the Software, and to permit persons to whom the Software is
17 * furnished to do so, subject to the following conditions:
18 *
19 * The above copyright notice and this permission notice shall be included in
20 * all copies or substantial portions of the Software.
21 *
22 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
27 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
28 * SOFTWARE.
29 */
30
31 #include <stdint.h>
32 #include <stddef.h>
33 #include <babeltrace/graph/component-class.h>
34 #include <babeltrace/types.h>
35
36 #ifdef __cplusplus
37 extern "C" {
38 #endif
39
40 struct bt_plugin;
41 struct bt_plugin_set;
42 struct bt_component_class;
43
44 /**
45 * Status code. Errors are always negative.
46 */
47 enum bt_plugin_status {
48 /** No error, okay. */
49 BT_PLUGIN_STATUS_OK = 0,
50 /** General error. */
51 BT_PLUGIN_STATUS_ERROR = -1,
52 /** Memory allocation failure. */
53 BT_PLUGIN_STATUS_NOMEM = -4,
54 };
55
56 extern struct bt_plugin *bt_plugin_find(const char *plugin_name);
57
58 extern struct bt_component_class *bt_plugin_find_component_class(
59 const char *plugin_name, const char *component_class_name,
60 enum bt_component_class_type component_class_type);
61
62 extern struct bt_plugin_set *bt_plugin_create_all_from_file(const char *path);
63
64 extern struct bt_plugin_set *bt_plugin_create_all_from_dir(const char *path,
65 bt_bool recurse);
66
67 extern struct bt_plugin_set *bt_plugin_create_all_from_static(void);
68
69 /**
70 * Get the name of a plug-in.
71 *
72 * @param plugin An instance of a plug-in
73 * @returns Plug-in name or NULL on error
74 */
75 extern const char *bt_plugin_get_name(struct bt_plugin *plugin);
76
77 /**
78 * Get the name of a plug-in's author.
79 *
80 * @param plugin An instance of a plug-in
81 * @returns Plug-in author or NULL on error
82 */
83 extern const char *bt_plugin_get_author(struct bt_plugin *plugin);
84
85 /**
86 * Get the license of a plug-in.
87 *
88 * @param plugin An instance of a plug-in
89 * @returns Plug-in license or NULL on error
90 */
91 extern const char *bt_plugin_get_license(struct bt_plugin *plugin);
92
93 /**
94 * Get the decription of a plug-in.
95 *
96 * @param plugin An instance of a plug-in
97 * @returns Plug-in description or NULL if none is available
98 */
99 extern const char *bt_plugin_get_description(struct bt_plugin *plugin);
100
101 /**
102 * Get the path of a plug-in.
103 *
104 * @param plugin An instance of a plug-in
105 * @returns Plug-in path or NULL on error
106 */
107 extern const char *bt_plugin_get_path(struct bt_plugin *plugin);
108
109 extern enum bt_plugin_status bt_plugin_get_version(struct bt_plugin *plugin,
110 unsigned int *major, unsigned int *minor, unsigned int *patch,
111 const char **extra);
112
113 extern int64_t bt_plugin_get_component_class_count(struct bt_plugin *plugin);
114
115 extern struct bt_component_class *bt_plugin_get_component_class_by_index(
116 struct bt_plugin *plugin, uint64_t index);
117
118 extern
119 struct bt_component_class *bt_plugin_get_component_class_by_name_and_type(
120 struct bt_plugin *plugin, const char *name,
121 enum bt_component_class_type type);
122
123 extern
124 int64_t bt_plugin_set_get_plugin_count(struct bt_plugin_set *plugin_set);
125
126 extern
127 struct bt_plugin *bt_plugin_set_get_plugin(struct bt_plugin_set *plugin_set,
128 uint64_t index);
129
130 #ifdef __cplusplus
131 }
132 #endif
133
134 #endif /* BABELTRACE_PLUGIN_PLUGIN_H */
This page took 0.035319 seconds and 4 git commands to generate.