5915a5b1b36c8f39cdac5c04e634d223dc882cdf
[babeltrace.git] / include / babeltrace / plugin / component-factory.h
1 #ifndef BABELTRACE_PLUGIN_COMPONENT_FACTORY_H
2 #define BABELTRACE_PLUGIN_COMPONENT_FACTORY_H
3
4 /*
5 * Babeltrace - Component Factory Class Interface.
6 *
7 * Copyright 2015 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 #include <babeltrace/plugin/component.h>
29 #include <babeltrace/plugin/source.h>
30 #include <babeltrace/plugin/sink.h>
31 #include <babeltrace/plugin/filter.h>
32 #include <babeltrace/plugin/plugin-system.h>
33
34 #ifdef __cplusplus
35 extern "C" {
36 #endif
37
38 /**
39 * Status code. Errors are always negative.
40 */
41 enum bt_component_factory_status {
42 /** General error. */
43 BT_COMPONENT_FACTORY_STATUS_ERROR = -128,
44
45 /** Invalid plugin. */
46 BT_COMPONENT_FACTORY_STATUS_INVAL_PLUGIN = -6,
47
48 /** Invalid arguments. */
49 BT_COMPONENT_FACTORY_STATUS_INVAL = -5,
50
51 /** Memory allocation failure. */
52 BT_COMPONENT_FACTORY_STATUS_NOMEM = -4,
53
54 /** I/O error. */
55 BT_COMPONENT_FACTORY_STATUS_IO = -3,
56
57 /** No such file or directory. */
58 BT_COMPONENT_FACTORY_STATUS_NOENT = -2,
59
60 /** Operation not permitted. */
61 BT_COMPONENT_FACTORY_STATUS_PERM = -1,
62
63 /** No error, okay. */
64 BT_COMPONENT_FACTORY_STATUS_OK = 0,
65 };
66
67 struct bt_component_factory;
68
69 /**
70 * Create a component factory.
71 *
72 * @returns An instance of component factory
73 */
74 extern
75 struct bt_component_factory *bt_component_factory_create(void);
76
77 /**
78 * Get the list of components registered to this factory.
79 */
80 extern
81 struct bt_object *bt_component_factory_get_components(
82 struct bt_component_factory *factory);
83
84 /**
85 * Recursively load and register Babeltrace plugins under a given path.
86 *
87 * Path will be traversed recursively if it is a directory, otherwise only the
88 * provided file will be loaded.
89 *
90 * @param factory A component factory instance
91 * @param path A path to a file or directory
92 * @returns One of #bt_component_factory_status values
93 */
94 extern
95 enum bt_component_factory_status bt_component_factory_load(
96 struct bt_component_factory *factory, const char *path);
97
98 extern
99 enum bt_component_factory_status
100 bt_component_factory_register_source_component_class(
101 struct bt_component_factory *factory, const char *name,
102 bt_component_source_init_cb init);
103
104 extern
105 enum bt_component_factory_status bt_component_factory_register_sink_component_class(
106 struct bt_component_factory *factory, const char *name,
107 bt_component_sink_init_cb init);
108
109 extern
110 void bt_component_factory_destroy(struct bt_component_factory *factory);
111
112 #ifdef __cplusplus
113 }
114 #endif
115
116 #endif /* BABELTRACE_PLUGIN_COMPONENT_FACTORY_H */
This page took 0.031554 seconds and 3 git commands to generate.