Split CTF IR and CTF writer APIs and implementations
[babeltrace.git] / include / babeltrace / ctf-ir / field-types-internal.h
CommitLineData
2e33ac5a
PP
1#ifndef BABELTRACE_CTF_IR_FIELD_TYPES_INTERNAL_H
2#define BABELTRACE_CTF_IR_FIELD_TYPES_INTERNAL_H
273b65be
JG
3
4/*
2e33ac5a 5 * BabelTrace - CTF IR: Event field types internal
273b65be 6 *
de9dd397 7 * Copyright 2013, 2014 Jérémie Galarneau <jeremie.galarneau@efficios.com>
273b65be
JG
8 *
9 * Author: Jérémie Galarneau <jeremie.galarneau@efficios.com>
10 *
11 * Permission is hereby granted, free of charge, to any person obtaining a copy
12 * of this software and associated documentation files (the "Software"), to deal
13 * in the Software without restriction, including without limitation the rights
14 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15 * copies of the Software, and to permit persons to whom the Software is
16 * furnished to do so, subject to the following conditions:
17 *
18 * The above copyright notice and this permission notice shall be included in
19 * all copies or substantial portions of the Software.
20 *
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27 * SOFTWARE.
28 */
29
3dca2276 30#include <babeltrace/assert-pre-internal.h>
ac0c6bdd 31#include <babeltrace/ctf-ir/clock-class.h>
4e8304f7 32#include <babeltrace/ctf-ir/field-types.h>
273b65be 33#include <babeltrace/babeltrace-internal.h>
83509119 34#include <babeltrace/object-internal.h>
c55a9f58 35#include <babeltrace/types.h>
3dca2276 36#include <stdint.h>
273b65be
JG
37#include <glib.h>
38
3dca2276
PP
39#define BT_ASSERT_PRE_FT_COMMON_HAS_ID(_ft, _type_id, _name) \
40 BT_ASSERT_PRE(((struct bt_field_type_common *) (_ft))->id == (_type_id), \
41 _name " has the wrong type ID: expected-type-id=%s, " \
42 "%![ft-]+_F", bt_common_field_type_id_string(_type_id), (_ft))
43
44#define BT_ASSERT_PRE_FT_HOT(_ft, _name) \
45 BT_ASSERT_PRE_HOT((_ft), (_name), ": +%!+_F", (_ft))
46
47struct bt_field_common;
48struct bt_field_type_common;
49struct bt_field_type;
50
51typedef void (*bt_field_type_common_method_freeze)(
52 struct bt_field_type_common *);
53typedef int (*bt_field_type_common_method_validate)(
54 struct bt_field_type_common *);
55typedef void (*bt_field_type_common_method_set_byte_order)(
56 struct bt_field_type_common *, enum bt_byte_order);
57typedef struct bt_field_type_common *(*bt_field_type_common_method_copy)(
58 struct bt_field_type_common *);
59typedef int (*bt_field_type_common_method_compare)(
60 struct bt_field_type_common *,
61 struct bt_field_type_common *);
62
63struct bt_field_type_common_methods {
64 bt_field_type_common_method_freeze freeze;
65 bt_field_type_common_method_validate validate;
66 bt_field_type_common_method_set_byte_order set_byte_order;
67 bt_field_type_common_method_copy copy;
68 bt_field_type_common_method_compare compare;
69};
273b65be 70
3dca2276 71struct bt_field_type_common {
83509119 72 struct bt_object base;
50842bdc 73 enum bt_field_type_id id;
dc3fffef 74 unsigned int alignment;
3dca2276
PP
75
76 /* Virtual table */
77 struct bt_field_type_common_methods *methods;
78
273b65be
JG
79 /*
80 * A type can't be modified once it is added to an event or after a
81 * a field has been instanciated from it.
82 */
83 int frozen;
81e36fac
PP
84
85 /*
86 * This flag indicates if the field type is valid. A valid
87 * field type is _always_ frozen. All the nested field types of
88 * a valid field type are also valid (and thus frozen).
89 */
90 int valid;
3dca2276
PP
91
92 /*
93 * Specialized data for either CTF IR or CTF writer APIs.
94 * Having this here ensures that:
95 *
96 * * The type-specific common data is always found at the same
97 * offset when the common API has a `struct
98 * bt_field_type_common *` so that you can cast it to `struct
99 * bt_field_type_common_integer *` for example and access the
100 * common integer field type fields.
101 *
102 * * The specific CTF IR and CTF writer APIs can access their
103 * specific field type fields in this union at an offset known
104 * at build time. This avoids a pointer to specific data so
105 * that all the fields, common or specific, of a CTF IR
106 * integer field type or of a CTF writer integer field type,
107 * for example, are contained within the same contiguous block
108 * of memory.
109 */
110 union {
111 struct {
112 } ir;
113 struct {
114 void *serialize_func;
115 } writer;
116 } spec;
273b65be
JG
117};
118
3dca2276
PP
119struct bt_field_type_common_integer {
120 struct bt_field_type_common common;
121 struct bt_clock_class *mapped_clock_class;
50842bdc 122 enum bt_byte_order user_byte_order;
c55a9f58 123 bt_bool is_signed;
dc3fffef 124 unsigned int size;
50842bdc
PP
125 enum bt_integer_base base;
126 enum bt_string_encoding encoding;
273b65be
JG
127};
128
129struct enumeration_mapping {
b92ddaaa
JG
130 union {
131 uint64_t _unsigned;
132 int64_t _signed;
133 } range_start;
134
135 union {
136 uint64_t _unsigned;
137 int64_t _signed;
138 } range_end;
273b65be
JG
139 GQuark string;
140};
141
3dca2276
PP
142struct bt_field_type_common_enumeration {
143 struct bt_field_type_common common;
144 struct bt_field_type_common_integer *container_ft;
db8ef253 145 GPtrArray *entries; /* Array of ptrs to struct enumeration_mapping */
d49e1284 146 /* Only set during validation. */
c55a9f58 147 bt_bool has_overlapping_ranges;
96e8f959
MD
148};
149
50842bdc 150enum bt_field_type_enumeration_mapping_iterator_type {
96e8f959
MD
151 ITERATOR_BY_NAME,
152 ITERATOR_BY_SIGNED_VALUE,
153 ITERATOR_BY_UNSIGNED_VALUE,
154};
155
50842bdc 156struct bt_field_type_enumeration_mapping_iterator {
96e8f959 157 struct bt_object base;
3dca2276 158 struct bt_field_type_common_enumeration *enumeration_ft;
50842bdc 159 enum bt_field_type_enumeration_mapping_iterator_type type;
96e8f959
MD
160 int index;
161 union {
162 GQuark name_quark;
163 int64_t signed_value;
164 uint64_t unsigned_value;
165 } u;
273b65be
JG
166};
167
3dca2276
PP
168struct bt_field_type_common_floating_point {
169 struct bt_field_type_common common;
50842bdc 170 enum bt_byte_order user_byte_order;
dc3fffef
PP
171 unsigned int exp_dig;
172 unsigned int mant_dig;
273b65be
JG
173};
174
3dca2276
PP
175struct structure_field_common {
176 struct bt_field_type_common common;
273b65be 177 GQuark name;
3dca2276 178 struct bt_field_type_common *type;
273b65be
JG
179};
180
3dca2276
PP
181struct bt_field_type_common_structure {
182 struct bt_field_type_common common;
273b65be 183 GHashTable *field_name_to_index;
3dca2276 184 GPtrArray *fields; /* Array of pointers to struct structure_field_common */
273b65be
JG
185};
186
3dca2276
PP
187struct bt_field_type_common_variant {
188 struct bt_field_type_common common;
273b65be 189 GString *tag_name;
3dca2276 190 struct bt_field_type_common_enumeration *tag_ft;
50842bdc 191 struct bt_field_path *tag_field_path;
273b65be 192 GHashTable *field_name_to_index;
3dca2276 193 GPtrArray *fields; /* Array of pointers to struct structure_field_common */
273b65be
JG
194};
195
3dca2276
PP
196struct bt_field_type_common_array {
197 struct bt_field_type_common common;
198 struct bt_field_type_common *element_ft;
273b65be 199 unsigned int length; /* Number of elements */
273b65be
JG
200};
201
3dca2276
PP
202struct bt_field_type_common_sequence {
203 struct bt_field_type_common common;
204 struct bt_field_type_common *element_ft;
273b65be 205 GString *length_field_name;
50842bdc 206 struct bt_field_path *length_field_path;
273b65be
JG
207};
208
3dca2276
PP
209struct bt_field_type_common_string {
210 struct bt_field_type_common common;
50842bdc 211 enum bt_string_encoding encoding;
273b65be
JG
212};
213
f6ccaed9 214#ifdef BT_DEV_MODE
3dca2276
PP
215# define bt_field_type_freeze _bt_field_type_freeze
216# define bt_field_type_common_freeze _bt_field_type_common_freeze
f6ccaed9
PP
217#else
218# define bt_field_type_freeze(_ft)
3dca2276 219# define bt_field_type_common_freeze(_ft)
f6ccaed9
PP
220#endif
221
3dca2276
PP
222typedef struct bt_field_common *(* bt_field_common_create_func)(
223 struct bt_field_type_common *);
224
273b65be 225BT_HIDDEN
3dca2276
PP
226void bt_field_type_common_initialize(struct bt_field_type_common *ft,
227 bool init_bo, bt_object_release_func release_func,
228 struct bt_field_type_common_methods *methods);
273b65be
JG
229
230BT_HIDDEN
3dca2276
PP
231void bt_field_type_common_integer_initialize(
232 struct bt_field_type_common *ft,
233 unsigned int size, bt_object_release_func release_func,
234 struct bt_field_type_common_methods *methods);
273b65be
JG
235
236BT_HIDDEN
3dca2276
PP
237void bt_field_type_common_floating_point_initialize(
238 struct bt_field_type_common *ft,
239 bt_object_release_func release_func,
240 struct bt_field_type_common_methods *methods);
273b65be
JG
241
242BT_HIDDEN
3dca2276
PP
243void bt_field_type_common_enumeration_initialize(
244 struct bt_field_type_common *ft,
245 struct bt_field_type_common *container_ft,
246 bt_object_release_func release_func,
247 struct bt_field_type_common_methods *methods);
273b65be 248
9ce21c30 249BT_HIDDEN
3dca2276
PP
250void bt_field_type_common_string_initialize(
251 struct bt_field_type_common *ft,
252 bt_object_release_func release_func,
253 struct bt_field_type_common_methods *methods);
9ce21c30 254
39a5e0db 255BT_HIDDEN
3dca2276
PP
256void bt_field_type_common_structure_initialize(
257 struct bt_field_type_common *ft,
258 bt_object_release_func release_func,
259 struct bt_field_type_common_methods *methods);
736133f1
JG
260
261BT_HIDDEN
3dca2276
PP
262void bt_field_type_common_array_initialize(
263 struct bt_field_type_common *ft,
264 struct bt_field_type_common *element_ft,
265 unsigned int length, bt_object_release_func release_func,
266 struct bt_field_type_common_methods *methods);
79422a2b
PP
267
268BT_HIDDEN
3dca2276
PP
269void bt_field_type_common_sequence_initialize(
270 struct bt_field_type_common *ft,
271 struct bt_field_type_common *element_ft,
272 const char *length_field_name,
273 bt_object_release_func release_func,
274 struct bt_field_type_common_methods *methods);
aa4e271c
JG
275
276BT_HIDDEN
3dca2276
PP
277void bt_field_type_common_variant_initialize(
278 struct bt_field_type_common *ft,
279 struct bt_field_type_common *tag_ft,
280 const char *tag_name,
281 bt_object_release_func release_func,
282 struct bt_field_type_common_methods *methods);
4a1e8671
JG
283
284BT_HIDDEN
3dca2276 285void bt_field_type_common_integer_destroy(struct bt_object *obj);
3f39933a
JG
286
287BT_HIDDEN
3dca2276 288void bt_field_type_common_floating_point_destroy(struct bt_object *obj);
3f39933a 289
626e93aa 290BT_HIDDEN
3dca2276 291void bt_field_type_common_enumeration_destroy_recursive(struct bt_object *obj);
626e93aa
PP
292
293BT_HIDDEN
3dca2276 294void bt_field_type_common_string_destroy(struct bt_object *obj);
626e93aa 295
09840de5 296BT_HIDDEN
3dca2276 297void bt_field_type_common_structure_destroy_recursive(struct bt_object *obj);
09840de5
PP
298
299BT_HIDDEN
3dca2276 300void bt_field_type_common_array_destroy_recursive(struct bt_object *obj);
09840de5
PP
301
302BT_HIDDEN
3dca2276
PP
303void bt_field_type_common_sequence_destroy_recursive(struct bt_object *obj);
304
305BT_HIDDEN
306void bt_field_type_common_variant_destroy_recursive(struct bt_object *obj);
307
308BT_HIDDEN
309int bt_field_type_common_integer_validate(struct bt_field_type_common *ft);
310
311BT_HIDDEN
312int bt_field_type_common_enumeration_validate_recursive(
313 struct bt_field_type_common *ft);
314
315BT_HIDDEN
316int bt_field_type_common_sequence_validate_recursive(
317 struct bt_field_type_common *ft);
318
319BT_HIDDEN
320int bt_field_type_common_array_validate_recursive(
321 struct bt_field_type_common *ft);
322
323BT_HIDDEN
324int bt_field_type_common_structure_validate_recursive(
325 struct bt_field_type_common *ft);
326
327BT_HIDDEN
328int bt_field_type_common_variant_validate_recursive(
329 struct bt_field_type_common *type);
330
331BT_HIDDEN
332int bt_field_type_common_validate(struct bt_field_type_common *ft);
333
334BT_HIDDEN
335int bt_field_type_common_integer_get_size(struct bt_field_type_common *ft);
336
337BT_HIDDEN
338bt_bool bt_field_type_common_integer_is_signed(struct bt_field_type_common *ft);
339
340BT_HIDDEN
341int bt_field_type_common_integer_set_is_signed(struct bt_field_type_common *ft,
342 bt_bool is_signed);
343
344BT_HIDDEN
345int bt_field_type_common_integer_set_size(struct bt_field_type_common *ft,
346 unsigned int size);
347
348BT_HIDDEN
349enum bt_integer_base bt_field_type_common_integer_get_base(
350 struct bt_field_type_common *ft);
09840de5 351
e011d2c1 352BT_HIDDEN
3dca2276
PP
353int bt_field_type_common_integer_set_base(struct bt_field_type_common *ft,
354 enum bt_integer_base base);
355
356BT_HIDDEN
357enum bt_string_encoding bt_field_type_common_integer_get_encoding(
358 struct bt_field_type_common *ft);
359
360BT_HIDDEN
361int bt_field_type_common_integer_set_encoding(struct bt_field_type_common *ft,
362 enum bt_string_encoding encoding);
363
364BT_HIDDEN
365struct bt_clock_class *bt_field_type_common_integer_get_mapped_clock_class(
366 struct bt_field_type_common *ft);
367
368BT_HIDDEN
369int bt_field_type_common_integer_set_mapped_clock_class_no_check_frozen(
370 struct bt_field_type_common *ft,
50842bdc 371 struct bt_clock_class *clock_class);
e011d2c1 372
3dca2276
PP
373BT_HIDDEN
374int bt_field_type_common_integer_set_mapped_clock_class(
375 struct bt_field_type_common *ft,
376 struct bt_clock_class *clock_class);
b7a73f0f 377
3dca2276
PP
378BT_HIDDEN
379struct bt_field_type_enumeration_mapping_iterator *
380bt_field_type_common_enumeration_find_mappings_by_name(
381 struct bt_field_type_common *ft, const char *name);
b7a73f0f 382
3dca2276
PP
383BT_HIDDEN
384struct bt_field_type_enumeration_mapping_iterator *
385bt_field_type_common_enumeration_signed_find_mappings_by_value(
386 struct bt_field_type_common *ft, int64_t value);
387
388BT_HIDDEN
389struct bt_field_type_enumeration_mapping_iterator *
390bt_field_type_common_enumeration_unsigned_find_mappings_by_value(
391 struct bt_field_type_common *ft, uint64_t value);
392
393BT_HIDDEN
394int bt_field_type_common_enumeration_signed_get_mapping_by_index(
395 struct bt_field_type_common *ft, uint64_t index,
396 const char **mapping_name, int64_t *range_begin,
397 int64_t *range_end);
398
399BT_HIDDEN
400int bt_field_type_common_enumeration_unsigned_get_mapping_by_index(
401 struct bt_field_type_common *ft, uint64_t index,
402 const char **mapping_name, uint64_t *range_begin,
403 uint64_t *range_end);
404
405BT_HIDDEN
406struct bt_field_type_common *bt_field_type_common_enumeration_get_container_field_type(
407 struct bt_field_type_common *ft);
408
409BT_HIDDEN
410int bt_field_type_common_enumeration_signed_add_mapping(
411 struct bt_field_type_common *ft, const char *string,
412 int64_t range_start, int64_t range_end);
413
414BT_HIDDEN
415int bt_field_type_common_enumeration_unsigned_add_mapping(
416 struct bt_field_type_common *ft, const char *string,
417 uint64_t range_start, uint64_t range_end);
418
419BT_HIDDEN
420int64_t bt_field_type_common_enumeration_get_mapping_count(
421 struct bt_field_type_common *ft);
422
423BT_HIDDEN
424int bt_field_type_common_floating_point_get_exponent_digits(
425 struct bt_field_type_common *ft);
426
427BT_HIDDEN
428int bt_field_type_common_floating_point_set_exponent_digits(
429 struct bt_field_type_common *ft,
430 unsigned int exponent_digits);
431
432BT_HIDDEN
433int bt_field_type_common_floating_point_get_mantissa_digits(
434 struct bt_field_type_common *type);
435
436BT_HIDDEN
437int bt_field_type_common_floating_point_set_mantissa_digits(
438 struct bt_field_type_common *ft, unsigned int mantissa_digits);
439
440BT_HIDDEN
441int bt_field_type_common_structure_replace_field(
442 struct bt_field_type_common *ft,
443 const char *field_name,
444 struct bt_field_type_common *field_type);
4e8304f7 445
3dca2276
PP
446BT_HIDDEN
447int bt_field_type_common_structure_add_field(struct bt_field_type_common *ft,
448 struct bt_field_type_common *field_type,
449 const char *field_name);
450
451BT_HIDDEN
452int64_t bt_field_type_common_structure_get_field_count(
453 struct bt_field_type_common *ft);
454
455BT_HIDDEN
456int bt_field_type_common_structure_get_field_by_index(
457 struct bt_field_type_common *ft,
458 const char **field_name,
459 struct bt_field_type_common **field_type, uint64_t index);
460
461BT_HIDDEN
462struct bt_field_type_common *bt_field_type_common_structure_get_field_type_by_name(
463 struct bt_field_type_common *ft, const char *name);
464
465BT_HIDDEN
466struct bt_field_type_common *bt_field_type_common_variant_get_tag_field_type(
467 struct bt_field_type_common *ft);
468
469BT_HIDDEN
470const char *bt_field_type_common_variant_get_tag_name(
471 struct bt_field_type_common *ft);
472
473BT_HIDDEN
474int bt_field_type_common_variant_set_tag_name(
475 struct bt_field_type_common *ft, const char *name);
476
477BT_HIDDEN
478int bt_field_type_common_variant_add_field(struct bt_field_type_common *ft,
479 struct bt_field_type_common *field_type,
480 const char *field_name);
481
482BT_HIDDEN
483struct bt_field_type_common *bt_field_type_common_variant_get_field_type_by_name(
484 struct bt_field_type_common *ft,
485 const char *field_name);
486
487BT_HIDDEN
488struct bt_field_type_common *bt_field_type_common_variant_get_field_type_from_tag(
489 struct bt_field_type_common *ft,
490 struct bt_field_common *tag_field,
491 bt_field_common_create_func field_create_func);
492
493BT_HIDDEN
494int64_t bt_field_type_common_variant_get_field_count(
495 struct bt_field_type_common *ft);
496
497BT_HIDDEN
498int bt_field_type_common_variant_get_field_by_index(
499 struct bt_field_type_common *ft,
500 const char **field_name,
501 struct bt_field_type_common **field_type, uint64_t index);
502
503BT_HIDDEN
504struct bt_field_type_common *bt_field_type_common_array_get_element_field_type(
505 struct bt_field_type_common *ft);
506
507BT_HIDDEN
508int bt_field_type_common_array_set_element_field_type(
509 struct bt_field_type_common *ft,
510 struct bt_field_type_common *element_ft);
511
512BT_HIDDEN
513int64_t bt_field_type_common_array_get_length(struct bt_field_type_common *ft);
514
515BT_HIDDEN
516struct bt_field_type_common *bt_field_type_common_sequence_get_element_field_type(
517 struct bt_field_type_common *ft);
518
519BT_HIDDEN
520int bt_field_type_common_sequence_set_element_field_type(
521 struct bt_field_type_common *ft,
522 struct bt_field_type_common *element_ft);
523
524BT_HIDDEN
525const char *bt_field_type_common_sequence_get_length_field_name(
526 struct bt_field_type_common *ft);
527
528BT_HIDDEN
529enum bt_string_encoding bt_field_type_common_string_get_encoding(
530 struct bt_field_type_common *ft);
531
532BT_HIDDEN
533int bt_field_type_common_string_set_encoding(struct bt_field_type_common *ft,
534 enum bt_string_encoding encoding);
535
536BT_HIDDEN
537int bt_field_type_common_get_alignment(struct bt_field_type_common *type);
538
539BT_HIDDEN
540int bt_field_type_common_set_alignment(struct bt_field_type_common *ft,
541 unsigned int alignment);
542
543BT_HIDDEN
544enum bt_byte_order bt_field_type_common_get_byte_order(
545 struct bt_field_type_common *ft);
546
547BT_HIDDEN
548int bt_field_type_common_set_byte_order(struct bt_field_type_common *ft,
549 enum bt_byte_order byte_order);
550
551BT_HIDDEN
552enum bt_field_type_id bt_field_type_common_get_type_id(
553 struct bt_field_type_common *ft);
554
555BT_HIDDEN
556void _bt_field_type_common_freeze(struct bt_field_type_common *ft);
557
558BT_HIDDEN
559void _bt_field_type_freeze(struct bt_field_type *ft);
560
561BT_HIDDEN
562struct bt_field_type_common *bt_field_type_common_variant_get_field_type_signed(
563 struct bt_field_type_common_variant *var_ft,
564 int64_t tag_value);
565
566BT_HIDDEN
567struct bt_field_type_common *bt_field_type_common_variant_get_field_type_unsigned(
568 struct bt_field_type_common_variant *var_ft,
569 uint64_t tag_value);
570
571BT_HIDDEN
572struct bt_field_type_common *bt_field_type_common_copy(
573 struct bt_field_type_common *ft);
574
575BT_HIDDEN
576int bt_field_type_common_structure_get_field_name_index(
577 struct bt_field_type_common *ft, const char *name);
578
579BT_HIDDEN
580int bt_field_type_common_variant_get_field_name_index(
581 struct bt_field_type_common *ft, const char *name);
582
583BT_HIDDEN
584int bt_field_type_common_sequence_set_length_field_path(
585 struct bt_field_type_common *ft, struct bt_field_path *path);
586
587BT_HIDDEN
588int bt_field_type_common_variant_set_tag_field_path(
589 struct bt_field_type_common *ft,
590 struct bt_field_path *path);
591
592BT_HIDDEN
593int bt_field_type_common_variant_set_tag_field_type(
594 struct bt_field_type_common *ft,
595 struct bt_field_type_common *tag_ft);
596
597BT_HIDDEN
598void bt_field_type_common_generic_freeze(struct bt_field_type_common *ft);
599
600BT_HIDDEN
601void bt_field_type_common_enumeration_freeze_recursive(
602 struct bt_field_type_common *ft);
603
604BT_HIDDEN
605void bt_field_type_common_structure_freeze_recursive(
606 struct bt_field_type_common *ft);
607
608BT_HIDDEN
609void bt_field_type_common_variant_freeze_recursive(
610 struct bt_field_type_common *ft);
611
612BT_HIDDEN
613void bt_field_type_common_array_freeze_recursive(
614 struct bt_field_type_common *ft);
615
616BT_HIDDEN
617void bt_field_type_common_sequence_freeze_recursive(
618 struct bt_field_type_common *type);
619
620BT_HIDDEN
621void bt_field_type_common_integer_set_byte_order(
622 struct bt_field_type_common *ft, enum bt_byte_order byte_order);
623
624BT_HIDDEN
625void bt_field_type_common_enumeration_set_byte_order_recursive(
626 struct bt_field_type_common *ft, enum bt_byte_order byte_order);
627
628BT_HIDDEN
629void bt_field_type_common_floating_point_set_byte_order(
630 struct bt_field_type_common *ft, enum bt_byte_order byte_order);
631
632BT_HIDDEN
633void bt_field_type_common_structure_set_byte_order_recursive(
634 struct bt_field_type_common *ft,
635 enum bt_byte_order byte_order);
636
637BT_HIDDEN
638void bt_field_type_common_variant_set_byte_order_recursive(
639 struct bt_field_type_common *ft,
640 enum bt_byte_order byte_order);
641
642BT_HIDDEN
643void bt_field_type_common_array_set_byte_order_recursive(
644 struct bt_field_type_common *ft,
645 enum bt_byte_order byte_order);
646
647BT_HIDDEN
648void bt_field_type_common_sequence_set_byte_order_recursive(
649 struct bt_field_type_common *ft,
650 enum bt_byte_order byte_order);
651
652BT_HIDDEN
653int bt_field_type_common_integer_compare(struct bt_field_type_common *ft_a,
654 struct bt_field_type_common *ft_b);
655
656BT_HIDDEN
657int bt_field_type_common_floating_point_compare(
658 struct bt_field_type_common *ft_a,
659 struct bt_field_type_common *ft_b);
660
661BT_HIDDEN
662int bt_field_type_common_enumeration_compare_recursive(
663 struct bt_field_type_common *ft_a,
664 struct bt_field_type_common *ft_b);
665
666BT_HIDDEN
667int bt_field_type_common_string_compare(struct bt_field_type_common *ft_a,
668 struct bt_field_type_common *ft_b);
669
670BT_HIDDEN
671int bt_field_type_common_structure_compare_recursive(
672 struct bt_field_type_common *ft_a,
673 struct bt_field_type_common *ft_b);
674
675BT_HIDDEN
676int bt_field_type_common_variant_compare_recursive(
677 struct bt_field_type_common *ft_a,
678 struct bt_field_type_common *ft_b);
679
680BT_HIDDEN
681int bt_field_type_common_array_compare_recursive(
682 struct bt_field_type_common *ft_a,
683 struct bt_field_type_common *ft_b);
684
685BT_HIDDEN
686int bt_field_type_common_sequence_compare_recursive(
687 struct bt_field_type_common *ft_a,
688 struct bt_field_type_common *ft_b);
689
690BT_HIDDEN
691int bt_field_type_common_compare(struct bt_field_type_common *ft_a,
692 struct bt_field_type_common *ft_b);
693
694BT_HIDDEN
695int64_t bt_field_type_common_get_field_count(struct bt_field_type_common *ft);
696
697BT_HIDDEN
698struct bt_field_type_common *bt_field_type_common_get_field_at_index(
699 struct bt_field_type_common *ft, int index);
700
701BT_HIDDEN
702int bt_field_type_common_get_field_index(struct bt_field_type_common *ft,
703 const char *name);
704
705BT_HIDDEN
706struct bt_field_path *bt_field_type_common_variant_get_tag_field_path(
707 struct bt_field_type_common *ft);
708
709BT_HIDDEN
710struct bt_field_path *bt_field_type_common_sequence_get_length_field_path(
711 struct bt_field_type_common *ft);
712
713BT_HIDDEN
714int bt_field_type_common_validate_single_clock_class(
715 struct bt_field_type_common *ft,
716 struct bt_clock_class **expected_clock_class);
4e8304f7 717
2e33ac5a 718#endif /* BABELTRACE_CTF_IR_FIELD_TYPES_INTERNAL_H */
This page took 0.083827 seconds and 4 git commands to generate.