ref.h: doc: fix typo
[babeltrace.git] / include / babeltrace / plugin / component-class.h
CommitLineData
fc11e32c
JG
1#ifndef BABELTRACE_PLUGIN_COMPONENT_CLASS_H
2#define BABELTRACE_PLUGIN_COMPONENT_CLASS_H
3
4/*
5 * Babeltrace - Component Class Interface.
6 *
7 * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
8 *
9 * Permission is hereby granted, free of charge, to any person obtaining a copy
10 * of this software and associated documentation files (the "Software"), to deal
11 * in the Software without restriction, including without limitation the rights
12 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13 * copies of the Software, and to permit persons to whom the Software is
14 * furnished to do so, subject to the following conditions:
15 *
16 * The above copyright notice and this permission notice shall be included in
17 * all copies or substantial portions of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25 * SOFTWARE.
26 */
27
28#ifdef __cplusplus
29extern "C" {
30#endif
31
32/**
33 * Component type.
34 */
35enum bt_component_type {
36 BT_COMPONENT_TYPE_UNKNOWN = -1,
37
38 /** A source component is a notification generator. */
39 BT_COMPONENT_TYPE_SOURCE = 0,
40
41 /** A sink component handles incoming notifications. */
42 BT_COMPONENT_TYPE_SINK = 1,
43
44 /** A filter component implements both Source and Sink interfaces. */
45 BT_COMPONENT_TYPE_FILTER = 2,
46};
47
38b48196 48struct bt_plugin;
fc11e32c
JG
49struct bt_component_class;
50
38b48196
JG
51
52/**
53 * Get a component class' name.
54 *
55 * @param component_class Component class of which to get the name
56 * @returns Name of the component class
57 */
58extern const char *bt_component_class_get_name(
59 struct bt_component_class *component_class);
60
7c7c0433
JG
61/**
62 * Get a component class' description.
63 *
64 * Component classes may provide an optional description. It may, however,
65 * opt not to.
66 *
67 * @param component_class Component class of which to get the description
68 * @returns Description of the component class, or NULL.
69 */
f3bc2010 70extern const char *bt_component_class_get_description(
7c7c0433
JG
71 struct bt_component_class *component_class);
72
38b48196
JG
73/**
74 * Get a component class' type.
75 *
76 * @param component_class Component class of which to get the type
77 * @returns One of #bt_component_type
78 */
79extern enum bt_component_type bt_component_class_get_type(
fc11e32c
JG
80 struct bt_component_class *component_class);
81
38b48196
JG
82/**
83 * Get a component class' plug-in.
84 *
85 * @param component_class Component class of which to get the plug-in
86 * @returns The plug-in which registered the component class
87 */
88extern struct bt_plugin *bt_component_class_get_plugin(
fc11e32c
JG
89 struct bt_component_class *component_class);
90
91#endif /* BABELTRACE_PLUGIN_COMPONENT_CLASS_H */
This page took 0.027524 seconds and 4 git commands to generate.