Replace assert() -> BT_ASSERT() and some preconditions with BT_ASSERT_PRE()
[babeltrace.git] / lib / ctf-writer / writer.c
1 /*
2 * writer.c
3 *
4 * Babeltrace CTF Writer
5 *
6 * Copyright 2013, 2014 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 #define BT_LOG_TAG "CTF-WRITER"
30 #include <babeltrace/lib-logging-internal.h>
31
32 #include <babeltrace/ctf-writer/clock-internal.h>
33 #include <babeltrace/ctf-writer/writer-internal.h>
34 #include <babeltrace/ctf-ir/field-types-internal.h>
35 #include <babeltrace/ctf-ir/fields-internal.h>
36 #include <babeltrace/ctf-writer/functor-internal.h>
37 #include <babeltrace/ctf-ir/stream-class-internal.h>
38 #include <babeltrace/ctf-ir/stream-internal.h>
39 #include <babeltrace/ctf-ir/trace-internal.h>
40 #include <babeltrace/ref.h>
41 #include <babeltrace/endian-internal.h>
42 #include <babeltrace/compiler-internal.h>
43 #include <babeltrace/compat/uuid-internal.h>
44 #include <babeltrace/assert-internal.h>
45 #include <stdio.h>
46 #include <stdlib.h>
47 #include <sys/stat.h>
48 #include <errno.h>
49 #include <unistd.h>
50 #include <fcntl.h>
51 #include <inttypes.h>
52
53 static
54 void bt_ctf_writer_destroy(struct bt_object *obj);
55
56 static
57 int init_trace_packet_header(struct bt_trace *trace)
58 {
59 int ret = 0;
60 struct bt_field *magic = NULL, *uuid_array = NULL;
61 struct bt_field_type *_uint32_t =
62 get_field_type(FIELD_TYPE_ALIAS_UINT32_T);
63 struct bt_field_type *_uint8_t =
64 get_field_type(FIELD_TYPE_ALIAS_UINT8_T);
65 struct bt_field_type *trace_packet_header_type =
66 bt_field_type_structure_create();
67 struct bt_field_type *uuid_array_type =
68 bt_field_type_array_create(_uint8_t, 16);
69
70 if (!trace_packet_header_type || !uuid_array_type) {
71 ret = -1;
72 goto end;
73 }
74
75 ret = bt_field_type_structure_add_field(trace_packet_header_type,
76 _uint32_t, "magic");
77 if (ret) {
78 goto end;
79 }
80
81 ret = bt_field_type_structure_add_field(trace_packet_header_type,
82 uuid_array_type, "uuid");
83 if (ret) {
84 goto end;
85 }
86
87 ret = bt_field_type_structure_add_field(trace_packet_header_type,
88 _uint32_t, "stream_id");
89 if (ret) {
90 goto end;
91 }
92
93 ret = bt_trace_set_packet_header_type(trace,
94 trace_packet_header_type);
95 if (ret) {
96 goto end;
97 }
98 end:
99 bt_put(uuid_array_type);
100 bt_put(_uint32_t);
101 bt_put(_uint8_t);
102 bt_put(magic);
103 bt_put(uuid_array);
104 bt_put(trace_packet_header_type);
105 return ret;
106 }
107
108 struct bt_ctf_writer *bt_ctf_writer_create(const char *path)
109 {
110 int ret;
111 struct bt_ctf_writer *writer = NULL;
112 unsigned char uuid[16];
113 char *metadata_path = NULL;
114
115 if (!path) {
116 goto error;
117 }
118
119 writer = g_new0(struct bt_ctf_writer, 1);
120 if (!writer) {
121 goto error;
122 }
123
124 metadata_path = g_build_filename(path, "metadata", NULL);
125
126 bt_object_init(writer, bt_ctf_writer_destroy);
127 writer->path = g_string_new(path);
128 if (!writer->path) {
129 goto error_destroy;
130 }
131
132 writer->trace = bt_trace_create();
133 if (!writer->trace) {
134 goto error_destroy;
135 }
136
137 ret = init_trace_packet_header(writer->trace);
138 if (ret) {
139 goto error_destroy;
140 }
141
142 /* Generate a UUID for this writer's trace */
143 ret = bt_uuid_generate(uuid);
144 if (ret) {
145 BT_LOGE_STR("Cannot generate UUID for CTF writer's trace.");
146 goto error_destroy;
147 }
148
149 ret = bt_trace_set_uuid(writer->trace, uuid);
150 if (ret) {
151 goto error_destroy;
152 }
153
154 writer->trace->is_created_by_writer = 1;
155 bt_object_set_parent(writer->trace, writer);
156 bt_put(writer->trace);
157
158 /* Default to little-endian */
159 ret = bt_ctf_writer_set_byte_order(writer, BT_BYTE_ORDER_NATIVE);
160 BT_ASSERT(ret == 0);
161
162 /* Create trace directory if necessary and open a metadata file */
163 if (g_mkdir_with_parents(path, S_IRWXU | S_IRWXG)) {
164 perror("g_mkdir_with_parents");
165 goto error_destroy;
166 }
167
168 writer->metadata_fd = open(metadata_path,
169 O_WRONLY | O_CREAT | O_TRUNC,
170 S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP);
171 if (writer->metadata_fd < 0) {
172 perror("open");
173 goto error_destroy;
174 }
175
176 g_free(metadata_path);
177 return writer;
178
179 error_destroy:
180 BT_PUT(writer);
181 error:
182 g_free(metadata_path);
183 return writer;
184 }
185
186 void bt_ctf_writer_destroy(struct bt_object *obj)
187 {
188 struct bt_ctf_writer *writer;
189
190 writer = container_of(obj, struct bt_ctf_writer, base);
191 bt_ctf_writer_flush_metadata(writer);
192 if (writer->path) {
193 g_string_free(writer->path, TRUE);
194 }
195
196 if (writer->metadata_fd > 0) {
197 if (close(writer->metadata_fd)) {
198 perror("close");
199 }
200 }
201
202 bt_object_release(writer->trace);
203 g_free(writer);
204 }
205
206 struct bt_trace *bt_ctf_writer_get_trace(struct bt_ctf_writer *writer)
207 {
208 struct bt_trace *trace = NULL;
209
210 if (!writer) {
211 goto end;
212 }
213
214 trace = writer->trace;
215 bt_get(trace);
216 end:
217 return trace;
218 }
219
220 struct bt_stream *bt_ctf_writer_create_stream(struct bt_ctf_writer *writer,
221 struct bt_stream_class *stream_class)
222 {
223 struct bt_stream *stream = NULL;
224 int stream_class_count;
225 bt_bool stream_class_found = BT_FALSE;
226 int i;
227
228 if (!writer || !stream_class) {
229 goto error;
230 }
231
232 /* Make sure the stream class is part of the writer's trace */
233 stream_class_count = bt_trace_get_stream_class_count(writer->trace);
234 if (stream_class_count < 0) {
235 goto error;
236 }
237
238 for (i = 0; i < stream_class_count; i++) {
239 struct bt_stream_class *existing_stream_class =
240 bt_trace_get_stream_class_by_index(
241 writer->trace, i);
242
243 if (existing_stream_class == stream_class) {
244 stream_class_found = BT_TRUE;
245 }
246
247 BT_PUT(existing_stream_class);
248
249 if (stream_class_found) {
250 break;
251 }
252 }
253
254 if (!stream_class_found) {
255 int ret = bt_trace_add_stream_class(writer->trace,
256 stream_class);
257
258 if (ret) {
259 goto error;
260 }
261 }
262
263 stream = bt_stream_create(stream_class, NULL);
264 if (!stream) {
265 goto error;
266 }
267
268 return stream;
269
270 error:
271 BT_PUT(stream);
272 return stream;
273 }
274
275 int bt_ctf_writer_add_environment_field(struct bt_ctf_writer *writer,
276 const char *name,
277 const char *value)
278 {
279 int ret = -1;
280
281 if (!writer || !name || !value) {
282 goto end;
283 }
284
285 ret = bt_trace_set_environment_field_string(writer->trace,
286 name, value);
287 end:
288 return ret;
289 }
290
291 int bt_ctf_writer_add_environment_field_int64(struct bt_ctf_writer *writer,
292 const char *name, int64_t value)
293 {
294 int ret = -1;
295
296 if (!writer || !name) {
297 goto end;
298 }
299
300 ret = bt_trace_set_environment_field_integer(writer->trace, name,
301 value);
302 end:
303 return ret;
304 }
305
306 int bt_ctf_writer_add_clock(struct bt_ctf_writer *writer,
307 struct bt_ctf_clock *clock)
308 {
309 int ret = -1;
310
311 if (!writer || !clock) {
312 goto end;
313 }
314
315 ret = bt_trace_add_clock_class(writer->trace, clock->clock_class);
316 end:
317 return ret;
318 }
319
320 char *bt_ctf_writer_get_metadata_string(struct bt_ctf_writer *writer)
321 {
322 char *metadata_string = NULL;
323
324 if (!writer) {
325 goto end;
326 }
327
328 metadata_string = bt_trace_get_metadata_string(
329 writer->trace);
330 end:
331 return metadata_string;
332 }
333
334 void bt_ctf_writer_flush_metadata(struct bt_ctf_writer *writer)
335 {
336 int ret;
337 char *metadata_string = NULL;
338
339 if (!writer) {
340 goto end;
341 }
342
343 metadata_string = bt_trace_get_metadata_string(
344 writer->trace);
345 if (!metadata_string) {
346 goto end;
347 }
348
349 if (lseek(writer->metadata_fd, 0, SEEK_SET) == (off_t)-1) {
350 perror("lseek");
351 goto end;
352 }
353
354 if (ftruncate(writer->metadata_fd, 0)) {
355 perror("ftruncate");
356 goto end;
357 }
358
359 ret = write(writer->metadata_fd, metadata_string,
360 strlen(metadata_string));
361 if (ret < 0) {
362 perror("write");
363 goto end;
364 }
365 end:
366 g_free(metadata_string);
367 }
368
369 int bt_ctf_writer_set_byte_order(struct bt_ctf_writer *writer,
370 enum bt_byte_order byte_order)
371 {
372 int ret = 0;
373
374 if (!writer || writer->frozen) {
375 ret = -1;
376 goto end;
377 }
378
379 if (byte_order == BT_BYTE_ORDER_NATIVE) {
380 byte_order = BT_MY_BYTE_ORDER;
381 }
382
383 ret = bt_trace_set_native_byte_order(writer->trace,
384 byte_order);
385 end:
386 return ret;
387 }
388
389 void bt_ctf_writer_get(struct bt_ctf_writer *writer)
390 {
391 bt_get(writer);
392 }
393
394 void bt_ctf_writer_put(struct bt_ctf_writer *writer)
395 {
396 bt_put(writer);
397 }
398
399 BT_HIDDEN
400 void bt_ctf_writer_freeze(struct bt_ctf_writer *writer)
401 {
402 writer->frozen = 1;
403 }
This page took 0.038061 seconds and 5 git commands to generate.