Move initialization of components to init functions
[babeltrace.git] / plugins / component.c
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
29 #include <babeltrace/plugin/component.h>
30 #include <babeltrace/plugin/component-internal.h>
31 #include <babeltrace/babeltrace-internal.h>
32 #include <babeltrace/compiler.h>
33
34 static void bt_component_destroy(struct bt_ctf_ref *ref);
35
36 const 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;
45 end:
46 return ret;
47 }
48
49 enum 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);
60 end:
61 return ret;
62 }
63
64 enum 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;
73 end:
74 return type;
75 }
76
77 enum 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;
88 end:
89 return ret;
90 }
91
92 void 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
101 void 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
110 BT_HIDDEN
111 enum bt_component_status bt_component_init(struct bt_component *component,
112 const char *name, enum bt_component_type component_type,
113 bt_component_destroy_cb destroy)
114 {
115 enum bt_component_status ret = BT_COMPONENT_STATUS_OK;
116
117 if (!component || !name || name[0] == '\0' || destroy) {
118 ret = BT_COMPONENT_STATUS_INVAL;
119 goto end;
120 }
121
122 bt_ctf_ref_init(&component->ref_count);
123 component->type = component_type;
124 component->name = g_string_new(name);
125 if (!component->name) {
126 ret = BT_COMPONENT_STATUS_NOMEM;
127 goto end;
128 }
129 component->destroy = destroy;
130 end:
131 return ret;
132 }
133
134 void *bt_component_get_private_data(struct bt_component *component)
135 {
136 void *ret = NULL;
137
138 if (!component) {
139 goto end;
140 }
141
142 ret = component->user_data;
143 end:
144 return ret;
145 }
146
147 enum bt_component_status
148 bt_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;
159 end:
160 return ret;
161 }
162
163 static
164 void 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 */
178 assert(!component->user_data || component->user_destroy);
179 component->user_destroy(component->user_data);
180
181 g_string_free(component->name, TRUE);
182
183 assert(component->destroy);
184 component->destroy(component);
185 }
This page took 0.033684 seconds and 4 git commands to generate.