2 * The MIT License (MIT)
4 * Copyright (c) 2017 Philippe Proulx <pproulx@efficios.com>
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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
26 * Those bt_bt2_*() functions below ensure that when the API function
27 * fails, the output parameter is set to `NULL`. This is necessary
28 * because the epilogue of the `something **OUT` typemap will use that
29 * value to make a Python object. We can't rely on the initial value of
30 * `*OUT`; it could point to unreadable memory.
33 bt_property_availability
bt_bt2_plugin_get_version(
34 const bt_plugin
*plugin
, unsigned int *major
,
35 unsigned int *minor
, unsigned int *patch
, const char **extra
)
37 bt_property_availability ret
;
39 ret
= bt_plugin_get_version(plugin
, major
, minor
, patch
, extra
);
41 if (ret
== BT_PROPERTY_AVAILABILITY_NOT_AVAILABLE
) {
48 bt_plugin_find_status
bt_bt2_plugin_find(const char *plugin_name
,
49 bt_bool find_in_std_env_var
, bt_bool find_in_user_dir
,
50 bt_bool find_in_sys_dir
, bt_bool find_in_static
,
51 bt_bool fail_on_load_error
, const bt_plugin
**plugin
)
53 bt_plugin_find_status status
;
55 status
= bt_plugin_find(plugin_name
, find_in_std_env_var
,
56 find_in_user_dir
, find_in_sys_dir
, find_in_static
,
57 fail_on_load_error
, plugin
);
58 if (status
!= __BT_FUNC_STATUS_OK
) {
65 bt_plugin_find_all_status
bt_bt2_plugin_find_all(bt_bool find_in_std_env_var
,
66 bt_bool find_in_user_dir
, bt_bool find_in_sys_dir
,
67 bt_bool find_in_static
, bt_bool fail_on_load_error
,
68 const bt_plugin_set
**plugin_set
)
70 bt_plugin_find_all_status status
;
72 status
= bt_plugin_find_all(find_in_std_env_var
,
73 find_in_user_dir
, find_in_sys_dir
, find_in_static
,
74 fail_on_load_error
, plugin_set
);
75 if (status
!= __BT_FUNC_STATUS_OK
) {
82 bt_plugin_find_all_from_file_status
bt_bt2_plugin_find_all_from_file(
83 const char *path
, bt_bool fail_on_load_error
,
84 const bt_plugin_set
**plugin_set
)
86 bt_plugin_find_all_from_file_status status
;
88 status
= bt_plugin_find_all_from_file(path
, fail_on_load_error
,
90 if (status
!= __BT_FUNC_STATUS_OK
) {
97 bt_plugin_find_all_from_dir_status
bt_bt2_plugin_find_all_from_dir(
98 const char *path
, bt_bool recurse
, bt_bool fail_on_load_error
,
99 const bt_plugin_set
**plugin_set
)
101 bt_plugin_find_all_from_dir_status status
;
103 status
= bt_plugin_find_all_from_dir(path
, recurse
, fail_on_load_error
,
105 if (status
!= __BT_FUNC_STATUS_OK
) {