lib: update copyrights
[babeltrace.git] / include / babeltrace / plugin / plugin-const.h
CommitLineData
92fed4e1
PP
1#ifndef BABELTRACE_PLUGIN_PLUGIN_CONST_H
2#define BABELTRACE_PLUGIN_PLUGIN_CONST_H
90354d3a
JG
3
4/*
e2f7325d 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>
9d408fca
PP
31
32/* For bt_bool */
c55a9f58 33#include <babeltrace/types.h>
33b34c43 34
9d408fca
PP
35/* For enum bt_component_class_type */
36#include <babeltrace/graph/component-class.h>
37
d94d92ac
PP
38/* For enum bt_component_class_source */
39#include <babeltrace/graph/component-class-source.h>
40
41/* For enum bt_component_class_filter */
42#include <babeltrace/graph/component-class-filter.h>
43
44/* For enum bt_component_class_sink */
45#include <babeltrace/graph/component-class-sink.h>
46
47/* For enum bt_property_availability */
48#include <babeltrace/property.h>
49
38b48196
JG
50#ifdef __cplusplus
51extern "C" {
52#endif
633edee0 53
38b48196 54struct bt_plugin;
a8ff38ef 55struct bt_plugin_set;
33b34c43 56struct bt_component_class;
d94d92ac
PP
57struct bt_component_class_source;
58struct bt_component_class_filter;
59struct bt_component_class_sink;
33b34c43 60
33b34c43 61enum bt_plugin_status {
33b34c43 62 BT_PLUGIN_STATUS_OK = 0,
33b34c43 63 BT_PLUGIN_STATUS_ERROR = -1,
d94d92ac 64 BT_PLUGIN_STATUS_NOMEM = -12,
33b34c43
PP
65};
66
92fed4e1 67extern const struct bt_plugin *bt_plugin_find(const char *plugin_name);
2b43acf9 68
92fed4e1
PP
69extern const struct bt_plugin_set *bt_plugin_create_all_from_file(
70 const char *path);
33b34c43 71
92fed4e1
PP
72extern const struct bt_plugin_set *bt_plugin_create_all_from_dir(
73 const char *path, bt_bool recurse);
33b34c43 74
92fed4e1 75extern const struct bt_plugin_set *bt_plugin_create_all_from_static(void);
73299554 76
92fed4e1 77extern const char *bt_plugin_get_name(const struct bt_plugin *plugin);
633edee0 78
92fed4e1 79extern const char *bt_plugin_get_author(const struct bt_plugin *plugin);
633edee0 80
92fed4e1 81extern const char *bt_plugin_get_license(const struct bt_plugin *plugin);
633edee0 82
92fed4e1 83extern const char *bt_plugin_get_description(const struct bt_plugin *plugin);
f3bc2010 84
92fed4e1 85extern const char *bt_plugin_get_path(const struct bt_plugin *plugin);
7c7c0433 86
d94d92ac 87extern enum bt_property_availability bt_plugin_get_version(
92fed4e1 88 const struct bt_plugin *plugin, unsigned int *major,
d94d92ac
PP
89 unsigned int *minor, unsigned int *patch, const char **extra);
90
91extern uint64_t bt_plugin_get_source_component_class_count(
92fed4e1 92 const struct bt_plugin *plugin);
d94d92ac
PP
93
94extern uint64_t bt_plugin_get_filter_component_class_count(
92fed4e1 95 const struct bt_plugin *plugin);
b6de043b 96
d94d92ac 97extern uint64_t bt_plugin_get_sink_component_class_count(
92fed4e1 98 const struct bt_plugin *plugin);
33b34c43 99
0d72b8c3 100extern const struct bt_component_class_source *
92fed4e1
PP
101bt_plugin_borrow_source_component_class_by_index_const_const(
102 const struct bt_plugin *plugin, uint64_t index);
33b34c43 103
0d72b8c3 104extern const struct bt_component_class_filter *
92fed4e1
PP
105bt_plugin_borrow_filter_component_class_by_index_const(
106 const struct bt_plugin *plugin, uint64_t index);
d94d92ac 107
0d72b8c3 108extern const struct bt_component_class_sink *
92fed4e1
PP
109bt_plugin_borrow_sink_component_class_by_index_const(
110 const struct bt_plugin *plugin, uint64_t index);
d94d92ac 111
0d72b8c3
PP
112extern const struct bt_component_class_source *
113bt_plugin_borrow_source_component_class_by_name_const(
114 const struct bt_plugin *plugin, const char *name);
d94d92ac 115
0d72b8c3
PP
116extern const struct bt_component_class_filter *
117bt_plugin_borrow_filter_component_class_by_name_const(
118 const struct bt_plugin *plugin, const char *name);
d94d92ac 119
0d72b8c3
PP
120extern const struct bt_component_class_sink *
121bt_plugin_borrow_sink_component_class_by_name_const(
122 const struct bt_plugin *plugin, const char *name);
33b34c43 123
38b48196
JG
124#ifdef __cplusplus
125}
126#endif
90354d3a 127
92fed4e1 128#endif /* BABELTRACE_PLUGIN_PLUGIN_CONST_H */
This page took 0.044701 seconds and 4 git commands to generate.