Fix: Don't freeze field type on addition to structure
[babeltrace.git] / formats / ctf / ir / event-types.c
1 /*
2 * event-types.c
3 *
4 * Babeltrace CTF IR - Event Types
5 *
6 * Copyright 2013, 2014 Jérémie Galarneau <jeremie.galarneau@efficios.com>
7 *
8 * Author: Jérémie Galarneau <jeremie.galarneau@efficios.com>
9 *
10 * Permission is hereby granted, free of charge, to any person obtaining a copy
11 * of this software and associated documentation files (the "Software"), to deal
12 * in the Software without restriction, including without limitation the rights
13 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14 * copies of the Software, and to permit persons to whom the Software is
15 * furnished to do so, subject to the following conditions:
16 *
17 * The above copyright notice and this permission notice shall be included in
18 * all copies or substantial portions of the Software.
19 *
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26 * SOFTWARE.
27 */
28
29 #include <babeltrace/ctf-writer/event-types.h>
30 #include <babeltrace/ctf-ir/event-types-internal.h>
31 #include <babeltrace/ctf-ir/utils.h>
32 #include <babeltrace/ctf-ir/clock.h>
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>
38 #include <stdlib.h>
39
40 struct range_overlap_query {
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;
50 int overlaps;
51 GQuark mapping_name;
52 };
53
54 static
55 void bt_ctf_field_type_destroy(struct bt_ctf_ref *);
56 static
57 void bt_ctf_field_type_integer_destroy(struct bt_ctf_ref *);
58 static
59 void bt_ctf_field_type_enumeration_destroy(struct bt_ctf_ref *);
60 static
61 void bt_ctf_field_type_floating_point_destroy(struct bt_ctf_ref *);
62 static
63 void bt_ctf_field_type_structure_destroy(struct bt_ctf_ref *);
64 static
65 void bt_ctf_field_type_variant_destroy(struct bt_ctf_ref *);
66 static
67 void bt_ctf_field_type_array_destroy(struct bt_ctf_ref *);
68 static
69 void bt_ctf_field_type_sequence_destroy(struct bt_ctf_ref *);
70 static
71 void bt_ctf_field_type_string_destroy(struct bt_ctf_ref *);
72
73 static
74 void (* 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
87 static
88 void generic_field_type_freeze(struct bt_ctf_field_type *);
89 static
90 void bt_ctf_field_type_enumeration_freeze(struct bt_ctf_field_type *);
91 static
92 void bt_ctf_field_type_structure_freeze(struct bt_ctf_field_type *);
93 static
94 void bt_ctf_field_type_variant_freeze(struct bt_ctf_field_type *);
95 static
96 void bt_ctf_field_type_array_freeze(struct bt_ctf_field_type *);
97 static
98 void bt_ctf_field_type_sequence_freeze(struct bt_ctf_field_type *);
99
100 static
101 type_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
112 static
113 int bt_ctf_field_type_integer_serialize(struct bt_ctf_field_type *,
114 struct metadata_context *);
115 static
116 int bt_ctf_field_type_enumeration_serialize(struct bt_ctf_field_type *,
117 struct metadata_context *);
118 static
119 int bt_ctf_field_type_floating_point_serialize(
120 struct bt_ctf_field_type *, struct metadata_context *);
121 static
122 int bt_ctf_field_type_structure_serialize(struct bt_ctf_field_type *,
123 struct metadata_context *);
124 static
125 int bt_ctf_field_type_variant_serialize(struct bt_ctf_field_type *,
126 struct metadata_context *);
127 static
128 int bt_ctf_field_type_array_serialize(struct bt_ctf_field_type *,
129 struct metadata_context *);
130 static
131 int bt_ctf_field_type_sequence_serialize(struct bt_ctf_field_type *,
132 struct metadata_context *);
133 static
134 int bt_ctf_field_type_string_serialize(struct bt_ctf_field_type *,
135 struct metadata_context *);
136
137 static
138 type_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
152 static
153 void bt_ctf_field_type_integer_set_byte_order(struct bt_ctf_field_type *,
154 int byte_order, int set_native);
155 static
156 void bt_ctf_field_type_enumeration_set_byte_order(struct bt_ctf_field_type *,
157 int byte_order, int set_native);
158 static
159 void bt_ctf_field_type_floating_point_set_byte_order(
160 struct bt_ctf_field_type *, int byte_order, int set_native);
161 static
162 void bt_ctf_field_type_structure_set_byte_order(struct bt_ctf_field_type *,
163 int byte_order, int set_native);
164 static
165 void bt_ctf_field_type_variant_set_byte_order(struct bt_ctf_field_type *,
166 int byte_order, int set_native);
167 static
168 void bt_ctf_field_type_array_set_byte_order(struct bt_ctf_field_type *,
169 int byte_order, int set_native);
170 static
171 void bt_ctf_field_type_sequence_set_byte_order(struct bt_ctf_field_type *,
172 int byte_order, int set_native);
173
174 /* The set_native flag only set the byte order if it is set to native */
175 static
176 void (* const set_byte_order_funcs[])(struct bt_ctf_field_type *,
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,
181 [CTF_TYPE_FLOAT] =
182 bt_ctf_field_type_floating_point_set_byte_order,
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,
189 };
190
191 static
192 void destroy_enumeration_mapping(struct enumeration_mapping *mapping)
193 {
194 g_free(mapping);
195 }
196
197 static
198 void 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
207 static
208 void check_ranges_overlap(gpointer element, gpointer query)
209 {
210 struct enumeration_mapping *mapping = element;
211 struct range_overlap_query *overlap_query = query;
212
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
224 static
225 void 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) {
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
241 static
242 gint 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
248 static
249 gint 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
255 static
256 void bt_ctf_field_type_init(struct bt_ctf_field_type *type)
257 {
258 enum ctf_type_id type_id = type->declaration->id;
259 int ret;
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];
267 ret = bt_ctf_field_type_set_byte_order(type, BT_CTF_BYTE_ORDER_NATIVE);
268 assert(!ret);
269 type->declaration->alignment = 1;
270 }
271
272 static
273 int 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 */
283 if (g_hash_table_lookup_extended(field_name_to_index,
284 GUINT_TO_POINTER(name_quark), NULL, NULL)) {
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);
302 end:
303 return ret;
304 }
305
306 static
307 void 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
329 BT_HIDDEN
330 int 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
339 switch (type->declaration->id) {
340 case CTF_TYPE_ENUM:
341 {
342 struct bt_ctf_field_type_enumeration *enumeration =
343 container_of(type, struct bt_ctf_field_type_enumeration,
344 parent);
345
346 /* Ensure enum has entries */
347 ret = enumeration->entries->len ? 0 : -1;
348 break;
349 }
350 default:
351 break;
352 }
353 end:
354 return ret;
355 }
356
357 struct 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
362 if (!integer || size == 0 || size > 64) {
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
375 int 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;
387 end:
388 return ret;
389 }
390
391 int 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;
403 end:
404 return ret;
405 }
406
407 int 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);
420 integer->declaration.signedness = !!is_signed;
421 end:
422 return ret;
423 }
424
425 enum 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;
437 end:
438 return ret;
439 }
440
441 int 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 }
466 end:
467 return ret;
468 }
469
470 enum 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;
482 end:
483 return ret;
484 }
485
486 int 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;
502 end:
503 return ret;
504 }
505
506 struct 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 }
521 end:
522 return clock;
523 }
524
525 int 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;
547 end:
548 return ret;
549 }
550
551 struct 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
560 if (integer_container_type->declaration->id != CTF_TYPE_INTEGER) {
561 goto error;
562 }
563
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;
577 error:
578 g_free(enumeration);
579 return NULL;
580 }
581
582 struct 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);
600 end:
601 return container_type;
602 }
603
604 int 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;
613 char *escaped_string;
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
622 if (!string || strlen(string) == 0) {
623 ret = -1;
624 goto end;
625 }
626
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);
634 query = (struct range_overlap_query) {
635 .range_start._signed = range_start,
636 .range_end._signed = range_end,
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;
646 goto error_free;
647 }
648
649 mapping = g_new(struct enumeration_mapping, 1);
650 if (!mapping) {
651 ret = -1;
652 goto error_free;
653 }
654
655 *mapping = (struct enumeration_mapping) {
656 .range_start._signed = range_start,
657 .range_end._signed = range_end, .string = mapping_name};
658 g_ptr_array_add(enumeration->entries, mapping);
659 g_ptr_array_sort(enumeration->entries,
660 (GCompareFunc)compare_enumeration_mappings_signed);
661 error_free:
662 free(escaped_string);
663 end:
664 return ret;
665 }
666
667 int 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);
725 error_free:
726 free(escaped_string);
727 end:
728 return ret;
729 }
730
731 const 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) {
738 .range_start._unsigned = value,
739 .range_end._unsigned = value,
740 .overlaps = 0 };
741
742 g_ptr_array_foreach(enumeration_type->entries,
743 check_ranges_overlap_unsigned,
744 &query);
745 if (!query.overlaps) {
746 goto end;
747 }
748
749 name = g_quark_to_string(query.mapping_name);
750 end:
751 return name;
752 }
753
754 const 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) {
761 .range_start._signed = value,
762 .range_end._signed = value,
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);
772 end:
773 return name;
774 }
775
776 int bt_ctf_field_type_enumeration_get_mapping_count(
777 struct bt_ctf_field_type *type)
778 {
779 int ret = 0;
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);
789 ret = (int) enumeration->entries->len;
790 end:
791 return ret;
792 }
793
794 static inline
795 struct enumeration_mapping *get_enumeration_mapping(
796 struct bt_ctf_field_type *type, int index)
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);
808 end:
809 return mapping;
810 }
811
812 int bt_ctf_field_type_enumeration_get_mapping(
813 struct bt_ctf_field_type *type, int index,
814 const char **string, int64_t *range_start, int64_t *range_end)
815 {
816 struct enumeration_mapping *mapping;
817 int ret = 0;
818
819 if (!type || index < 0 || !string || !range_start || !range_end ||
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;
834 end:
835 return ret;
836 }
837
838 int bt_ctf_field_type_enumeration_get_mapping_unsigned(
839 struct bt_ctf_field_type *type, int index,
840 const char **string, uint64_t *range_start, uint64_t *range_end)
841 {
842 struct enumeration_mapping *mapping;
843 int ret = 0;
844
845 if (!type || index < 0 || !string || !range_start || !range_end ||
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;
860 end:
861 return ret;
862 }
863
864 int bt_ctf_field_type_enumeration_get_mapping_index_by_name(
865 struct bt_ctf_field_type *type, const char *name)
866 {
867 GQuark name_quark;
868 struct bt_ctf_field_type_enumeration *enumeration;
869 int i, ret = 0;
870
871 if (!type || !name ||
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) {
890 ret = i;
891 goto end;
892 }
893 }
894
895 ret = -1;
896 end:
897 return ret;
898 }
899
900 int bt_ctf_field_type_enumeration_get_mapping_index_by_value(
901 struct bt_ctf_field_type *type, int64_t value)
902 {
903 struct bt_ctf_field_type_enumeration *enumeration;
904 int i, ret = 0;
905
906 if (!type || (type->declaration->id != CTF_TYPE_ENUM)) {
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) {
919 ret = i;
920 goto end;
921 }
922 }
923
924 ret = -1;
925 end:
926 return ret;
927 }
928
929 int bt_ctf_field_type_enumeration_get_mapping_index_by_unsigned_value(
930 struct bt_ctf_field_type *type, uint64_t value)
931 {
932 struct bt_ctf_field_type_enumeration *enumeration;
933 int i, ret = 0;
934
935 if (!type || (type->declaration->id != CTF_TYPE_ENUM)) {
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) {
948 ret = i;
949 goto end;
950 }
951 }
952
953 ret = -1;
954 end:
955 return ret;
956 }
957
958 struct 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);
981 end:
982 return floating_point ? &floating_point->parent : NULL;
983 }
984
985 int 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;
999 end:
1000 return ret;
1001 }
1002
1003 int 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;
1027 end:
1028 return ret;
1029 }
1030
1031 int 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;
1045 end:
1046 return ret;
1047 }
1048
1049 int 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;
1073 end:
1074 return ret;
1075 }
1076
1077 struct 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;
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);
1091 bt_ctf_field_type_init(&structure->parent);
1092 return &structure->parent;
1093 error:
1094 return NULL;
1095 }
1096
1097 int 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 ||
1105 bt_ctf_validate_identifier(field_name) ||
1106 (type->declaration->id != CTF_TYPE_STRUCT) ||
1107 bt_ctf_field_type_validate(field_type)) {
1108 ret = -1;
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
1120 if (type->declaration->alignment < field_type->declaration->alignment) {
1121 type->declaration->alignment =
1122 field_type->declaration->alignment;
1123 }
1124 end:
1125 return ret;
1126 }
1127
1128 int bt_ctf_field_type_structure_get_field_count(
1129 struct bt_ctf_field_type *type)
1130 {
1131 int ret = 0;
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);
1141 ret = (int) structure->fields->len;
1142 end:
1143 return ret;
1144 }
1145
1146 int 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,
1148 int index)
1149 {
1150 struct bt_ctf_field_type_structure *structure;
1151 struct structure_field *field;
1152 int ret = 0;
1153
1154 if (!type || index < 0 || !field_name || !field_type ||
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);
1171 end:
1172 return ret;
1173 }
1174
1175 struct 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;
1199 }
1200
1201 field = structure->fields->pdata[index];
1202 field_type = field->type;
1203 bt_ctf_field_type_get(field_type);
1204 end:
1205 return field_type;
1206 }
1207
1208 struct 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
1213 if (!enum_tag || bt_ctf_validate_identifier(tag_name) ||
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);
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);
1232 bt_ctf_field_type_init(&variant->parent);
1233 return &variant->parent;
1234 error:
1235 return NULL;
1236 }
1237
1238 struct 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);
1251 end:
1252 return tag_type;
1253 }
1254
1255 const 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;
1267 end:
1268 return tag_name;
1269 }
1270
1271 int 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 ||
1282 bt_ctf_validate_identifier(field_name) ||
1283 (type->declaration->id != CTF_TYPE_VARIANT) ||
1284 bt_ctf_field_type_validate(field_type)) {
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 }
1306 end:
1307 return ret;
1308 }
1309
1310 struct 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);
1338 end:
1339 return field_type;
1340 }
1341
1342 struct 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);
1361 end:
1362 return field_type;
1363 }
1364
1365 int bt_ctf_field_type_variant_get_field_count(struct bt_ctf_field_type *type)
1366 {
1367 int ret = 0;
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);
1377 ret = (int) variant->fields->len;
1378 end:
1379 return ret;
1380
1381 }
1382
1383 int 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,
1385 int index)
1386 {
1387 struct bt_ctf_field_type_variant *variant;
1388 struct structure_field *field;
1389 int ret = 0;
1390
1391 if (!type || index < 0 || !field_name || !field_type ||
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);
1408 end:
1409 return ret;
1410 }
1411
1412 struct 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
1418 if (!element_type || length == 0 ||
1419 bt_ctf_field_type_validate(element_type)) {
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;
1430
1431 bt_ctf_field_type_get(element_type);
1432 array->element_type = element_type;
1433 array->length = length;
1434 bt_ctf_field_type_init(&array->parent);
1435 array->parent.declaration->alignment =
1436 element_type->declaration->alignment;
1437 return &array->parent;
1438 error:
1439 return NULL;
1440 }
1441
1442 struct 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);
1455 end:
1456 return ret;
1457 }
1458
1459 int64_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;
1471 end:
1472 return ret;
1473 }
1474
1475 struct 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
1481 if (!element_type || bt_ctf_validate_identifier(length_field_name) ||
1482 bt_ctf_field_type_validate(element_type)) {
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;
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);
1496 bt_ctf_field_type_init(&sequence->parent);
1497 sequence->parent.declaration->alignment =
1498 element_type->declaration->alignment;
1499 return &sequence->parent;
1500 error:
1501 return NULL;
1502 }
1503
1504 struct 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);
1518 end:
1519 return ret;
1520 }
1521
1522 const 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;
1535 end:
1536 return ret;
1537 }
1538
1539 struct 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
1556 enum 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;
1569 end:
1570 return ret;
1571 }
1572
1573 int bt_ctf_field_type_string_set_encoding(struct bt_ctf_field_type *type,
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;
1588 end:
1589 return ret;
1590 }
1591
1592 int 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;
1602 end:
1603 return ret;
1604 }
1605
1606 int 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;
1625 end:
1626 return ret;
1627 }
1628
1629 enum 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;
1633 int internal_byte_order = -1;
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);
1644 internal_byte_order = integer->declaration.byte_order;
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);
1653 internal_byte_order = floating_point->declaration.byte_order;
1654 break;
1655 }
1656 default:
1657 goto end;
1658 }
1659
1660 switch (internal_byte_order) {
1661 case LITTLE_ENDIAN:
1662 ret = BT_CTF_BYTE_ORDER_LITTLE_ENDIAN;
1663 break;
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;
1672 }
1673 end:
1674 return ret;
1675 }
1676
1677 int 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:
1692 /* Leave unset. Will be initialized by parent. */
1693 internal_byte_order = 0;
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]) {
1708 set_byte_order_funcs[type_id](type, internal_byte_order, 0);
1709 }
1710 end:
1711 return ret;
1712 }
1713
1714 enum 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
1724 const 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;
1734 end:
1735 return name;
1736 }
1737
1738 void 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
1747 void bt_ctf_field_type_put(struct bt_ctf_field_type *type)
1748 {
1749 if (!type) {
1750 return;
1751 }
1752
1753 bt_ctf_ref_put(&type->ref_count, bt_ctf_field_type_destroy);
1754 }
1755
1756 BT_HIDDEN
1757 void 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
1766 BT_HIDDEN
1767 struct 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)
1770 {
1771 struct bt_ctf_field_type *type = NULL;
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};
1779
1780 g_ptr_array_foreach(variant->tag->entries, check_ranges_overlap,
1781 &query);
1782 if (!query.overlaps) {
1783 goto end;
1784 }
1785
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)) {
1789 goto end;
1790 }
1791
1792 field_entry = g_ptr_array_index(variant->fields, (size_t) index);
1793 type = field_entry->type;
1794 end:
1795 return type;
1796 }
1797
1798 BT_HIDDEN
1799 struct bt_ctf_field_type *bt_ctf_field_type_variant_get_field_type_unsigned(
1800 struct bt_ctf_field_type_variant *variant,
1801 uint64_t tag_value)
1802 {
1803 struct bt_ctf_field_type *type = NULL;
1804 GQuark field_name_quark;
1805 gpointer index;
1806 struct structure_field *field_entry;
1807 struct range_overlap_query query = {
1808 .range_start._unsigned = tag_value,
1809 .range_end._unsigned = tag_value,
1810 .mapping_name = 0, .overlaps = 0};
1811
1812 g_ptr_array_foreach(variant->tag->entries,
1813 check_ranges_overlap_unsigned,
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;
1827 end:
1828 return type;
1829 }
1830
1831 BT_HIDDEN
1832 int 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);
1843 end:
1844 return ret;
1845 }
1846
1847 BT_HIDDEN
1848 void 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
1862 static
1863 void 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);
1874 bt_ctf_clock_put(integer->mapped_clock);
1875 g_free(integer);
1876 }
1877
1878 static
1879 void 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
1895 static
1896 void 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
1910 static
1911 void 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
1927 static
1928 void 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
1946 static
1947 void 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
1962 static
1963 void 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
1979 static
1980 void 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
1994 static
1995 void generic_field_type_freeze(struct bt_ctf_field_type *type)
1996 {
1997 type->frozen = 1;
1998 }
1999
2000 static
2001 void 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
2010 static
2011 void freeze_structure_field(struct structure_field *field)
2012 {
2013 bt_ctf_field_type_freeze(field->type);
2014 }
2015
2016 static
2017 void 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
2027 static
2028 void 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
2038 static
2039 void 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
2048 static
2049 void 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
2058 static
2059 const 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
2081 static
2082 const 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
2107 static
2108 int 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);
2113 int ret = 0;
2114
2115 g_string_append_printf(context->string,
2116 "integer { size = %zu; align = %zu; signed = %s; encoding = %s; base = %s; byte_order = %s",
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));
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, "; }");
2136 end:
2137 return ret;
2138 }
2139
2140 static
2141 int bt_ctf_field_type_enumeration_serialize(struct bt_ctf_field_type *type,
2142 struct metadata_context *context)
2143 {
2144 size_t entry;
2145 int ret;
2146 struct bt_ctf_field_type_enumeration *enumeration = container_of(type,
2147 struct bt_ctf_field_type_enumeration, parent);
2148 struct bt_ctf_field_type *container_type;
2149 int container_signed;
2150
2151 ret = bt_ctf_field_type_validate(type);
2152 if (ret) {
2153 goto end;
2154 }
2155
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
2168 g_string_append(context->string, "enum : ");
2169 ret = bt_ctf_field_type_serialize(enumeration->container, context);
2170 if (ret) {
2171 goto error_put_container_type;
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
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 }
2193 } else {
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 }
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 }
2219 error_put_container_type:
2220 bt_ctf_field_type_put(container_type);
2221 end:
2222 return ret;
2223 }
2224
2225 static
2226 int 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
2241 static
2242 int 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);
2288 end:
2289 g_string_free(context->field_name, TRUE);
2290 context->field_name = structure_field_name;
2291 return ret;
2292 }
2293
2294 static
2295 int 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, "}");
2341 end:
2342 g_string_free(context->field_name, TRUE);
2343 context->field_name = variant_field_name;
2344 return ret;
2345 }
2346
2347 static
2348 int 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 }
2367 end:
2368 return ret;
2369 }
2370
2371 static
2372 int 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 }
2393 end:
2394 return ret;
2395 }
2396
2397 static
2398 int 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
2410 static
2411 void bt_ctf_field_type_integer_set_byte_order(struct bt_ctf_field_type *type,
2412 int byte_order, int set_native)
2413 {
2414 struct bt_ctf_field_type_integer *integer_type = container_of(type,
2415 struct bt_ctf_field_type_integer, parent);
2416
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
2426 static
2427 void 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);
2436 }
2437
2438 static
2439 void bt_ctf_field_type_floating_point_set_byte_order(
2440 struct bt_ctf_field_type *type, int byte_order, int set_native)
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
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
2468 static
2469 void 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
2489 static
2490 void 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
2510 static
2511 void 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
2524 static
2525 void 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 }
2538 }
This page took 0.133819 seconds and 5 git commands to generate.