Move to kernel style SPDX license identifiers
[babeltrace.git] / src / ctf-writer / writer.c
... / ...
CommitLineData
1/*
2 * SPDX-License-Identifier: MIT
3 *
4 * Copyright 2013, 2014 Jérémie Galarneau <jeremie.galarneau@efficios.com>
5 *
6 * Babeltrace CTF Writer
7 */
8
9#define BT_LOG_TAG "CTF-WRITER"
10#include "logging.h"
11
12#include <errno.h>
13#include <fcntl.h>
14#include <inttypes.h>
15#include <stdio.h>
16#include <stdlib.h>
17#include <sys/stat.h>
18#include <unistd.h>
19
20#include <babeltrace2-ctf-writer/object.h>
21
22#include "common/assert.h"
23#include "compat/compiler.h"
24#include "compat/endian.h"
25#include "common/uuid.h"
26
27#include "clock.h"
28#include "fields.h"
29#include "field-types.h"
30#include "functor.h"
31#include "stream-class.h"
32#include "stream.h"
33#include "trace.h"
34#include "writer.h"
35
36static
37void bt_ctf_writer_destroy(struct bt_ctf_object *obj);
38
39static
40int init_trace_packet_header(struct bt_ctf_trace *trace)
41{
42 int ret = 0;
43 struct bt_ctf_field_type *_uint32_t =
44 get_field_type(FIELD_TYPE_ALIAS_UINT32_T);
45 struct bt_ctf_field_type *_uint8_t =
46 get_field_type(FIELD_TYPE_ALIAS_UINT8_T);
47 struct bt_ctf_field_type *trace_packet_header_type =
48 bt_ctf_field_type_structure_create();
49 struct bt_ctf_field_type *uuid_array_type =
50 bt_ctf_field_type_array_create(_uint8_t, 16);
51
52 if (!trace_packet_header_type || !uuid_array_type) {
53 ret = -1;
54 goto end;
55 }
56
57 ret = bt_ctf_field_type_structure_add_field(trace_packet_header_type,
58 _uint32_t, "magic");
59 if (ret) {
60 goto end;
61 }
62
63 ret = bt_ctf_field_type_structure_add_field(trace_packet_header_type,
64 uuid_array_type, "uuid");
65 if (ret) {
66 goto end;
67 }
68
69 ret = bt_ctf_field_type_structure_add_field(trace_packet_header_type,
70 _uint32_t, "stream_id");
71 if (ret) {
72 goto end;
73 }
74
75 ret = bt_ctf_trace_set_packet_header_field_type(trace,
76 trace_packet_header_type);
77 if (ret) {
78 goto end;
79 }
80end:
81 bt_ctf_object_put_ref(uuid_array_type);
82 bt_ctf_object_put_ref(_uint32_t);
83 bt_ctf_object_put_ref(_uint8_t);
84 bt_ctf_object_put_ref(trace_packet_header_type);
85 return ret;
86}
87
88struct bt_ctf_writer *bt_ctf_writer_create(const char *path)
89{
90 int ret;
91 struct bt_ctf_writer *writer = NULL;
92 bt_uuid_t uuid;
93 char *metadata_path = NULL;
94
95 if (!path) {
96 goto error;
97 }
98
99 writer = g_new0(struct bt_ctf_writer, 1);
100 if (!writer) {
101 goto error;
102 }
103
104 metadata_path = g_build_filename(path, "metadata", NULL);
105
106 bt_ctf_object_init_shared(&writer->base, bt_ctf_writer_destroy);
107 writer->path = g_string_new(path);
108 if (!writer->path) {
109 goto error_destroy;
110 }
111
112 writer->trace = bt_ctf_trace_create();
113 if (!writer->trace) {
114 goto error_destroy;
115 }
116
117 ret = init_trace_packet_header(writer->trace);
118 if (ret) {
119 goto error_destroy;
120 }
121
122 /* Generate a UUID for this writer's trace */
123 bt_uuid_generate(uuid);
124
125 ret = bt_ctf_trace_set_uuid(writer->trace, uuid);
126 if (ret) {
127 goto error_destroy;
128 }
129
130 bt_ctf_object_set_parent(&writer->trace->common.base, &writer->base);
131 bt_ctf_object_put_ref(writer->trace);
132
133 /* Default to little-endian */
134 ret = bt_ctf_writer_set_byte_order(writer, BT_CTF_BYTE_ORDER_NATIVE);
135 BT_ASSERT_DBG(ret == 0);
136
137 /* Create trace directory if necessary and open a metadata file */
138 if (g_mkdir_with_parents(path, S_IRWXU | S_IRWXG)) {
139 perror("g_mkdir_with_parents");
140 goto error_destroy;
141 }
142
143 writer->metadata_fd = open(metadata_path,
144 O_WRONLY | O_CREAT | O_TRUNC,
145 S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP);
146 if (writer->metadata_fd < 0) {
147 perror("open");
148 goto error_destroy;
149 }
150
151 g_free(metadata_path);
152 return writer;
153
154error_destroy:
155 BT_CTF_OBJECT_PUT_REF_AND_RESET(writer);
156error:
157 g_free(metadata_path);
158 return writer;
159}
160
161void bt_ctf_writer_destroy(struct bt_ctf_object *obj)
162{
163 struct bt_ctf_writer *writer;
164
165 writer = container_of(obj, struct bt_ctf_writer, base);
166 bt_ctf_writer_flush_metadata(writer);
167 if (writer->path) {
168 g_string_free(writer->path, TRUE);
169 }
170
171 if (writer->metadata_fd > 0) {
172 if (close(writer->metadata_fd)) {
173 perror("close");
174 }
175 }
176
177 bt_ctf_object_try_spec_release(&writer->trace->common.base);
178 g_free(writer);
179}
180
181struct bt_ctf_trace *bt_ctf_writer_get_trace(struct bt_ctf_writer *writer)
182{
183 struct bt_ctf_trace *trace = NULL;
184
185 if (!writer) {
186 goto end;
187 }
188
189 trace = writer->trace;
190 bt_ctf_object_get_ref(trace);
191end:
192 return trace;
193}
194
195struct bt_ctf_stream *bt_ctf_writer_create_stream(struct bt_ctf_writer *writer,
196 struct bt_ctf_stream_class *stream_class)
197{
198 struct bt_ctf_stream *stream = NULL;
199 int stream_class_count;
200 bt_ctf_bool stream_class_found = BT_CTF_FALSE;
201 int i;
202
203 if (!writer || !stream_class) {
204 goto error;
205 }
206
207 /* Make sure the stream class is part of the writer's trace */
208 stream_class_count = bt_ctf_trace_get_stream_class_count(writer->trace);
209 if (stream_class_count < 0) {
210 goto error;
211 }
212
213 for (i = 0; i < stream_class_count; i++) {
214 struct bt_ctf_stream_class *existing_stream_class =
215 bt_ctf_trace_get_stream_class_by_index(
216 writer->trace, i);
217
218 if (existing_stream_class == stream_class) {
219 stream_class_found = BT_CTF_TRUE;
220 }
221
222 BT_CTF_OBJECT_PUT_REF_AND_RESET(existing_stream_class);
223
224 if (stream_class_found) {
225 break;
226 }
227 }
228
229 if (!stream_class_found) {
230 int ret = bt_ctf_trace_add_stream_class(writer->trace,
231 stream_class);
232
233 if (ret) {
234 goto error;
235 }
236 }
237
238 stream = bt_ctf_stream_create_with_id(stream_class, NULL, -1ULL);
239 if (!stream) {
240 goto error;
241 }
242
243 return stream;
244
245error:
246 BT_CTF_OBJECT_PUT_REF_AND_RESET(stream);
247 return stream;
248}
249
250int bt_ctf_writer_add_environment_field(struct bt_ctf_writer *writer,
251 const char *name,
252 const char *value)
253{
254 int ret = -1;
255
256 if (!writer || !name || !value) {
257 goto end;
258 }
259
260 ret = bt_ctf_trace_set_environment_field_string(writer->trace,
261 name, value);
262end:
263 return ret;
264}
265
266int bt_ctf_writer_add_environment_field_int64(struct bt_ctf_writer *writer,
267 const char *name, int64_t value)
268{
269 int ret = -1;
270
271 if (!writer || !name) {
272 goto end;
273 }
274
275 ret = bt_ctf_trace_set_environment_field_integer(writer->trace, name,
276 value);
277end:
278 return ret;
279}
280
281int bt_ctf_writer_add_clock(struct bt_ctf_writer *writer,
282 struct bt_ctf_clock *clock)
283{
284 int ret = -1;
285
286 if (!writer || !clock) {
287 goto end;
288 }
289
290 ret = bt_ctf_trace_add_clock_class(writer->trace, clock->clock_class);
291end:
292 return ret;
293}
294
295char *bt_ctf_writer_get_metadata_string(struct bt_ctf_writer *writer)
296{
297 char *metadata_string = NULL;
298
299 if (!writer) {
300 goto end;
301 }
302
303 metadata_string = bt_ctf_trace_get_metadata_string(
304 writer->trace);
305end:
306 return metadata_string;
307}
308
309void bt_ctf_writer_flush_metadata(struct bt_ctf_writer *writer)
310{
311 int ret;
312 char *metadata_string = NULL;
313
314 if (!writer) {
315 goto end;
316 }
317
318 metadata_string = bt_ctf_trace_get_metadata_string(
319 writer->trace);
320 if (!metadata_string) {
321 goto end;
322 }
323
324 if (lseek(writer->metadata_fd, 0, SEEK_SET) == (off_t)-1) {
325 perror("lseek");
326 goto end;
327 }
328
329 if (ftruncate(writer->metadata_fd, 0)) {
330 perror("ftruncate");
331 goto end;
332 }
333
334 ret = write(writer->metadata_fd, metadata_string,
335 strlen(metadata_string));
336 if (ret < 0) {
337 perror("write");
338 goto end;
339 }
340end:
341 g_free(metadata_string);
342}
343
344int bt_ctf_writer_set_byte_order(struct bt_ctf_writer *writer,
345 enum bt_ctf_byte_order byte_order)
346{
347 int ret = 0;
348
349 if (!writer || writer->frozen) {
350 ret = -1;
351 goto end;
352 }
353
354 if (byte_order == BT_CTF_BYTE_ORDER_NATIVE) {
355 if (BYTE_ORDER == LITTLE_ENDIAN) {
356 byte_order = BT_CTF_BYTE_ORDER_LITTLE_ENDIAN;
357 } else {
358 byte_order = BT_CTF_BYTE_ORDER_BIG_ENDIAN;
359 }
360 }
361
362 ret = bt_ctf_trace_set_native_byte_order(writer->trace,
363 byte_order);
364end:
365 return ret;
366}
367
368BT_HIDDEN
369void bt_ctf_writer_freeze(struct bt_ctf_writer *writer)
370{
371 writer->frozen = 1;
372}
373
374static
375const unsigned int field_type_aliases_alignments[] = {
376 [FIELD_TYPE_ALIAS_UINT5_T] = 1,
377 [FIELD_TYPE_ALIAS_UINT8_T ... FIELD_TYPE_ALIAS_UINT16_T] = 8,
378 [FIELD_TYPE_ALIAS_UINT27_T] = 1,
379 [FIELD_TYPE_ALIAS_UINT32_T ... FIELD_TYPE_ALIAS_UINT64_T] = 8,
380};
381
382static
383const unsigned int field_type_aliases_sizes[] = {
384 [FIELD_TYPE_ALIAS_UINT5_T] = 5,
385 [FIELD_TYPE_ALIAS_UINT8_T] = 8,
386 [FIELD_TYPE_ALIAS_UINT16_T] = 16,
387 [FIELD_TYPE_ALIAS_UINT27_T] = 27,
388 [FIELD_TYPE_ALIAS_UINT32_T] = 32,
389 [FIELD_TYPE_ALIAS_UINT64_T] = 64,
390};
391
392BT_HIDDEN
393struct bt_ctf_field_type *get_field_type(enum field_type_alias alias)
394{
395 int ret;
396 unsigned int alignment, size;
397 struct bt_ctf_field_type *field_type = NULL;
398
399 if (alias >= NR_FIELD_TYPE_ALIAS) {
400 goto end;
401 }
402
403 alignment = field_type_aliases_alignments[alias];
404 size = field_type_aliases_sizes[alias];
405 field_type = bt_ctf_field_type_integer_create(size);
406 ret = bt_ctf_field_type_set_alignment(field_type, alignment);
407 if (ret) {
408 BT_CTF_OBJECT_PUT_REF_AND_RESET(field_type);
409 }
410end:
411 return field_type;
412}
413
414BT_HIDDEN
415const char *bt_ctf_get_byte_order_string(enum bt_ctf_byte_order byte_order)
416{
417 const char *string;
418
419 switch (byte_order) {
420 case BT_CTF_BYTE_ORDER_LITTLE_ENDIAN:
421 string = "le";
422 break;
423 case BT_CTF_BYTE_ORDER_BIG_ENDIAN:
424 string = "be";
425 break;
426 case BT_CTF_BYTE_ORDER_NATIVE:
427 string = "native";
428 break;
429 default:
430 bt_common_abort();
431 }
432
433 return string;
434}
This page took 0.023979 seconds and 4 git commands to generate.