Remove bt_component_set_error_stream
[babeltrace.git] / lib / plugin-system / component.c
CommitLineData
de713ce0
JG
1/*
2 * component.c
3 *
4 * Babeltrace Plugin Component
5 *
6 * Copyright 2015 Jérémie Galarneau <jeremie.galarneau@efficios.com>
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
47e5a032 29#include <babeltrace/plugin/component.h>
de713ce0 30#include <babeltrace/plugin/component-internal.h>
38b48196
JG
31#include <babeltrace/plugin/source-internal.h>
32#include <babeltrace/plugin/sink-internal.h>
de713ce0
JG
33#include <babeltrace/babeltrace-internal.h>
34#include <babeltrace/compiler.h>
b8a06801 35#include <babeltrace/ref.h>
de713ce0 36
7c7c0433
JG
37static
38struct bt_component * (* const component_create_funcs[])(
39 struct bt_component_class *, struct bt_value *) = {
40 [BT_COMPONENT_TYPE_SOURCE] = bt_component_source_create,
41 [BT_COMPONENT_TYPE_SINK] = bt_component_sink_create,
42};
43
44static
45enum bt_component_status (* const component_validation_funcs[])(
46 struct bt_component *) = {
47 [BT_COMPONENT_TYPE_SOURCE] = bt_component_source_validate,
48 [BT_COMPONENT_TYPE_SINK] = bt_component_sink_validate,
49};
50
b8a06801
JG
51static
52void bt_component_destroy(struct bt_object *obj)
53{
54 struct bt_component *component = NULL;
55 struct bt_component_class *component_class = NULL;
56
57 if (!obj) {
58 return;
59 }
60
61 component = container_of(obj, struct bt_component, base);
62
7c7c0433
JG
63 assert(component->destroy);
64 component_class = component->class;
65
66 /*
b8a06801
JG
67 * User data is destroyed first, followed by the concrete component
68 * instance.
69 */
7c7c0433
JG
70 if (component->user_destroy) {
71 component->user_destroy(component->user_data);
72 }
b8a06801 73
b8a06801 74 component->destroy(component);
7c7c0433 75 g_string_free(component->name, TRUE);
b8a06801 76 bt_put(component_class);
7c7c0433 77 g_free(component);
b8a06801
JG
78}
79
80BT_HIDDEN
81enum bt_component_status bt_component_init(struct bt_component *component,
b8a06801
JG
82 bt_component_destroy_cb destroy)
83{
84 enum bt_component_status ret = BT_COMPONENT_STATUS_OK;
85
7c7c0433 86 if (!component || !destroy) {
b8a06801
JG
87 ret = BT_COMPONENT_STATUS_INVAL;
88 goto end;
89 }
90
b8a06801
JG
91 component->destroy = destroy;
92end:
93 return ret;
94}
de713ce0 95
38b48196
JG
96BT_HIDDEN
97enum bt_component_type bt_component_get_type(struct bt_component *component)
98{
99 return component ? component->class->type : BT_COMPONENT_TYPE_UNKNOWN;
100}
101
102struct bt_component *bt_component_create(
7c7c0433
JG
103 struct bt_component_class *component_class, const char *name,
104 struct bt_value *params)
38b48196 105{
7c7c0433 106 int ret;
38b48196 107 struct bt_component *component = NULL;
7c7c0433 108 enum bt_component_type type;
38b48196
JG
109
110 if (!component_class) {
111 goto end;
112 }
113
7c7c0433
JG
114 type = bt_component_class_get_type(component_class);
115 if (type <= BT_COMPONENT_TYPE_UNKNOWN ||
116 type >= BT_COMPONENT_TYPE_FILTER) {
117 /* Filter components are not supported yet. */
118 goto end;
119 }
120
121 component = component_create_funcs[type](component_class, params);
122 if (!component) {
123 goto end;
124 }
125
126 bt_object_init(component, bt_component_destroy);
127 component->class = bt_get(component_class);
128 component->name = g_string_new(name);
129 if (component->name) {
130 BT_PUT(component);
131 goto end;
132 }
133
134 component_class->init(component, params);
135 ret = component_validation_funcs[type](component);
136 if (ret) {
137 BT_PUT(component);
38b48196
JG
138 goto end;
139 }
140end:
141 return component;
142}
143
de713ce0
JG
144const char *bt_component_get_name(struct bt_component *component)
145{
146 const char *ret = NULL;
147
148 if (!component) {
149 goto end;
150 }
151
152 ret = component->name->str;
153end:
154 return ret;
155}
156
157enum bt_component_status bt_component_set_name(struct bt_component *component,
158 const char *name)
159{
160 enum bt_component_status ret = BT_COMPONENT_STATUS_OK;
161
162 if (!component || !name || name[0] == '\0') {
163 ret = BT_COMPONENT_STATUS_INVAL;
164 goto end;
165 }
166
167 g_string_assign(component->name, name);
168end:
169 return ret;
170}
171
38b48196
JG
172struct bt_component_class *bt_component_get_class(
173 struct bt_component *component)
de713ce0 174{
38b48196 175 return component ? bt_get(component->class) : NULL;
de713ce0
JG
176}
177
de713ce0
JG
178void *bt_component_get_private_data(struct bt_component *component)
179{
38b48196 180 return component ? component->user_data : NULL;
de713ce0
JG
181}
182
183enum bt_component_status
184bt_component_set_private_data(struct bt_component *component,
185 void *data)
186{
187 enum bt_component_status ret = BT_COMPONENT_STATUS_OK;
188
189 if (!component) {
190 ret = BT_COMPONENT_STATUS_INVAL;
191 goto end;
192 }
193
194 component->user_data = data;
195end:
196 return ret;
197}
This page took 0.030145 seconds and 4 git commands to generate.