cli: return if bt_plugin_find_all_from_dir fails in load_dynamic_plugins
[babeltrace.git] / src / cli / babeltrace2-plugins.c
1 /*
2 * Babeltrace trace converter - CLI tool's configuration
3 *
4 * Copyright 2016-2019 EfficiOS Inc.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
24
25 #define BT_LOG_TAG "CLI/PLUGINS"
26 #include "logging.h"
27
28 #include "babeltrace2-plugins.h"
29
30 #include <babeltrace2/babeltrace.h>
31
32 /* Array of bt_plugin * */
33 static GPtrArray *loaded_plugins;
34
35 void init_loaded_plugins(void)
36 {
37 loaded_plugins = g_ptr_array_new_with_free_func(
38 (GDestroyNotify) bt_plugin_put_ref);
39 }
40
41 void fini_loaded_plugins(void)
42 {
43 g_ptr_array_free(loaded_plugins, TRUE);
44 }
45
46 const bt_plugin *find_loaded_plugin(const char *name)
47 {
48 int i;
49 const bt_plugin *plugin = NULL;
50
51 BT_ASSERT(name);
52 BT_LOGI("Finding plugin: name=\"%s\"", name);
53
54 for (i = 0; i < loaded_plugins->len; i++) {
55 plugin = g_ptr_array_index(loaded_plugins, i);
56
57 if (strcmp(name, bt_plugin_get_name(plugin)) == 0) {
58 break;
59 }
60
61 plugin = NULL;
62 }
63
64 if (plugin) {
65 BT_LOGI("Found plugin: name=\"%s\", plugin-addr=%p",
66 name, plugin);
67 } else {
68 BT_LOGI("Cannot find plugin: name=\"%s\"", name);
69 }
70
71 bt_plugin_get_ref(plugin);
72 return plugin;
73 }
74
75 size_t get_loaded_plugins_count(void)
76 {
77 return loaded_plugins->len;
78 }
79
80 const bt_plugin **borrow_loaded_plugins(void)
81 {
82 return (const bt_plugin **) loaded_plugins->pdata;
83 }
84
85 const bt_plugin *borrow_loaded_plugin(size_t index)
86 {
87 BT_ASSERT(index < loaded_plugins->len);
88 return g_ptr_array_index(loaded_plugins, index);
89 }
90
91 static
92 void add_to_loaded_plugins(const bt_plugin_set *plugin_set)
93 {
94 int64_t i;
95 int64_t count;
96
97 count = bt_plugin_set_get_plugin_count(plugin_set);
98 BT_ASSERT(count >= 0);
99
100 for (i = 0; i < count; i++) {
101 const bt_plugin *plugin =
102 bt_plugin_set_borrow_plugin_by_index_const(plugin_set, i);
103 const bt_plugin *loaded_plugin =
104 find_loaded_plugin(bt_plugin_get_name(plugin));
105
106 BT_ASSERT(plugin);
107
108 if (loaded_plugin) {
109 BT_LOGI("Not using plugin: another one already exists with the same name: "
110 "plugin-name=\"%s\", plugin-path=\"%s\", "
111 "existing-plugin-path=\"%s\"",
112 bt_plugin_get_name(plugin),
113 bt_plugin_get_path(plugin),
114 bt_plugin_get_path(loaded_plugin));
115 bt_plugin_put_ref(loaded_plugin);
116 } else {
117 /* Add to global array. */
118 BT_LOGD("Adding plugin to loaded plugins: plugin-path=\"%s\"",
119 bt_plugin_get_name(plugin));
120 bt_plugin_get_ref(plugin);
121 g_ptr_array_add(loaded_plugins, (void *) plugin);
122 }
123 }
124 }
125
126 static
127 int load_dynamic_plugins(const bt_value *plugin_paths)
128 {
129 int nr_paths, i, ret = 0;
130
131 nr_paths = bt_value_array_get_length(plugin_paths);
132 if (nr_paths < 0) {
133 BT_CLI_LOGE_APPEND_CAUSE(
134 "Cannot load dynamic plugins: no plugin path.");
135 ret = -1;
136 goto end;
137 }
138
139 BT_LOGI_STR("Loading dynamic plugins.");
140
141 for (i = 0; i < nr_paths; i++) {
142 const bt_value *plugin_path_value = NULL;
143 const char *plugin_path;
144 const bt_plugin_set *plugin_set = NULL;
145 bt_plugin_find_all_from_dir_status status;
146
147 plugin_path_value =
148 bt_value_array_borrow_element_by_index_const(
149 plugin_paths, i);
150 plugin_path = bt_value_string_get(plugin_path_value);
151
152 /*
153 * Skip this if the directory does not exist because
154 * bt_plugin_find_all_from_dir() expects an existing
155 * directory.
156 */
157 if (!g_file_test(plugin_path, G_FILE_TEST_IS_DIR)) {
158 BT_LOGI("Skipping nonexistent directory path: "
159 "path=\"%s\"", plugin_path);
160 continue;
161 }
162
163 status = bt_plugin_find_all_from_dir(plugin_path, BT_FALSE,
164 BT_FALSE, &plugin_set);
165 if (status < 0) {
166 BT_CLI_LOGE_APPEND_CAUSE(
167 "Unable to load dynamic plugins from directory: "
168 "path=\"%s\"", plugin_path);
169 ret = status;
170 goto end;
171 } else if (status ==
172 BT_PLUGIN_FIND_ALL_FROM_DIR_STATUS_NOT_FOUND) {
173 BT_LOGI("No plugins found in directory: path=\"%s\"",
174 plugin_path);
175 continue;
176 }
177
178 BT_ASSERT(status == BT_PLUGIN_FIND_ALL_FROM_DIR_STATUS_OK);
179 BT_ASSERT(plugin_set);
180 add_to_loaded_plugins(plugin_set);
181 bt_plugin_set_put_ref(plugin_set);
182 }
183 end:
184 return ret;
185 }
186
187 static
188 int load_static_plugins(void)
189 {
190 int ret = 0;
191 const bt_plugin_set *plugin_set;
192 bt_plugin_find_all_from_static_status status;
193
194 BT_LOGI("Loading static plugins.");
195 status = bt_plugin_find_all_from_static(BT_FALSE, &plugin_set);
196 if (status < 0) {
197 BT_LOGE("Unable to load static plugins.");
198 ret = -1;
199 goto end;
200 } else if (status ==
201 BT_PLUGIN_FIND_ALL_FROM_STATIC_STATUS_NOT_FOUND) {
202 BT_LOGI("No static plugins found.");
203 goto end;
204 }
205
206 BT_ASSERT(status == BT_PLUGIN_FIND_ALL_FROM_STATIC_STATUS_OK);
207 BT_ASSERT(plugin_set);
208 add_to_loaded_plugins(plugin_set);
209 bt_plugin_set_put_ref(plugin_set);
210
211 end:
212 return ret;
213 }
214
215 int require_loaded_plugins(const bt_value *plugin_paths)
216 {
217 static bool loaded = false;
218 static int ret = 0;
219
220 if (loaded) {
221 goto end;
222 }
223
224 loaded = true;
225
226 if (load_dynamic_plugins(plugin_paths)) {
227 ret = -1;
228 goto end;
229 }
230
231 if (load_static_plugins()) {
232 ret = -1;
233 goto end;
234 }
235
236 BT_LOGI("Loaded all plugins: count=%u", loaded_plugins->len);
237
238 end:
239 return ret;
240 }
This page took 0.034444 seconds and 5 git commands to generate.