lib: rename bt_plugin_create_all_*() -> bt_plugin_find_all_*()
[babeltrace.git] / include / babeltrace / plugin / plugin-const.h
CommitLineData
3a2cb327
PP
1#ifndef BABELTRACE_PLUGIN_PLUGIN_CONST_H
2#define BABELTRACE_PLUGIN_PLUGIN_CONST_H
90354d3a
JG
3
4/*
f2b0325d 5 * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
38b48196 6 * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
90354d3a
JG
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
544d0515 29#include <stdint.h>
33b34c43 30#include <stddef.h>
e0831b38 31
8eee8ea2
PP
32/*
33 * For bt_bool, bt_plugin, bt_plugin_set, bt_component_class,
34 * bt_component_class_source, bt_component_class_filter,
35 * bt_component_class_sink
36 */
c55a9f58 37#include <babeltrace/types.h>
33b34c43 38
e0831b38
PP
39/* For enum bt_component_class_type */
40#include <babeltrace/graph/component-class.h>
41
834e9996
PP
42/* For enum bt_component_class_source */
43#include <babeltrace/graph/component-class-source.h>
44
45/* For enum bt_component_class_filter */
46#include <babeltrace/graph/component-class-filter.h>
47
48/* For enum bt_component_class_sink */
49#include <babeltrace/graph/component-class-sink.h>
50
51/* For enum bt_property_availability */
52#include <babeltrace/property.h>
53
38b48196
JG
54#ifdef __cplusplus
55extern "C" {
56#endif
633edee0 57
33b34c43 58enum bt_plugin_status {
33b34c43 59 BT_PLUGIN_STATUS_OK = 0,
33b34c43 60 BT_PLUGIN_STATUS_ERROR = -1,
834e9996 61 BT_PLUGIN_STATUS_NOMEM = -12,
33b34c43
PP
62};
63
8eee8ea2 64extern const bt_plugin *bt_plugin_find(const char *plugin_name);
2b43acf9 65
781ae911 66extern const bt_plugin_set *bt_plugin_find_all_from_file(
3a2cb327 67 const char *path);
33b34c43 68
781ae911 69extern const bt_plugin_set *bt_plugin_find_all_from_dir(
3a2cb327 70 const char *path, bt_bool recurse);
33b34c43 71
781ae911 72extern const bt_plugin_set *bt_plugin_find_all_from_static(void);
73299554 73
8eee8ea2 74extern const char *bt_plugin_get_name(const bt_plugin *plugin);
633edee0 75
8eee8ea2 76extern const char *bt_plugin_get_author(const bt_plugin *plugin);
633edee0 77
8eee8ea2 78extern const char *bt_plugin_get_license(const bt_plugin *plugin);
633edee0 79
8eee8ea2 80extern const char *bt_plugin_get_description(const bt_plugin *plugin);
f3bc2010 81
8eee8ea2 82extern const char *bt_plugin_get_path(const bt_plugin *plugin);
7c7c0433 83
834e9996 84extern enum bt_property_availability bt_plugin_get_version(
8eee8ea2 85 const bt_plugin *plugin, unsigned int *major,
834e9996
PP
86 unsigned int *minor, unsigned int *patch, const char **extra);
87
88extern uint64_t bt_plugin_get_source_component_class_count(
8eee8ea2 89 const bt_plugin *plugin);
834e9996
PP
90
91extern uint64_t bt_plugin_get_filter_component_class_count(
8eee8ea2 92 const bt_plugin *plugin);
b6de043b 93
834e9996 94extern uint64_t bt_plugin_get_sink_component_class_count(
8eee8ea2 95 const bt_plugin *plugin);
33b34c43 96
8eee8ea2 97extern const bt_component_class_source *
3a2cb327 98bt_plugin_borrow_source_component_class_by_index_const_const(
8eee8ea2 99 const bt_plugin *plugin, uint64_t index);
33b34c43 100
8eee8ea2 101extern const bt_component_class_filter *
3a2cb327 102bt_plugin_borrow_filter_component_class_by_index_const(
8eee8ea2 103 const bt_plugin *plugin, uint64_t index);
834e9996 104
8eee8ea2 105extern const bt_component_class_sink *
3a2cb327 106bt_plugin_borrow_sink_component_class_by_index_const(
8eee8ea2 107 const bt_plugin *plugin, uint64_t index);
834e9996 108
8eee8ea2 109extern const bt_component_class_source *
7b53201c 110bt_plugin_borrow_source_component_class_by_name_const(
8eee8ea2 111 const bt_plugin *plugin, const char *name);
834e9996 112
8eee8ea2 113extern const bt_component_class_filter *
7b53201c 114bt_plugin_borrow_filter_component_class_by_name_const(
8eee8ea2 115 const bt_plugin *plugin, const char *name);
834e9996 116
8eee8ea2 117extern const bt_component_class_sink *
7b53201c 118bt_plugin_borrow_sink_component_class_by_name_const(
8eee8ea2 119 const bt_plugin *plugin, const char *name);
33b34c43 120
8eee8ea2 121extern void bt_plugin_get_ref(const bt_plugin *plugin);
8c6884d9 122
8eee8ea2 123extern void bt_plugin_put_ref(const bt_plugin *plugin);
8c6884d9
PP
124
125#define BT_PLUGIN_PUT_REF_AND_RESET(_var) \
126 do { \
127 bt_plugin_put_ref(_var); \
128 (_var) = NULL; \
129 } while (0)
130
131#define BT_PLUGIN_MOVE_REF(_var_dst, _var_src) \
132 do { \
133 bt_plugin_put_ref(_var_dst); \
134 (_var_dst) = (_var_src); \
135 (_var_src) = NULL; \
136 } while (0)
137
38b48196
JG
138#ifdef __cplusplus
139}
140#endif
90354d3a 141
3a2cb327 142#endif /* BABELTRACE_PLUGIN_PLUGIN_CONST_H */
This page took 0.044036 seconds and 4 git commands to generate.