56bab6e8f454670e8612127a5433466743bb9f71
[babeltrace.git] / plugins / ctf / fs-sink / writer.c
1 /*
2 * writer.c
3 *
4 * Babeltrace CTF Writer Output Plugin
5 *
6 * Copyright 2016 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/ctf-ir/packet.h>
30 #include <babeltrace/plugin/plugin-dev.h>
31 #include <babeltrace/graph/component.h>
32 #include <babeltrace/graph/private-component.h>
33 #include <babeltrace/graph/component-sink.h>
34 #include <babeltrace/graph/private-component-sink.h>
35 #include <babeltrace/graph/private-port.h>
36 #include <babeltrace/graph/private-connection.h>
37 #include <babeltrace/graph/notification.h>
38 #include <babeltrace/graph/notification-iterator.h>
39 #include <babeltrace/graph/notification-event.h>
40 #include <babeltrace/graph/notification-packet.h>
41 #include <babeltrace/graph/notification-stream.h>
42 #include <plugins-common.h>
43 #include <stdio.h>
44 #include <stdbool.h>
45 #include <glib.h>
46 #include "writer.h"
47 #include <assert.h>
48
49 gboolean empty_ht(gpointer key, gpointer value, gpointer user_data)
50 {
51 return TRUE;
52 }
53
54 static
55 void destroy_writer_component_data(struct writer_component *writer_component)
56 {
57 bt_put(writer_component->input_iterator);
58
59 g_hash_table_foreach_remove(writer_component->stream_class_map,
60 empty_ht, NULL);
61 g_hash_table_destroy(writer_component->stream_class_map);
62
63 g_hash_table_foreach_remove(writer_component->stream_map,
64 empty_ht, NULL);
65 g_hash_table_destroy(writer_component->stream_map);
66
67 g_hash_table_foreach_remove(writer_component->trace_map,
68 empty_ht, NULL);
69 g_hash_table_destroy(writer_component->trace_map);
70
71 g_string_free(writer_component->base_path, true);
72 g_string_free(writer_component->trace_name_base, true);
73 }
74
75 BT_HIDDEN
76 void writer_component_finalize(struct bt_private_component *component)
77 {
78 struct writer_component *writer_component = (struct writer_component *)
79 bt_private_component_get_user_data(component);
80
81 destroy_writer_component_data(writer_component);
82 g_free(writer_component);
83 }
84
85 static
86 void unref_stream_class(struct bt_ctf_stream_class *writer_stream_class)
87 {
88 bt_put(writer_stream_class);
89 }
90
91 static
92 void unref_stream(struct bt_ctf_stream_class *writer_stream)
93 {
94 bt_put(writer_stream);
95 }
96
97 static
98 void free_fs_writer(struct fs_writer *fs_writer)
99 {
100 bt_put(fs_writer->writer);
101 g_free(fs_writer);
102 }
103
104 static
105 struct writer_component *create_writer_component(void)
106 {
107 struct writer_component *writer_component;
108
109 writer_component = g_new0(struct writer_component, 1);
110 if (!writer_component) {
111 goto end;
112 }
113
114 writer_component->err = stderr;
115 writer_component->trace_id = 0;
116 writer_component->trace_name_base = g_string_new("trace");
117 writer_component->processed_first_event = false;
118 if (!writer_component->trace_name_base) {
119 g_free(writer_component);
120 writer_component = NULL;
121 goto end;
122 }
123
124 /*
125 * Reader to writer corresponding structures.
126 */
127 writer_component->trace_map = g_hash_table_new_full(g_direct_hash,
128 g_direct_equal, NULL, (GDestroyNotify) free_fs_writer);
129 writer_component->stream_class_map = g_hash_table_new_full(g_direct_hash,
130 g_direct_equal, NULL, (GDestroyNotify) unref_stream_class);
131 writer_component->stream_map = g_hash_table_new_full(g_direct_hash,
132 g_direct_equal, NULL, (GDestroyNotify) unref_stream);
133
134 end:
135 return writer_component;
136 }
137
138 static
139 enum bt_component_status handle_notification(
140 struct writer_component *writer_component,
141 struct bt_notification *notification)
142 {
143 enum bt_component_status ret = BT_COMPONENT_STATUS_OK;
144
145 if (!writer_component) {
146 ret = BT_COMPONENT_STATUS_ERROR;
147 goto end;
148 }
149
150 switch (bt_notification_get_type(notification)) {
151 case BT_NOTIFICATION_TYPE_PACKET_BEGIN:
152 {
153 struct bt_ctf_packet *packet =
154 bt_notification_packet_begin_get_packet(notification);
155
156 if (!packet) {
157 ret = BT_COMPONENT_STATUS_ERROR;
158 goto end;
159 }
160
161 ret = writer_new_packet(writer_component, packet);
162 bt_put(packet);
163 break;
164 }
165 case BT_NOTIFICATION_TYPE_PACKET_END:
166 {
167 struct bt_ctf_packet *packet =
168 bt_notification_packet_end_get_packet(notification);
169
170 if (!packet) {
171 ret = BT_COMPONENT_STATUS_ERROR;
172 goto end;
173 }
174 ret = writer_close_packet(writer_component, packet);
175 bt_put(packet);
176 break;
177 }
178 case BT_NOTIFICATION_TYPE_EVENT:
179 {
180 struct bt_ctf_event *event = bt_notification_event_get_event(
181 notification);
182
183 if (!event) {
184 ret = BT_COMPONENT_STATUS_ERROR;
185 goto end;
186 }
187 ret = writer_output_event(writer_component, event);
188 bt_put(event);
189 if (ret != BT_COMPONENT_STATUS_OK) {
190 goto end;
191 }
192 break;
193 }
194 case BT_NOTIFICATION_TYPE_STREAM_END:
195 {
196 struct bt_ctf_stream *stream =
197 bt_notification_stream_end_get_stream(notification);
198
199 if (!stream) {
200 ret = BT_COMPONENT_STATUS_ERROR;
201 goto end;
202 }
203 ret = writer_stream_end(writer_component, stream);
204 bt_put(stream);
205 break;
206 }
207 default:
208 puts("Unhandled notification type");
209 }
210 end:
211 return ret;
212 }
213
214 BT_HIDDEN
215 void writer_component_port_connected(
216 struct bt_private_component *component,
217 struct bt_private_port *self_port,
218 struct bt_port *other_port)
219 {
220 struct bt_private_connection *connection;
221 struct writer_component *writer;
222 static const enum bt_notification_type notif_types[] = {
223 BT_NOTIFICATION_TYPE_EVENT,
224 BT_NOTIFICATION_TYPE_PACKET_BEGIN,
225 BT_NOTIFICATION_TYPE_PACKET_END,
226 BT_NOTIFICATION_TYPE_STREAM_END,
227 BT_NOTIFICATION_TYPE_SENTINEL,
228 };
229
230 writer = bt_private_component_get_user_data(component);
231 assert(writer);
232 assert(!writer->input_iterator);
233 connection = bt_private_port_get_private_connection(self_port);
234 assert(connection);
235 writer->input_iterator =
236 bt_private_connection_create_notification_iterator(connection,
237 notif_types);
238
239 if (!writer->input_iterator) {
240 writer->error = true;
241 }
242
243 bt_put(connection);
244 }
245
246 BT_HIDDEN
247 enum bt_component_status writer_run(struct bt_private_component *component)
248 {
249 enum bt_component_status ret;
250 struct bt_notification *notification = NULL;
251 struct bt_notification_iterator *it;
252 struct writer_component *writer_component =
253 bt_private_component_get_user_data(component);
254 enum bt_notification_iterator_status it_ret;
255
256 if (unlikely(writer_component->error)) {
257 ret = BT_COMPONENT_STATUS_ERROR;
258 goto end;
259 }
260
261 it = writer_component->input_iterator;
262 assert(it);
263 it_ret = bt_notification_iterator_next(it);
264
265 switch (it_ret) {
266 case BT_NOTIFICATION_ITERATOR_STATUS_END:
267 ret = BT_COMPONENT_STATUS_END;
268 BT_PUT(writer_component->input_iterator);
269 goto end;
270 case BT_NOTIFICATION_ITERATOR_STATUS_AGAIN:
271 ret = BT_COMPONENT_STATUS_AGAIN;
272 goto end;
273 case BT_NOTIFICATION_ITERATOR_STATUS_OK:
274 break;
275 default:
276 ret = BT_COMPONENT_STATUS_ERROR;
277 goto end;
278 }
279
280 notification = bt_notification_iterator_get_notification(it);
281 assert(notification);
282 ret = handle_notification(writer_component, notification);
283 end:
284 bt_put(notification);
285 return ret;
286 }
287
288 BT_HIDDEN
289 enum bt_component_status writer_component_init(
290 struct bt_private_component *component, struct bt_value *params,
291 UNUSED_VAR void *init_method_data)
292 {
293 enum bt_component_status ret;
294 enum bt_value_status value_ret;
295 struct writer_component *writer_component = create_writer_component();
296 struct bt_value *value = NULL;
297 const char *path;
298 void *priv_port;
299
300 if (!writer_component) {
301 ret = BT_COMPONENT_STATUS_NOMEM;
302 goto end;
303 }
304
305 priv_port = bt_private_component_sink_add_input_private_port(component,
306 "in", NULL);
307 if (!priv_port) {
308 ret = BT_COMPONENT_STATUS_NOMEM;
309 goto end;
310 }
311
312 bt_put(priv_port);
313
314 value = bt_value_map_get(params, "path");
315 if (!value || bt_value_is_null(value) || !bt_value_is_string(value)) {
316 fprintf(writer_component->err,
317 "[error] output path parameter required\n");
318 ret = BT_COMPONENT_STATUS_INVALID;
319 goto error;
320 }
321
322 value_ret = bt_value_string_get(value, &path);
323 if (value_ret != BT_VALUE_STATUS_OK) {
324 ret = BT_COMPONENT_STATUS_INVALID;
325 goto error;
326 }
327 bt_put(value);
328
329 writer_component->base_path = g_string_new(path);
330 if (!writer_component) {
331 ret = BT_COMPONENT_STATUS_ERROR;
332 goto error;
333 }
334
335 ret = bt_private_component_set_user_data(component, writer_component);
336 if (ret != BT_COMPONENT_STATUS_OK) {
337 goto error;
338 }
339
340 end:
341 return ret;
342 error:
343 destroy_writer_component_data(writer_component);
344 g_free(writer_component);
345 return ret;
346 }
This page took 0.035357 seconds and 3 git commands to generate.