Add ctf-text entry point initialization comment
[babeltrace.git] / plugins / 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
JG
30#include <babeltrace/plugin/component-internal.h>
31#include <babeltrace/babeltrace-internal.h>
32#include <babeltrace/compiler.h>
33
fb2dcc52 34static void bt_component_destroy(struct bt_ref *ref);
de713ce0
JG
35
36const char *bt_component_get_name(struct bt_component *component)
37{
38 const char *ret = NULL;
39
40 if (!component) {
41 goto end;
42 }
43
44 ret = component->name->str;
45end:
46 return ret;
47}
48
49enum bt_component_status bt_component_set_name(struct bt_component *component,
50 const char *name)
51{
52 enum bt_component_status ret = BT_COMPONENT_STATUS_OK;
53
54 if (!component || !name || name[0] == '\0') {
55 ret = BT_COMPONENT_STATUS_INVAL;
56 goto end;
57 }
58
59 g_string_assign(component->name, name);
60end:
61 return ret;
62}
63
64enum bt_component_type bt_component_get_type(struct bt_component *component)
65{
66 enum bt_component_type type = BT_COMPONENT_TYPE_UNKNOWN;
67
68 if (!component) {
69 goto end;
70 }
71
fb2dcc52 72 type = component->class->type;
de713ce0
JG
73end:
74 return type;
75}
76
77enum bt_component_status bt_component_set_error_stream(
78 struct bt_component *component, FILE *stream)
79{
80 enum bt_component_status ret = BT_COMPONENT_STATUS_OK;
81
82 if (!component) {
83 ret = BT_COMPONENT_STATUS_INVAL;
84 goto end;
85 }
86
87 component->error_stream = stream;
88end:
89 return ret;
90}
91
92void bt_component_get(struct bt_component *component)
93{
94 if (!component) {
95 return;
96 }
97
fb2dcc52 98 bt_ref_get(&component->ref);
de713ce0
JG
99}
100
101void bt_component_put(struct bt_component *component)
102{
103 if (!component) {
104 return;
105 }
106
fb2dcc52 107 bt_ref_put(&component->ref);
de713ce0
JG
108}
109
110BT_HIDDEN
0d884c50 111enum bt_component_status bt_component_init(struct bt_component *component,
fb2dcc52 112 struct bt_component_class *class, const char *name,
8738a040 113 bt_component_destroy_cb destroy)
de713ce0
JG
114{
115 enum bt_component_status ret = BT_COMPONENT_STATUS_OK;
116
fb2dcc52 117 if (!component || !class || !name || name[0] == '\0' || destroy) {
de713ce0
JG
118 ret = BT_COMPONENT_STATUS_INVAL;
119 goto end;
120 }
121
fb2dcc52
JG
122 bt_ref_init(&component->ref, bt_component_destroy);
123 bt_component_class_get(class);
124 component->class = class;
de713ce0
JG
125 component->name = g_string_new(name);
126 if (!component->name) {
127 ret = BT_COMPONENT_STATUS_NOMEM;
128 goto end;
129 }
8738a040 130 component->destroy = destroy;
de713ce0
JG
131end:
132 return ret;
133}
134
135void *bt_component_get_private_data(struct bt_component *component)
136{
0d884c50 137 void *ret = NULL;
de713ce0
JG
138
139 if (!component) {
140 goto end;
141 }
142
143 ret = component->user_data;
144end:
145 return ret;
146}
147
148enum bt_component_status
149bt_component_set_private_data(struct bt_component *component,
150 void *data)
151{
152 enum bt_component_status ret = BT_COMPONENT_STATUS_OK;
153
154 if (!component) {
155 ret = BT_COMPONENT_STATUS_INVAL;
156 goto end;
157 }
158
159 component->user_data = data;
160end:
161 return ret;
162}
163
164static
fb2dcc52 165void bt_component_destroy(struct bt_ref *ref)
de713ce0
JG
166{
167 struct bt_component *component = NULL;
168
169 if (!ref) {
170 return;
171 }
172
fb2dcc52 173 component = container_of(ref, struct bt_component, ref);
de713ce0
JG
174
175 /**
176 * User data is destroyed first, followed by the concrete component
177 * instance.
178 */
8738a040
JG
179 assert(!component->user_data || component->user_destroy);
180 component->user_destroy(component->user_data);
de713ce0
JG
181
182 g_string_free(component->name, TRUE);
183
184 assert(component->destroy);
185 component->destroy(component);
fb2dcc52 186 bt_component_class_put(component->class);
de713ce0 187}
This page took 0.052271 seconds and 4 git commands to generate.