Cleanup: Use a switch case instead of conditionals
[babeltrace.git] / formats / ctf / ir / trace.c
CommitLineData
bc37ae52
JG
1/*
2 * trace.c
3 *
4 * Babeltrace CTF IR - Trace
5 *
6 * Copyright 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#include <babeltrace/ctf-ir/trace-internal.h>
30#include <babeltrace/ctf-ir/clock-internal.h>
31#include <babeltrace/ctf-ir/stream-internal.h>
32#include <babeltrace/ctf-ir/stream-class-internal.h>
33#include <babeltrace/ctf-writer/functor-internal.h>
34#include <babeltrace/ctf-ir/event-types-internal.h>
654c1444 35#include <babeltrace/ctf-ir/utils.h>
bc37ae52
JG
36#include <babeltrace/compiler.h>
37
38#define DEFAULT_IDENTIFIER_SIZE 128
39#define DEFAULT_METADATA_STRING_SIZE 4096
40
41static
42void environment_variable_destroy(struct environment_variable *var);
43static
44void bt_ctf_trace_destroy(struct bt_ctf_ref *ref);
45static
46int init_trace_packet_header(struct bt_ctf_trace *trace);
47
bc37ae52
JG
48static
49const unsigned int field_type_aliases_alignments[] = {
50 [FIELD_TYPE_ALIAS_UINT5_T] = 1,
51 [FIELD_TYPE_ALIAS_UINT8_T ... FIELD_TYPE_ALIAS_UINT16_T] = 8,
52 [FIELD_TYPE_ALIAS_UINT27_T] = 1,
53 [FIELD_TYPE_ALIAS_UINT32_T ... FIELD_TYPE_ALIAS_UINT64_T] = 8,
54};
55
56static
57const unsigned int field_type_aliases_sizes[] = {
58 [FIELD_TYPE_ALIAS_UINT5_T] = 5,
59 [FIELD_TYPE_ALIAS_UINT8_T] = 8,
60 [FIELD_TYPE_ALIAS_UINT16_T] = 16,
61 [FIELD_TYPE_ALIAS_UINT27_T] = 27,
62 [FIELD_TYPE_ALIAS_UINT32_T] = 32,
63 [FIELD_TYPE_ALIAS_UINT64_T] = 64,
64};
65
bc37ae52
JG
66struct bt_ctf_trace *bt_ctf_trace_create(void)
67{
68 struct bt_ctf_trace *trace = NULL;
69
70 trace = g_new0(struct bt_ctf_trace, 1);
71 if (!trace) {
72 goto error;
73 }
74
75 bt_ctf_trace_set_byte_order(trace, BT_CTF_BYTE_ORDER_NATIVE);
76 bt_ctf_ref_init(&trace->ref_count);
77 trace->environment = g_ptr_array_new_with_free_func(
78 (GDestroyNotify)environment_variable_destroy);
79 trace->clocks = g_ptr_array_new_with_free_func(
80 (GDestroyNotify)bt_ctf_clock_put);
81 trace->streams = g_ptr_array_new_with_free_func(
82 (GDestroyNotify)bt_ctf_stream_put);
83 trace->stream_classes = g_ptr_array_new_with_free_func(
84 (GDestroyNotify)bt_ctf_stream_class_put);
85 if (!trace->environment || !trace->clocks ||
86 !trace->stream_classes || !trace->streams) {
87 goto error_destroy;
88 }
89
90 /* Generate a trace UUID */
91 uuid_generate(trace->uuid);
92 if (init_trace_packet_header(trace)) {
93 goto error_destroy;
94 }
95
96 return trace;
97
98error_destroy:
99 bt_ctf_trace_destroy(&trace->ref_count);
100 trace = NULL;
101error:
102 return trace;
103}
104
105void bt_ctf_trace_destroy(struct bt_ctf_ref *ref)
106{
107 struct bt_ctf_trace *trace;
108
109 if (!ref) {
110 return;
111 }
112
113 trace = container_of(ref, struct bt_ctf_trace, ref_count);
114 if (trace->environment) {
115 g_ptr_array_free(trace->environment, TRUE);
116 }
117
118 if (trace->clocks) {
119 g_ptr_array_free(trace->clocks, TRUE);
120 }
121
122 if (trace->streams) {
123 g_ptr_array_free(trace->streams, TRUE);
124 }
125
126 if (trace->stream_classes) {
127 g_ptr_array_free(trace->stream_classes, TRUE);
128 }
129
d246b111 130 bt_ctf_field_type_put(trace->packet_header_type);
bc37ae52
JG
131 g_free(trace);
132}
133
134struct bt_ctf_stream *bt_ctf_trace_create_stream(struct bt_ctf_trace *trace,
135 struct bt_ctf_stream_class *stream_class)
136{
137 int ret;
138 int stream_class_found = 0;
139 size_t i;
140 struct bt_ctf_stream *stream = NULL;
141
142 if (!trace || !stream_class) {
143 goto error;
144 }
145
d246b111 146 stream = bt_ctf_stream_create(stream_class, trace);
bc37ae52
JG
147 if (!stream) {
148 goto error;
149 }
150
151 for (i = 0; i < trace->stream_classes->len; i++) {
152 if (trace->stream_classes->pdata[i] == stream_class) {
153 stream_class_found = 1;
154 }
155 }
156
157 if (!stream_class_found) {
158 int64_t stream_id = bt_ctf_stream_class_get_id(stream_class);
159
160 if (stream_id < 0) {
161 /* Try to assign a new stream id */
162 if (bt_ctf_stream_class_set_id(stream->stream_class,
163 trace->next_stream_id++)) {
164 goto error;
165 }
166 }
167
168 for (i = 0; i < trace->stream_classes->len; i++) {
169 if (stream_id == bt_ctf_stream_class_get_id(
170 trace->stream_classes->pdata[i])) {
171 /* Duplicate stream id found */
172 goto error;
173 }
174 }
175 bt_ctf_stream_class_get(stream->stream_class);
176 g_ptr_array_add(trace->stream_classes, stream->stream_class);
177 }
178
179 bt_ctf_stream_get(stream);
180 g_ptr_array_add(trace->streams, stream);
c35a1669
JG
181
182 /*
183 * Freeze the trace and its packet header.
184 *
185 * All field type byte orders set as "native" byte ordering can now be
186 * safely set to trace's own endianness, including the stream class'.
187 */
188 bt_ctf_field_type_set_native_byte_order(trace->packet_header_type,
189 trace->byte_order);
190 ret = bt_ctf_stream_class_set_byte_order(stream_class,
191 trace->byte_order == LITTLE_ENDIAN ?
192 BT_CTF_BYTE_ORDER_LITTLE_ENDIAN : BT_CTF_BYTE_ORDER_BIG_ENDIAN);
193 if (ret) {
194 goto error;
195 }
196
29d9d76c 197 bt_ctf_stream_class_freeze(stream_class);
bc37ae52
JG
198 trace->frozen = 1;
199 return stream;
bc37ae52
JG
200error:
201 bt_ctf_stream_put(stream);
202 return NULL;
203}
204
205int bt_ctf_trace_add_environment_field(struct bt_ctf_trace *trace,
206 const char *name,
207 const char *value)
208{
209 struct environment_variable *var = NULL;
210 char *escaped_value = NULL;
211 int ret = 0;
212
654c1444 213 if (!trace || !name || !value || bt_ctf_validate_identifier(name)) {
bc37ae52
JG
214 ret = -1;
215 goto error;
216 }
217
218 if (strchr(name, ' ')) {
219 ret = -1;
220 goto error;
221 }
222
223 var = g_new0(struct environment_variable, 1);
224 if (!var) {
225 ret = -1;
226 goto error;
227 }
228
229 escaped_value = g_strescape(value, NULL);
230 if (!escaped_value) {
231 ret = -1;
232 goto error;
233 }
234
235 var->name = g_string_new(name);
236 var->value = g_string_new(escaped_value);
237 g_free(escaped_value);
238 if (!var->name || !var->value) {
239 ret = -1;
240 goto error;
241 }
242
243 g_ptr_array_add(trace->environment, var);
244 return ret;
245
246error:
247 if (var && var->name) {
248 g_string_free(var->name, TRUE);
249 }
250
251 if (var && var->value) {
252 g_string_free(var->value, TRUE);
253 }
254
255 g_free(var);
256 return ret;
257}
258
259int bt_ctf_trace_add_clock(struct bt_ctf_trace *trace,
260 struct bt_ctf_clock *clock)
261{
262 int ret = 0;
263 struct search_query query = { .value = clock, .found = 0 };
264
265 if (!trace || !clock) {
266 ret = -1;
267 goto end;
268 }
269
270 /* Check for duplicate clocks */
271 g_ptr_array_foreach(trace->clocks, value_exists, &query);
272 if (query.found) {
273 ret = -1;
274 goto end;
275 }
276
277 bt_ctf_clock_get(clock);
278 g_ptr_array_add(trace->clocks, clock);
279end:
280 return ret;
281}
282
884cd6c3
JG
283int bt_ctf_trace_get_clock_count(struct bt_ctf_trace *trace)
284{
285 int ret = -1;
286
287 if (!trace) {
288 goto end;
289 }
290
291 ret = trace->clocks->len;
292end:
293 return ret;
294}
295
296struct bt_ctf_clock *bt_ctf_trace_get_clock(struct bt_ctf_trace *trace,
297 int index)
298{
299 struct bt_ctf_clock *clock = NULL;
300
301 if (!trace || index < 0 || index >= trace->clocks->len) {
302 goto end;
303 }
304
305 clock = g_ptr_array_index(trace->clocks, index);
306 bt_ctf_clock_get(clock);
307end:
308 return clock;
309}
310
bc37ae52
JG
311BT_HIDDEN
312const char *get_byte_order_string(int byte_order)
313{
314 const char *string;
315
316 switch (byte_order) {
317 case LITTLE_ENDIAN:
318 string = "le";
319 break;
320 case BIG_ENDIAN:
321 string = "be";
322 break;
323 default:
324 string = "unknown";
325 break;
326 }
327
328 return string;
329}
330
331static
332int append_trace_metadata(struct bt_ctf_trace *trace,
333 struct metadata_context *context)
334{
335 unsigned char *uuid = trace->uuid;
336 int ret;
337
338 g_string_append(context->string, "trace {\n");
339
340 g_string_append(context->string, "\tmajor = 1;\n");
341 g_string_append(context->string, "\tminor = 8;\n");
342
343 g_string_append_printf(context->string,
344 "\tuuid = \"%02x%02x%02x%02x-%02x%02x-%02x%02x-%02x%02x-%02x%02x%02x%02x%02x%02x\";\n",
345 uuid[0], uuid[1], uuid[2], uuid[3],
346 uuid[4], uuid[5], uuid[6], uuid[7],
347 uuid[8], uuid[9], uuid[10], uuid[11],
348 uuid[12], uuid[13], uuid[14], uuid[15]);
349 g_string_append_printf(context->string, "\tbyte_order = %s;\n",
350 get_byte_order_string(trace->byte_order));
351
352 g_string_append(context->string, "\tpacket.header := ");
353 context->current_indentation_level++;
354 g_string_assign(context->field_name, "");
d246b111 355 ret = bt_ctf_field_type_serialize(trace->packet_header_type,
bc37ae52
JG
356 context);
357 if (ret) {
358 goto end;
359 }
360 context->current_indentation_level--;
361
362 g_string_append(context->string, ";\n};\n\n");
363end:
364 return ret;
365}
366
367static
368void append_env_field_metadata(struct environment_variable *var,
369 struct metadata_context *context)
370{
371 g_string_append_printf(context->string, "\t%s = \"%s\";\n",
372 var->name->str, var->value->str);
373}
374
375static
376void append_env_metadata(struct bt_ctf_trace *trace,
377 struct metadata_context *context)
378{
379 if (trace->environment->len == 0) {
380 return;
381 }
382
383 g_string_append(context->string, "env {\n");
384 g_ptr_array_foreach(trace->environment,
385 (GFunc)append_env_field_metadata, context);
386 g_string_append(context->string, "};\n\n");
387}
388
389char *bt_ctf_trace_get_metadata_string(struct bt_ctf_trace *trace)
390{
391 char *metadata = NULL;
392 struct metadata_context *context = NULL;
393 int err = 0;
394 size_t i;
395
396 if (!trace) {
397 goto end;
398 }
399
400 context = g_new0(struct metadata_context, 1);
401 if (!context) {
402 goto end;
403 }
404
405 context->field_name = g_string_sized_new(DEFAULT_IDENTIFIER_SIZE);
406 context->string = g_string_sized_new(DEFAULT_METADATA_STRING_SIZE);
407 g_string_append(context->string, "/* CTF 1.8 */\n\n");
408 if (append_trace_metadata(trace, context)) {
409 goto error;
410 }
411 append_env_metadata(trace, context);
412 g_ptr_array_foreach(trace->clocks,
413 (GFunc)bt_ctf_clock_serialize, context);
414
415 for (i = 0; i < trace->stream_classes->len; i++) {
416 err = bt_ctf_stream_class_serialize(
417 trace->stream_classes->pdata[i], context);
418 if (err) {
419 goto error;
420 }
421 }
422
423 metadata = context->string->str;
424error:
425 g_string_free(context->string, err ? TRUE : FALSE);
426 g_string_free(context->field_name, TRUE);
427 g_free(context);
428end:
429 return metadata;
430}
431
432int bt_ctf_trace_set_byte_order(struct bt_ctf_trace *trace,
433 enum bt_ctf_byte_order byte_order)
434{
435 int ret = 0;
436 int internal_byte_order;
437
438 if (!trace || trace->frozen) {
439 ret = -1;
440 goto end;
441 }
442
443 switch (byte_order) {
444 case BT_CTF_BYTE_ORDER_NATIVE:
c35a1669
JG
445 /*
446 * This doesn't make sense since the CTF specification defines
447 * the "native" byte order as "the byte order described in the
448 * trace description". However, this behavior had been
449 * implemented as part of v1.2 and is kept to maintain
450 * compatibility.
451 *
452 * This may be changed on a major version bump only.
453 */
454 internal_byte_order = (G_BYTE_ORDER == G_LITTLE_ENDIAN) ?
bc37ae52
JG
455 LITTLE_ENDIAN : BIG_ENDIAN;
456 break;
457 case BT_CTF_BYTE_ORDER_LITTLE_ENDIAN:
458 internal_byte_order = LITTLE_ENDIAN;
459 break;
460 case BT_CTF_BYTE_ORDER_BIG_ENDIAN:
461 case BT_CTF_BYTE_ORDER_NETWORK:
462 internal_byte_order = BIG_ENDIAN;
463 break;
464 default:
465 ret = -1;
466 goto end;
467 }
468
469 trace->byte_order = internal_byte_order;
d246b111 470 if (trace->packet_header_type) {
bc37ae52
JG
471 init_trace_packet_header(trace);
472 }
473end:
474 return ret;
475}
476
d246b111
JG
477struct bt_ctf_field_type *bt_ctf_trace_get_packet_header_type(
478 struct bt_ctf_trace *trace)
479{
480 struct bt_ctf_field_type *field_type = NULL;
481
482 if (!trace) {
483 goto end;
484 }
485
486 bt_ctf_field_type_get(trace->packet_header_type);
487 field_type = trace->packet_header_type;
488end:
489 return field_type;
490}
491
492int bt_ctf_trace_set_packet_header_type(struct bt_ctf_trace *trace,
493 struct bt_ctf_field_type *packet_header_type)
494{
495 int ret = 0;
496
497 if (!trace || !packet_header_type || trace->frozen) {
498 ret = -1;
499 goto end;
500 }
501
502 /* packet_header_type must be a structure */
503 if (bt_ctf_field_type_get_type_id(packet_header_type) !=
504 CTF_TYPE_STRUCT) {
505 ret = -1;
506 goto end;
507 }
508
509 bt_ctf_field_type_get(packet_header_type);
510 bt_ctf_field_type_put(trace->packet_header_type);
511 trace->packet_header_type = packet_header_type;
512end:
513 return ret;
514}
515
bc37ae52
JG
516void bt_ctf_trace_get(struct bt_ctf_trace *trace)
517{
518 if (!trace) {
519 return;
520 }
521
522 bt_ctf_ref_get(&trace->ref_count);
523}
524
525void bt_ctf_trace_put(struct bt_ctf_trace *trace)
526{
527 if (!trace) {
528 return;
529 }
530
531 bt_ctf_ref_put(&trace->ref_count, bt_ctf_trace_destroy);
532}
533
bc37ae52
JG
534BT_HIDDEN
535struct bt_ctf_field_type *get_field_type(enum field_type_alias alias)
536{
537 unsigned int alignment, size;
538 struct bt_ctf_field_type *field_type;
539
540 if (alias >= NR_FIELD_TYPE_ALIAS) {
541 return NULL;
542 }
543
544 alignment = field_type_aliases_alignments[alias];
545 size = field_type_aliases_sizes[alias];
546 field_type = bt_ctf_field_type_integer_create(size);
547 bt_ctf_field_type_set_alignment(field_type, alignment);
548 return field_type;
549}
550
551static
552int init_trace_packet_header(struct bt_ctf_trace *trace)
553{
bc37ae52 554 int ret = 0;
d246b111 555 struct bt_ctf_field *magic = NULL, *uuid_array = NULL;
bc37ae52
JG
556 struct bt_ctf_field_type *_uint32_t =
557 get_field_type(FIELD_TYPE_ALIAS_UINT32_T);
558 struct bt_ctf_field_type *_uint8_t =
559 get_field_type(FIELD_TYPE_ALIAS_UINT8_T);
560 struct bt_ctf_field_type *trace_packet_header_type =
561 bt_ctf_field_type_structure_create();
562 struct bt_ctf_field_type *uuid_array_type =
563 bt_ctf_field_type_array_create(_uint8_t, 16);
564
565 if (!trace_packet_header_type || !uuid_array_type) {
566 ret = -1;
567 goto end;
568 }
569
bc37ae52
JG
570 ret = bt_ctf_field_type_structure_add_field(trace_packet_header_type,
571 _uint32_t, "magic");
572 if (ret) {
573 goto end;
574 }
575
576 ret = bt_ctf_field_type_structure_add_field(trace_packet_header_type,
577 uuid_array_type, "uuid");
578 if (ret) {
579 goto end;
580 }
581
582 ret = bt_ctf_field_type_structure_add_field(trace_packet_header_type,
583 _uint32_t, "stream_id");
584 if (ret) {
585 goto end;
586 }
587
d246b111
JG
588 bt_ctf_field_type_put(trace->packet_header_type);
589 trace->packet_header_type = trace_packet_header_type;
bc37ae52
JG
590end:
591 bt_ctf_field_type_put(uuid_array_type);
592 bt_ctf_field_type_put(_uint32_t);
593 bt_ctf_field_type_put(_uint8_t);
594 bt_ctf_field_put(magic);
595 bt_ctf_field_put(uuid_array);
596 if (ret) {
597 bt_ctf_field_type_put(trace_packet_header_type);
bc37ae52
JG
598 }
599
600 return ret;
601}
602
603static
604void environment_variable_destroy(struct environment_variable *var)
605{
606 g_string_free(var->name, TRUE);
607 g_string_free(var->value, TRUE);
608 g_free(var);
609}
This page took 0.046287 seconds and 4 git commands to generate.