Add utility function to validate CTF identifiers
[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
146 ret = bt_ctf_stream_class_set_byte_order(stream_class,
147 trace->byte_order == LITTLE_ENDIAN ?
148 BT_CTF_BYTE_ORDER_LITTLE_ENDIAN : BT_CTF_BYTE_ORDER_BIG_ENDIAN);
149 if (ret) {
150 goto error;
151 }
152
d246b111 153 stream = bt_ctf_stream_create(stream_class, trace);
bc37ae52
JG
154 if (!stream) {
155 goto error;
156 }
157
158 for (i = 0; i < trace->stream_classes->len; i++) {
159 if (trace->stream_classes->pdata[i] == stream_class) {
160 stream_class_found = 1;
161 }
162 }
163
164 if (!stream_class_found) {
165 int64_t stream_id = bt_ctf_stream_class_get_id(stream_class);
166
167 if (stream_id < 0) {
168 /* Try to assign a new stream id */
169 if (bt_ctf_stream_class_set_id(stream->stream_class,
170 trace->next_stream_id++)) {
171 goto error;
172 }
173 }
174
175 for (i = 0; i < trace->stream_classes->len; i++) {
176 if (stream_id == bt_ctf_stream_class_get_id(
177 trace->stream_classes->pdata[i])) {
178 /* Duplicate stream id found */
179 goto error;
180 }
181 }
182 bt_ctf_stream_class_get(stream->stream_class);
183 g_ptr_array_add(trace->stream_classes, stream->stream_class);
184 }
185
186 bt_ctf_stream_get(stream);
187 g_ptr_array_add(trace->streams, stream);
188 trace->frozen = 1;
189 return stream;
190
191error:
192 bt_ctf_stream_put(stream);
193 return NULL;
194}
195
196int bt_ctf_trace_add_environment_field(struct bt_ctf_trace *trace,
197 const char *name,
198 const char *value)
199{
200 struct environment_variable *var = NULL;
201 char *escaped_value = NULL;
202 int ret = 0;
203
654c1444 204 if (!trace || !name || !value || bt_ctf_validate_identifier(name)) {
bc37ae52
JG
205 ret = -1;
206 goto error;
207 }
208
209 if (strchr(name, ' ')) {
210 ret = -1;
211 goto error;
212 }
213
214 var = g_new0(struct environment_variable, 1);
215 if (!var) {
216 ret = -1;
217 goto error;
218 }
219
220 escaped_value = g_strescape(value, NULL);
221 if (!escaped_value) {
222 ret = -1;
223 goto error;
224 }
225
226 var->name = g_string_new(name);
227 var->value = g_string_new(escaped_value);
228 g_free(escaped_value);
229 if (!var->name || !var->value) {
230 ret = -1;
231 goto error;
232 }
233
234 g_ptr_array_add(trace->environment, var);
235 return ret;
236
237error:
238 if (var && var->name) {
239 g_string_free(var->name, TRUE);
240 }
241
242 if (var && var->value) {
243 g_string_free(var->value, TRUE);
244 }
245
246 g_free(var);
247 return ret;
248}
249
250int bt_ctf_trace_add_clock(struct bt_ctf_trace *trace,
251 struct bt_ctf_clock *clock)
252{
253 int ret = 0;
254 struct search_query query = { .value = clock, .found = 0 };
255
256 if (!trace || !clock) {
257 ret = -1;
258 goto end;
259 }
260
261 /* Check for duplicate clocks */
262 g_ptr_array_foreach(trace->clocks, value_exists, &query);
263 if (query.found) {
264 ret = -1;
265 goto end;
266 }
267
268 bt_ctf_clock_get(clock);
269 g_ptr_array_add(trace->clocks, clock);
270end:
271 return ret;
272}
273
884cd6c3
JG
274int bt_ctf_trace_get_clock_count(struct bt_ctf_trace *trace)
275{
276 int ret = -1;
277
278 if (!trace) {
279 goto end;
280 }
281
282 ret = trace->clocks->len;
283end:
284 return ret;
285}
286
287struct bt_ctf_clock *bt_ctf_trace_get_clock(struct bt_ctf_trace *trace,
288 int index)
289{
290 struct bt_ctf_clock *clock = NULL;
291
292 if (!trace || index < 0 || index >= trace->clocks->len) {
293 goto end;
294 }
295
296 clock = g_ptr_array_index(trace->clocks, index);
297 bt_ctf_clock_get(clock);
298end:
299 return clock;
300}
301
bc37ae52
JG
302BT_HIDDEN
303const char *get_byte_order_string(int byte_order)
304{
305 const char *string;
306
307 switch (byte_order) {
308 case LITTLE_ENDIAN:
309 string = "le";
310 break;
311 case BIG_ENDIAN:
312 string = "be";
313 break;
314 default:
315 string = "unknown";
316 break;
317 }
318
319 return string;
320}
321
322static
323int append_trace_metadata(struct bt_ctf_trace *trace,
324 struct metadata_context *context)
325{
326 unsigned char *uuid = trace->uuid;
327 int ret;
328
329 g_string_append(context->string, "trace {\n");
330
331 g_string_append(context->string, "\tmajor = 1;\n");
332 g_string_append(context->string, "\tminor = 8;\n");
333
334 g_string_append_printf(context->string,
335 "\tuuid = \"%02x%02x%02x%02x-%02x%02x-%02x%02x-%02x%02x-%02x%02x%02x%02x%02x%02x\";\n",
336 uuid[0], uuid[1], uuid[2], uuid[3],
337 uuid[4], uuid[5], uuid[6], uuid[7],
338 uuid[8], uuid[9], uuid[10], uuid[11],
339 uuid[12], uuid[13], uuid[14], uuid[15]);
340 g_string_append_printf(context->string, "\tbyte_order = %s;\n",
341 get_byte_order_string(trace->byte_order));
342
343 g_string_append(context->string, "\tpacket.header := ");
344 context->current_indentation_level++;
345 g_string_assign(context->field_name, "");
d246b111 346 ret = bt_ctf_field_type_serialize(trace->packet_header_type,
bc37ae52
JG
347 context);
348 if (ret) {
349 goto end;
350 }
351 context->current_indentation_level--;
352
353 g_string_append(context->string, ";\n};\n\n");
354end:
355 return ret;
356}
357
358static
359void append_env_field_metadata(struct environment_variable *var,
360 struct metadata_context *context)
361{
362 g_string_append_printf(context->string, "\t%s = \"%s\";\n",
363 var->name->str, var->value->str);
364}
365
366static
367void append_env_metadata(struct bt_ctf_trace *trace,
368 struct metadata_context *context)
369{
370 if (trace->environment->len == 0) {
371 return;
372 }
373
374 g_string_append(context->string, "env {\n");
375 g_ptr_array_foreach(trace->environment,
376 (GFunc)append_env_field_metadata, context);
377 g_string_append(context->string, "};\n\n");
378}
379
380char *bt_ctf_trace_get_metadata_string(struct bt_ctf_trace *trace)
381{
382 char *metadata = NULL;
383 struct metadata_context *context = NULL;
384 int err = 0;
385 size_t i;
386
387 if (!trace) {
388 goto end;
389 }
390
391 context = g_new0(struct metadata_context, 1);
392 if (!context) {
393 goto end;
394 }
395
396 context->field_name = g_string_sized_new(DEFAULT_IDENTIFIER_SIZE);
397 context->string = g_string_sized_new(DEFAULT_METADATA_STRING_SIZE);
398 g_string_append(context->string, "/* CTF 1.8 */\n\n");
399 if (append_trace_metadata(trace, context)) {
400 goto error;
401 }
402 append_env_metadata(trace, context);
403 g_ptr_array_foreach(trace->clocks,
404 (GFunc)bt_ctf_clock_serialize, context);
405
406 for (i = 0; i < trace->stream_classes->len; i++) {
407 err = bt_ctf_stream_class_serialize(
408 trace->stream_classes->pdata[i], context);
409 if (err) {
410 goto error;
411 }
412 }
413
414 metadata = context->string->str;
415error:
416 g_string_free(context->string, err ? TRUE : FALSE);
417 g_string_free(context->field_name, TRUE);
418 g_free(context);
419end:
420 return metadata;
421}
422
423int bt_ctf_trace_set_byte_order(struct bt_ctf_trace *trace,
424 enum bt_ctf_byte_order byte_order)
425{
426 int ret = 0;
427 int internal_byte_order;
428
429 if (!trace || trace->frozen) {
430 ret = -1;
431 goto end;
432 }
433
434 switch (byte_order) {
435 case BT_CTF_BYTE_ORDER_NATIVE:
436 internal_byte_order = (G_BYTE_ORDER == G_LITTLE_ENDIAN) ?
437 LITTLE_ENDIAN : BIG_ENDIAN;
438 break;
439 case BT_CTF_BYTE_ORDER_LITTLE_ENDIAN:
440 internal_byte_order = LITTLE_ENDIAN;
441 break;
442 case BT_CTF_BYTE_ORDER_BIG_ENDIAN:
443 case BT_CTF_BYTE_ORDER_NETWORK:
444 internal_byte_order = BIG_ENDIAN;
445 break;
446 default:
447 ret = -1;
448 goto end;
449 }
450
451 trace->byte_order = internal_byte_order;
d246b111 452 if (trace->packet_header_type) {
bc37ae52
JG
453 init_trace_packet_header(trace);
454 }
455end:
456 return ret;
457}
458
d246b111
JG
459struct bt_ctf_field_type *bt_ctf_trace_get_packet_header_type(
460 struct bt_ctf_trace *trace)
461{
462 struct bt_ctf_field_type *field_type = NULL;
463
464 if (!trace) {
465 goto end;
466 }
467
468 bt_ctf_field_type_get(trace->packet_header_type);
469 field_type = trace->packet_header_type;
470end:
471 return field_type;
472}
473
474int bt_ctf_trace_set_packet_header_type(struct bt_ctf_trace *trace,
475 struct bt_ctf_field_type *packet_header_type)
476{
477 int ret = 0;
478
479 if (!trace || !packet_header_type || trace->frozen) {
480 ret = -1;
481 goto end;
482 }
483
484 /* packet_header_type must be a structure */
485 if (bt_ctf_field_type_get_type_id(packet_header_type) !=
486 CTF_TYPE_STRUCT) {
487 ret = -1;
488 goto end;
489 }
490
491 bt_ctf_field_type_get(packet_header_type);
492 bt_ctf_field_type_put(trace->packet_header_type);
493 trace->packet_header_type = packet_header_type;
494end:
495 return ret;
496}
497
bc37ae52
JG
498void bt_ctf_trace_get(struct bt_ctf_trace *trace)
499{
500 if (!trace) {
501 return;
502 }
503
504 bt_ctf_ref_get(&trace->ref_count);
505}
506
507void bt_ctf_trace_put(struct bt_ctf_trace *trace)
508{
509 if (!trace) {
510 return;
511 }
512
513 bt_ctf_ref_put(&trace->ref_count, bt_ctf_trace_destroy);
514}
515
bc37ae52
JG
516BT_HIDDEN
517struct bt_ctf_field_type *get_field_type(enum field_type_alias alias)
518{
519 unsigned int alignment, size;
520 struct bt_ctf_field_type *field_type;
521
522 if (alias >= NR_FIELD_TYPE_ALIAS) {
523 return NULL;
524 }
525
526 alignment = field_type_aliases_alignments[alias];
527 size = field_type_aliases_sizes[alias];
528 field_type = bt_ctf_field_type_integer_create(size);
529 bt_ctf_field_type_set_alignment(field_type, alignment);
530 return field_type;
531}
532
533static
534int init_trace_packet_header(struct bt_ctf_trace *trace)
535{
bc37ae52 536 int ret = 0;
d246b111 537 struct bt_ctf_field *magic = NULL, *uuid_array = NULL;
bc37ae52
JG
538 struct bt_ctf_field_type *_uint32_t =
539 get_field_type(FIELD_TYPE_ALIAS_UINT32_T);
540 struct bt_ctf_field_type *_uint8_t =
541 get_field_type(FIELD_TYPE_ALIAS_UINT8_T);
542 struct bt_ctf_field_type *trace_packet_header_type =
543 bt_ctf_field_type_structure_create();
544 struct bt_ctf_field_type *uuid_array_type =
545 bt_ctf_field_type_array_create(_uint8_t, 16);
546
547 if (!trace_packet_header_type || !uuid_array_type) {
548 ret = -1;
549 goto end;
550 }
551
552 ret = bt_ctf_field_type_set_byte_order(_uint32_t,
553 (trace->byte_order == LITTLE_ENDIAN ?
554 BT_CTF_BYTE_ORDER_LITTLE_ENDIAN :
555 BT_CTF_BYTE_ORDER_BIG_ENDIAN));
556 if (ret) {
557 goto end;
558 }
559
560 ret = bt_ctf_field_type_structure_add_field(trace_packet_header_type,
561 _uint32_t, "magic");
562 if (ret) {
563 goto end;
564 }
565
566 ret = bt_ctf_field_type_structure_add_field(trace_packet_header_type,
567 uuid_array_type, "uuid");
568 if (ret) {
569 goto end;
570 }
571
572 ret = bt_ctf_field_type_structure_add_field(trace_packet_header_type,
573 _uint32_t, "stream_id");
574 if (ret) {
575 goto end;
576 }
577
d246b111
JG
578 bt_ctf_field_type_put(trace->packet_header_type);
579 trace->packet_header_type = trace_packet_header_type;
bc37ae52
JG
580end:
581 bt_ctf_field_type_put(uuid_array_type);
582 bt_ctf_field_type_put(_uint32_t);
583 bt_ctf_field_type_put(_uint8_t);
584 bt_ctf_field_put(magic);
585 bt_ctf_field_put(uuid_array);
586 if (ret) {
587 bt_ctf_field_type_put(trace_packet_header_type);
bc37ae52
JG
588 }
589
590 return ret;
591}
592
593static
594void environment_variable_destroy(struct environment_variable *var)
595{
596 g_string_free(var->name, TRUE);
597 g_string_free(var->value, TRUE);
598 g_free(var);
599}
This page took 0.045842 seconds and 4 git commands to generate.