Move initialization of components to init functions
[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
34static void bt_component_destroy(struct bt_ctf_ref *ref);
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
72 type = component->type;
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
98 bt_ctf_ref_get(&component->ref_count);
99}
100
101void bt_component_put(struct bt_component *component)
102{
103 if (!component) {
104 return;
105 }
106
107 bt_ctf_ref_put(&component->ref_count, bt_component_destroy);
108}
109
110BT_HIDDEN
0d884c50 111enum bt_component_status bt_component_init(struct bt_component *component,
8738a040
JG
112 const char *name, enum bt_component_type component_type,
113 bt_component_destroy_cb destroy)
de713ce0
JG
114{
115 enum bt_component_status ret = BT_COMPONENT_STATUS_OK;
116
8738a040 117 if (!component || !name || name[0] == '\0' || destroy) {
de713ce0
JG
118 ret = BT_COMPONENT_STATUS_INVAL;
119 goto end;
120 }
121
122 bt_ctf_ref_init(&component->ref_count);
123 component->type = component_type;
de713ce0
JG
124 component->name = g_string_new(name);
125 if (!component->name) {
126 ret = BT_COMPONENT_STATUS_NOMEM;
127 goto end;
128 }
8738a040 129 component->destroy = destroy;
de713ce0
JG
130end:
131 return ret;
132}
133
134void *bt_component_get_private_data(struct bt_component *component)
135{
0d884c50 136 void *ret = NULL;
de713ce0
JG
137
138 if (!component) {
139 goto end;
140 }
141
142 ret = component->user_data;
143end:
144 return ret;
145}
146
147enum bt_component_status
148bt_component_set_private_data(struct bt_component *component,
149 void *data)
150{
151 enum bt_component_status ret = BT_COMPONENT_STATUS_OK;
152
153 if (!component) {
154 ret = BT_COMPONENT_STATUS_INVAL;
155 goto end;
156 }
157
158 component->user_data = data;
159end:
160 return ret;
161}
162
163static
164void bt_component_destroy(struct bt_ctf_ref *ref)
165{
166 struct bt_component *component = NULL;
167
168 if (!ref) {
169 return;
170 }
171
172 component = container_of(ref, struct bt_component, ref_count);
173
174 /**
175 * User data is destroyed first, followed by the concrete component
176 * instance.
177 */
8738a040
JG
178 assert(!component->user_data || component->user_destroy);
179 component->user_destroy(component->user_data);
de713ce0
JG
180
181 g_string_free(component->name, TRUE);
182
183 assert(component->destroy);
184 component->destroy(component);
185}
This page took 0.030046 seconds and 4 git commands to generate.