lib: introduce bt_message_iterator_class
[babeltrace.git] / include / babeltrace2 / graph / component-class.h
CommitLineData
3fd40f46
PP
1#ifndef BABELTRACE2_GRAPH_COMPONENT_CLASS_H
2#define BABELTRACE2_GRAPH_COMPONENT_CLASS_H
fc11e32c
JG
3
4/*
0dcb770f 5 * Copyright (c) 2010-2019 EfficiOS Inc. and Linux Foundation
fc11e32c
JG
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 * SOFTWARE.
24 */
25
9df34b44
PP
26#ifndef __BT_IN_BABELTRACE_H
27# error "Please include <babeltrace2/babeltrace.h> instead."
28#endif
29
71c5da58 30#include <babeltrace2/types.h>
8eee8ea2 31
fc11e32c
JG
32#ifdef __cplusplus
33extern "C" {
34#endif
35
be788861
PP
36typedef enum bt_component_class_get_supported_mip_versions_method_status {
37 BT_COMPONENT_CLASS_GET_SUPPORTED_MIP_VERSIONS_METHOD_STATUS_OK = __BT_FUNC_STATUS_OK,
38 BT_COMPONENT_CLASS_GET_SUPPORTED_MIP_VERSIONS_METHOD_STATUS_ERROR = __BT_FUNC_STATUS_ERROR,
39 BT_COMPONENT_CLASS_GET_SUPPORTED_MIP_VERSIONS_METHOD_STATUS_MEMORY_ERROR = __BT_FUNC_STATUS_MEMORY_ERROR,
40} bt_component_class_get_supported_mip_versions_method_status;
41
4175c1d5
FD
42typedef enum bt_component_class_initialize_method_status {
43 BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_OK = __BT_FUNC_STATUS_OK,
44 BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_ERROR = __BT_FUNC_STATUS_ERROR,
45 BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_MEMORY_ERROR = __BT_FUNC_STATUS_MEMORY_ERROR,
46} bt_component_class_initialize_method_status;
d3e4dcd8 47
fb25b9e3
PP
48typedef enum bt_component_class_port_connected_method_status {
49 BT_COMPONENT_CLASS_PORT_CONNECTED_METHOD_STATUS_OK = __BT_FUNC_STATUS_OK,
50 BT_COMPONENT_CLASS_PORT_CONNECTED_METHOD_STATUS_ERROR = __BT_FUNC_STATUS_ERROR,
51 BT_COMPONENT_CLASS_PORT_CONNECTED_METHOD_STATUS_MEMORY_ERROR = __BT_FUNC_STATUS_MEMORY_ERROR,
52} bt_component_class_port_connected_method_status;
53
54typedef enum bt_component_class_query_method_status {
55 BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_OK = __BT_FUNC_STATUS_OK,
56 BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_AGAIN = __BT_FUNC_STATUS_AGAIN,
57 BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_ERROR = __BT_FUNC_STATUS_ERROR,
58 BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_MEMORY_ERROR = __BT_FUNC_STATUS_MEMORY_ERROR,
7dd3e712 59 BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_UNKNOWN_OBJECT = __BT_FUNC_STATUS_UNKNOWN_OBJECT,
fb25b9e3 60} bt_component_class_query_method_status;
fb25b9e3
PP
61
62typedef enum bt_component_class_set_method_status {
63 BT_COMPONENT_CLASS_SET_METHOD_STATUS_OK = __BT_FUNC_STATUS_OK,
64} bt_component_class_set_method_status;
65
66typedef enum bt_component_class_set_description_status {
67 BT_COMPONENT_CLASS_SET_DESCRIPTION_STATUS_OK = __BT_FUNC_STATUS_OK,
68 BT_COMPONENT_CLASS_SET_DESCRIPTION_STATUS_MEMORY_ERROR = __BT_FUNC_STATUS_MEMORY_ERROR,
69} bt_component_class_set_description_status;
70
71extern bt_component_class_set_description_status
72bt_component_class_set_description(bt_component_class *component_class,
7b53201c 73 const char *description);
38b48196 74
fb25b9e3
PP
75typedef enum bt_component_class_set_help_status {
76 BT_COMPONENT_CLASS_SET_HELP_STATUS_OK = __BT_FUNC_STATUS_OK,
77 BT_COMPONENT_CLASS_SET_HELP_STATUS_MEMORY_ERROR = __BT_FUNC_STATUS_MEMORY_ERROR,
78} bt_component_class_set_help_status;
79
80extern bt_component_class_set_help_status bt_component_class_set_help(
8eee8ea2 81 bt_component_class *component_class,
7b53201c 82 const char *help);
2154eb7d 83
d3e4dcd8
PP
84#ifdef __cplusplus
85}
86#endif
87
3fd40f46 88#endif /* BABELTRACE2_GRAPH_COMPONENT_CLASS_H */
This page took 0.059497 seconds and 4 git commands to generate.