Fix: Don't freeze field type on addition to structure
[babeltrace.git] / formats / ctf / ir / event-types.c
CommitLineData
273b65be
JG
1/*
2 * event-types.c
3 *
d2dc44b6 4 * Babeltrace CTF IR - Event Types
273b65be 5 *
de9dd397 6 * Copyright 2013, 2014 Jérémie Galarneau <jeremie.galarneau@efficios.com>
273b65be
JG
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-writer/event-types.h>
adc315b8 30#include <babeltrace/ctf-ir/event-types-internal.h>
654c1444 31#include <babeltrace/ctf-ir/utils.h>
6cfb906f 32#include <babeltrace/ctf-ir/clock.h>
273b65be
JG
33#include <babeltrace/ctf-writer/writer-internal.h>
34#include <babeltrace/compiler.h>
35#include <babeltrace/endian.h>
36#include <float.h>
37#include <inttypes.h>
a39fa057 38#include <stdlib.h>
273b65be
JG
39
40struct range_overlap_query {
b92ddaaa
JG
41 union {
42 uint64_t _unsigned;
43 int64_t _signed;
44 } range_start;
45
46 union {
47 uint64_t _unsigned;
48 int64_t _signed;
49 } range_end;
273b65be
JG
50 int overlaps;
51 GQuark mapping_name;
52};
53
2f2d8e05
JG
54static
55void bt_ctf_field_type_destroy(struct bt_ctf_ref *);
273b65be
JG
56static
57void bt_ctf_field_type_integer_destroy(struct bt_ctf_ref *);
58static
59void bt_ctf_field_type_enumeration_destroy(struct bt_ctf_ref *);
60static
61void bt_ctf_field_type_floating_point_destroy(struct bt_ctf_ref *);
62static
63void bt_ctf_field_type_structure_destroy(struct bt_ctf_ref *);
64static
65void bt_ctf_field_type_variant_destroy(struct bt_ctf_ref *);
66static
67void bt_ctf_field_type_array_destroy(struct bt_ctf_ref *);
68static
69void bt_ctf_field_type_sequence_destroy(struct bt_ctf_ref *);
70static
71void bt_ctf_field_type_string_destroy(struct bt_ctf_ref *);
72
73static
74void (* const type_destroy_funcs[])(struct bt_ctf_ref *) = {
75 [CTF_TYPE_INTEGER] = bt_ctf_field_type_integer_destroy,
76 [CTF_TYPE_ENUM] =
77 bt_ctf_field_type_enumeration_destroy,
78 [CTF_TYPE_FLOAT] =
79 bt_ctf_field_type_floating_point_destroy,
80 [CTF_TYPE_STRUCT] = bt_ctf_field_type_structure_destroy,
81 [CTF_TYPE_VARIANT] = bt_ctf_field_type_variant_destroy,
82 [CTF_TYPE_ARRAY] = bt_ctf_field_type_array_destroy,
83 [CTF_TYPE_SEQUENCE] = bt_ctf_field_type_sequence_destroy,
84 [CTF_TYPE_STRING] = bt_ctf_field_type_string_destroy,
85};
86
87static
88void generic_field_type_freeze(struct bt_ctf_field_type *);
89static
90void bt_ctf_field_type_enumeration_freeze(struct bt_ctf_field_type *);
91static
92void bt_ctf_field_type_structure_freeze(struct bt_ctf_field_type *);
93static
94void bt_ctf_field_type_variant_freeze(struct bt_ctf_field_type *);
95static
96void bt_ctf_field_type_array_freeze(struct bt_ctf_field_type *);
97static
98void bt_ctf_field_type_sequence_freeze(struct bt_ctf_field_type *);
99
100static
101type_freeze_func const type_freeze_funcs[] = {
102 [CTF_TYPE_INTEGER] = generic_field_type_freeze,
103 [CTF_TYPE_ENUM] = bt_ctf_field_type_enumeration_freeze,
104 [CTF_TYPE_FLOAT] = generic_field_type_freeze,
105 [CTF_TYPE_STRUCT] = bt_ctf_field_type_structure_freeze,
106 [CTF_TYPE_VARIANT] = bt_ctf_field_type_variant_freeze,
107 [CTF_TYPE_ARRAY] = bt_ctf_field_type_array_freeze,
108 [CTF_TYPE_SEQUENCE] = bt_ctf_field_type_sequence_freeze,
109 [CTF_TYPE_STRING] = generic_field_type_freeze,
110};
111
112static
113int bt_ctf_field_type_integer_serialize(struct bt_ctf_field_type *,
114 struct metadata_context *);
115static
116int bt_ctf_field_type_enumeration_serialize(struct bt_ctf_field_type *,
117 struct metadata_context *);
118static
119int bt_ctf_field_type_floating_point_serialize(
120 struct bt_ctf_field_type *, struct metadata_context *);
121static
122int bt_ctf_field_type_structure_serialize(struct bt_ctf_field_type *,
123 struct metadata_context *);
124static
125int bt_ctf_field_type_variant_serialize(struct bt_ctf_field_type *,
126 struct metadata_context *);
127static
128int bt_ctf_field_type_array_serialize(struct bt_ctf_field_type *,
129 struct metadata_context *);
130static
131int bt_ctf_field_type_sequence_serialize(struct bt_ctf_field_type *,
132 struct metadata_context *);
133static
134int bt_ctf_field_type_string_serialize(struct bt_ctf_field_type *,
135 struct metadata_context *);
136
137static
138type_serialize_func const type_serialize_funcs[] = {
139 [CTF_TYPE_INTEGER] = bt_ctf_field_type_integer_serialize,
140 [CTF_TYPE_ENUM] =
141 bt_ctf_field_type_enumeration_serialize,
142 [CTF_TYPE_FLOAT] =
143 bt_ctf_field_type_floating_point_serialize,
144 [CTF_TYPE_STRUCT] =
145 bt_ctf_field_type_structure_serialize,
146 [CTF_TYPE_VARIANT] = bt_ctf_field_type_variant_serialize,
147 [CTF_TYPE_ARRAY] = bt_ctf_field_type_array_serialize,
148 [CTF_TYPE_SEQUENCE] = bt_ctf_field_type_sequence_serialize,
149 [CTF_TYPE_STRING] = bt_ctf_field_type_string_serialize,
150};
151
152static
153void bt_ctf_field_type_integer_set_byte_order(struct bt_ctf_field_type *,
c35a1669
JG
154 int byte_order, int set_native);
155static
156void bt_ctf_field_type_enumeration_set_byte_order(struct bt_ctf_field_type *,
157 int byte_order, int set_native);
273b65be
JG
158static
159void bt_ctf_field_type_floating_point_set_byte_order(
c35a1669
JG
160 struct bt_ctf_field_type *, int byte_order, int set_native);
161static
162void bt_ctf_field_type_structure_set_byte_order(struct bt_ctf_field_type *,
163 int byte_order, int set_native);
164static
165void bt_ctf_field_type_variant_set_byte_order(struct bt_ctf_field_type *,
166 int byte_order, int set_native);
167static
168void bt_ctf_field_type_array_set_byte_order(struct bt_ctf_field_type *,
169 int byte_order, int set_native);
170static
171void bt_ctf_field_type_sequence_set_byte_order(struct bt_ctf_field_type *,
172 int byte_order, int set_native);
273b65be 173
c35a1669 174/* The set_native flag only set the byte order if it is set to native */
273b65be
JG
175static
176void (* const set_byte_order_funcs[])(struct bt_ctf_field_type *,
c35a1669
JG
177 int byte_order, int set_native) = {
178 [CTF_TYPE_INTEGER] = bt_ctf_field_type_integer_set_byte_order,
179 [CTF_TYPE_ENUM] =
180 bt_ctf_field_type_enumeration_set_byte_order,
273b65be
JG
181 [CTF_TYPE_FLOAT] =
182 bt_ctf_field_type_floating_point_set_byte_order,
c35a1669
JG
183 [CTF_TYPE_STRUCT] =
184 bt_ctf_field_type_structure_set_byte_order,
185 [CTF_TYPE_VARIANT] = bt_ctf_field_type_variant_set_byte_order,
186 [CTF_TYPE_ARRAY] = bt_ctf_field_type_array_set_byte_order,
187 [CTF_TYPE_SEQUENCE] = bt_ctf_field_type_sequence_set_byte_order,
188 [CTF_TYPE_STRING] = NULL,
273b65be
JG
189};
190
273b65be
JG
191static
192void destroy_enumeration_mapping(struct enumeration_mapping *mapping)
193{
194 g_free(mapping);
195}
196
197static
198void destroy_structure_field(struct structure_field *field)
199{
200 if (field->type) {
201 bt_ctf_field_type_put(field->type);
202 }
203
204 g_free(field);
205}
206
207static
208void check_ranges_overlap(gpointer element, gpointer query)
209{
210 struct enumeration_mapping *mapping = element;
211 struct range_overlap_query *overlap_query = query;
212
b92ddaaa
JG
213 if (mapping->range_start._signed <= overlap_query->range_end._signed
214 && overlap_query->range_start._signed <=
215 mapping->range_end._signed) {
216 overlap_query->overlaps = 1;
217 overlap_query->mapping_name = mapping->string;
218 }
219
220 overlap_query->overlaps |=
221 mapping->string == overlap_query->mapping_name;
222}
223
224static
225void check_ranges_overlap_unsigned(gpointer element, gpointer query)
226{
227 struct enumeration_mapping *mapping = element;
228 struct range_overlap_query *overlap_query = query;
229
230 if (mapping->range_start._unsigned <= overlap_query->range_end._unsigned
231 && overlap_query->range_start._unsigned <=
232 mapping->range_end._unsigned) {
273b65be
JG
233 overlap_query->overlaps = 1;
234 overlap_query->mapping_name = mapping->string;
235 }
236
237 overlap_query->overlaps |=
238 mapping->string == overlap_query->mapping_name;
239}
240
b92ddaaa
JG
241static
242gint compare_enumeration_mappings_signed(struct enumeration_mapping **a,
243 struct enumeration_mapping **b)
244{
245 return ((*a)->range_start._signed < (*b)->range_start._signed) ? -1 : 1;
246}
247
248static
249gint compare_enumeration_mappings_unsigned(struct enumeration_mapping **a,
250 struct enumeration_mapping **b)
251{
252 return ((*a)->range_start._unsigned < (*b)->range_start._unsigned) ? -1 : 1;
253}
254
273b65be
JG
255static
256void bt_ctf_field_type_init(struct bt_ctf_field_type *type)
257{
258 enum ctf_type_id type_id = type->declaration->id;
c4e511df 259 int ret;
273b65be
JG
260
261 assert(type && (type_id > CTF_TYPE_UNKNOWN) &&
262 (type_id < NR_CTF_TYPES));
263
264 bt_ctf_ref_init(&type->ref_count);
265 type->freeze = type_freeze_funcs[type_id];
266 type->serialize = type_serialize_funcs[type_id];
c4e511df
MD
267 ret = bt_ctf_field_type_set_byte_order(type, BT_CTF_BYTE_ORDER_NATIVE);
268 assert(!ret);
273b65be
JG
269 type->declaration->alignment = 1;
270}
271
272static
273int add_structure_field(GPtrArray *fields,
274 GHashTable *field_name_to_index,
275 struct bt_ctf_field_type *field_type,
276 const char *field_name)
277{
278 int ret = 0;
279 GQuark name_quark = g_quark_from_string(field_name);
280 struct structure_field *field;
281
282 /* Make sure structure does not contain a field of the same name */
fe0fe95c
JG
283 if (g_hash_table_lookup_extended(field_name_to_index,
284 GUINT_TO_POINTER(name_quark), NULL, NULL)) {
273b65be
JG
285 ret = -1;
286 goto end;
287 }
288
289 field = g_new0(struct structure_field, 1);
290 if (!field) {
291 ret = -1;
292 goto end;
293 }
294
295 bt_ctf_field_type_get(field_type);
296 field->name = name_quark;
297 field->type = field_type;
298 g_hash_table_insert(field_name_to_index,
299 (gpointer) (unsigned long) name_quark,
300 (gpointer) (unsigned long) fields->len);
301 g_ptr_array_add(fields, field);
273b65be
JG
302end:
303 return ret;
304}
305
2f2d8e05
JG
306static
307void bt_ctf_field_type_destroy(struct bt_ctf_ref *ref)
308{
309 struct bt_ctf_field_type *type;
310 enum ctf_type_id type_id;
311
312 if (!ref) {
313 return;
314 }
315
316 type = container_of(ref, struct bt_ctf_field_type, ref_count);
317 type_id = type->declaration->id;
318 if (type_id <= CTF_TYPE_UNKNOWN ||
319 type_id >= NR_CTF_TYPES) {
320 return;
321 }
322
323 if (type->alias_name) {
324 g_string_free(type->alias_name, TRUE);
325 }
326 type_destroy_funcs[type_id](ref);
327}
328
9ce21c30
JG
329BT_HIDDEN
330int bt_ctf_field_type_validate(struct bt_ctf_field_type *type)
331{
332 int ret = 0;
333
334 if (!type) {
335 ret = -1;
336 goto end;
337 }
338
5d161ecc
JG
339 switch (type->declaration->id) {
340 case CTF_TYPE_ENUM:
341 {
9ce21c30
JG
342 struct bt_ctf_field_type_enumeration *enumeration =
343 container_of(type, struct bt_ctf_field_type_enumeration,
344 parent);
345
5d161ecc 346 /* Ensure enum has entries */
9ce21c30 347 ret = enumeration->entries->len ? 0 : -1;
5d161ecc
JG
348 break;
349 }
350 default:
351 break;
9ce21c30
JG
352 }
353end:
354 return ret;
355}
356
273b65be
JG
357struct bt_ctf_field_type *bt_ctf_field_type_integer_create(unsigned int size)
358{
359 struct bt_ctf_field_type_integer *integer =
360 g_new0(struct bt_ctf_field_type_integer, 1);
361
1f02e293 362 if (!integer || size == 0 || size > 64) {
273b65be
JG
363 return NULL;
364 }
365
366 integer->parent.declaration = &integer->declaration.p;
367 integer->parent.declaration->id = CTF_TYPE_INTEGER;
368 integer->declaration.len = size;
369 integer->declaration.base = BT_CTF_INTEGER_BASE_DECIMAL;
370 integer->declaration.encoding = CTF_STRING_NONE;
371 bt_ctf_field_type_init(&integer->parent);
372 return &integer->parent;
373}
374
b92ddaaa
JG
375int bt_ctf_field_type_integer_get_size(struct bt_ctf_field_type *type)
376{
377 int ret = 0;
378 struct bt_ctf_field_type_integer *integer;
379
380 if (!type || type->declaration->id != CTF_TYPE_INTEGER) {
381 ret = -1;
382 goto end;
383 }
384
385 integer = container_of(type, struct bt_ctf_field_type_integer, parent);
386 ret = (int) integer->declaration.len;
387end:
388 return ret;
389}
390
391int bt_ctf_field_type_integer_get_signed(struct bt_ctf_field_type *type)
392{
393 int ret = 0;
394 struct bt_ctf_field_type_integer *integer;
395
396 if (!type || type->declaration->id != CTF_TYPE_INTEGER) {
397 ret = -1;
398 goto end;
399 }
400
401 integer = container_of(type, struct bt_ctf_field_type_integer, parent);
402 ret = integer->declaration.signedness;
403end:
404 return ret;
405}
406
273b65be
JG
407int bt_ctf_field_type_integer_set_signed(struct bt_ctf_field_type *type,
408 int is_signed)
409{
410 int ret = 0;
411 struct bt_ctf_field_type_integer *integer;
412
413 if (!type || type->frozen ||
414 type->declaration->id != CTF_TYPE_INTEGER) {
415 ret = -1;
416 goto end;
417 }
418
419 integer = container_of(type, struct bt_ctf_field_type_integer, parent);
273b65be
JG
420 integer->declaration.signedness = !!is_signed;
421end:
422 return ret;
423}
424
b92ddaaa
JG
425enum bt_ctf_integer_base bt_ctf_field_type_integer_get_base(
426 struct bt_ctf_field_type *type)
427{
428 enum bt_ctf_integer_base ret = BT_CTF_INTEGER_BASE_UNKNOWN;
429 struct bt_ctf_field_type_integer *integer;
430
431 if (!type || type->declaration->id != CTF_TYPE_INTEGER) {
432 goto end;
433 }
434
435 integer = container_of(type, struct bt_ctf_field_type_integer, parent);
436 ret = integer->declaration.base;
437end:
438 return ret;
439}
440
273b65be
JG
441int bt_ctf_field_type_integer_set_base(struct bt_ctf_field_type *type,
442 enum bt_ctf_integer_base base)
443{
444 int ret = 0;
445
446 if (!type || type->frozen ||
447 type->declaration->id != CTF_TYPE_INTEGER) {
448 ret = -1;
449 goto end;
450 }
451
452 switch (base) {
453 case BT_CTF_INTEGER_BASE_BINARY:
454 case BT_CTF_INTEGER_BASE_OCTAL:
455 case BT_CTF_INTEGER_BASE_DECIMAL:
456 case BT_CTF_INTEGER_BASE_HEXADECIMAL:
457 {
458 struct bt_ctf_field_type_integer *integer = container_of(type,
459 struct bt_ctf_field_type_integer, parent);
460 integer->declaration.base = base;
461 break;
462 }
463 default:
464 ret = -1;
465 }
466end:
467 return ret;
468}
469
b92ddaaa
JG
470enum ctf_string_encoding bt_ctf_field_type_integer_get_encoding(
471 struct bt_ctf_field_type *type)
472{
473 enum ctf_string_encoding ret = CTF_STRING_UNKNOWN;
474 struct bt_ctf_field_type_integer *integer;
475
476 if (!type || type->declaration->id != CTF_TYPE_INTEGER) {
477 goto end;
478 }
479
480 integer = container_of(type, struct bt_ctf_field_type_integer, parent);
481 ret = integer->declaration.encoding;
482end:
483 return ret;
484}
485
273b65be
JG
486int bt_ctf_field_type_integer_set_encoding(struct bt_ctf_field_type *type,
487 enum ctf_string_encoding encoding)
488{
489 int ret = 0;
490 struct bt_ctf_field_type_integer *integer;
491
492 if (!type || type->frozen ||
493 (type->declaration->id != CTF_TYPE_INTEGER) ||
494 (encoding < CTF_STRING_NONE) ||
495 (encoding >= CTF_STRING_UNKNOWN)) {
496 ret = -1;
497 goto end;
498 }
499
500 integer = container_of(type, struct bt_ctf_field_type_integer, parent);
501 integer->declaration.encoding = encoding;
502end:
503 return ret;
504}
505
6cfb906f
JG
506struct bt_ctf_clock *bt_ctf_field_type_integer_get_mapped_clock(
507 struct bt_ctf_field_type *type)
508{
509 struct bt_ctf_field_type_integer *integer;
510 struct bt_ctf_clock *clock = NULL;
511
512 if (!type) {
513 goto end;
514 }
515
516 integer = container_of(type, struct bt_ctf_field_type_integer, parent);
517 clock = integer->mapped_clock;
518 if (clock) {
519 bt_ctf_clock_get(clock);
520 }
521end:
522 return clock;
523}
524
525int bt_ctf_field_type_integer_set_mapped_clock(
526 struct bt_ctf_field_type *type,
527 struct bt_ctf_clock *clock)
528{
529 struct bt_ctf_field_type_integer *integer;
530 int ret = 0;
531
532 if (!type || type->frozen) {
533 ret = -1;
534 goto end;
535 }
536
537 integer = container_of(type, struct bt_ctf_field_type_integer, parent);
538 if (integer->mapped_clock) {
539 bt_ctf_clock_put(integer->mapped_clock);
540 }
541
542 if (clock) {
543 bt_ctf_clock_get(clock);
544 }
545
546 integer->mapped_clock = clock;
547end:
548 return ret;
549}
550
273b65be
JG
551struct bt_ctf_field_type *bt_ctf_field_type_enumeration_create(
552 struct bt_ctf_field_type *integer_container_type)
553{
554 struct bt_ctf_field_type_enumeration *enumeration = NULL;
555
556 if (!integer_container_type) {
557 goto error;
558 }
559
2a610bb7
JG
560 if (integer_container_type->declaration->id != CTF_TYPE_INTEGER) {
561 goto error;
562 }
563
273b65be
JG
564 enumeration = g_new0(struct bt_ctf_field_type_enumeration, 1);
565 if (!enumeration) {
566 goto error;
567 }
568
569 enumeration->parent.declaration = &enumeration->declaration.p;
570 enumeration->parent.declaration->id = CTF_TYPE_ENUM;
571 bt_ctf_field_type_get(integer_container_type);
572 enumeration->container = integer_container_type;
573 enumeration->entries = g_ptr_array_new_with_free_func(
574 (GDestroyNotify)destroy_enumeration_mapping);
575 bt_ctf_field_type_init(&enumeration->parent);
576 return &enumeration->parent;
577error:
578 g_free(enumeration);
579 return NULL;
580}
581
b92ddaaa
JG
582struct bt_ctf_field_type *bt_ctf_field_type_enumeration_get_container_type(
583 struct bt_ctf_field_type *type)
584{
585 struct bt_ctf_field_type *container_type = NULL;
586 struct bt_ctf_field_type_enumeration *enumeration_type;
587
588 if (!type) {
589 goto end;
590 }
591
592 if (type->declaration->id != CTF_TYPE_ENUM) {
593 goto end;
594 }
595
596 enumeration_type = container_of(type,
597 struct bt_ctf_field_type_enumeration, parent);
598 container_type = enumeration_type->container;
599 bt_ctf_field_type_get(container_type);
600end:
601 return container_type;
602}
603
273b65be
JG
604int bt_ctf_field_type_enumeration_add_mapping(
605 struct bt_ctf_field_type *type, const char *string,
606 int64_t range_start, int64_t range_end)
607{
608 int ret = 0;
609 GQuark mapping_name;
610 struct enumeration_mapping *mapping;
611 struct bt_ctf_field_type_enumeration *enumeration;
612 struct range_overlap_query query;
a39fa057 613 char *escaped_string;
273b65be
JG
614
615 if (!type || (type->declaration->id != CTF_TYPE_ENUM) ||
616 type->frozen ||
617 (range_end < range_start)) {
618 ret = -1;
619 goto end;
620 }
621
a39fa057 622 if (!string || strlen(string) == 0) {
273b65be
JG
623 ret = -1;
624 goto end;
625 }
626
a39fa057
JG
627 escaped_string = g_strescape(string, NULL);
628 if (!escaped_string) {
629 ret = -1;
630 goto end;
631 }
632
633 mapping_name = g_quark_from_string(escaped_string);
b92ddaaa
JG
634 query = (struct range_overlap_query) {
635 .range_start._signed = range_start,
636 .range_end._signed = range_end,
273b65be
JG
637 .mapping_name = mapping_name,
638 .overlaps = 0 };
639 enumeration = container_of(type, struct bt_ctf_field_type_enumeration,
640 parent);
641
642 /* Check that the range does not overlap with one already present */
643 g_ptr_array_foreach(enumeration->entries, check_ranges_overlap, &query);
644 if (query.overlaps) {
645 ret = -1;
a39fa057 646 goto error_free;
273b65be
JG
647 }
648
649 mapping = g_new(struct enumeration_mapping, 1);
650 if (!mapping) {
651 ret = -1;
a39fa057 652 goto error_free;
273b65be
JG
653 }
654
b92ddaaa
JG
655 *mapping = (struct enumeration_mapping) {
656 .range_start._signed = range_start,
657 .range_end._signed = range_end, .string = mapping_name};
273b65be 658 g_ptr_array_add(enumeration->entries, mapping);
b92ddaaa
JG
659 g_ptr_array_sort(enumeration->entries,
660 (GCompareFunc)compare_enumeration_mappings_signed);
661error_free:
662 free(escaped_string);
663end:
664 return ret;
665}
666
667int bt_ctf_field_type_enumeration_add_mapping_unsigned(
668 struct bt_ctf_field_type *type, const char *string,
669 uint64_t range_start, uint64_t range_end)
670{
671 int ret = 0;
672 GQuark mapping_name;
673 struct enumeration_mapping *mapping;
674 struct bt_ctf_field_type_enumeration *enumeration;
675 struct range_overlap_query query;
676 char *escaped_string;
677
678 if (!type || (type->declaration->id != CTF_TYPE_ENUM) ||
679 type->frozen ||
680 (range_end < range_start)) {
681 ret = -1;
682 goto end;
683 }
684
685 if (!string || strlen(string) == 0) {
686 ret = -1;
687 goto end;
688 }
689
690 escaped_string = g_strescape(string, NULL);
691 if (!escaped_string) {
692 ret = -1;
693 goto end;
694 }
695
696 mapping_name = g_quark_from_string(escaped_string);
697 query = (struct range_overlap_query) {
698 .range_start._unsigned = range_start,
699 .range_end._unsigned = range_end,
700 .mapping_name = mapping_name,
701 .overlaps = 0 };
702 enumeration = container_of(type, struct bt_ctf_field_type_enumeration,
703 parent);
704
705 /* Check that the range does not overlap with one already present */
706 g_ptr_array_foreach(enumeration->entries, check_ranges_overlap_unsigned,
707 &query);
708 if (query.overlaps) {
709 ret = -1;
710 goto error_free;
711 }
712
713 mapping = g_new(struct enumeration_mapping, 1);
714 if (!mapping) {
715 ret = -1;
716 goto error_free;
717 }
718
719 *mapping = (struct enumeration_mapping) {
720 .range_start._unsigned = range_start,
721 .range_end._unsigned = range_end, .string = mapping_name};
722 g_ptr_array_add(enumeration->entries, mapping);
723 g_ptr_array_sort(enumeration->entries,
724 (GCompareFunc)compare_enumeration_mappings_unsigned);
a39fa057
JG
725error_free:
726 free(escaped_string);
273b65be
JG
727end:
728 return ret;
729}
730
e5958c30
JG
731const char *bt_ctf_field_type_enumeration_get_mapping_name_unsigned(
732 struct bt_ctf_field_type_enumeration *enumeration_type,
733 uint64_t value)
734{
735 const char *name = NULL;
736 struct range_overlap_query query =
737 (struct range_overlap_query) {
b92ddaaa
JG
738 .range_start._unsigned = value,
739 .range_end._unsigned = value,
e5958c30
JG
740 .overlaps = 0 };
741
b92ddaaa
JG
742 g_ptr_array_foreach(enumeration_type->entries,
743 check_ranges_overlap_unsigned,
e5958c30
JG
744 &query);
745 if (!query.overlaps) {
746 goto end;
747 }
748
749 name = g_quark_to_string(query.mapping_name);
750end:
751 return name;
752}
753
754const char *bt_ctf_field_type_enumeration_get_mapping_name_signed(
755 struct bt_ctf_field_type_enumeration *enumeration_type,
756 int64_t value)
757{
758 const char *name = NULL;
759 struct range_overlap_query query =
760 (struct range_overlap_query) {
b92ddaaa
JG
761 .range_start._signed = value,
762 .range_end._signed = value,
e5958c30
JG
763 .overlaps = 0 };
764
765 g_ptr_array_foreach(enumeration_type->entries, check_ranges_overlap,
766 &query);
767 if (!query.overlaps) {
768 goto end;
769 }
770
771 name = g_quark_to_string(query.mapping_name);
772end:
773 return name;
774}
775
074ee56d 776int bt_ctf_field_type_enumeration_get_mapping_count(
b92ddaaa
JG
777 struct bt_ctf_field_type *type)
778{
074ee56d 779 int ret = 0;
b92ddaaa
JG
780 struct bt_ctf_field_type_enumeration *enumeration;
781
782 if (!type || (type->declaration->id != CTF_TYPE_ENUM)) {
783 ret = -1;
784 goto end;
785 }
786
787 enumeration = container_of(type, struct bt_ctf_field_type_enumeration,
788 parent);
074ee56d 789 ret = (int) enumeration->entries->len;
b92ddaaa
JG
790end:
791 return ret;
792}
793
794static inline
795struct enumeration_mapping *get_enumeration_mapping(
074ee56d 796 struct bt_ctf_field_type *type, int index)
b92ddaaa
JG
797{
798 struct enumeration_mapping *mapping = NULL;
799 struct bt_ctf_field_type_enumeration *enumeration;
800
801 enumeration = container_of(type, struct bt_ctf_field_type_enumeration,
802 parent);
803 if (index >= enumeration->entries->len) {
804 goto end;
805 }
806
807 mapping = g_ptr_array_index(enumeration->entries, index);
808end:
809 return mapping;
810}
811
812int bt_ctf_field_type_enumeration_get_mapping(
074ee56d 813 struct bt_ctf_field_type *type, int index,
b92ddaaa
JG
814 const char **string, int64_t *range_start, int64_t *range_end)
815{
816 struct enumeration_mapping *mapping;
817 int ret = 0;
818
074ee56d 819 if (!type || index < 0 || !string || !range_start || !range_end ||
b92ddaaa
JG
820 (type->declaration->id != CTF_TYPE_ENUM)) {
821 ret = -1;
822 goto end;
823 }
824
825 mapping = get_enumeration_mapping(type, index);
826 if (!mapping) {
827 ret = -1;
828 goto end;
829 }
830
831 *string = g_quark_to_string(mapping->string);
832 *range_start = mapping->range_start._signed;
833 *range_end = mapping->range_end._signed;
834end:
835 return ret;
836}
837
838int bt_ctf_field_type_enumeration_get_mapping_unsigned(
074ee56d 839 struct bt_ctf_field_type *type, int index,
b92ddaaa
JG
840 const char **string, uint64_t *range_start, uint64_t *range_end)
841{
842 struct enumeration_mapping *mapping;
843 int ret = 0;
844
074ee56d 845 if (!type || index < 0 || !string || !range_start || !range_end ||
b92ddaaa
JG
846 (type->declaration->id != CTF_TYPE_ENUM)) {
847 ret = -1;
848 goto end;
849 }
850
851 mapping = get_enumeration_mapping(type, index);
852 if (!mapping) {
853 ret = -1;
854 goto end;
855 }
856
857 *string = g_quark_to_string(mapping->string);
858 *range_start = mapping->range_start._unsigned;
859 *range_end = mapping->range_end._unsigned;
860end:
861 return ret;
862}
863
864int bt_ctf_field_type_enumeration_get_mapping_index_by_name(
074ee56d 865 struct bt_ctf_field_type *type, const char *name)
b92ddaaa 866{
b92ddaaa
JG
867 GQuark name_quark;
868 struct bt_ctf_field_type_enumeration *enumeration;
074ee56d 869 int i, ret = 0;
b92ddaaa 870
074ee56d 871 if (!type || !name ||
b92ddaaa
JG
872 (type->declaration->id != CTF_TYPE_ENUM)) {
873 ret = -1;
874 goto end;
875 }
876
877 name_quark = g_quark_try_string(name);
878 if (!name_quark) {
879 ret = -1;
880 goto end;
881 }
882
883 enumeration = container_of(type,
884 struct bt_ctf_field_type_enumeration, parent);
885 for (i = 0; i < enumeration->entries->len; i++) {
886 struct enumeration_mapping *mapping =
887 get_enumeration_mapping(type, i);
888
889 if (mapping->string == name_quark) {
074ee56d 890 ret = i;
b92ddaaa
JG
891 goto end;
892 }
893 }
894
895 ret = -1;
896end:
897 return ret;
898}
899
900int bt_ctf_field_type_enumeration_get_mapping_index_by_value(
074ee56d 901 struct bt_ctf_field_type *type, int64_t value)
b92ddaaa
JG
902{
903 struct bt_ctf_field_type_enumeration *enumeration;
074ee56d 904 int i, ret = 0;
b92ddaaa 905
074ee56d 906 if (!type || (type->declaration->id != CTF_TYPE_ENUM)) {
b92ddaaa
JG
907 ret = -1;
908 goto end;
909 }
910
911 enumeration = container_of(type,
912 struct bt_ctf_field_type_enumeration, parent);
913 for (i = 0; i < enumeration->entries->len; i++) {
914 struct enumeration_mapping *mapping =
915 get_enumeration_mapping(type, i);
916
917 if (value >= mapping->range_start._signed &&
918 value <= mapping->range_end._signed) {
074ee56d 919 ret = i;
b92ddaaa
JG
920 goto end;
921 }
922 }
923
924 ret = -1;
925end:
926 return ret;
927}
928
929int bt_ctf_field_type_enumeration_get_mapping_index_by_unsigned_value(
074ee56d 930 struct bt_ctf_field_type *type, uint64_t value)
b92ddaaa
JG
931{
932 struct bt_ctf_field_type_enumeration *enumeration;
074ee56d 933 int i, ret = 0;
b92ddaaa 934
074ee56d 935 if (!type || (type->declaration->id != CTF_TYPE_ENUM)) {
b92ddaaa
JG
936 ret = -1;
937 goto end;
938 }
939
940 enumeration = container_of(type,
941 struct bt_ctf_field_type_enumeration, parent);
942 for (i = 0; i < enumeration->entries->len; i++) {
943 struct enumeration_mapping *mapping =
944 get_enumeration_mapping(type, i);
945
946 if (value >= mapping->range_start._unsigned &&
947 value <= mapping->range_end._unsigned) {
074ee56d 948 ret = i;
b92ddaaa
JG
949 goto end;
950 }
951 }
952
953 ret = -1;
954end:
955 return ret;
956}
957
273b65be
JG
958struct bt_ctf_field_type *bt_ctf_field_type_floating_point_create(void)
959{
960 struct bt_ctf_field_type_floating_point *floating_point =
961 g_new0(struct bt_ctf_field_type_floating_point, 1);
962
963 if (!floating_point) {
964 goto end;
965 }
966
967 floating_point->declaration.sign = &floating_point->sign;
968 floating_point->declaration.mantissa = &floating_point->mantissa;
969 floating_point->declaration.exp = &floating_point->exp;
970 floating_point->sign.len = 1;
971 floating_point->parent.declaration = &floating_point->declaration.p;
972 floating_point->parent.declaration->id = CTF_TYPE_FLOAT;
973 floating_point->declaration.exp->len =
974 sizeof(float) * CHAR_BIT - FLT_MANT_DIG;
975 floating_point->declaration.mantissa->len = FLT_MANT_DIG - 1;
976 floating_point->sign.p.alignment = 1;
977 floating_point->mantissa.p.alignment = 1;
978 floating_point->exp.p.alignment = 1;
979
980 bt_ctf_field_type_init(&floating_point->parent);
981end:
982 return floating_point ? &floating_point->parent : NULL;
983}
984
b92ddaaa
JG
985int bt_ctf_field_type_floating_point_get_exponent_digits(
986 struct bt_ctf_field_type *type)
987{
988 int ret = 0;
989 struct bt_ctf_field_type_floating_point *floating_point;
990
991 if (!type || (type->declaration->id != CTF_TYPE_FLOAT)) {
992 ret = -1;
993 goto end;
994 }
995
996 floating_point = container_of(type,
997 struct bt_ctf_field_type_floating_point, parent);
998 ret = (int) floating_point->declaration.exp->len;
999end:
1000 return ret;
1001}
1002
273b65be
JG
1003int bt_ctf_field_type_floating_point_set_exponent_digits(
1004 struct bt_ctf_field_type *type,
1005 unsigned int exponent_digits)
1006{
1007 int ret = 0;
1008 struct bt_ctf_field_type_floating_point *floating_point;
1009
1010 if (!type || type->frozen ||
1011 (type->declaration->id != CTF_TYPE_FLOAT)) {
1012 ret = -1;
1013 goto end;
1014 }
1015
1016 floating_point = container_of(type,
1017 struct bt_ctf_field_type_floating_point, parent);
1018 if ((exponent_digits != sizeof(float) * CHAR_BIT - FLT_MANT_DIG) &&
1019 (exponent_digits != sizeof(double) * CHAR_BIT - DBL_MANT_DIG) &&
1020 (exponent_digits !=
1021 sizeof(long double) * CHAR_BIT - LDBL_MANT_DIG)) {
1022 ret = -1;
1023 goto end;
1024 }
1025
1026 floating_point->declaration.exp->len = exponent_digits;
1027end:
1028 return ret;
1029}
1030
b92ddaaa
JG
1031int bt_ctf_field_type_floating_point_get_mantissa_digits(
1032 struct bt_ctf_field_type *type)
1033{
1034 int ret = 0;
1035 struct bt_ctf_field_type_floating_point *floating_point;
1036
1037 if (!type || (type->declaration->id != CTF_TYPE_FLOAT)) {
1038 ret = -1;
1039 goto end;
1040 }
1041
1042 floating_point = container_of(type,
1043 struct bt_ctf_field_type_floating_point, parent);
1044 ret = (int) floating_point->mantissa.len + 1;
1045end:
1046 return ret;
1047}
1048
273b65be
JG
1049int bt_ctf_field_type_floating_point_set_mantissa_digits(
1050 struct bt_ctf_field_type *type,
1051 unsigned int mantissa_digits)
1052{
1053 int ret = 0;
1054 struct bt_ctf_field_type_floating_point *floating_point;
1055
1056 if (!type || type->frozen ||
1057 (type->declaration->id != CTF_TYPE_FLOAT)) {
1058 ret = -1;
1059 goto end;
1060 }
1061
1062 floating_point = container_of(type,
1063 struct bt_ctf_field_type_floating_point, parent);
1064
1065 if ((mantissa_digits != FLT_MANT_DIG) &&
1066 (mantissa_digits != DBL_MANT_DIG) &&
1067 (mantissa_digits != LDBL_MANT_DIG)) {
1068 ret = -1;
1069 goto end;
1070 }
1071
1072 floating_point->declaration.mantissa->len = mantissa_digits - 1;
1073end:
1074 return ret;
1075}
1076
1077struct bt_ctf_field_type *bt_ctf_field_type_structure_create(void)
1078{
1079 struct bt_ctf_field_type_structure *structure =
1080 g_new0(struct bt_ctf_field_type_structure, 1);
1081
1082 if (!structure) {
1083 goto error;
1084 }
1085
1086 structure->parent.declaration = &structure->declaration.p;
1087 structure->parent.declaration->id = CTF_TYPE_STRUCT;
273b65be
JG
1088 structure->fields = g_ptr_array_new_with_free_func(
1089 (GDestroyNotify)destroy_structure_field);
1090 structure->field_name_to_index = g_hash_table_new(NULL, NULL);
c35a1669 1091 bt_ctf_field_type_init(&structure->parent);
273b65be
JG
1092 return &structure->parent;
1093error:
1094 return NULL;
1095}
1096
1097int bt_ctf_field_type_structure_add_field(struct bt_ctf_field_type *type,
1098 struct bt_ctf_field_type *field_type,
1099 const char *field_name)
1100{
1101 int ret = 0;
1102 struct bt_ctf_field_type_structure *structure;
1103
1104 if (!type || !field_type || type->frozen ||
654c1444 1105 bt_ctf_validate_identifier(field_name) ||
9ce21c30
JG
1106 (type->declaration->id != CTF_TYPE_STRUCT) ||
1107 bt_ctf_field_type_validate(field_type)) {
e6235f1f 1108 ret = -1;
273b65be
JG
1109 goto end;
1110 }
1111
1112 structure = container_of(type,
1113 struct bt_ctf_field_type_structure, parent);
1114 if (add_structure_field(structure->fields,
1115 structure->field_name_to_index, field_type, field_name)) {
1116 ret = -1;
1117 goto end;
1118 }
1119
b92ddaaa
JG
1120 if (type->declaration->alignment < field_type->declaration->alignment) {
1121 type->declaration->alignment =
1122 field_type->declaration->alignment;
1123 }
1124end:
1125 return ret;
1126}
1127
074ee56d 1128int bt_ctf_field_type_structure_get_field_count(
b92ddaaa
JG
1129 struct bt_ctf_field_type *type)
1130{
074ee56d 1131 int ret = 0;
b92ddaaa
JG
1132 struct bt_ctf_field_type_structure *structure;
1133
1134 if (!type || (type->declaration->id != CTF_TYPE_STRUCT)) {
1135 ret = -1;
1136 goto end;
1137 }
1138
1139 structure = container_of(type, struct bt_ctf_field_type_structure,
1140 parent);
074ee56d 1141 ret = (int) structure->fields->len;
b92ddaaa
JG
1142end:
1143 return ret;
1144}
1145
1146int bt_ctf_field_type_structure_get_field(struct bt_ctf_field_type *type,
1147 const char **field_name, struct bt_ctf_field_type **field_type,
074ee56d 1148 int index)
b92ddaaa
JG
1149{
1150 struct bt_ctf_field_type_structure *structure;
1151 struct structure_field *field;
1152 int ret = 0;
1153
074ee56d 1154 if (!type || index < 0 || !field_name || !field_type ||
b92ddaaa
JG
1155 (type->declaration->id != CTF_TYPE_STRUCT)) {
1156 ret = -1;
1157 goto end;
1158 }
1159
1160 structure = container_of(type, struct bt_ctf_field_type_structure,
1161 parent);
1162 if (index >= structure->fields->len) {
1163 ret = -1;
1164 goto end;
1165 }
1166
1167 field = g_ptr_array_index(structure->fields, index);
1168 *field_type = field->type;
1169 bt_ctf_field_type_get(field->type);
1170 *field_name = g_quark_to_string(field->name);
1171end:
1172 return ret;
1173}
1174
1175struct bt_ctf_field_type *bt_ctf_field_type_structure_get_field_type_by_name(
1176 struct bt_ctf_field_type *type,
1177 const char *name)
1178{
1179 size_t index;
1180 GQuark name_quark;
1181 struct structure_field *field;
1182 struct bt_ctf_field_type_structure *structure;
1183 struct bt_ctf_field_type *field_type = NULL;
1184
1185 if (!type || !name) {
1186 goto end;
1187 }
1188
1189 name_quark = g_quark_try_string(name);
1190 if (!name_quark) {
1191 goto end;
1192 }
1193
1194 structure = container_of(type, struct bt_ctf_field_type_structure,
1195 parent);
1196 if (!g_hash_table_lookup_extended(structure->field_name_to_index,
1197 GUINT_TO_POINTER(name_quark), NULL, (gpointer *)&index)) {
1198 goto end;
273b65be 1199 }
b92ddaaa
JG
1200
1201 field = structure->fields->pdata[index];
1202 field_type = field->type;
1203 bt_ctf_field_type_get(field_type);
273b65be 1204end:
b92ddaaa 1205 return field_type;
273b65be
JG
1206}
1207
1208struct bt_ctf_field_type *bt_ctf_field_type_variant_create(
1209 struct bt_ctf_field_type *enum_tag, const char *tag_name)
1210{
1211 struct bt_ctf_field_type_variant *variant = NULL;
1212
654c1444 1213 if (!enum_tag || bt_ctf_validate_identifier(tag_name) ||
273b65be
JG
1214 (enum_tag->declaration->id != CTF_TYPE_ENUM)) {
1215 goto error;
1216 }
1217
1218 variant = g_new0(struct bt_ctf_field_type_variant, 1);
1219 if (!variant) {
1220 goto error;
1221 }
1222
1223 variant->parent.declaration = &variant->declaration.p;
1224 variant->parent.declaration->id = CTF_TYPE_VARIANT;
1225 variant->tag_name = g_string_new(tag_name);
273b65be
JG
1226 variant->field_name_to_index = g_hash_table_new(NULL, NULL);
1227 variant->fields = g_ptr_array_new_with_free_func(
1228 (GDestroyNotify)destroy_structure_field);
1229 bt_ctf_field_type_get(enum_tag);
1230 variant->tag = container_of(enum_tag,
1231 struct bt_ctf_field_type_enumeration, parent);
c35a1669 1232 bt_ctf_field_type_init(&variant->parent);
273b65be
JG
1233 return &variant->parent;
1234error:
1235 return NULL;
1236}
1237
b92ddaaa
JG
1238struct bt_ctf_field_type *bt_ctf_field_type_variant_get_tag_type(
1239 struct bt_ctf_field_type *type)
1240{
1241 struct bt_ctf_field_type_variant *variant;
1242 struct bt_ctf_field_type *tag_type = NULL;
1243
1244 if (!type || (type->declaration->id != CTF_TYPE_VARIANT)) {
1245 goto end;
1246 }
1247
1248 variant = container_of(type, struct bt_ctf_field_type_variant, parent);
1249 tag_type = &variant->tag->parent;
1250 bt_ctf_field_type_get(tag_type);
1251end:
1252 return tag_type;
1253}
1254
1255const char *bt_ctf_field_type_variant_get_tag_name(
1256 struct bt_ctf_field_type *type)
1257{
1258 struct bt_ctf_field_type_variant *variant;
1259 const char *tag_name = NULL;
1260
1261 if (!type || (type->declaration->id != CTF_TYPE_VARIANT)) {
1262 goto end;
1263 }
1264
1265 variant = container_of(type, struct bt_ctf_field_type_variant, parent);
1266 tag_name = variant->tag_name->str;
1267end:
1268 return tag_name;
1269}
1270
273b65be
JG
1271int bt_ctf_field_type_variant_add_field(struct bt_ctf_field_type *type,
1272 struct bt_ctf_field_type *field_type,
1273 const char *field_name)
1274{
1275 size_t i;
1276 int ret = 0;
1277 int name_found = 0;
1278 struct bt_ctf_field_type_variant *variant;
1279 GQuark field_name_quark = g_quark_from_string(field_name);
1280
1281 if (!type || !field_type || type->frozen ||
654c1444 1282 bt_ctf_validate_identifier(field_name) ||
9ce21c30
JG
1283 (type->declaration->id != CTF_TYPE_VARIANT) ||
1284 bt_ctf_field_type_validate(field_type)) {
273b65be
JG
1285 ret = -1;
1286 goto end;
1287 }
1288
1289 variant = container_of(type, struct bt_ctf_field_type_variant, parent);
1290 /* Make sure this name is present in the enum tag */
1291 for (i = 0; i < variant->tag->entries->len; i++) {
1292 struct enumeration_mapping *mapping =
1293 g_ptr_array_index(variant->tag->entries, i);
1294
1295 if (mapping->string == field_name_quark) {
1296 name_found = 1;
1297 break;
1298 }
1299 }
1300
1301 if (!name_found || add_structure_field(variant->fields,
1302 variant->field_name_to_index, field_type, field_name)) {
1303 ret = -1;
1304 goto end;
1305 }
1306end:
1307 return ret;
1308}
1309
b92ddaaa
JG
1310struct bt_ctf_field_type *bt_ctf_field_type_variant_get_field_type_by_name(
1311 struct bt_ctf_field_type *type,
1312 const char *field_name)
1313{
1314 size_t index;
1315 GQuark name_quark;
1316 struct structure_field *field;
1317 struct bt_ctf_field_type_variant *variant;
1318 struct bt_ctf_field_type *field_type = NULL;
1319
1320 if (!type || !field_name) {
1321 goto end;
1322 }
1323
1324 name_quark = g_quark_try_string(field_name);
1325 if (!name_quark) {
1326 goto end;
1327 }
1328
1329 variant = container_of(type, struct bt_ctf_field_type_variant, parent);
1330 if (!g_hash_table_lookup_extended(variant->field_name_to_index,
1331 GUINT_TO_POINTER(name_quark), NULL, (gpointer *)&index)) {
1332 goto end;
1333 }
1334
1335 field = g_ptr_array_index(variant->fields, index);
1336 field_type = field->type;
1337 bt_ctf_field_type_get(field_type);
1338end:
1339 return field_type;
1340}
1341
1342struct bt_ctf_field_type *bt_ctf_field_type_variant_get_field_type_from_tag(
1343 struct bt_ctf_field_type *type,
1344 struct bt_ctf_field *tag)
1345{
1346 const char *enum_value;
1347 struct bt_ctf_field_type *field_type = NULL;
1348
1349 if (!type || !tag || type->declaration->id != CTF_TYPE_VARIANT) {
1350 goto end;
1351 }
1352
1353 enum_value = bt_ctf_field_enumeration_get_mapping_name(tag);
1354 if (!enum_value) {
1355 goto end;
1356 }
1357
1358 /* Already increments field_type's reference count */
1359 field_type = bt_ctf_field_type_variant_get_field_type_by_name(
1360 type, enum_value);
1361end:
1362 return field_type;
1363}
1364
074ee56d 1365int bt_ctf_field_type_variant_get_field_count(struct bt_ctf_field_type *type)
b92ddaaa 1366{
074ee56d 1367 int ret = 0;
b92ddaaa
JG
1368 struct bt_ctf_field_type_variant *variant;
1369
1370 if (!type || (type->declaration->id != CTF_TYPE_VARIANT)) {
1371 ret = -1;
1372 goto end;
1373 }
1374
1375 variant = container_of(type, struct bt_ctf_field_type_variant,
1376 parent);
074ee56d 1377 ret = (int) variant->fields->len;
b92ddaaa
JG
1378end:
1379 return ret;
1380
1381}
1382
1383int bt_ctf_field_type_variant_get_field(struct bt_ctf_field_type *type,
1384 const char **field_name, struct bt_ctf_field_type **field_type,
074ee56d 1385 int index)
b92ddaaa
JG
1386{
1387 struct bt_ctf_field_type_variant *variant;
1388 struct structure_field *field;
1389 int ret = 0;
1390
074ee56d 1391 if (!type || index < 0 || !field_name || !field_type ||
b92ddaaa
JG
1392 (type->declaration->id != CTF_TYPE_VARIANT)) {
1393 ret = -1;
1394 goto end;
1395 }
1396
1397 variant = container_of(type, struct bt_ctf_field_type_variant,
1398 parent);
1399 if (index >= variant->fields->len) {
1400 ret = -1;
1401 goto end;
1402 }
1403
1404 field = g_ptr_array_index(variant->fields, index);
1405 *field_type = field->type;
1406 bt_ctf_field_type_get(field->type);
1407 *field_name = g_quark_to_string(field->name);
1408end:
1409 return ret;
1410}
1411
273b65be
JG
1412struct bt_ctf_field_type *bt_ctf_field_type_array_create(
1413 struct bt_ctf_field_type *element_type,
1414 unsigned int length)
1415{
1416 struct bt_ctf_field_type_array *array = NULL;
1417
9ce21c30
JG
1418 if (!element_type || length == 0 ||
1419 bt_ctf_field_type_validate(element_type)) {
273b65be
JG
1420 goto error;
1421 }
1422
1423 array = g_new0(struct bt_ctf_field_type_array, 1);
1424 if (!array) {
1425 goto error;
1426 }
1427
1428 array->parent.declaration = &array->declaration.p;
1429 array->parent.declaration->id = CTF_TYPE_ARRAY;
c35a1669 1430
273b65be
JG
1431 bt_ctf_field_type_get(element_type);
1432 array->element_type = element_type;
1433 array->length = length;
c35a1669 1434 bt_ctf_field_type_init(&array->parent);
273b65be
JG
1435 array->parent.declaration->alignment =
1436 element_type->declaration->alignment;
1437 return &array->parent;
1438error:
1439 return NULL;
1440}
1441
b92ddaaa
JG
1442struct bt_ctf_field_type *bt_ctf_field_type_array_get_element_type(
1443 struct bt_ctf_field_type *type)
1444{
1445 struct bt_ctf_field_type *ret = NULL;
1446 struct bt_ctf_field_type_array *array;
1447
1448 if (!type || (type->declaration->id != CTF_TYPE_ARRAY)) {
1449 goto end;
1450 }
1451
1452 array = container_of(type, struct bt_ctf_field_type_array, parent);
1453 ret = array->element_type;
1454 bt_ctf_field_type_get(ret);
1455end:
1456 return ret;
1457}
1458
1459int64_t bt_ctf_field_type_array_get_length(struct bt_ctf_field_type *type)
1460{
1461 int64_t ret;
1462 struct bt_ctf_field_type_array *array;
1463
1464 if (!type || (type->declaration->id != CTF_TYPE_ARRAY)) {
1465 ret = -1;
1466 goto end;
1467 }
1468
1469 array = container_of(type, struct bt_ctf_field_type_array, parent);
1470 ret = (int64_t) array->length;
1471end:
1472 return ret;
1473}
1474
273b65be
JG
1475struct bt_ctf_field_type *bt_ctf_field_type_sequence_create(
1476 struct bt_ctf_field_type *element_type,
1477 const char *length_field_name)
1478{
1479 struct bt_ctf_field_type_sequence *sequence = NULL;
1480
654c1444 1481 if (!element_type || bt_ctf_validate_identifier(length_field_name) ||
9ce21c30 1482 bt_ctf_field_type_validate(element_type)) {
273b65be
JG
1483 goto error;
1484 }
1485
1486 sequence = g_new0(struct bt_ctf_field_type_sequence, 1);
1487 if (!sequence) {
1488 goto error;
1489 }
1490
1491 sequence->parent.declaration = &sequence->declaration.p;
1492 sequence->parent.declaration->id = CTF_TYPE_SEQUENCE;
273b65be
JG
1493 bt_ctf_field_type_get(element_type);
1494 sequence->element_type = element_type;
1495 sequence->length_field_name = g_string_new(length_field_name);
c35a1669 1496 bt_ctf_field_type_init(&sequence->parent);
273b65be
JG
1497 sequence->parent.declaration->alignment =
1498 element_type->declaration->alignment;
1499 return &sequence->parent;
1500error:
1501 return NULL;
1502}
1503
b92ddaaa
JG
1504struct bt_ctf_field_type *bt_ctf_field_type_sequence_get_element_type(
1505 struct bt_ctf_field_type *type)
1506{
1507 struct bt_ctf_field_type *ret = NULL;
1508 struct bt_ctf_field_type_sequence *sequence;
1509
1510 if (!type || (type->declaration->id != CTF_TYPE_SEQUENCE)) {
1511 goto end;
1512 }
1513
1514 sequence = container_of(type, struct bt_ctf_field_type_sequence,
1515 parent);
1516 ret = sequence->element_type;
1517 bt_ctf_field_type_get(ret);
1518end:
1519 return ret;
1520}
1521
1522const char *bt_ctf_field_type_sequence_get_length_field_name(
1523 struct bt_ctf_field_type *type)
1524{
1525 const char *ret = NULL;
1526 struct bt_ctf_field_type_sequence *sequence;
1527
1528 if (!type || (type->declaration->id != CTF_TYPE_SEQUENCE)) {
1529 goto end;
1530 }
1531
1532 sequence = container_of(type, struct bt_ctf_field_type_sequence,
1533 parent);
1534 ret = sequence->length_field_name->str;
1535end:
1536 return ret;
1537}
1538
273b65be
JG
1539struct bt_ctf_field_type *bt_ctf_field_type_string_create(void)
1540{
1541 struct bt_ctf_field_type_string *string =
1542 g_new0(struct bt_ctf_field_type_string, 1);
1543
1544 if (!string) {
1545 return NULL;
1546 }
1547
1548 string->parent.declaration = &string->declaration.p;
1549 string->parent.declaration->id = CTF_TYPE_STRING;
1550 bt_ctf_field_type_init(&string->parent);
1551 string->declaration.encoding = CTF_STRING_UTF8;
1552 string->parent.declaration->alignment = CHAR_BIT;
1553 return &string->parent;
1554}
1555
b92ddaaa
JG
1556enum ctf_string_encoding bt_ctf_field_type_string_get_encoding(
1557 struct bt_ctf_field_type *type)
1558{
1559 struct bt_ctf_field_type_string *string;
1560 enum ctf_string_encoding ret = CTF_STRING_UNKNOWN;
1561
1562 if (!type || (type->declaration->id != CTF_TYPE_STRING)) {
1563 goto end;
1564 }
1565
1566 string = container_of(type, struct bt_ctf_field_type_string,
1567 parent);
1568 ret = string->declaration.encoding;
1569end:
1570 return ret;
1571}
1572
1573int bt_ctf_field_type_string_set_encoding(struct bt_ctf_field_type *type,
273b65be
JG
1574 enum ctf_string_encoding encoding)
1575{
1576 int ret = 0;
1577 struct bt_ctf_field_type_string *string;
1578
1579 if (!type || type->declaration->id != CTF_TYPE_STRING ||
1580 (encoding != CTF_STRING_UTF8 &&
1581 encoding != CTF_STRING_ASCII)) {
1582 ret = -1;
1583 goto end;
1584 }
1585
1586 string = container_of(type, struct bt_ctf_field_type_string, parent);
1587 string->declaration.encoding = encoding;
1588end:
1589 return ret;
1590}
1591
b92ddaaa
JG
1592int bt_ctf_field_type_get_alignment(struct bt_ctf_field_type *type)
1593{
1594 int ret;
1595
1596 if (!type) {
1597 ret = -1;
1598 goto end;
1599 }
1600
1601 ret = (int) type->declaration->alignment;
1602end:
1603 return ret;
1604}
1605
273b65be
JG
1606int bt_ctf_field_type_set_alignment(struct bt_ctf_field_type *type,
1607 unsigned int alignment)
1608{
1609 int ret = 0;
1610
1611 /* Alignment must be bit-aligned (1) or byte aligned */
1612 if (!type || type->frozen || (alignment != 1 && (alignment & 0x7))) {
1613 ret = -1;
1614 goto end;
1615 }
1616
1617 if (type->declaration->id == CTF_TYPE_STRING &&
1618 alignment != CHAR_BIT) {
1619 ret = -1;
1620 goto end;
1621 }
1622
1623 type->declaration->alignment = alignment;
1624 ret = 0;
1625end:
1626 return ret;
1627}
1628
b92ddaaa
JG
1629enum bt_ctf_byte_order bt_ctf_field_type_get_byte_order(
1630 struct bt_ctf_field_type *type)
1631{
1632 enum bt_ctf_byte_order ret = BT_CTF_BYTE_ORDER_UNKNOWN;
c35a1669 1633 int internal_byte_order = -1;
b92ddaaa
JG
1634
1635 if (!type) {
1636 goto end;
1637 }
1638
1639 switch (type->declaration->id) {
1640 case CTF_TYPE_INTEGER:
1641 {
1642 struct bt_ctf_field_type_integer *integer = container_of(
1643 type, struct bt_ctf_field_type_integer, parent);
c35a1669 1644 internal_byte_order = integer->declaration.byte_order;
b92ddaaa
JG
1645 break;
1646 }
1647 case CTF_TYPE_FLOAT:
1648 {
1649 struct bt_ctf_field_type_floating_point *floating_point =
1650 container_of(type,
1651 struct bt_ctf_field_type_floating_point,
1652 parent);
c35a1669 1653 internal_byte_order = floating_point->declaration.byte_order;
b92ddaaa
JG
1654 break;
1655 }
1656 default:
c35a1669
JG
1657 goto end;
1658 }
1659
1660 switch (internal_byte_order) {
1661 case LITTLE_ENDIAN:
1662 ret = BT_CTF_BYTE_ORDER_LITTLE_ENDIAN;
b92ddaaa 1663 break;
c35a1669
JG
1664 case BIG_ENDIAN:
1665 ret = BT_CTF_BYTE_ORDER_BIG_ENDIAN;
1666 break;
1667 case 0:
1668 ret = BT_CTF_BYTE_ORDER_NATIVE;
1669 break;
1670 default:
1671 ret = BT_CTF_BYTE_ORDER_UNKNOWN;
b92ddaaa
JG
1672 }
1673end:
1674 return ret;
1675}
1676
273b65be
JG
1677int bt_ctf_field_type_set_byte_order(struct bt_ctf_field_type *type,
1678 enum bt_ctf_byte_order byte_order)
1679{
1680 int ret = 0;
1681 int internal_byte_order;
1682 enum ctf_type_id type_id;
1683
1684 if (!type || type->frozen) {
1685 ret = -1;
1686 goto end;
1687 }
1688
1689 type_id = type->declaration->id;
1690 switch (byte_order) {
1691 case BT_CTF_BYTE_ORDER_NATIVE:
c35a1669
JG
1692 /* Leave unset. Will be initialized by parent. */
1693 internal_byte_order = 0;
273b65be
JG
1694 break;
1695 case BT_CTF_BYTE_ORDER_LITTLE_ENDIAN:
1696 internal_byte_order = LITTLE_ENDIAN;
1697 break;
1698 case BT_CTF_BYTE_ORDER_BIG_ENDIAN:
1699 case BT_CTF_BYTE_ORDER_NETWORK:
1700 internal_byte_order = BIG_ENDIAN;
1701 break;
1702 default:
1703 ret = -1;
1704 goto end;
1705 }
1706
1707 if (set_byte_order_funcs[type_id]) {
c35a1669 1708 set_byte_order_funcs[type_id](type, internal_byte_order, 0);
273b65be
JG
1709 }
1710end:
1711 return ret;
1712}
1713
b92ddaaa
JG
1714enum ctf_type_id bt_ctf_field_type_get_type_id(
1715 struct bt_ctf_field_type *type)
1716{
1717 if (!type) {
1718 return CTF_TYPE_UNKNOWN;
1719 }
1720
1721 return type->declaration->id;
1722}
1723
2f2d8e05
JG
1724const char *bt_ctf_field_type_get_alias_name(
1725 struct bt_ctf_field_type *type)
1726{
1727 const char *name = NULL;
1728
1729 if (!type || !type->alias_name) {
1730 goto end;
1731 }
1732
1733 name = type->alias_name->str;
1734end:
1735 return name;
1736}
1737
273b65be
JG
1738void bt_ctf_field_type_get(struct bt_ctf_field_type *type)
1739{
1740 if (!type) {
1741 return;
1742 }
1743
1744 bt_ctf_ref_get(&type->ref_count);
1745}
1746
1747void bt_ctf_field_type_put(struct bt_ctf_field_type *type)
1748{
273b65be
JG
1749 if (!type) {
1750 return;
1751 }
1752
2f2d8e05 1753 bt_ctf_ref_put(&type->ref_count, bt_ctf_field_type_destroy);
273b65be
JG
1754}
1755
1756BT_HIDDEN
1757void bt_ctf_field_type_freeze(struct bt_ctf_field_type *type)
1758{
1759 if (!type) {
1760 return;
1761 }
1762
1763 type->freeze(type);
1764}
1765
1766BT_HIDDEN
b92ddaaa
JG
1767struct bt_ctf_field_type *bt_ctf_field_type_variant_get_field_type_signed(
1768 struct bt_ctf_field_type_variant *variant,
1769 int64_t tag_value)
273b65be
JG
1770{
1771 struct bt_ctf_field_type *type = NULL;
b92ddaaa
JG
1772 GQuark field_name_quark;
1773 gpointer index;
1774 struct structure_field *field_entry;
1775 struct range_overlap_query query = {
1776 .range_start._signed = tag_value,
1777 .range_end._signed = tag_value,
1778 .mapping_name = 0, .overlaps = 0};
273b65be 1779
b92ddaaa
JG
1780 g_ptr_array_foreach(variant->tag->entries, check_ranges_overlap,
1781 &query);
1782 if (!query.overlaps) {
273b65be
JG
1783 goto end;
1784 }
1785
b92ddaaa
JG
1786 field_name_quark = query.mapping_name;
1787 if (!g_hash_table_lookup_extended(variant->field_name_to_index,
1788 GUINT_TO_POINTER(field_name_quark), NULL, &index)) {
273b65be
JG
1789 goto end;
1790 }
1791
e54fab7e 1792 field_entry = g_ptr_array_index(variant->fields, (size_t) index);
b92ddaaa 1793 type = field_entry->type;
273b65be
JG
1794end:
1795 return type;
1796}
1797
1798BT_HIDDEN
b92ddaaa 1799struct bt_ctf_field_type *bt_ctf_field_type_variant_get_field_type_unsigned(
273b65be 1800 struct bt_ctf_field_type_variant *variant,
b92ddaaa 1801 uint64_t tag_value)
273b65be
JG
1802{
1803 struct bt_ctf_field_type *type = NULL;
1804 GQuark field_name_quark;
1805 gpointer index;
1806 struct structure_field *field_entry;
b92ddaaa
JG
1807 struct range_overlap_query query = {
1808 .range_start._unsigned = tag_value,
1809 .range_end._unsigned = tag_value,
1810 .mapping_name = 0, .overlaps = 0};
273b65be 1811
b92ddaaa
JG
1812 g_ptr_array_foreach(variant->tag->entries,
1813 check_ranges_overlap_unsigned,
273b65be
JG
1814 &query);
1815 if (!query.overlaps) {
1816 goto end;
1817 }
1818
1819 field_name_quark = query.mapping_name;
1820 if (!g_hash_table_lookup_extended(variant->field_name_to_index,
1821 GUINT_TO_POINTER(field_name_quark), NULL, &index)) {
1822 goto end;
1823 }
1824
1825 field_entry = g_ptr_array_index(variant->fields, (size_t)index);
1826 type = field_entry->type;
1827end:
1828 return type;
1829}
1830
1831BT_HIDDEN
1832int bt_ctf_field_type_serialize(struct bt_ctf_field_type *type,
1833 struct metadata_context *context)
1834{
1835 int ret;
1836
1837 if (!type || !context) {
1838 ret = -1;
1839 goto end;
1840 }
1841
1842 ret = type->serialize(type, context);
1843end:
1844 return ret;
1845}
1846
c35a1669
JG
1847BT_HIDDEN
1848void bt_ctf_field_type_set_native_byte_order(struct bt_ctf_field_type *type,
1849 int byte_order)
1850{
1851 if (!type) {
1852 return;
1853 }
1854
1855 assert(byte_order == LITTLE_ENDIAN || byte_order == BIG_ENDIAN);
1856 if (set_byte_order_funcs[type->declaration->id]) {
1857 set_byte_order_funcs[type->declaration->id](type,
1858 byte_order, 1);
1859 }
1860}
1861
273b65be
JG
1862static
1863void bt_ctf_field_type_integer_destroy(struct bt_ctf_ref *ref)
1864{
1865 struct bt_ctf_field_type_integer *integer;
1866
1867 if (!ref) {
1868 return;
1869 }
1870
1871 integer = container_of(
1872 container_of(ref, struct bt_ctf_field_type, ref_count),
1873 struct bt_ctf_field_type_integer, parent);
6cfb906f 1874 bt_ctf_clock_put(integer->mapped_clock);
273b65be
JG
1875 g_free(integer);
1876}
1877
1878static
1879void bt_ctf_field_type_enumeration_destroy(struct bt_ctf_ref *ref)
1880{
1881 struct bt_ctf_field_type_enumeration *enumeration;
1882
1883 if (!ref) {
1884 return;
1885 }
1886
1887 enumeration = container_of(
1888 container_of(ref, struct bt_ctf_field_type, ref_count),
1889 struct bt_ctf_field_type_enumeration, parent);
1890 g_ptr_array_free(enumeration->entries, TRUE);
1891 bt_ctf_field_type_put(enumeration->container);
1892 g_free(enumeration);
1893}
1894
1895static
1896void bt_ctf_field_type_floating_point_destroy(struct bt_ctf_ref *ref)
1897{
1898 struct bt_ctf_field_type_floating_point *floating_point;
1899
1900 if (!ref) {
1901 return;
1902 }
1903
1904 floating_point = container_of(
1905 container_of(ref, struct bt_ctf_field_type, ref_count),
1906 struct bt_ctf_field_type_floating_point, parent);
1907 g_free(floating_point);
1908}
1909
1910static
1911void bt_ctf_field_type_structure_destroy(struct bt_ctf_ref *ref)
1912{
1913 struct bt_ctf_field_type_structure *structure;
1914
1915 if (!ref) {
1916 return;
1917 }
1918
1919 structure = container_of(
1920 container_of(ref, struct bt_ctf_field_type, ref_count),
1921 struct bt_ctf_field_type_structure, parent);
1922 g_ptr_array_free(structure->fields, TRUE);
1923 g_hash_table_destroy(structure->field_name_to_index);
1924 g_free(structure);
1925}
1926
1927static
1928void bt_ctf_field_type_variant_destroy(struct bt_ctf_ref *ref)
1929{
1930 struct bt_ctf_field_type_variant *variant;
1931
1932 if (!ref) {
1933 return;
1934 }
1935
1936 variant = container_of(
1937 container_of(ref, struct bt_ctf_field_type, ref_count),
1938 struct bt_ctf_field_type_variant, parent);
1939 g_ptr_array_free(variant->fields, TRUE);
1940 g_hash_table_destroy(variant->field_name_to_index);
1941 g_string_free(variant->tag_name, TRUE);
1942 bt_ctf_field_type_put(&variant->tag->parent);
1943 g_free(variant);
1944}
1945
1946static
1947void bt_ctf_field_type_array_destroy(struct bt_ctf_ref *ref)
1948{
1949 struct bt_ctf_field_type_array *array;
1950
1951 if (!ref) {
1952 return;
1953 }
1954
1955 array = container_of(
1956 container_of(ref, struct bt_ctf_field_type, ref_count),
1957 struct bt_ctf_field_type_array, parent);
1958 bt_ctf_field_type_put(array->element_type);
1959 g_free(array);
1960}
1961
1962static
1963void bt_ctf_field_type_sequence_destroy(struct bt_ctf_ref *ref)
1964{
1965 struct bt_ctf_field_type_sequence *sequence;
1966
1967 if (!ref) {
1968 return;
1969 }
1970
1971 sequence = container_of(
1972 container_of(ref, struct bt_ctf_field_type, ref_count),
1973 struct bt_ctf_field_type_sequence, parent);
1974 bt_ctf_field_type_put(sequence->element_type);
1975 g_string_free(sequence->length_field_name, TRUE);
1976 g_free(sequence);
1977}
1978
1979static
1980void bt_ctf_field_type_string_destroy(struct bt_ctf_ref *ref)
1981{
1982 struct bt_ctf_field_type_string *string;
1983
1984 if (!ref) {
1985 return;
1986 }
1987
1988 string = container_of(
1989 container_of(ref, struct bt_ctf_field_type, ref_count),
1990 struct bt_ctf_field_type_string, parent);
1991 g_free(string);
1992}
1993
1994static
1995void generic_field_type_freeze(struct bt_ctf_field_type *type)
1996{
1997 type->frozen = 1;
1998}
1999
2000static
2001void bt_ctf_field_type_enumeration_freeze(struct bt_ctf_field_type *type)
2002{
2003 struct bt_ctf_field_type_enumeration *enumeration_type = container_of(
2004 type, struct bt_ctf_field_type_enumeration, parent);
2005
2006 generic_field_type_freeze(type);
2007 bt_ctf_field_type_freeze(enumeration_type->container);
2008}
2009
2010static
2011void freeze_structure_field(struct structure_field *field)
2012{
2013 bt_ctf_field_type_freeze(field->type);
2014}
2015
2016static
2017void bt_ctf_field_type_structure_freeze(struct bt_ctf_field_type *type)
2018{
2019 struct bt_ctf_field_type_structure *structure_type = container_of(
2020 type, struct bt_ctf_field_type_structure, parent);
2021
2022 generic_field_type_freeze(type);
2023 g_ptr_array_foreach(structure_type->fields, (GFunc)freeze_structure_field,
2024 NULL);
2025}
2026
2027static
2028void bt_ctf_field_type_variant_freeze(struct bt_ctf_field_type *type)
2029{
2030 struct bt_ctf_field_type_variant *variant_type = container_of(
2031 type, struct bt_ctf_field_type_variant, parent);
2032
2033 generic_field_type_freeze(type);
2034 g_ptr_array_foreach(variant_type->fields, (GFunc)freeze_structure_field,
2035 NULL);
2036}
2037
2038static
2039void bt_ctf_field_type_array_freeze(struct bt_ctf_field_type *type)
2040{
2041 struct bt_ctf_field_type_array *array_type = container_of(
2042 type, struct bt_ctf_field_type_array, parent);
2043
2044 generic_field_type_freeze(type);
2045 bt_ctf_field_type_freeze(array_type->element_type);
2046}
2047
2048static
2049void bt_ctf_field_type_sequence_freeze(struct bt_ctf_field_type *type)
2050{
2051 struct bt_ctf_field_type_sequence *sequence_type = container_of(
2052 type, struct bt_ctf_field_type_sequence, parent);
2053
2054 generic_field_type_freeze(type);
2055 bt_ctf_field_type_freeze(sequence_type->element_type);
2056}
2057
2058static
2059const char *get_encoding_string(enum ctf_string_encoding encoding)
2060{
2061 const char *encoding_string;
2062
2063 switch (encoding) {
2064 case CTF_STRING_NONE:
2065 encoding_string = "none";
2066 break;
2067 case CTF_STRING_ASCII:
2068 encoding_string = "ASCII";
2069 break;
2070 case CTF_STRING_UTF8:
2071 encoding_string = "UTF8";
2072 break;
2073 default:
2074 encoding_string = "unknown";
2075 break;
2076 }
2077
2078 return encoding_string;
2079}
2080
2081static
2082const char *get_integer_base_string(enum bt_ctf_integer_base base)
2083{
2084 const char *base_string;
2085
2086 switch (base) {
2087 case BT_CTF_INTEGER_BASE_DECIMAL:
2088 base_string = "decimal";
2089 break;
2090 case BT_CTF_INTEGER_BASE_HEXADECIMAL:
2091 base_string = "hexadecimal";
2092 break;
2093 case BT_CTF_INTEGER_BASE_OCTAL:
2094 base_string = "octal";
2095 break;
2096 case BT_CTF_INTEGER_BASE_BINARY:
2097 base_string = "binary";
2098 break;
2099 default:
2100 base_string = "unknown";
2101 break;
2102 }
2103
2104 return base_string;
2105}
2106
2107static
2108int bt_ctf_field_type_integer_serialize(struct bt_ctf_field_type *type,
2109 struct metadata_context *context)
2110{
2111 struct bt_ctf_field_type_integer *integer = container_of(type,
2112 struct bt_ctf_field_type_integer, parent);
6cfb906f 2113 int ret = 0;
273b65be
JG
2114
2115 g_string_append_printf(context->string,
6cfb906f 2116 "integer { size = %zu; align = %zu; signed = %s; encoding = %s; base = %s; byte_order = %s",
273b65be
JG
2117 integer->declaration.len, type->declaration->alignment,
2118 (integer->declaration.signedness ? "true" : "false"),
2119 get_encoding_string(integer->declaration.encoding),
2120 get_integer_base_string(integer->declaration.base),
2121 get_byte_order_string(integer->declaration.byte_order));
6cfb906f
JG
2122 if (integer->mapped_clock) {
2123 const char *clock_name = bt_ctf_clock_get_name(
2124 integer->mapped_clock);
2125
2126 if (!clock_name) {
2127 ret = -1;
2128 goto end;
2129 }
2130
2131 g_string_append_printf(context->string,
2132 ", map = clock.%s.value", clock_name);
2133 }
2134
2135 g_string_append(context->string, "; }");
2136end:
2137 return ret;
273b65be
JG
2138}
2139
2140static
2141int bt_ctf_field_type_enumeration_serialize(struct bt_ctf_field_type *type,
2142 struct metadata_context *context)
2143{
2144 size_t entry;
9ce21c30 2145 int ret;
273b65be
JG
2146 struct bt_ctf_field_type_enumeration *enumeration = container_of(type,
2147 struct bt_ctf_field_type_enumeration, parent);
b92ddaaa
JG
2148 struct bt_ctf_field_type *container_type;
2149 int container_signed;
273b65be 2150
9ce21c30
JG
2151 ret = bt_ctf_field_type_validate(type);
2152 if (ret) {
2153 goto end;
2154 }
2155
b92ddaaa
JG
2156 container_type = bt_ctf_field_type_enumeration_get_container_type(type);
2157 if (!container_type) {
2158 ret = -1;
2159 goto end;
2160 }
2161
2162 container_signed = bt_ctf_field_type_integer_get_signed(container_type);
2163 if (container_signed < 0) {
2164 ret = container_signed;
2165 goto error_put_container_type;
2166 }
2167
273b65be
JG
2168 g_string_append(context->string, "enum : ");
2169 ret = bt_ctf_field_type_serialize(enumeration->container, context);
2170 if (ret) {
b92ddaaa 2171 goto error_put_container_type;
273b65be
JG
2172 }
2173
2174 g_string_append(context->string, " { ");
2175 for (entry = 0; entry < enumeration->entries->len; entry++) {
2176 struct enumeration_mapping *mapping =
2177 enumeration->entries->pdata[entry];
2178
b92ddaaa
JG
2179 if (container_signed) {
2180 if (mapping->range_start._signed ==
2181 mapping->range_end._signed) {
2182 g_string_append_printf(context->string,
2183 "\"%s\" = %" PRId64,
2184 g_quark_to_string(mapping->string),
2185 mapping->range_start._signed);
2186 } else {
2187 g_string_append_printf(context->string,
2188 "\"%s\" = %" PRId64 " ... %" PRId64,
2189 g_quark_to_string(mapping->string),
2190 mapping->range_start._signed,
2191 mapping->range_end._signed);
2192 }
273b65be 2193 } else {
b92ddaaa
JG
2194 if (mapping->range_start._unsigned ==
2195 mapping->range_end._unsigned) {
2196 g_string_append_printf(context->string,
2197 "\"%s\" = %" PRIu64,
2198 g_quark_to_string(mapping->string),
2199 mapping->range_start._unsigned);
2200 } else {
2201 g_string_append_printf(context->string,
2202 "\"%s\" = %" PRIu64 " ... %" PRIu64,
2203 g_quark_to_string(mapping->string),
2204 mapping->range_start._unsigned,
2205 mapping->range_end._unsigned);
2206 }
273b65be
JG
2207 }
2208
2209 g_string_append(context->string,
2210 ((entry != (enumeration->entries->len - 1)) ?
2211 ", " : " }"));
2212 }
2213
2214 if (context->field_name->len) {
2215 g_string_append_printf(context->string, " %s",
2216 context->field_name->str);
2217 g_string_assign(context->field_name, "");
2218 }
b92ddaaa
JG
2219error_put_container_type:
2220 bt_ctf_field_type_put(container_type);
273b65be
JG
2221end:
2222 return ret;
2223}
2224
2225static
2226int bt_ctf_field_type_floating_point_serialize(struct bt_ctf_field_type *type,
2227 struct metadata_context *context)
2228{
2229 struct bt_ctf_field_type_floating_point *floating_point = container_of(
2230 type, struct bt_ctf_field_type_floating_point, parent);
2231
2232 g_string_append_printf(context->string,
2233 "floating_point { exp_dig = %zu; mant_dig = %zu; byte_order = %s; align = %zu; }",
2234 floating_point->declaration.exp->len,
2235 floating_point->declaration.mantissa->len + 1,
2236 get_byte_order_string(floating_point->declaration.byte_order),
2237 type->declaration->alignment);
2238 return 0;
2239}
2240
2241static
2242int bt_ctf_field_type_structure_serialize(struct bt_ctf_field_type *type,
2243 struct metadata_context *context)
2244{
2245 size_t i;
2246 unsigned int indent;
2247 int ret = 0;
2248 struct bt_ctf_field_type_structure *structure = container_of(type,
2249 struct bt_ctf_field_type_structure, parent);
2250 GString *structure_field_name = context->field_name;
2251
2252 context->field_name = g_string_new("");
2253
2254 context->current_indentation_level++;
2255 g_string_append(context->string, "struct {\n");
2256
2257 for (i = 0; i < structure->fields->len; i++) {
2258 struct structure_field *field;
2259
2260 for (indent = 0; indent < context->current_indentation_level;
2261 indent++) {
2262 g_string_append_c(context->string, '\t');
2263 }
2264
2265 field = structure->fields->pdata[i];
2266 g_string_assign(context->field_name,
2267 g_quark_to_string(field->name));
2268 ret = bt_ctf_field_type_serialize(field->type, context);
2269 if (ret) {
2270 goto end;
2271 }
2272
2273 if (context->field_name->len) {
2274 g_string_append_printf(context->string, " %s",
2275 context->field_name->str);
2276 }
2277 g_string_append(context->string, ";\n");
2278 }
2279
2280 context->current_indentation_level--;
2281 for (indent = 0; indent < context->current_indentation_level;
2282 indent++) {
2283 g_string_append_c(context->string, '\t');
2284 }
2285
2286 g_string_append_printf(context->string, "} align(%zu)",
2287 type->declaration->alignment);
2288end:
2289 g_string_free(context->field_name, TRUE);
2290 context->field_name = structure_field_name;
2291 return ret;
2292}
2293
2294static
2295int bt_ctf_field_type_variant_serialize(struct bt_ctf_field_type *type,
2296 struct metadata_context *context)
2297{
2298 size_t i;
2299 unsigned int indent;
2300 int ret = 0;
2301 struct bt_ctf_field_type_variant *variant = container_of(
2302 type, struct bt_ctf_field_type_variant, parent);
2303 GString *variant_field_name = context->field_name;
2304
2305 context->field_name = g_string_new("");
2306 g_string_append_printf(context->string,
2307 "variant <%s> {\n", variant->tag_name->str);
2308 context->current_indentation_level++;
2309 for (i = 0; i < variant->fields->len; i++) {
2310 struct structure_field *field = variant->fields->pdata[i];
2311
2312 g_string_assign(context->field_name,
2313 g_quark_to_string(field->name));
2314 for (indent = 0; indent < context->current_indentation_level;
2315 indent++) {
2316 g_string_append_c(context->string, '\t');
2317 }
2318
2319 g_string_assign(context->field_name,
2320 g_quark_to_string(field->name));
2321 ret = bt_ctf_field_type_serialize(field->type, context);
2322 if (ret) {
2323 goto end;
2324 }
2325
2326 if (context->field_name->len) {
2327 g_string_append_printf(context->string, " %s;",
2328 context->field_name->str);
2329 }
2330
2331 g_string_append_c(context->string, '\n');
2332 }
2333
2334 context->current_indentation_level--;
2335 for (indent = 0; indent < context->current_indentation_level;
2336 indent++) {
2337 g_string_append_c(context->string, '\t');
2338 }
2339
2340 g_string_append(context->string, "}");
2341end:
2342 g_string_free(context->field_name, TRUE);
2343 context->field_name = variant_field_name;
2344 return ret;
2345}
2346
2347static
2348int bt_ctf_field_type_array_serialize(struct bt_ctf_field_type *type,
2349 struct metadata_context *context)
2350{
2351 int ret = 0;
2352 struct bt_ctf_field_type_array *array = container_of(type,
2353 struct bt_ctf_field_type_array, parent);
2354
2355 ret = bt_ctf_field_type_serialize(array->element_type, context);
2356 if (ret) {
2357 goto end;
2358 }
2359
2360 if (context->field_name->len) {
2361 g_string_append_printf(context->string, " %s[%u]",
2362 context->field_name->str, array->length);
2363 g_string_assign(context->field_name, "");
2364 } else {
2365 g_string_append_printf(context->string, "[%u]", array->length);
2366 }
2367end:
2368 return ret;
2369}
2370
2371static
2372int bt_ctf_field_type_sequence_serialize(struct bt_ctf_field_type *type,
2373 struct metadata_context *context)
2374{
2375 int ret = 0;
2376 struct bt_ctf_field_type_sequence *sequence = container_of(
2377 type, struct bt_ctf_field_type_sequence, parent);
2378
2379 ret = bt_ctf_field_type_serialize(sequence->element_type, context);
2380 if (ret) {
2381 goto end;
2382 }
2383
2384 if (context->field_name->len) {
2385 g_string_append_printf(context->string, " %s[%s]",
2386 context->field_name->str,
2387 sequence->length_field_name->str);
2388 g_string_assign(context->field_name, "");
2389 } else {
2390 g_string_append_printf(context->string, "[%s]",
2391 sequence->length_field_name->str);
2392 }
2393end:
2394 return ret;
2395}
2396
2397static
2398int bt_ctf_field_type_string_serialize(struct bt_ctf_field_type *type,
2399 struct metadata_context *context)
2400{
2401 struct bt_ctf_field_type_string *string = container_of(
2402 type, struct bt_ctf_field_type_string, parent);
2403
2404 g_string_append_printf(context->string,
2405 "string { encoding = %s; }",
2406 get_encoding_string(string->declaration.encoding));
2407 return 0;
2408}
2409
2410static
2411void bt_ctf_field_type_integer_set_byte_order(struct bt_ctf_field_type *type,
c35a1669 2412 int byte_order, int set_native)
273b65be
JG
2413{
2414 struct bt_ctf_field_type_integer *integer_type = container_of(type,
2415 struct bt_ctf_field_type_integer, parent);
2416
c35a1669
JG
2417 if (set_native) {
2418 integer_type->declaration.byte_order =
2419 integer_type->declaration.byte_order == 0 ?
2420 byte_order : integer_type->declaration.byte_order;
2421 } else {
2422 integer_type->declaration.byte_order = byte_order;
2423 }
2424}
2425
2426static
2427void bt_ctf_field_type_enumeration_set_byte_order(
2428 struct bt_ctf_field_type *type, int byte_order, int set_native)
2429{
2430 struct bt_ctf_field_type_enumeration *enum_type = container_of(type,
2431 struct bt_ctf_field_type_enumeration, parent);
2432
2433 /* Safe to assume that container is an integer */
2434 bt_ctf_field_type_integer_set_byte_order(enum_type->container,
2435 byte_order, set_native);
273b65be
JG
2436}
2437
2438static
2439void bt_ctf_field_type_floating_point_set_byte_order(
c35a1669 2440 struct bt_ctf_field_type *type, int byte_order, int set_native)
273b65be
JG
2441{
2442 struct bt_ctf_field_type_floating_point *floating_point_type =
2443 container_of(type, struct bt_ctf_field_type_floating_point,
2444 parent);
2445
c35a1669
JG
2446 if (set_native) {
2447 floating_point_type->declaration.byte_order =
2448 floating_point_type->declaration.byte_order == 0 ?
2449 byte_order :
2450 floating_point_type->declaration.byte_order;
2451 floating_point_type->sign.byte_order =
2452 floating_point_type->sign.byte_order == 0 ?
2453 byte_order : floating_point_type->sign.byte_order;
2454 floating_point_type->mantissa.byte_order =
2455 floating_point_type->mantissa.byte_order == 0 ?
2456 byte_order : floating_point_type->mantissa.byte_order;
2457 floating_point_type->exp.byte_order =
2458 floating_point_type->exp.byte_order == 0 ?
2459 byte_order : floating_point_type->exp.byte_order;
2460 } else {
2461 floating_point_type->declaration.byte_order = byte_order;
2462 floating_point_type->sign.byte_order = byte_order;
2463 floating_point_type->mantissa.byte_order = byte_order;
2464 floating_point_type->exp.byte_order = byte_order;
2465 }
2466}
2467
2468static
2469void bt_ctf_field_type_structure_set_byte_order(struct bt_ctf_field_type *type,
2470 int byte_order, int set_native)
2471{
2472 int i;
2473 struct bt_ctf_field_type_structure *structure_type =
2474 container_of(type, struct bt_ctf_field_type_structure,
2475 parent);
2476
2477 for (i = 0; i < structure_type->fields->len; i++) {
2478 struct structure_field *field = g_ptr_array_index(
2479 structure_type->fields, i);
2480 struct bt_ctf_field_type *field_type = field->type;
2481
2482 if (set_byte_order_funcs[field_type->declaration->id]) {
2483 set_byte_order_funcs[field_type->declaration->id](
2484 field_type, byte_order, set_native);
2485 }
2486 }
2487}
2488
2489static
2490void bt_ctf_field_type_variant_set_byte_order(struct bt_ctf_field_type *type,
2491 int byte_order, int set_native)
2492{
2493 int i;
2494 struct bt_ctf_field_type_variant *variant_type =
2495 container_of(type, struct bt_ctf_field_type_variant,
2496 parent);
2497
2498 for (i = 0; i < variant_type->fields->len; i++) {
2499 struct structure_field *field = g_ptr_array_index(
2500 variant_type->fields, i);
2501 struct bt_ctf_field_type *field_type = field->type;
2502
2503 if (set_byte_order_funcs[field_type->declaration->id]) {
2504 set_byte_order_funcs[field_type->declaration->id](
2505 field_type, byte_order, set_native);
2506 }
2507 }
2508}
2509
2510static
2511void bt_ctf_field_type_array_set_byte_order(struct bt_ctf_field_type *type,
2512 int byte_order, int set_native)
2513{
2514 struct bt_ctf_field_type_array *array_type =
2515 container_of(type, struct bt_ctf_field_type_array,
2516 parent);
2517
2518 if (set_byte_order_funcs[array_type->element_type->declaration->id]) {
2519 set_byte_order_funcs[array_type->element_type->declaration->id](
2520 array_type->element_type, byte_order, set_native);
2521 }
2522}
2523
2524static
2525void bt_ctf_field_type_sequence_set_byte_order(struct bt_ctf_field_type *type,
2526 int byte_order, int set_native)
2527{
2528 struct bt_ctf_field_type_sequence *sequence_type =
2529 container_of(type, struct bt_ctf_field_type_sequence,
2530 parent);
2531
2532 if (set_byte_order_funcs[
2533 sequence_type->element_type->declaration->id]) {
2534 set_byte_order_funcs[
2535 sequence_type->element_type->declaration->id](
2536 sequence_type->element_type, byte_order, set_native);
2537 }
273b65be 2538}
This page took 0.139346 seconds and 4 git commands to generate.