Standardize *get_*() functions
[babeltrace.git] / include / babeltrace / ctf-ir / field-types.h
1 #ifndef BABELTRACE_CTF_IR_FIELD_TYPES_H
2 #define BABELTRACE_CTF_IR_FIELD_TYPES_H
3
4 /*
5 * BabelTrace - CTF IR: Event field types
6 *
7 * Copyright 2013, 2014 Jérémie Galarneau <jeremie.galarneau@efficios.com>
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 * The Common Trace Format (CTF) Specification is available at
30 * http://www.efficios.com/ctf
31 */
32
33 #include <stdint.h>
34 #include <stddef.h>
35
36 #ifdef __cplusplus
37 extern "C" {
38 #endif
39
40 /**
41 @defgroup ctfirfieldtypes CTF IR field types
42 @ingroup ctfir
43 @brief CTF IR field types.
44
45 @code
46 #include <babeltrace/ctf-ir/field-types.h>
47 @endcode
48
49 A CTF IR <strong><em>field type</em></strong> is a field type that you
50 can use to create concrete @fields.
51
52 You can create a @field object from a CTF IR field type object
53 with bt_ctf_field_create().
54
55 In the CTF IR hierarchy, you can set the root field types of three
56 objects:
57
58 - \ref ctfirtraceclass
59 - Trace packet header field type: bt_ctf_trace_set_packet_header_type().
60 - \ref ctfirstreamclass
61 - Stream packet context field type:
62 bt_ctf_stream_class_set_packet_context_type().
63 - Stream event header field type:
64 bt_ctf_stream_class_set_event_header_type().
65 - Stream event context field type:
66 bt_ctf_stream_class_set_event_context_type().
67 - \ref ctfireventclass
68 - Event context field type: bt_ctf_event_class_set_context_type().
69 - Event payload field type: bt_ctf_event_class_set_payload_type().
70
71 As of Babeltrace \btversion, those six previous "root" field types
72 \em must be @structft objects.
73
74 If, at any level within a given root field type, you add a @seqft or a
75 @varft, you do not need to specify its associated length
76 or tag field type: the length or tag string is enough for the Babeltrace
77 system to resolve the needed field type depending on where this
78 dynamic field type is located within the whole hierarchy. It is
79 guaranteed that this automatic resolving is performed for all the field
80 types contained in a given
81 \link ctfirstreamclass CTF IR stream class\endlink (and in its
82 children \link ctfireventclass CTF IR event classes\endlink) once you
83 add it to a \link ctfirtraceclass CTF IR trace class\endlink with
84 bt_ctf_trace_add_stream_class(). Once a stream class is the child of
85 a trace class, this automatic resolving is performed for the field
86 types of an event class when you add it with
87 bt_ctf_stream_class_add_event_class(). If the system cannot find a path
88 to a field in the hierarchy for a dynamic field type, the adding
89 function fails.
90
91 The standard CTF field types are:
92
93 <table>
94 <tr>
95 <th>Type ID
96 <th>CTF IR field type
97 <th>CTF IR field which you can create from this field type
98 </tr>
99 <tr>
100 <td>#BT_CTF_FIELD_TYPE_ID_INTEGER
101 <td>\ref ctfirintfieldtype
102 <td>\ref ctfirintfield
103 </tr>
104 <tr>
105 <td>#BT_CTF_FIELD_TYPE_ID_FLOAT
106 <td>\ref ctfirfloatfieldtype
107 <td>\ref ctfirfloatfield
108 </tr>
109 <tr>
110 <td>#BT_CTF_FIELD_TYPE_ID_ENUM
111 <td>\ref ctfirenumfieldtype
112 <td>\ref ctfirenumfield
113 </tr>
114 <tr>
115 <td>#BT_CTF_FIELD_TYPE_ID_STRING
116 <td>\ref ctfirstringfieldtype
117 <td>\ref ctfirstringfield
118 </tr>
119 <tr>
120 <td>#BT_CTF_FIELD_TYPE_ID_STRUCT
121 <td>\ref ctfirstructfieldtype
122 <td>\ref ctfirstructfield
123 </tr>
124 <tr>
125 <td>#BT_CTF_FIELD_TYPE_ID_ARRAY
126 <td>\ref ctfirarrayfieldtype
127 <td>\ref ctfirarrayfield
128 </tr>
129 <tr>
130 <td>#BT_CTF_FIELD_TYPE_ID_SEQUENCE
131 <td>\ref ctfirseqfieldtype
132 <td>\ref ctfirseqfield
133 </tr>
134 <tr>
135 <td>#BT_CTF_FIELD_TYPE_ID_VARIANT
136 <td>\ref ctfirvarfieldtype
137 <td>\ref ctfirvarfield
138 </tr>
139 </table>
140
141 Each field type has its own <strong>type ID</strong> (see
142 #bt_ctf_field_type_id). You get the type ID of a field type object
143 with bt_ctf_field_type_get_type_id().
144
145 You can get a deep copy of a field type with bt_ctf_field_type_copy().
146 This function resets, in the field type copy, the resolved field type
147 of the dynamic field types. The automatic resolving can be done again
148 when you eventually call bt_ctf_event_create(),
149 bt_ctf_stream_class_add_event_class(), or
150 bt_ctf_trace_add_stream_class().
151
152 You \em must always use bt_ctf_field_type_compare() to compare two
153 field types. Since some parts of the Babeltrace system can copy field
154 types behind the scenes, you \em cannot rely on a simple field type
155 pointer comparison.
156
157 As with any Babeltrace object, CTF IR field type objects have
158 <a href="https://en.wikipedia.org/wiki/Reference_counting">reference
159 counts</a>. See \ref refs to learn more about the reference counting
160 management of Babeltrace objects.
161
162 The following functions can \em freeze field type objects:
163
164 - bt_ctf_field_create() freezes its field type parameter.
165 - bt_ctf_stream_class_add_event_class(), if its
166 \link ctfirstreamclass CTF IR stream class\endlink parameter has a
167 \link ctfirtraceclass CTF IR trace class\endlink parent, freezes
168 the root field types of its
169 \link ctfireventclass CTF IR event class\endlink parameter.
170 - bt_ctf_trace_add_stream_class() freezes the root field types of the
171 whole trace class hierarchy (trace class, children stream classes,
172 and their children event classes).
173 - bt_ctf_writer_create_stream() freezes the root field types of the
174 whole CTF writer's trace class hierarchy.
175 - bt_ctf_event_create() freezes the root field types of its event class
176 parameter and of ther parent stream class of this event class.
177
178 You cannot modify a frozen field type object: it is considered
179 immutable, except for \link refs reference counting\endlink.
180
181 @sa ctfirfields
182 @sa \ref ctfirfieldtypesexamples "Examples"
183
184 @file
185 @brief CTF IR field types type and functions.
186 @sa ctfirfieldtypes
187
188 @addtogroup ctfirfieldtypes
189 @{
190 */
191
192 /**
193 @struct bt_ctf_field_type
194 @brief A CTF IR field type.
195 @sa ctfirfieldtypes
196 */
197 struct bt_ctf_field_type;
198 struct bt_ctf_event_class;
199 struct bt_ctf_event;
200 struct bt_ctf_field;
201 struct bt_ctf_field_path;
202 struct bt_ctf_field_type_enumeration_mapping_iterator;
203
204 /** @cond DOCUMENT */
205
206 /*
207 * Babeltrace 1.x enumerations that were also used in CTF writer's API.
208 * They are left here for backward compatibility reasons, but
209 * enum bt_ctf_field_type_id and enum bt_ctf_string_encoding should be used
210 * in new code. Both new enumerations are compatible with their legacy
211 * counterpart.
212 */
213 enum ctf_type_id {
214 CTF_TYPE_UNKNOWN = 0,
215 CTF_TYPE_INTEGER,
216 CTF_TYPE_FLOAT,
217 CTF_TYPE_ENUM,
218 CTF_TYPE_STRING,
219 CTF_TYPE_STRUCT,
220 CTF_TYPE_UNTAGGED_VARIANT,
221 CTF_TYPE_VARIANT,
222 CTF_TYPE_ARRAY,
223 CTF_TYPE_SEQUENCE,
224 NR_CTF_TYPES,
225 };
226
227 /*
228 * Old enum.
229 */
230 enum ctf_string_encoding {
231 CTF_STRING_NONE = 0,
232 CTF_STRING_UTF8,
233 CTF_STRING_ASCII,
234 CTF_STRING_UNKNOWN,
235 };
236
237 /** @endcond */
238
239 /**
240 @brief CTF scope.
241 */
242 enum bt_ctf_scope {
243 /// Unknown, used for errors.
244 BT_CTF_SCOPE_UNKNOWN = -1,
245
246 /// Trace packet header.
247 BT_CTF_SCOPE_TRACE_PACKET_HEADER = 1,
248
249 /// Stream packet context.
250 BT_CTF_SCOPE_STREAM_PACKET_CONTEXT = 2,
251
252 /// Stream event header.
253 BT_CTF_SCOPE_STREAM_EVENT_HEADER = 3,
254
255 /// Stream event context.
256 BT_CTF_SCOPE_STREAM_EVENT_CONTEXT = 4,
257
258 /// Event context.
259 BT_CTF_SCOPE_EVENT_CONTEXT = 5,
260
261 /// Event payload.
262 BT_CTF_SCOPE_EVENT_PAYLOAD = 6,
263
264 /// @cond DOCUMENT
265 BT_CTF_SCOPE_ENV = 0,
266 BT_CTF_SCOPE_EVENT_FIELDS = 6,
267 /// @endcond
268 };
269
270 /**
271 @name Type information
272 @{
273 */
274
275 /**
276 @brief Type ID of a @ft.
277 */
278 enum bt_ctf_field_type_id {
279 /// Unknown, used for errors.
280 BT_CTF_FIELD_TYPE_ID_UNKNOWN = CTF_TYPE_UNKNOWN,
281
282 /// \ref ctfirintfieldtype
283 BT_CTF_FIELD_TYPE_ID_INTEGER = CTF_TYPE_INTEGER,
284
285 /// \ref ctfirfloatfieldtype
286 BT_CTF_FIELD_TYPE_ID_FLOAT = CTF_TYPE_FLOAT,
287
288 /// \ref ctfirenumfieldtype
289 BT_CTF_FIELD_TYPE_ID_ENUM = CTF_TYPE_ENUM,
290
291 /// \ref ctfirstringfieldtype
292 BT_CTF_FIELD_TYPE_ID_STRING = CTF_TYPE_STRING,
293
294 /// \ref ctfirstructfieldtype
295 BT_CTF_FIELD_TYPE_ID_STRUCT = CTF_TYPE_STRUCT,
296
297 /// @cond DOCUMENT
298 BT_CTF_TYPE_ID_UNTAGGED_VARIANT = CTF_TYPE_UNTAGGED_VARIANT,
299 /// @endcond
300
301 /// \ref ctfirarrayfieldtype
302 BT_CTF_FIELD_TYPE_ID_ARRAY = CTF_TYPE_ARRAY,
303
304 /// \ref ctfirseqfieldtype
305 BT_CTF_FIELD_TYPE_ID_SEQUENCE = CTF_TYPE_SEQUENCE,
306
307 /// \ref ctfirvarfieldtype
308 BT_CTF_FIELD_TYPE_ID_VARIANT = CTF_TYPE_VARIANT,
309
310 /// Number of enumeration entries.
311 BT_CTF_NR_TYPE_IDS = NR_CTF_TYPES,
312 };
313
314 /**
315 @brief Returns the type ID of the @ft \p field_type.
316
317 @param[in] field_type Field type of which to get the type ID.
318 @returns Type ID of \p field_type,
319 or #BT_CTF_FIELD_TYPE_ID_UNKNOWN on error.
320
321 @prenotnull{field_type}
322 @postrefcountsame{field_type}
323
324 @sa #bt_ctf_field_type_id: CTF IR field type ID.
325 @sa bt_ctf_field_type_is_integer(): Returns whether or not a given
326 field type is a @intft.
327 @sa bt_ctf_field_type_is_floating_point(): Returns whether or not a
328 given field type is a @floatft.
329 @sa bt_ctf_field_type_is_enumeration(): Returns whether or not a given
330 field type is a @enumft.
331 @sa bt_ctf_field_type_is_string(): Returns whether or not a given
332 field type is a @stringft.
333 @sa bt_ctf_field_type_is_structure(): Returns whether or not a given
334 field type is a @structft.
335 @sa bt_ctf_field_type_is_array(): Returns whether or not a given
336 field type is a @arrayft.
337 @sa bt_ctf_field_type_is_sequence(): Returns whether or not a given
338 field type is a @seqft.
339 @sa bt_ctf_field_type_is_variant(): Returns whether or not a given
340 field type is a @varft.
341 */
342 extern enum bt_ctf_field_type_id bt_ctf_field_type_get_type_id(
343 struct bt_ctf_field_type *field_type);
344
345 /**
346 @brief Returns whether or not the @ft \p field_type is a @intft.
347
348 @param[in] field_type Field type to check (can be \c NULL).
349 @returns 1 if \p field_type is an integer field type,
350 or 0 otherwise (including if \p field_type is
351 \c NULL).
352
353 @prenotnull{field_type}
354 @postrefcountsame{field_type}
355
356 @sa bt_ctf_field_type_get_type_id(): Returns the type ID of a given
357 field type.
358 */
359 extern int bt_ctf_field_type_is_integer(struct bt_ctf_field_type *field_type);
360
361 /**
362 @brief Returns whether or not the @ft \p field_type is a @floatft.
363
364 @param[in] field_type Field type to check (can be \c NULL).
365 @returns 1 if \p field_type is a floating point
366 number field type,
367 or 0 otherwise (including if \p field_type is
368 \c NULL).
369
370 @postrefcountsame{field_type}
371
372 @sa bt_ctf_field_type_get_type_id(): Returns the type ID of a given
373 field type.
374 */
375 extern int bt_ctf_field_type_is_floating_point(struct bt_ctf_field_type *field_type);
376
377 /**
378 @brief Returns whether or not the @ft \p field_type is a @enumft.
379
380 @param[in] field_type Field type to check (can be \c NULL).
381 @returns 1 if \p field_type is an enumeration field type,
382 or 0 otherwise (including if \p field_type is
383 \c NULL).
384
385 @postrefcountsame{field_type}
386
387 @sa bt_ctf_field_type_get_type_id(): Returns the type ID of a given
388 field type.
389 */
390 extern int bt_ctf_field_type_is_enumeration(struct bt_ctf_field_type *field_type);
391
392 /**
393 @brief Returns whether or not the @ft \p field_type is a @stringft.
394
395 @param[in] field_type Field type to check (can be \c NULL).
396 @returns 1 if \p field_type is a string field type,
397 or 0 otherwise (including if \p field_type is
398 \c NULL).
399
400 @postrefcountsame{field_type}
401
402 @sa bt_ctf_field_type_get_type_id(): Returns the type ID of a given
403 field type.
404 */
405 extern int bt_ctf_field_type_is_string(struct bt_ctf_field_type *field_type);
406
407 /**
408 @brief Returns whether or not the @ft \p field_type is a @structft.
409
410 @param[in] field_type Field type to check (can be \c NULL).
411 @returns 1 if \p field_type is a structure field type,
412 or 0 otherwise (including if \p field_type is
413 \c NULL).
414
415 @postrefcountsame{field_type}
416
417 @sa bt_ctf_field_type_get_type_id(): Returns the type ID of a given
418 field type.
419 */
420 extern int bt_ctf_field_type_is_structure(struct bt_ctf_field_type *field_type);
421
422 /**
423 @brief Returns whether or not the @ft \p field_type is a @arrayft.
424
425 @param[in] field_type Field type to check (can be \c NULL).
426 @returns 1 if \p field_type is an array field type,
427 or 0 otherwise (including if \p field_type is
428 \c NULL).
429
430 @postrefcountsame{field_type}
431
432 @sa bt_ctf_field_type_get_type_id(): Returns the type ID of a given
433 field type.
434 */
435 extern int bt_ctf_field_type_is_array(struct bt_ctf_field_type *field_type);
436
437 /**
438 @brief Returns whether or not the @ft \p field_type is a @seqft.
439
440 @param[in] field_type Field type to check (can be \c NULL).
441 @returns 1 if \p field_type is a sequence field type,
442 or 0 otherwise (including if \p field_type is
443 \c NULL).
444
445 @postrefcountsame{field_type}
446
447 @sa bt_ctf_field_type_get_type_id(): Returns the type ID of a given
448 field type.
449 */
450 extern int bt_ctf_field_type_is_sequence(struct bt_ctf_field_type *field_type);
451
452 /**
453 @brief Returns whether or not the @ft \p field_type is a @varft.
454
455 @param[in] field_type Field type to check (can be \c NULL).
456 @returns 1 if \p field_type is a variant field type,
457 or 0 otherwise (including if \p field_type is
458 \c NULL).
459
460 @postrefcountsame{field_type}
461
462 @sa bt_ctf_field_type_get_type_id(): Returns the type ID of a given
463 field type.
464 */
465 extern int bt_ctf_field_type_is_variant(struct bt_ctf_field_type *field_type);
466
467 /** @} */
468
469 /**
470 @name Common properties types and functions
471 @{
472 */
473
474 /**
475 @brief <a href="https://en.wikipedia.org/wiki/Endianness">Byte order</a>
476 of a @ft.
477 */
478 enum bt_ctf_byte_order {
479 /// Unknown, used for errors.
480 BT_CTF_BYTE_ORDER_UNKNOWN = -1,
481
482 /*
483 * Note that native, in the context of the CTF specification, is defined
484 * as "the byte order described in the trace" and does not mean that the
485 * host's endianness will be used.
486 */
487 /// Native (default) byte order.
488 BT_CTF_BYTE_ORDER_NATIVE = 0,
489
490 /// Little-endian.
491 BT_CTF_BYTE_ORDER_LITTLE_ENDIAN,
492
493 /// Big-endian.
494 BT_CTF_BYTE_ORDER_BIG_ENDIAN,
495
496 /// Network byte order (big-endian).
497 BT_CTF_BYTE_ORDER_NETWORK,
498 };
499
500 /**
501 @brief String encoding of a @ft.
502 */
503 enum bt_ctf_string_encoding {
504 /// Unknown, used for errors.
505 BT_CTF_STRING_ENCODING_UNKNOWN = CTF_STRING_UNKNOWN,
506
507 /// No encoding.
508 BT_CTF_STRING_ENCODING_NONE = CTF_STRING_NONE,
509
510 /// <a href="https://en.wikipedia.org/wiki/UTF-8">UTF-8</a>.
511 BT_CTF_STRING_ENCODING_UTF8 = CTF_STRING_UTF8,
512
513 /// <a href="https://en.wikipedia.org/wiki/ASCII">ASCII</a>.
514 BT_CTF_STRING_ENCODING_ASCII = CTF_STRING_ASCII,
515 };
516
517 /**
518 @brief Returns the alignment of the @fields described by
519 the @ft \p field_type.
520
521 @param[in] field_type Field type which describes the
522 fields of which to get the alignment.
523 @returns Alignment of the fields described by
524 \p field_type, or a negative value on error.
525
526 @prenotnull{field_type}
527 @postrefcountsame{field_type}
528
529 @sa bt_ctf_field_type_set_alignment(): Sets the alignment
530 of the fields described by a given field type.
531 */
532 extern int bt_ctf_field_type_get_alignment(
533 struct bt_ctf_field_type *field_type);
534
535 /**
536 @brief Sets the alignment of the @fields described by the
537 @ft \p field_type to \p alignment.
538
539 \p alignment \em must be greater than 0 and a power of two.
540
541 @param[in] field_type Field type which describes the fields of
542 which to set the alignment.
543 @param[in] alignment Alignment of the fields described by
544 \p field_type.
545 @returns 0 on success, or a negative value on error.
546
547 @prenotnull{field_type}
548 @prehot{field_type}
549 @pre \p alignment is greater than 0 and a power of two.
550 @postrefcountsame{field_type}
551
552 @sa bt_ctf_field_type_get_alignment(): Returns the alignment of the
553 fields described by a given field type.
554 */
555 extern int bt_ctf_field_type_set_alignment(struct bt_ctf_field_type *field_type,
556 unsigned int alignment);
557
558 /**
559 @brief Returns the byte order of the @fields described by
560 the @ft \p field_type.
561
562 You can only call this function if \p field_type is a @intft, a
563 @floatft, or a @enumft.
564
565 @param[in] field_type Field type which describes the
566 fields of which to get the byte order.
567 @returns Byte order of the fields described by
568 \p field_type, or #BT_CTF_BYTE_ORDER_UNKNOWN on
569 error.
570
571 @prenotnull{field_type}
572 @pre \p field_type is a @intft, a @floatft, or a @enumft.
573 @postrefcountsame{field_type}
574
575 @sa bt_ctf_field_type_set_byte_order(): Sets the byte order
576 of the fields described by a given field type.
577 */
578 extern enum bt_ctf_byte_order bt_ctf_field_type_get_byte_order(
579 struct bt_ctf_field_type *field_type);
580
581 /**
582 @brief Sets the byte order of the @fields described by the
583 @ft \p field_type to \p byte_order.
584
585 If \p field_type is a compound field type, this function also
586 recursively sets the byte order of its children to \p byte_order.
587
588 @param[in] field_type Field type which describes the fields of
589 which to set the byte order.
590 @param[in] byte_order Alignment of the fields described by
591 \p field_type.
592 @returns 0 on success, or a negative value on error.
593
594 @prenotnull{field_type}
595 @prehot{field_type}
596 @pre \p byte_order is #BT_CTF_BYTE_ORDER_NATIVE,
597 #BT_CTF_BYTE_ORDER_LITTLE_ENDIAN, #BT_CTF_BYTE_ORDER_BIG_ENDIAN,
598 or #BT_CTF_BYTE_ORDER_NETWORK.
599 @postrefcountsame{field_type}
600
601 @sa bt_ctf_field_type_get_byte_order(): Returns the byte order of the
602 fields described by a given field type.
603 */
604 extern int bt_ctf_field_type_set_byte_order(
605 struct bt_ctf_field_type *field_type,
606 enum bt_ctf_byte_order byte_order);
607
608 /** @} */
609
610 /**
611 @name Utility functions
612 @{
613 */
614
615 /**
616 @brief Returns whether or not the @ft \p field_type_a
617 is equivalent to the field type \p field_type_b.
618
619 You \em must use this function to compare two field types: it is not
620 safe to compare two pointer values directly, because, for internal
621 reasons, some parts of the Babeltrace system can copy user field types
622 and discard the original ones.
623
624 @param[in] field_type_a Field type to compare to \p field_type_b.
625 @param[in] field_type_b Field type to compare to \p field_type_a.
626 @returns 0 if \p field_type_a is equivalent to
627 \p field_type_b, 1 if they are not equivalent,
628 or a negative value on error.
629
630 @prenotnull{field_type_a}
631 @prenotnull{field_type_b}
632 @postrefcountsame{field_type_a}
633 @postrefcountsame{field_type_b}
634 */
635 extern int bt_ctf_field_type_compare(struct bt_ctf_field_type *field_type_a,
636 struct bt_ctf_field_type *field_type_b);
637
638 /**
639 @brief Creates a \em deep copy of the @ft \p field_type.
640
641 You can copy a frozen field type: the resulting copy is
642 <em>not frozen</em>.
643
644 This function resets the tag field type of a copied @varft. The
645 automatic field resolving which some functions of the API perform
646 can set it again when the returned field type is used (learn more
647 in the detailed description of this module).
648
649 @param[in] field_type Field type to copy.
650 @returns Deep copy of \p field_type on success,
651 or \c NULL on error.
652
653 @prenotnull{field_type}
654 @postrefcountsame{field_type}
655 @postsuccessrefcountret1
656 @post <strong>On success</strong>, the returned field type is not frozen.
657 */
658 extern struct bt_ctf_field_type *bt_ctf_field_type_copy(
659 struct bt_ctf_field_type *field_type);
660
661 /** @} */
662
663 /** @} */
664
665 /**
666 @defgroup ctfirintfieldtype CTF IR integer field type
667 @ingroup ctfirfieldtypes
668 @brief CTF IR integer field type.
669
670 @code
671 #include <babeltrace/ctf-ir/field-types.h>
672 @endcode
673
674 A CTF IR <strong><em>integer field type</em></strong> is a field type that
675 you can use to create concrete @intfield objects.
676
677 You can create an integer field type
678 with bt_ctf_field_type_integer_create().
679
680 An integer field type has the following properties:
681
682 <table>
683 <tr>
684 <th>Property
685 <th>Value at creation
686 <th>Getter
687 <th>Setter
688 </tr>
689 <tr>
690 <td>\b Alignment (bits) of the described integer fields
691 <td>1
692 <td>bt_ctf_field_type_get_alignment()
693 <td>bt_ctf_field_type_set_alignment()
694 </tr>
695 <tr>
696 <td><strong>Byte order</strong> of the described integer fields
697 <td>#BT_CTF_BYTE_ORDER_NATIVE
698 <td>bt_ctf_field_type_get_byte_order()
699 <td>bt_ctf_field_type_set_byte_order()
700 </tr>
701 <tr>
702 <td><strong>Storage size</strong> (bits) of the described
703 integer fields
704 <td>Specified at creation
705 <td>bt_ctf_field_type_integer_get_size()
706 <td>bt_ctf_field_type_integer_set_size()
707 </tr>
708 <tr>
709 <td><strong>Signedness</strong> of the described integer fields
710 <td>Unsigned
711 <td>bt_ctf_field_type_integer_is_signed()
712 <td>bt_ctf_field_type_integer_set_is_signed()
713 </tr>
714 <tr>
715 <td><strong>Preferred display base</strong> of the described
716 integer fields
717 <td>#BT_CTF_INTEGER_BASE_DECIMAL
718 <td>bt_ctf_field_type_integer_get_base()
719 <td>bt_ctf_field_type_integer_set_base()
720 </tr>
721 <tr>
722 <td>\b Encoding of the described integer fields
723 <td>#BT_CTF_STRING_ENCODING_NONE
724 <td>bt_ctf_field_type_integer_get_encoding()
725 <td>bt_ctf_field_type_integer_set_encoding()
726 </tr>
727 <tr>
728 <td><strong>Mapped
729 \link ctfirclockclass CTF IR clock class\endlink</strong>
730 <td>None
731 <td>bt_ctf_field_type_integer_get_mapped_clock_class()
732 <td>bt_ctf_field_type_integer_set_mapped_clock_class()
733 </tr>
734 </table>
735
736 @sa ctfirintfield
737 @sa ctfirfieldtypes
738 @sa \ref ctfirfieldtypesexamples_intfieldtype "Examples"
739
740 @addtogroup ctfirintfieldtype
741 @{
742 */
743
744 /**
745 @brief Preferred display base (radix) of a @intft.
746 */
747 enum bt_ctf_integer_base {
748 /// Unknown, used for errors.
749 BT_CTF_INTEGER_BASE_UNKNOWN = -1,
750
751 /// Binary.
752 BT_CTF_INTEGER_BASE_BINARY = 2,
753
754 /// Octal.
755 BT_CTF_INTEGER_BASE_OCTAL = 8,
756
757 /// Decimal.
758 BT_CTF_INTEGER_BASE_DECIMAL = 10,
759
760 /// Hexadecimal.
761 BT_CTF_INTEGER_BASE_HEXADECIMAL = 16,
762 };
763
764 /**
765 @brief Creates a default @intft with \p size bits as the storage size
766 of the @intfields it describes.
767
768 You can change the storage size of the integer fields described by
769 the created integer field type later with
770 bt_ctf_field_type_integer_set_size().
771
772 @param[in] size Storage size (bits) of the described integer fields.
773 @returns Created integer field type, or \c NULL on error.
774
775 @pre \p size is greater than 0 and lesser than or equal to 64.
776 @postsuccessrefcountret1
777 */
778 extern struct bt_ctf_field_type *bt_ctf_field_type_integer_create(
779 unsigned int size);
780
781 /**
782 @brief Returns the storage size, in bits, of the @intfields
783 described by the @intft \p int_field_type.
784
785 @param[in] int_field_type Integer field type which describes the
786 integer fields of which to get the
787 storage size.
788 @returns Storage size (bits) of the integer
789 fields described by \p int_field_type,
790 or a negative value on error.
791
792 @prenotnull{int_field_type}
793 @preisintft{int_field_type}
794 @postrefcountsame{int_field_type}
795
796 @sa bt_ctf_field_type_integer_set_size(): Sets the storage size of the
797 integer fields described by a given integer field type.
798 */
799 extern int bt_ctf_field_type_integer_get_size(
800 struct bt_ctf_field_type *int_field_type);
801
802 /**
803 @brief Sets the storage size, in bits, of the @intfields described by
804 the @intft \p int_field_type.
805
806 @param[in] int_field_type Integer field type which describes the
807 integer fields of which to set the
808 storage size.
809 @param[in] size Storage size (bits) of the integer fields
810 described by \p int_field_type.
811 @returns 0 on success, or a negative value on error.
812
813 @prenotnull{int_field_type}
814 @preisintft{int_field_type}
815 @prehot{int_field_type}
816 @pre \p size is greater than 0 and lesser than or equal to 64.
817 @postrefcountsame{int_field_type}
818
819 @sa bt_ctf_field_type_integer_get_size(): Returns the storage size of
820 the integer fields described by a given integer field type.
821 */
822 extern int bt_ctf_field_type_integer_set_size(
823 struct bt_ctf_field_type *int_field_type, size_t size);
824
825 /**
826 @brief Returns whether or not the @intfields described by the @intft
827 \p int_field_type are signed.
828
829 @param[in] int_field_type Integer field type which describes the
830 integer fields of which to get the
831 signedness.
832 @returns 1 if the integer fields described by
833 \p int_field_type are signed, 0 if they
834 are unsigned, or a negative value on
835 error.
836
837 @prenotnull{int_field_type}
838 @preisintft{int_field_type}
839 @postrefcountsame{int_field_type}
840
841 @sa bt_ctf_field_type_integer_set_is_signed(): Sets the signedness of the
842 integer fields described by a given integer field type.
843 */
844 extern int bt_ctf_field_type_integer_is_signed(
845 struct bt_ctf_field_type *int_field_type);
846
847 /* Pre-2.0 CTF writer compatibility */
848 #define bt_ctf_field_type_integer_get_signed bt_ctf_field_type_integer_is_signed
849
850 /**
851 @brief Sets whether or not the @intfields described by
852 the @intft \p int_field_type are signed.
853
854 @param[in] int_field_type Integer field type which describes the
855 integer fields of which to set the
856 signedness.
857 @param[in] is_signed Signedness of the integer fields
858 described by \p int_field_type; 0 means
859 \em unsigned, 1 means \em signed.
860 @returns 0 on success, or a negative value on error.
861
862 @prenotnull{int_field_type}
863 @preisintft{int_field_type}
864 @prehot{int_field_type}
865 @pre \p is_signed is 0 or 1.
866 @postrefcountsame{int_field_type}
867
868 @sa bt_ctf_field_type_integer_is_signed(): Returns the signedness of
869 the integer fields described by a given integer field type.
870 */
871 extern int bt_ctf_field_type_integer_set_is_signed(
872 struct bt_ctf_field_type *int_field_type, int is_signed);
873
874 /* Pre-2.0 CTF writer compatibility */
875 #define bt_ctf_field_type_integer_set_signed bt_ctf_field_type_integer_set_is_signed
876
877 /**
878 @brief Returns the preferred display base (radix) of the @intfields
879 described by the @intft \p int_field_type.
880
881 @param[in] int_field_type Integer field type which describes the
882 integer fields of which to get the
883 preferred display base.
884 @returns Preferred display base of the integer
885 fields described by \p int_field_type,
886 or #BT_CTF_INTEGER_BASE_UNKNOWN on
887 error.
888
889 @prenotnull{int_field_type}
890 @preisintft{int_field_type}
891 @postrefcountsame{int_field_type}
892
893 @sa bt_ctf_field_type_integer_set_base(): Sets the preferred display
894 base of the integer fields described by a given integer field
895 type.
896 */
897 extern enum bt_ctf_integer_base bt_ctf_field_type_integer_get_base(
898 struct bt_ctf_field_type *int_field_type);
899
900 /**
901 @brief Sets the preferred display base (radix) of the @intfields
902 described by the @intft \p int_field_type to \p base.
903
904 @param[in] int_field_type Integer field type which describes the
905 integer fields of which to set the
906 preferred display base.
907 @param[in] base Preferred display base of the integer
908 fields described by \p int_field_type.
909 @returns 0 on success, or a negative value on error.
910
911 @prenotnull{int_field_type}
912 @preisintft{int_field_type}
913 @prehot{int_field_type}
914 @pre \p base is #BT_CTF_INTEGER_BASE_BINARY, #BT_CTF_INTEGER_BASE_OCTAL,
915 #BT_CTF_INTEGER_BASE_DECIMAL, or
916 #BT_CTF_INTEGER_BASE_HEXADECIMAL.
917 @postrefcountsame{int_field_type}
918
919 @sa bt_ctf_field_type_integer_get_base(): Returns the preferred display
920 base of the integer fields described by a given
921 integer field type.
922 */
923 extern int bt_ctf_field_type_integer_set_base(
924 struct bt_ctf_field_type *int_field_type,
925 enum bt_ctf_integer_base base);
926
927 /**
928 @brief Returns the encoding of the @intfields described by
929 the @intft \p int_field_type.
930
931 @param[in] int_field_type Integer field type which describes the
932 integer fields of which to get the
933 encoding.
934 @returns Encoding of the integer
935 fields described by \p int_field_type,
936 or #BT_CTF_STRING_ENCODING_UNKNOWN on
937 error.
938
939 @prenotnull{int_field_type}
940 @preisintft{int_field_type}
941 @postrefcountsame{int_field_type}
942
943 @sa bt_ctf_field_type_integer_set_encoding(): Sets the encoding
944 of the integer fields described by a given integer field type.
945 */
946 extern enum bt_ctf_string_encoding bt_ctf_field_type_integer_get_encoding(
947 struct bt_ctf_field_type *int_field_type);
948
949 /**
950 @brief Sets the encoding of the @intfields described by the @intft
951 \p int_field_type to \p encoding.
952
953 You can use this property, in CTF IR, to create "text" @arrayfts or
954 @seqfts. A text array field type is array field type with an unsigned,
955 8-bit integer field type having an encoding as its element field type.
956
957 @param[in] int_field_type Integer field type which describes the
958 integer fields of which to set the
959 encoding.
960 @param[in] encoding Encoding of the integer
961 fields described by \p int_field_type.
962 @returns 0 on success, or a negative value on error.
963
964 @prenotnull{int_field_type}
965 @preisintft{int_field_type}
966 @prehot{int_field_type}
967 @pre \p encoding is #BT_CTF_STRING_ENCODING_NONE,
968 #BT_CTF_STRING_ENCODING_ASCII, or
969 #BT_CTF_STRING_ENCODING_UTF8.
970 @postrefcountsame{int_field_type}
971
972 @sa bt_ctf_field_type_integer_get_encoding(): Returns the encoding of
973 the integer fields described by a given integer field type.
974 */
975 extern int bt_ctf_field_type_integer_set_encoding(
976 struct bt_ctf_field_type *int_field_type,
977 enum bt_ctf_string_encoding encoding);
978
979 /**
980 @brief Returns the \link ctfirclockclass CTF IR clock class\endlink
981 mapped to the @intft \p int_field_type.
982
983 The mapped clock class, if any, indicates the class of the clock which
984 an @intfield described by \p int_field_type should sample or update.
985 This mapped clock class is only indicative.
986
987 @param[in] int_field_type Integer field type of which to get the
988 mapped clock class.
989 @returns Mapped clock class of \p int_field_type,
990 or \c NULL if there's no mapped clock
991 class or on error.
992
993 @prenotnull{int_field_type}
994 @preisintft{int_field_type}
995 @postrefcountsame{int_field_type}
996 @postsuccessrefcountretinc
997
998 @sa bt_ctf_field_type_integer_set_mapped_clock_class(): Sets the mapped
999 clock class of a given integer field type.
1000 */
1001 extern struct bt_ctf_clock_class *bt_ctf_field_type_integer_get_mapped_clock_class(
1002 struct bt_ctf_field_type *int_field_type);
1003
1004 /**
1005 @brief Sets the \link ctfirclockclass CTF IR clock class\endlink mapped
1006 to the @intft \p int_field_type to \p clock_class.
1007
1008 The mapped clock class, if any, indicates the class of the clock which
1009 an integer field described by \p int_field_type should sample or update.
1010 This mapped clock class is only indicative.
1011
1012 @param[in] int_field_type Integer field type of which to set the
1013 mapped clock class.
1014 @param[in] clock_class Mapped clock class of \p int_field_type.
1015 @returns 0 on success, or a negative value on error.
1016
1017 @prenotnull{int_field_type}
1018 @prenotnull{clock_class}
1019 @preisintft{int_field_type}
1020 @prehot{int_field_type}
1021 @postrefcountsame{int_field_type}
1022 @postsuccessrefcountinc{clock_class}
1023
1024 @sa bt_ctf_field_type_integer_get_mapped_clock_class(): Returns the mapped
1025 clock class of a given integer field type.
1026 */
1027 extern int bt_ctf_field_type_integer_set_mapped_clock_class(
1028 struct bt_ctf_field_type *int_field_type,
1029 struct bt_ctf_clock_class *clock_class);
1030
1031 /** @} */
1032
1033 /**
1034 @defgroup ctfirfloatfieldtype CTF IR floating point number field type
1035 @ingroup ctfirfieldtypes
1036 @brief CTF IR floating point number field type.
1037
1038 @code
1039 #include <babeltrace/ctf-ir/field-types.h>
1040 @endcode
1041
1042 A CTF IR <strong><em>floating point number field type</em></strong> is
1043 a field type that you can use to create concrete @floatfields.
1044
1045 You can create a floating point number field type
1046 with bt_ctf_field_type_floating_point_create().
1047
1048 A floating point number field type has the following properties:
1049
1050 <table>
1051 <tr>
1052 <th>Property
1053 <th>Value at creation
1054 <th>Getter
1055 <th>Setter
1056 </tr>
1057 <tr>
1058 <td>\b Alignment (bits) of the described floating point
1059 number fields
1060 <td>1
1061 <td>bt_ctf_field_type_get_alignment()
1062 <td>bt_ctf_field_type_set_alignment()
1063 </tr>
1064 <tr>
1065 <td><strong>Byte order</strong> of the described floating point
1066 number fields
1067 <td>#BT_CTF_BYTE_ORDER_NATIVE
1068 <td>bt_ctf_field_type_get_byte_order()
1069 <td>bt_ctf_field_type_set_byte_order()
1070 </tr>
1071 <tr>
1072 <td><strong>Exponent storage size</strong> (bits) of the described
1073 floating point number fields
1074 <td>8
1075 <td>bt_ctf_field_type_floating_point_get_exponent_digits()
1076 <td>bt_ctf_field_type_floating_point_set_exponent_digits()
1077 </tr>
1078 <tr>
1079 <td><strong>Mantissa and sign storage size</strong> (bits) of the
1080 described floating point number fields
1081 <td>24 (23-bit mantissa, 1-bit sign)
1082 <td>bt_ctf_field_type_floating_point_get_mantissa_digits()
1083 <td>bt_ctf_field_type_floating_point_set_mantissa_digits()
1084 </tr>
1085 </table>
1086
1087 @sa ctfirfloatfield
1088 @sa ctfirfieldtypes
1089 @sa \ref ctfirfieldtypesexamples_floatfieldtype "Examples"
1090
1091 @addtogroup ctfirfloatfieldtype
1092 @{
1093 */
1094
1095 /**
1096 @brief Creates a default @floatft.
1097
1098 @returns Created floating point number field type,
1099 or \c NULL on error.
1100
1101 @postsuccessrefcountret1
1102 */
1103 extern struct bt_ctf_field_type *bt_ctf_field_type_floating_point_create(void);
1104
1105 /**
1106 @brief Returns the exponent storage size of the @floatfields
1107 described by the @floatft \p float_field_type.
1108
1109 @param[in] float_field_type Floating point number field type which
1110 describes the floating point number
1111 fields of which to get the exponent
1112 storage size.
1113 @returns Exponent storage size of the
1114 floating point number fields
1115 described by \p float_field_type,
1116 or a negative value on error.
1117
1118 @prenotnull{float_field_type}
1119 @preisfloatft{float_field_type}
1120 @postrefcountsame{float_field_type}
1121
1122 @sa bt_ctf_field_type_floating_point_set_exponent_digits(): Sets the
1123 exponent storage size of the floating point number fields
1124 described by a given floating point number field type.
1125 */
1126 extern int bt_ctf_field_type_floating_point_get_exponent_digits(
1127 struct bt_ctf_field_type *float_field_type);
1128
1129 /**
1130 @brief Sets the exponent storage size of the @floatfields described by
1131 the @floatft \p float_field_type to \p exponent_size.
1132
1133 As of Babeltrace \btversion, \p exponent_size can only be 8 or 11.
1134
1135 @param[in] float_field_type Floating point number field type which
1136 describes the floating point number
1137 fields of which to set the exponent
1138 storage size.
1139 @param[in] exponent_size Exponent storage size of the floating
1140 point number fields described by \p
1141 float_field_type.
1142 @returns 0 on success, or a negative value on error.
1143
1144 @prenotnull{float_field_type}
1145 @preisfloatft{float_field_type}
1146 @prehot{float_field_type}
1147 @pre \p exponent_size is 8 or 11.
1148 @postrefcountsame{float_field_type}
1149
1150 @sa bt_ctf_field_type_floating_point_get_exponent_digits(): Returns the
1151 exponent storage size of the floating point number fields
1152 described by a given floating point number field type.
1153 */
1154 extern int bt_ctf_field_type_floating_point_set_exponent_digits(
1155 struct bt_ctf_field_type *float_field_type,
1156 unsigned int exponent_size);
1157
1158 /**
1159 @brief Returns the mantissa and sign storage size of the @floatfields
1160 described by the @floatft \p float_field_type.
1161
1162 On success, the returned value is the sum of the mantissa \em and
1163 sign storage sizes.
1164
1165 @param[in] float_field_type Floating point number field type which
1166 describes the floating point number
1167 fields of which to get the mantissa and
1168 sign storage size.
1169 @returns Mantissa and sign storage size of the
1170 floating point number fields
1171 described by \p float_field_type,
1172 or a negative value on error.
1173
1174 @prenotnull{float_field_type}
1175 @preisfloatft{float_field_type}
1176 @postrefcountsame{float_field_type}
1177
1178 @sa bt_ctf_field_type_floating_point_set_mantissa_digits(): Sets the
1179 mantissa and size storage size of the floating point number
1180 fields described by a given floating point number field type.
1181 */
1182 extern int bt_ctf_field_type_floating_point_get_mantissa_digits(
1183 struct bt_ctf_field_type *float_field_type);
1184
1185 /**
1186 @brief Sets the mantissa and sign storage size of the @floatfields
1187 described by the @floatft \p float_field_type to \p
1188 mantissa_sign_size.
1189
1190 As of Babeltrace \btversion, \p mantissa_sign_size can only be 24 or 53.
1191
1192 @param[in] float_field_type Floating point number field type which
1193 describes the floating point number
1194 fields of which to set the mantissa and
1195 sign storage size.
1196 @param[in] mantissa_sign_size Mantissa and sign storage size of the
1197 floating point number fields described
1198 by \p float_field_type.
1199 @returns 0 on success, or a negative value on error.
1200
1201 @prenotnull{float_field_type}
1202 @preisfloatft{float_field_type}
1203 @prehot{float_field_type}
1204 @pre \p mantissa_sign_size is 24 or 53.
1205 @postrefcountsame{float_field_type}
1206
1207 @sa bt_ctf_field_type_floating_point_get_mantissa_digits(): Returns the
1208 mantissa and sign storage size of the floating point number
1209 fields described by a given floating point number field type.
1210 */
1211 extern int bt_ctf_field_type_floating_point_set_mantissa_digits(
1212 struct bt_ctf_field_type *float_field_type,
1213 unsigned int mantissa_sign_size);
1214
1215 /** @} */
1216
1217 /**
1218 @defgroup ctfirenumfieldtype CTF IR enumeration field type
1219 @ingroup ctfirfieldtypes
1220 @brief CTF IR enumeration field type.
1221
1222 @code
1223 #include <babeltrace/ctf-ir/field-types.h>
1224 @endcode
1225
1226 A CTF IR <strong><em>enumeration field type</em></strong> is
1227 a field type that you can use to create concrete @enumfields.
1228
1229 You can create an enumeration field type with
1230 bt_ctf_field_type_enumeration_create(). This function needs a @intft
1231 which represents the storage field type of the created enumeration field
1232 type. In other words, an enumeration field type wraps an integer field
1233 type and adds label-value mappings to it.
1234
1235 An enumeration mapping has:
1236
1237 - A <strong>name</strong>.
1238 - A <strong>range of values</strong> given by a beginning and an ending
1239 value, both included in the range.
1240
1241 You can add a mapping to an enumeration field type with
1242 bt_ctf_field_type_enumeration_add_mapping() or
1243 bt_ctf_field_type_enumeration_add_mapping_unsigned(), depending on the
1244 signedness of the wrapped @intft.
1245
1246 You can find mappings by name or by value with the following find
1247 operations:
1248
1249 - bt_ctf_field_type_enumeration_find_mappings_by_name(): Finds the
1250 mappings with a given name.
1251 - bt_ctf_field_type_enumeration_find_mappings_by_unsigned_value():
1252 Finds the mappings which contain a given unsigned value in their
1253 range.
1254 - bt_ctf_field_type_enumeration_find_mappings_by_signed_value():
1255 Finds the mappings which contain a given signed value in their range.
1256
1257 Those functions return a @enumftiter on the result set of the find
1258 operation.
1259
1260 Many mappings can share the same name, and the ranges of a given
1261 enumeration field type are allowed to overlap. For example,
1262 this is a valid set of mappings:
1263
1264 @verbatim
1265 APPLE -> [ 3, 19]
1266 BANANA -> [-15, 1]
1267 CHERRY -> [ 25, 34]
1268 APPLE -> [ 55, 55]
1269 @endverbatim
1270
1271 The following set of mappings is also valid:
1272
1273 @verbatim
1274 APPLE -> [ 3, 19]
1275 BANANA -> [-15, 1]
1276 CHERRY -> [ 25, 34]
1277 APPLE -> [ 30, 55]
1278 @endverbatim
1279
1280 Here, the range of the second \c APPLE mapping overlaps the range of
1281 the \c CHERRY mapping.
1282
1283 @sa ctfirenumftmappingiter
1284 @sa ctfirenumfield
1285 @sa ctfirfieldtypes
1286
1287 @addtogroup ctfirenumfieldtype
1288 @{
1289 */
1290
1291 /**
1292 @brief Creates a default @enumft wrapping the @intft \p int_field_type.
1293
1294 @param[in] int_field_type Integer field type wrapped by the
1295 created enumeration field type.
1296 @returns Created enumeration field type,
1297 or \c NULL on error.
1298
1299 @prenotnull{int_field_type}
1300 @preisintft{int_field_type}
1301 @postsuccessrefcountinc{int_field_type}
1302 @postsuccessrefcountret1
1303 */
1304 extern struct bt_ctf_field_type *bt_ctf_field_type_enumeration_create(
1305 struct bt_ctf_field_type *int_field_type);
1306
1307 /**
1308 @brief Returns the @intft wrapped by the @enumft \p enum_field_type.
1309
1310 @param[in] enum_field_type Enumeration field type of which to get
1311 the wrapped integer field type.
1312 @returns Integer field type wrapped by
1313 \p enum_field_type, or \c NULL on
1314 error.
1315
1316 @prenotnull{enum_field_type}
1317 @preisenumft{enum_field_type}
1318 @postrefcountsame{enum_field_type}
1319 @postsuccessrefcountretinc
1320 */
1321 extern
1322 struct bt_ctf_field_type *bt_ctf_field_type_enumeration_get_container_type(
1323 struct bt_ctf_field_type *enum_field_type);
1324
1325 /**
1326 @brief Returns the number of mappings contained in the
1327 @enumft \p enum_field_type.
1328
1329 @param[in] enum_field_type Enumeration field type of which to get
1330 the number of contained mappings.
1331 @returns Number of mappings contained in
1332 \p enum_field_type, or a negative
1333 value on error.
1334
1335 @prenotnull{enum_field_type}
1336 @preisenumft{enum_field_type}
1337 @postrefcountsame{enum_field_type}
1338 */
1339 extern int64_t bt_ctf_field_type_enumeration_get_mapping_count(
1340 struct bt_ctf_field_type *enum_field_type);
1341
1342 /**
1343 @brief Returns the signed mapping of the @enumft
1344 \p enum_field_type at index \p index.
1345
1346 The @intft wrapped by \p enum_field_type, as returned by
1347 bt_ctf_field_type_enumeration_get_container_type(), must be \b signed
1348 to use this function.
1349
1350 On success, \p enum_field_type remains the sole owner of \p *name.
1351
1352 @param[in] enum_field_type Enumeration field type of which to get
1353 the mapping at index \p index.
1354 @param[in] index Index of the mapping to get from
1355 \p enum_field_type.
1356 @param[out] name Returned name of the mapping at index
1357 \p index.
1358 @param[out] range_begin Returned beginning of the range
1359 (included) of the mapping at index \p
1360 index.
1361 @param[out] range_end Returned end of the range (included) of
1362 the mapping at index \p index.
1363 @returns 0 on success, or a negative value on error.
1364
1365 @prenotnull{enum_field_type}
1366 @prenotnull{name}
1367 @prenotnull{range_begin}
1368 @prenotnull{range_end}
1369 @preisenumft{enum_field_type}
1370 @pre The wrapped @intft of \p enum_field_type is signed.
1371 @pre \p index is lesser than the number of mappings contained in the
1372 enumeration field type \p enum_field_type (see
1373 bt_ctf_field_type_enumeration_get_mapping_count()).
1374 @postrefcountsame{enum_field_type}
1375
1376 @sa bt_ctf_field_type_enumeration_get_mapping_unsigned(): Returns the
1377 unsigned mapping contained by a given enumeration field type
1378 at a given index.
1379 */
1380 extern int bt_ctf_field_type_enumeration_get_mapping_signed(
1381 struct bt_ctf_field_type *enum_field_type, uint64_t index,
1382 const char **name, int64_t *range_begin, int64_t *range_end);
1383
1384 /**
1385 @brief Returns the unsigned mapping of the @enumft
1386 \p enum_field_type at index \p index.
1387
1388 The @intft wrapped by \p enum_field_type, as returned by
1389 bt_ctf_field_type_enumeration_get_container_type(), must be
1390 \b unsigned to use this function.
1391
1392 On success, \p enum_field_type remains the sole owner of \p *name.
1393
1394 @param[in] enum_field_type Enumeration field type of which to get
1395 the mapping at index \p index.
1396 @param[in] index Index of the mapping to get from
1397 \p enum_field_type.
1398 @param[out] name Returned name of the mapping at index
1399 \p index.
1400 @param[out] range_begin Returned beginning of the range
1401 (included) of the mapping at index \p
1402 index.
1403 @param[out] range_end Returned end of the range (included) of
1404 the mapping at index \p index.
1405 @returns 0 on success, or a negative value on error.
1406
1407 @prenotnull{enum_field_type}
1408 @prenotnull{name}
1409 @prenotnull{range_begin}
1410 @prenotnull{range_end}
1411 @preisenumft{enum_field_type}
1412 @pre The wrapped @intft of \p enum_field_type is unsigned.
1413 @pre \p index is lesser than the number of mappings contained in the
1414 enumeration field type \p enum_field_type (see
1415 bt_ctf_field_type_enumeration_get_mapping_count()).
1416 @postrefcountsame{enum_field_type}
1417
1418 @sa bt_ctf_field_type_enumeration_get_mapping_signed(): Returns the
1419 signed mapping contained by a given enumeration field type
1420 at a given index.
1421 */
1422 extern int bt_ctf_field_type_enumeration_get_mapping_unsigned(
1423 struct bt_ctf_field_type *enum_field_type, uint64_t index,
1424 const char **name, uint64_t *range_begin,
1425 uint64_t *range_end);
1426
1427 /**
1428 @brief Finds the mappings of the @enumft \p enum_field_type which
1429 are named \p name.
1430
1431 This function returns an iterator on the result set of this find
1432 operation. See \ref ctfirenumftmappingiter for more details.
1433
1434 @param[in] enum_field_type Enumeration field type of which to find
1435 the mappings named \p name.
1436 @param[in] name Name of the mappings to find in
1437 \p enum_field_type.
1438 @returns @enumftiter on the set of mappings named
1439 \p name in \p enum_field_type, or
1440 \c NULL if no mappings were found or
1441 on error.
1442
1443 @prenotnull{enum_field_type}
1444 @prenotnull{name}
1445 @preisenumft{enum_field_type}
1446 @postrefcountsame{enum_field_type}
1447 @postsuccessrefcountret1
1448 @post <strong>On success</strong>, the returned @enumftiter can iterate
1449 on at least one mapping.
1450
1451 @sa bt_ctf_field_type_enumeration_find_mappings_by_signed_value(): Finds
1452 the mappings of a given enumeration field type which contain
1453 a given signed value in their range.
1454 @sa bt_ctf_field_type_enumeration_find_mappings_by_unsigned_value(): Finds
1455 the mappings of a given enumeration field type which contain
1456 a given unsigned value in their range.
1457 */
1458 extern struct bt_ctf_field_type_enumeration_mapping_iterator *
1459 bt_ctf_field_type_enumeration_find_mappings_by_name(
1460 struct bt_ctf_field_type *enum_field_type,
1461 const char *name);
1462
1463 /**
1464 @brief Finds the mappings of the @enumft \p enum_field_type which
1465 contain the signed value \p value in their range.
1466
1467 This function returns an iterator on the result set of this find
1468 operation. See \ref ctfirenumftmappingiter for more details.
1469
1470 @param[in] enum_field_type Enumeration field type of which to find
1471 the mappings which contain \p value.
1472 @param[in] value Value to find in the ranges of the
1473 mappings of \p enum_field_type.
1474 @returns @enumftiter on the set of mappings of
1475 \p enum_field_type which contain
1476 \p value in their range, or \c NULL if
1477 no mappings were found or on error.
1478
1479 @prenotnull{enum_field_type}
1480 @preisenumft{enum_field_type}
1481 @postrefcountsame{enum_field_type}
1482 @postsuccessrefcountret1
1483 @post <strong>On success</strong>, the returned @enumftiter can iterate
1484 on at least one mapping.
1485
1486 @sa bt_ctf_field_type_enumeration_find_mappings_by_name(): Finds the
1487 mappings of a given enumeration field type which have a given
1488 name.
1489 @sa bt_ctf_field_type_enumeration_find_mappings_by_unsigned_value(): Finds
1490 the mappings of a given enumeration field type which contain
1491 a given unsigned value in their range.
1492 */
1493 extern struct bt_ctf_field_type_enumeration_mapping_iterator *
1494 bt_ctf_field_type_enumeration_find_mappings_by_signed_value(
1495 struct bt_ctf_field_type *enum_field_type,
1496 int64_t value);
1497
1498 /**
1499 @brief Finds the mappings of the @enumft \p enum_field_type which
1500 contain the unsigned value \p value in their range.
1501
1502 This function returns an iterator on the result set of this find
1503 operation. See \ref ctfirenumftmappingiter for more details.
1504
1505 @param[in] enum_field_type Enumeration field type of which to find
1506 the mappings which contain \p value.
1507 @param[in] value Value to find in the ranges of the
1508 mappings of \p enum_field_type.
1509 @returns @enumftiter on the set of mappings of
1510 \p enum_field_type which contain
1511 \p value in their range, or \c NULL
1512 if no mappings were found or
1513 on error.
1514
1515 @prenotnull{enum_field_type}
1516 @preisenumft{enum_field_type}
1517 @postrefcountsame{enum_field_type}
1518 @postsuccessrefcountret1
1519 @post <strong>On success</strong>, the returned @enumftiter can iterate
1520 on at least one mapping.
1521
1522 @sa bt_ctf_field_type_enumeration_find_mappings_by_name(): Finds the
1523 mappings of a given enumeration field type which have a given
1524 name.
1525 @sa bt_ctf_field_type_enumeration_find_mappings_by_signed_value(): Finds
1526 the mappings of a given enumeration field type which contain
1527 a given unsigned value in their range.
1528 */
1529 extern struct bt_ctf_field_type_enumeration_mapping_iterator *
1530 bt_ctf_field_type_enumeration_find_mappings_by_unsigned_value(
1531 struct bt_ctf_field_type *enum_field_type,
1532 uint64_t value);
1533
1534 /**
1535 @brief Adds a mapping to the @enumft \p enum_field_type which maps the
1536 name \p name to the signed range \p range_begin (included) to
1537 \p range_end (included).
1538
1539 Make \p range_begin and \p range_end the same value to add a mapping
1540 to a single value.
1541
1542 The @intft wrapped by \p enum_field_type, as returned by
1543 bt_ctf_field_type_enumeration_get_container_type(), must be
1544 \b signed to use this function.
1545
1546 A mapping in \p enum_field_type can exist with the name \p name.
1547
1548 @param[in] enum_field_type Enumeration field type to which to add
1549 a mapping.
1550 @param[in] name Name of the mapping to add (copied
1551 on success).
1552 @param[in] range_begin Beginning of the range of the mapping
1553 (included).
1554 @param[in] range_end End of the range of the mapping
1555 (included).
1556 @returns 0 on success, or a negative value on error.
1557
1558 @prenotnull{enum_field_type}
1559 @prenotnull{name}
1560 @prehot{enum_field_type}
1561 @preisenumft{enum_field_type}
1562 @pre The wrapped @intft of \p enum_field_type is signed.
1563 @pre \p range_end is greater than or equal to \p range_begin.
1564 @postrefcountsame{enum_field_type}
1565
1566 @sa bt_ctf_field_type_enumeration_add_mapping_unsigned(): Adds an
1567 unsigned mapping to a given enumeration field type.
1568 */
1569 extern int bt_ctf_field_type_enumeration_add_mapping(
1570 struct bt_ctf_field_type *enum_field_type, const char *name,
1571 int64_t range_begin, int64_t range_end);
1572
1573 /**
1574 @brief Adds a mapping to the @enumft \p enum_field_type which maps
1575 the name \p name to the unsigned
1576 range \p range_begin (included) to \p range_end (included).
1577
1578 Make \p range_begin and \p range_end the same value to add a mapping
1579 to a single value.
1580
1581 The @intft wrapped by \p enum_field_type, as returned by
1582 bt_ctf_field_type_enumeration_get_container_type(), must be
1583 \b unsigned to use this function.
1584
1585 A mapping in \p enum_field_type can exist with the name \p name.
1586
1587 @param[in] enum_field_type Enumeration field type to which to add
1588 a mapping.
1589 @param[in] name Name of the mapping to add (copied
1590 on success).
1591 @param[in] range_begin Beginning of the range of the mapping
1592 (included).
1593 @param[in] range_end End of the range of the mapping
1594 (included).
1595 @returns 0 on success, or a negative value on error.
1596
1597 @prenotnull{enum_field_type}
1598 @prenotnull{name}
1599 @prehot{enum_field_type}
1600 @preisenumft{enum_field_type}
1601 @pre The wrapped @intft of \p enum_field_type is unsigned.
1602 @pre \p range_end is greater than or equal to \p range_begin.
1603 @postrefcountsame{enum_field_type}
1604
1605 @sa bt_ctf_field_type_enumeration_add_mapping(): Adds a signed
1606 mapping to a given enumeration field type.
1607 */
1608 extern int bt_ctf_field_type_enumeration_add_mapping_unsigned(
1609 struct bt_ctf_field_type *enum_field_type, const char *name,
1610 uint64_t range_begin, uint64_t range_end);
1611
1612 /** @} */
1613
1614 /**
1615 @defgroup ctfirenumftmappingiter CTF IR enumeration field type mapping iterator
1616 @ingroup ctfirenumfieldtype
1617 @brief CTF IR enumeration field type mapping iterator.
1618
1619 @code
1620 #include <babeltrace/ctf-ir/field-types.h>
1621 @endcode
1622
1623 A CTF IR <strong><em>enumeration field type mapping
1624 iterator</em></strong> is an iterator on @enumft mappings.
1625
1626 You can get an enumeration mapping iterator from one of the following
1627 functions:
1628
1629 - Find operations of an @enumft object:
1630 - bt_ctf_field_type_enumeration_find_mappings_by_name(): Finds the
1631 mappings with a given name.
1632 - bt_ctf_field_type_enumeration_find_mappings_by_unsigned_value():
1633 Finds the mappings which contain a given unsigned value in their
1634 range.
1635 - bt_ctf_field_type_enumeration_find_mappings_by_signed_value():
1636 Finds the mappings which contain a given signed value in their range.
1637 - bt_ctf_field_enumeration_get_mappings(): Finds the mappings in the
1638 @enumft of an @enumfield containing its current integral value in
1639 their range.
1640
1641 Those functions guarantee that the returned iterator can iterate on
1642 at least one mapping. Otherwise, they return \c NULL.
1643
1644 You can get the name and the range of a mapping iterator's current
1645 mapping with
1646 bt_ctf_field_type_enumeration_mapping_iterator_get_signed()
1647 or
1648 bt_ctf_field_type_enumeration_mapping_iterator_get_unsigned(),
1649 depending on the signedness of the @intft wrapped by the
1650 @enumft. If you only need the name of the current mapping, you can
1651 use any of the two functions and set the \p range_begin and \p range_end
1652 parameters to \c NULL.
1653
1654 You can advance an enumeration field type mapping iterator to the next
1655 mapping with
1656 bt_ctf_field_type_enumeration_mapping_iterator_next(). This
1657 function returns a negative value when you reach the end of the
1658 result set.
1659
1660 As with any Babeltrace object, CTF IR enumeration field type mapping
1661 iterator objects have <a
1662 href="https://en.wikipedia.org/wiki/Reference_counting">reference
1663 counts</a>. See \ref refs to learn more about the reference counting
1664 management of Babeltrace objects.
1665
1666 @sa ctfirenumfieldtype
1667
1668 @addtogroup ctfirenumftmappingiter
1669 @{
1670 */
1671
1672 /**
1673 @struct bt_ctf_field_type_enumeration_mapping_iterator
1674 @brief A CTF IR enumeration field type mapping iterator.
1675 @sa ctfirenumftmappingiter
1676 */
1677
1678 /**
1679 @brief Returns the name and the range of the current (signed) mapping
1680 of the @enumftiter \p iter.
1681
1682 If one of \p range_begin or \p range_end is not \c NULL, the @intft
1683 wrapped by the @enumft from which \p iter was obtained, as returned by
1684 bt_ctf_field_type_enumeration_get_container_type(), must be
1685 \b signed to use this function. Otherwise, if you only need to get the
1686 name of the current mapping, set \p range_begin and \p range_end to
1687 \c NULL.
1688
1689 On success, if \p name is not \c NULL, \p *name remains valid as long
1690 as \p iter exists and
1691 bt_ctf_field_type_enumeration_mapping_iterator_next() is
1692 \em not called on \p iter.
1693
1694 @param[in] iter Enumeration field type mapping iterator
1695 of which to get the range of the current
1696 mapping.
1697 @param[out] name Returned name of the current mapping of
1698 \p iter (can be \c NULL to ignore).
1699 @param[out] range_begin Returned beginning of the range
1700 (included) of the current mapping of
1701 \p iter (can be \c NULL to ignore).
1702 @param[out] range_end Returned end of the range
1703 (included) of the current mapping of
1704 \p iter (can be \c NULL to ignore).
1705 @returns 0 on success, or a negative value on error.
1706
1707 @prenotnull{iter}
1708 @postrefcountsame{iter}
1709
1710 @sa bt_ctf_field_type_enumeration_mapping_iterator_get_unsigned():
1711 Returns the name and the unsigned range of the current mapping
1712 of a given enumeration field type mapping iterator.
1713 */
1714 extern int bt_ctf_field_type_enumeration_mapping_iterator_get_signed(
1715 struct bt_ctf_field_type_enumeration_mapping_iterator *iter,
1716 const char **name, int64_t *range_begin, int64_t *range_end);
1717
1718 /**
1719 @brief Returns the name and the range of the current (unsigned) mapping
1720 of the @enumftiter \p iter.
1721
1722 If one of \p range_begin or \p range_end is not \c NULL, the @intft
1723 wrapped by the @enumft from which \p iter was obtained, as returned by
1724 bt_ctf_field_type_enumeration_get_container_type(), must be
1725 \b unsigned to use this function. Otherwise, if you only need to get the
1726 name of the current mapping, set \p range_begin and \p range_end to
1727 \c NULL.
1728
1729 On success, if \p name is not \c NULL, \p *name remains valid as long
1730 as \p iter exists and
1731 bt_ctf_field_type_enumeration_mapping_iterator_next() is
1732 \em not called on \p iter.
1733
1734 @param[in] iter Enumeration field type mapping iterator
1735 of which to get the range of the current
1736 mapping.
1737 @param[out] name Returned name of the current mapping of
1738 \p iter (can be \c NULL to ignore).
1739 @param[out] range_begin Returned beginning of the range
1740 (included) of the current mapping of
1741 \p iter (can be \c NULL to ignore).
1742 @param[out] range_end Returned end of the range
1743 (included) of the current mapping of
1744 \p iter (can be \c NULL to ignore).
1745 @returns 0 on success, or a negative value on error.
1746
1747 @prenotnull{iter}
1748 @postrefcountsame{iter}
1749
1750 @sa
1751 bt_ctf_field_type_enumeration_mapping_iterator_get_signed():
1752 Returns the name and the signed range of the current mapping of
1753 a given enumeration field type mapping iterator.
1754 */
1755 extern int bt_ctf_field_type_enumeration_mapping_iterator_get_unsigned(
1756 struct bt_ctf_field_type_enumeration_mapping_iterator *iter,
1757 const char **name, uint64_t *range_begin, uint64_t *range_end);
1758
1759 /**
1760 @brief Advances the @enumftiter \p iter to the next mapping.
1761
1762 @param[in] iter Enumeration field type mapping iterator to
1763 advance.
1764 @returns 0 on success, or a negative value on error or
1765 when you reach the end of the set.
1766
1767 @prenotnull{iter}
1768 @postrefcountsame{iter}
1769 */
1770 extern int bt_ctf_field_type_enumeration_mapping_iterator_next(
1771 struct bt_ctf_field_type_enumeration_mapping_iterator *iter);
1772
1773 /** @} */
1774
1775 /**
1776 @defgroup ctfirstringfieldtype CTF IR string field type
1777 @ingroup ctfirfieldtypes
1778 @brief CTF IR string field type.
1779
1780 @code
1781 #include <babeltrace/ctf-ir/field-types.h>
1782 @endcode
1783
1784 A CTF IR <strong><em>string field type</em></strong> is a field type that
1785 you can use to create concrete @stringfields.
1786
1787 You can create a string field type
1788 with bt_ctf_field_type_string_create().
1789
1790 A string field type has only one property: the \b encoding of its
1791 described @stringfields. By default, the encoding of the string fields
1792 described by a string field type is #BT_CTF_STRING_ENCODING_UTF8. You
1793 can set the encoding of the string fields described by a string field
1794 type with bt_ctf_field_type_string_set_encoding().
1795
1796 @sa ctfirstringfield
1797 @sa ctfirfieldtypes
1798
1799 @addtogroup ctfirstringfieldtype
1800 @{
1801 */
1802
1803 /**
1804 @brief Creates a default @stringft.
1805
1806 @returns Created string field type, or \c NULL on error.
1807
1808 @postsuccessrefcountret1
1809 */
1810 extern struct bt_ctf_field_type *bt_ctf_field_type_string_create(void);
1811
1812 /**
1813 @brief Returns the encoding of the @stringfields described by
1814 the @stringft \p string_field_type.
1815
1816 @param[in] string_field_type String field type which describes the
1817 string fields of which to get the
1818 encoding.
1819 @returns Encoding of the string
1820 fields described by \p string_field_type,
1821 or #BT_CTF_STRING_ENCODING_UNKNOWN on
1822 error.
1823
1824 @prenotnull{string_field_type}
1825 @preisstringft{string_field_type}
1826 @postrefcountsame{string_field_type}
1827
1828 @sa bt_ctf_field_type_string_set_encoding(): Sets the encoding
1829 of the string fields described by a given string field type.
1830 */
1831 extern enum bt_ctf_string_encoding bt_ctf_field_type_string_get_encoding(
1832 struct bt_ctf_field_type *string_field_type);
1833
1834 /**
1835 @brief Sets the encoding of the @stringfields described by the
1836 @stringft \p string_field_type to \p encoding.
1837
1838 @param[in] string_field_type String field type which describes the
1839 string fields of which to set the
1840 encoding.
1841 @param[in] encoding Encoding of the string fields described
1842 by \p string_field_type.
1843 @returns 0 on success, or a negative value on error.
1844
1845 @prenotnull{string_field_type}
1846 @preisstringft{string_field_type}
1847 @prehot{string_field_type}
1848 @pre \p encoding is #BT_CTF_STRING_ENCODING_ASCII or
1849 #BT_CTF_STRING_ENCODING_UTF8.
1850 @postrefcountsame{string_field_type}
1851
1852 @sa bt_ctf_field_type_string_get_encoding(): Returns the encoding of
1853 the string fields described by a given string field type.
1854 */
1855 extern int bt_ctf_field_type_string_set_encoding(
1856 struct bt_ctf_field_type *string_field_type,
1857 enum bt_ctf_string_encoding encoding);
1858
1859 /** @} */
1860
1861 /**
1862 @defgroup ctfirstructfieldtype CTF IR structure field type
1863 @ingroup ctfirfieldtypes
1864 @brief CTF IR structure field type.
1865
1866 @code
1867 #include <babeltrace/ctf-ir/field-types.h>
1868 @endcode
1869
1870 A CTF IR <strong><em>structure field type</em></strong> is
1871 a field type that you can use to create concrete @structfields.
1872
1873 You can create a structure field type
1874 with bt_ctf_field_type_structure_create(). This function creates
1875 an empty structure field type, with no fields.
1876
1877 You can add a field to a structure field type with
1878 bt_ctf_field_type_structure_add_field(). Two fields in a structure
1879 field type cannot have the same name.
1880
1881 You can set the \em minimum alignment of the structure fields described
1882 by a structure field type with the common
1883 bt_ctf_field_type_set_alignment() function. The \em effective alignment
1884 of the structure fields described by a structure field type, as per
1885 <a href="http://diamon.org/ctf/">CTF</a>, is the \em maximum value amongst
1886 the effective alignments of all its fields. Note that the effective
1887 alignment of @varfields is always 1.
1888
1889 You can set the byte order of <em>all the contained fields</em>,
1890 recursively, of a structure field type with the common
1891 bt_ctf_field_type_set_byte_order() function.
1892
1893 @sa ctfirstructfield
1894 @sa ctfirfieldtypes
1895
1896 @addtogroup ctfirstructfieldtype
1897 @{
1898 */
1899
1900 /**
1901 @brief Creates a default, empty @structft.
1902
1903 @returns Created structure field type,
1904 or \c NULL on error.
1905
1906 @postsuccessrefcountret1
1907 */
1908 extern struct bt_ctf_field_type *bt_ctf_field_type_structure_create(void);
1909
1910 /**
1911 @brief Returns the number of fields contained in the
1912 @structft \p struct_field_type.
1913
1914 @param[in] struct_field_type Structure field type of which to get
1915 the number of contained fields.
1916 @returns Number of fields contained in
1917 \p struct_field_type, or a negative
1918 value on error.
1919
1920 @prenotnull{struct_field_type}
1921 @preisstructft{struct_field_type}
1922 @postrefcountsame{struct_field_type}
1923 */
1924 extern int64_t bt_ctf_field_type_structure_get_field_count(
1925 struct bt_ctf_field_type *struct_field_type);
1926
1927 /**
1928 @brief Returns the field of the @structft \p struct_field_type
1929 at index \p index.
1930
1931 On success, the field's type is placed in \p *field_type if
1932 \p field_type is not \c NULL. The field's name is placed in
1933 \p *field_name if \p field_name is not \c NULL.
1934 \p struct_field_type remains the sole owner of \p *field_name.
1935
1936 @param[in] struct_field_type Structure field type of which to get
1937 the field at index \p index.
1938 @param[out] field_name Returned name of the field at index
1939 \p index (can be \c NULL).
1940 @param[out] field_type Returned field type of the field
1941 at index \p index (can be \c NULL).
1942 ­@param[in] index Index of the field to get from
1943 \p struct_field_type.
1944 @returns 0 on success, or a negative value on error.
1945
1946 @prenotnull{struct_field_type}
1947 @preisstructft{struct_field_type}
1948 @pre \p index is lesser than the number of fields contained in the
1949 structure field type \p struct_field_type (see
1950 bt_ctf_field_type_structure_get_field_count()).
1951 @postrefcountsame{struct_field_type}
1952 @post <strong>On success</strong>, the returned field's type is placed
1953 in \p *field_type and its reference count is incremented.
1954
1955 @sa bt_ctf_field_type_structure_get_field_type_by_name(): Finds a
1956 structure field type's field by name.
1957 */
1958 extern int bt_ctf_field_type_structure_get_field_by_index(
1959 struct bt_ctf_field_type *struct_field_type,
1960 const char **field_name, struct bt_ctf_field_type **field_type,
1961 uint64_t index);
1962
1963 /* Pre-2.0 CTF writer compatibility */
1964 #define bt_ctf_field_type_structure_get_field bt_ctf_field_type_structure_get_field_by_index
1965
1966 /**
1967 @brief Returns the type of the field named \p field_name found in
1968 the @structft \p struct_field_type.
1969
1970 @param[in] struct_field_type Structure field type of which to get
1971 a field's type.
1972 @param[in] field_name Name of the field to find.
1973 @returns Type of the field named \p field_name in
1974 \p struct_field_type, or
1975 \c NULL on error.
1976
1977 @prenotnull{struct_field_type}
1978 @prenotnull{field_name}
1979 @preisstructft{struct_field_type}
1980 @postrefcountsame{struct_field_type}
1981 @postsuccessrefcountretinc
1982
1983 @sa bt_ctf_field_type_structure_get_field_by_index(): Finds a
1984 structure field type's field by index.
1985 */
1986 extern
1987 struct bt_ctf_field_type *bt_ctf_field_type_structure_get_field_type_by_name(
1988 struct bt_ctf_field_type *struct_field_type,
1989 const char *field_name);
1990
1991 /**
1992 @brief Adds a field named \p field_name with the @ft
1993 \p field_type to the @structft \p struct_field_type.
1994
1995 On success, \p field_type becomes the child of \p struct_field_type.
1996
1997 This function adds the new field after the current last field of
1998 \p struct_field_type (append mode).
1999
2000 You \em cannot add a field named \p field_name if there's already a
2001 field named \p field_name in \p struct_field_type.
2002
2003 @param[in] struct_field_type Structure field type to which to add
2004 a new field.
2005 @param[in] field_type Field type of the field to add to
2006 \p struct_field_type.
2007 @param[in] field_name Name of the field to add to
2008 \p struct_field_type
2009 (copied on success).
2010 @returns 0 on success, or a negative value on error.
2011
2012 @prenotnull{struct_field_type}
2013 @prenotnull{field_type}
2014 @prenotnull{field_name}
2015 @preisstructft{struct_field_type}
2016 @pre \p field_type is not and does not contain \p struct_field_type,
2017 recursively, as a field's type.
2018 @prehot{struct_field_type}
2019 @postrefcountsame{struct_field_type}
2020 @postsuccessrefcountinc{field_type}
2021 */
2022 extern int bt_ctf_field_type_structure_add_field(
2023 struct bt_ctf_field_type *struct_field_type,
2024 struct bt_ctf_field_type *field_type,
2025 const char *field_name);
2026
2027 /** @} */
2028
2029 /**
2030 @defgroup ctfirarrayfieldtype CTF IR array field type
2031 @ingroup ctfirfieldtypes
2032 @brief CTF IR array field type.
2033
2034 @code
2035 #include <babeltrace/ctf-ir/field-types.h>
2036 @endcode
2037
2038 A CTF IR <strong><em>array field type</em></strong> is a field type that
2039 you can use to create concrete @arrayfields.
2040
2041 You can create an array field type
2042 with bt_ctf_field_type_array_create(). This function needs
2043 the @ft of the fields contained by the array fields described by the
2044 array field type to create.
2045
2046 @sa ctfirarrayfield
2047 @sa ctfirfieldtypes
2048
2049 @addtogroup ctfirarrayfieldtype
2050 @{
2051 */
2052
2053 /**
2054 @brief Creates a default @arrayft with
2055 \p element_field_type as the field type of the fields contained
2056 in its described @arrayfields of length \p length.
2057
2058 @param[in] element_field_type Field type of the fields contained in
2059 the array fields described by the
2060 created array field type.
2061 @param[in] length Length of the array fields described by
2062 the created array field type.
2063 @returns Created array field type, or
2064 \c NULL on error.
2065
2066 @prenotnull{element_field_type}
2067 @postsuccessrefcountinc{element_field_type}
2068 @postsuccessrefcountret1
2069 */
2070 extern struct bt_ctf_field_type *bt_ctf_field_type_array_create(
2071 struct bt_ctf_field_type *element_field_type,
2072 unsigned int length);
2073
2074 /**
2075 @brief Returns the @ft of the @fields contained in
2076 the @arrayfields described by the @arrayft \p array_field_type.
2077
2078 @param[in] array_field_type Array field type of which to get
2079 the type of the fields contained in its
2080 described array fields.
2081 @returns Type of the fields contained in the
2082 array fields described by
2083 \p array_field_type, or \c NULL
2084 on error.
2085
2086 @prenotnull{array_field_type}
2087 @preisarrayft{array_field_type}
2088 @postrefcountsame{array_field_type}
2089 @postsuccessrefcountretinc
2090 */
2091 extern struct bt_ctf_field_type *bt_ctf_field_type_array_get_element_type(
2092 struct bt_ctf_field_type *array_field_type);
2093
2094 /**
2095 @brief Returns the number of @fields contained in the
2096 @arrayfields described by the @arrayft \p array_field_type.
2097
2098 @param[in] array_field_type Array field type of which to get
2099 the number of fields contained in its
2100 described array fields.
2101 @returns Number of fields contained in the
2102 array fields described by
2103 \p array_field_type, or a negative value
2104 on error.
2105
2106 @prenotnull{array_field_type}
2107 @preisarrayft{array_field_type}
2108 @postrefcountsame{array_field_type}
2109 */
2110 extern int64_t bt_ctf_field_type_array_get_length(
2111 struct bt_ctf_field_type *array_field_type);
2112
2113 /** @} */
2114
2115 /**
2116 @defgroup ctfirseqfieldtype CTF IR sequence field type
2117 @ingroup ctfirfieldtypes
2118 @brief CTF IR sequence field type.
2119
2120 @code
2121 #include <babeltrace/ctf-ir/field-types.h>
2122 @endcode
2123
2124 A CTF IR <strong><em>sequence field type</em></strong> is
2125 a field type that you can use to create concrete @seqfields.
2126
2127 You can create a sequence field type with
2128 bt_ctf_field_type_sequence_create(). This function needs the @ft
2129 of the fields contained by the sequence fields described by the created
2130 sequence field type. This function also needs the length name of the
2131 sequence field type to create. The length name is used to automatically
2132 resolve the length's field type. See \ref ctfirfieldtypes to learn more
2133 about the automatic resolving.
2134
2135 @sa ctfirseqfield
2136 @sa ctfirfieldtypes
2137
2138 @addtogroup ctfirseqfieldtype
2139 @{
2140 */
2141
2142 /**
2143 @brief Creates a default @seqft with \p element_field_type as the
2144 @ft of the @fields contained in its described @seqfields
2145 with the length name \p length_name.
2146
2147 \p length_name can be an absolute or relative reference. See
2148 <a href="http://diamon.org/ctf/">CTF</a> for more details.
2149
2150 @param[in] element_field_type Field type of the fields contained in
2151 the sequence fields described by the
2152 created sequence field type.
2153 @param[in] length_name Length name (copied on success).
2154 @returns Created array field type, or
2155 \c NULL on error.
2156
2157 @prenotnull{element_field_type}
2158 @prenotnull{length_name}
2159 @postsuccessrefcountinc{element_field_type}
2160 @postsuccessrefcountret1
2161 */
2162 extern struct bt_ctf_field_type *bt_ctf_field_type_sequence_create(
2163 struct bt_ctf_field_type *element_field_type,
2164 const char *length_name);
2165
2166 /**
2167 @brief Returns the @ft of the @fields contained in the @seqft
2168 described by the @seqft \p sequence_field_type.
2169
2170 @param[in] sequence_field_type Sequence field type of which to get
2171 the type of the fields contained in its
2172 described sequence fields.
2173 @returns Type of the fields contained in the
2174 sequence fields described by
2175 \p sequence_field_type, or \c NULL
2176 on error.
2177
2178 @prenotnull{sequence_field_type}
2179 @preisseqft{sequence_field_type}
2180 @postrefcountsame{sequence_field_type}
2181 @postsuccessrefcountretinc
2182 */
2183 extern struct bt_ctf_field_type *bt_ctf_field_type_sequence_get_element_type(
2184 struct bt_ctf_field_type *sequence_field_type);
2185
2186 /**
2187 @brief Returns the length name of the @seqft \p sequence_field_type.
2188
2189 On success, \p sequence_field_type remains the sole owner of
2190 the returned string.
2191
2192 @param[in] sequence_field_type Sequence field type of which to get the
2193 length name.
2194 @returns Length name of \p sequence_field_type,
2195 or \c NULL on error.
2196
2197 @prenotnull{sequence_field_type}
2198 @preisseqft{sequence_field_type}
2199
2200 @sa bt_ctf_field_type_sequence_get_length_field_path(): Returns the
2201 length's CTF IR field path of a given sequence field type.
2202 */
2203 extern const char *bt_ctf_field_type_sequence_get_length_field_name(
2204 struct bt_ctf_field_type *sequence_field_type);
2205
2206 /**
2207 @brief Returns the length's CTF IR field path of the @seqft
2208 \p sequence_field_type.
2209
2210 The length's field path of a sequence field type is set when automatic
2211 resolving is performed (see \ref ctfirfieldtypes).
2212
2213 @param[in] sequence_field_type Sequence field type of which to get the
2214 length's field path.
2215 @returns Length's field path of
2216 \p sequence_field_type, or
2217 \c NULL if the length's field path is
2218 not set yet is not set or on error.
2219
2220 @prenotnull{sequence_field_type}
2221 @preisseqft{sequence_field_type}
2222 @postsuccessrefcountretinc
2223
2224 @sa bt_ctf_field_type_sequence_get_length_field_name(): Returns the
2225 length's name of a given sequence field type.
2226 */
2227 extern struct bt_ctf_field_path *bt_ctf_field_type_sequence_get_length_field_path(
2228 struct bt_ctf_field_type *sequence_field_type);
2229
2230 /** @} */
2231
2232 /**
2233 @defgroup ctfirvarfieldtype CTF IR variant field type
2234 @ingroup ctfirfieldtypes
2235 @brief CTF IR variant field type.
2236
2237 @code
2238 #include <babeltrace/ctf-ir/field-types.h>
2239 @endcode
2240
2241 A CTF IR <strong><em>variant field type</em></strong> is
2242 a field type that you can use to create concrete @varfields.
2243
2244 You can create a variant field type with
2245 bt_ctf_field_type_variant_create(). This function expects you to pass
2246 both the tag's @enumft and the tag name of the variant field type to
2247 create. The tag's field type is optional, as the Babeltrace system can
2248 automatically resolve it using the tag name. You can leave the tag name
2249 to \c NULL initially, and set it later with
2250 bt_ctf_field_type_variant_set_tag_name(). The tag name must be set when
2251 the variant field type is frozen. See \ref ctfirfieldtypes to learn more
2252 about the automatic resolving and the conditions under which a field
2253 type can be frozen.
2254
2255 You can add a field to a variant field type with
2256 bt_ctf_field_type_variant_add_field(). All the field names of a
2257 variant field type \em must exist as mapping names in its tag's @enumft.
2258
2259 The effective alignment of the @varfields described by a
2260 variant field type is always 1, but the individual fields of a
2261 @varfield can have custom alignments.
2262
2263 You can set the byte order of <em>all the contained fields</em>,
2264 recursively, of a variant field type with the common
2265 bt_ctf_field_type_set_byte_order() function.
2266
2267 @sa ctfirvarfield
2268 @sa ctfirfieldtypes
2269
2270 @addtogroup ctfirvarfieldtype
2271 @{
2272 */
2273
2274 /**
2275 @brief Creates a default, empty @varft with the tag's @enumft
2276 \p tag_field_type and the tag name \p tag_name.
2277
2278 \p tag_field_type can be \c NULL; the tag's field type can be
2279 automatically resolved from the variant field type's tag name (see
2280 \ref ctfirfieldtypes). If \p tag_name is \c NULL, it \em must be set
2281 with bt_ctf_field_type_variant_set_tag_name() \em before the variant
2282 field type is frozen.
2283
2284 \p tag_name can be an absolute or relative reference. See
2285 <a href="http://diamon.org/ctf/">CTF</a> for more details.
2286
2287 @param[in] tag_field_type Tag's enumeration field type
2288 (can be \c NULL).
2289 @param[in] tag_name Tag name (copied on success,
2290 can be \c NULL).
2291 @returns Created variant field type, or
2292 \c NULL on error.
2293
2294 @pre \p tag_field_type is an enumeration field type or \c NULL.
2295 @post <strong>On success, if \p tag_field_type is not \c NULL</strong>,
2296 its reference count is incremented.
2297 @postsuccessrefcountret1
2298 */
2299 extern struct bt_ctf_field_type *bt_ctf_field_type_variant_create(
2300 struct bt_ctf_field_type *tag_field_type,
2301 const char *tag_name);
2302
2303 /**
2304 @brief Returns the tag's @enumft of the @varft \p variant_field_type.
2305
2306 @param[in] variant_field_type Variant field type of which to get
2307 the tag's enumeration field type.
2308 @returns Tag's enumeration field type of
2309 \p variant_field_type, or \c NULL if the
2310 tag's field type is not set or on
2311 error.
2312
2313 @prenotnull{variant_field_type}
2314 @preisvarft{variant_field_type}
2315 @postrefcountsame{variant_field_type}
2316 @postsuccessrefcountretinc
2317 */
2318 extern struct bt_ctf_field_type *bt_ctf_field_type_variant_get_tag_type(
2319 struct bt_ctf_field_type *variant_field_type);
2320
2321 /**
2322 @brief Returns the tag name of the @varft \p variant_field_type.
2323
2324 On success, \p variant_field_type remains the sole owner of
2325 the returned string.
2326
2327 @param[in] variant_field_type Variant field type of which to get the
2328 tag name.
2329 @returns Tag name of \p variant_field_type, or
2330 \c NULL if the tag name is not set or
2331 on error.
2332
2333 @prenotnull{variant_field_type}
2334 @preisvarft{variant_field_type}
2335
2336 @sa bt_ctf_field_type_variant_set_tag_name(): Sets the tag name of
2337 a given variant field type.
2338 @sa bt_ctf_field_type_variant_get_tag_field_path(): Returns the tag's
2339 CTF IR field path of a given variant field type.
2340 */
2341 extern const char *bt_ctf_field_type_variant_get_tag_name(
2342 struct bt_ctf_field_type *variant_field_type);
2343
2344 /**
2345 @brief Sets the tag name of the @varft \p variant_field_type.
2346
2347 \p tag_name can be an absolute or relative reference. See
2348 <a href="http://diamon.org/ctf/">CTF</a> for more details.
2349
2350 @param[in] variant_field_type Variant field type of which to set
2351 the tag name.
2352 @param[in] tag_name Tag name of \p variant_field_type
2353 (copied on success).
2354 @returns 0 on success, or a negative value on error.
2355
2356 @prenotnull{variant_field_type}
2357 @prenotnull{name}
2358 @prehot{variant_field_type}
2359 @postrefcountsame{variant_field_type}
2360
2361 @sa bt_ctf_field_type_variant_get_tag_name(): Returns the tag name of
2362 a given variant field type.
2363 */
2364 extern int bt_ctf_field_type_variant_set_tag_name(
2365 struct bt_ctf_field_type *variant_field_type,
2366 const char *tag_name);
2367
2368 /**
2369 @brief Returns the tag's CTF IR field path of the @varft
2370 \p variant_field_type.
2371
2372 The tag's field path of a variant field type is set when automatic
2373 resolving is performed (see \ref ctfirfieldtypes).
2374
2375 @param[in] variant_field_type Variant field type of which to get the
2376 tag's field path.
2377 @returns Tag's field path of
2378 \p variant_field_type, or
2379 \c NULL if the tag's field path is not
2380 set yet is not set or on error.
2381
2382 @prenotnull{variant_field_type}
2383 @preisvarft{variant_field_type}
2384 @postsuccessrefcountretinc
2385
2386 @sa bt_ctf_field_type_variant_get_tag_name(): Returns the tag's
2387 name of a given variant field type.
2388 */
2389 extern struct bt_ctf_field_path *bt_ctf_field_type_variant_get_tag_field_path(
2390 struct bt_ctf_field_type *variant_field_type);
2391
2392 /**
2393 @brief Returns the number of fields (choices) contained in the @varft
2394 \p variant_field_type.
2395
2396 @param[in] variant_field_type Variant field type of which to get
2397 the number of contained fields.
2398 @returns Number of fields contained in
2399 \p variant_field_type, or a negative
2400 value on error.
2401
2402 @prenotnull{variant_field_type}
2403 @preisvarft{variant_field_type}
2404 @postrefcountsame{variant_field_type}
2405 */
2406 extern int64_t bt_ctf_field_type_variant_get_field_count(
2407 struct bt_ctf_field_type *variant_field_type);
2408
2409 /**
2410 @brief Returns the field (choice) of the @varft \p variant_field_type
2411 at index \p index.
2412
2413 On success, the field's type is placed in \p *field_type if
2414 \p field_type is not \c NULL. The field's name is placed in
2415 \p *field_name if \p field_name is not \c NULL.
2416 \p variant_field_type remains the sole owner of \p *field_name.
2417
2418 @param[in] variant_field_type Variant field type of which to get
2419 the field at index \p index.
2420 @param[out] field_name Returned name of the field at index
2421 \p index (can be \c NULL).
2422 @param[out] field_type Returned field type of the field
2423 at index \p index (can be \c NULL).
2424 ­@param[in] index Index of the field to get from
2425 \p variant_field_type.
2426 @returns 0 on success, or a negative value on error.
2427
2428 @prenotnull{variant_field_type}
2429 @preisvarft{variant_field_type}
2430 @pre \p index is lesser than the number of fields contained in the
2431 variant field type \p variant_field_type (see
2432 bt_ctf_field_type_variant_get_field_count()).
2433 @postrefcountsame{variant_field_type}
2434 @post <strong>On success</strong>, the returned field's type is placed
2435 in \p *field_type and its reference count is incremented.
2436
2437 @sa bt_ctf_field_type_variant_get_field_type_by_name(): Finds a variant
2438 field type's field by name.
2439 @sa bt_ctf_field_type_variant_get_field_type_from_tag(): Finds a variant
2440 field type's field by current tag value.
2441 */
2442 extern int bt_ctf_field_type_variant_get_field_by_index(
2443 struct bt_ctf_field_type *variant_field_type,
2444 const char **field_name,
2445 struct bt_ctf_field_type **field_type, uint64_t index);
2446
2447 /* Pre-2.0 CTF writer compatibility */
2448 #define bt_ctf_field_type_variant_get_field bt_ctf_field_type_variant_get_field_by_index
2449
2450 /**
2451 @brief Returns the type of the field (choice) named \p field_name
2452 found in the @varft \p variant_field_type.
2453
2454 @param[in] variant_field_type Variant field type of which to get
2455 a field's type.
2456 @param[in] field_name Name of the field to find.
2457 @returns Type of the field named \p field_name in
2458 \p variant_field_type, or
2459 \c NULL on error.
2460
2461 @prenotnull{variant_field_type}
2462 @prenotnull{field_name}
2463 @preisvarft{variant_field_type}
2464 @postrefcountsame{variant_field_type}
2465 @postsuccessrefcountretinc
2466
2467 @sa bt_ctf_field_type_variant_get_field_by_index(): Finds a variant field type's
2468 field by index.
2469 @sa bt_ctf_field_type_variant_get_field_type_from_tag(): Finds a variant
2470 field type's field by current tag value.
2471 */
2472 extern
2473 struct bt_ctf_field_type *bt_ctf_field_type_variant_get_field_type_by_name(
2474 struct bt_ctf_field_type *variant_field_type,
2475 const char *field_name);
2476
2477 /**
2478 @brief Returns the type of the field (choice) selected by the value of
2479 the @enumfield \p tag_field in the @varft \p variant_field_type.
2480
2481 \p tag_field is the current tag value.
2482
2483 The field type of \p tag_field, as returned by bt_ctf_field_get_type(),
2484 \em must be equivalent to the field type returned by
2485 bt_ctf_field_type_variant_get_tag_type() for \p variant_field_type.
2486
2487 @param[in] variant_field_type Variant field type of which to get
2488 a field's type.
2489 @param[in] tag_field Current tag value (variant field type's
2490 selector).
2491 @returns Type of the field selected by
2492 \p tag_field in \p variant_field_type,
2493 or \c NULL on error.
2494
2495 @prenotnull{variant_field_type}
2496 @prenotnull{tag_field}
2497 @preisvarft{variant_field_type}
2498 @preisenumfield{tag_field}
2499 @postrefcountsame{variant_field_type}
2500 @postrefcountsame{tag_field}
2501 @postsuccessrefcountretinc
2502
2503 @sa bt_ctf_field_type_variant_get_field_by_index(): Finds a variant field type's
2504 field by index.
2505 @sa bt_ctf_field_type_variant_get_field_type_by_name(): Finds a variant
2506 field type's field by name.
2507 */
2508 extern
2509 struct bt_ctf_field_type *bt_ctf_field_type_variant_get_field_type_from_tag(
2510 struct bt_ctf_field_type *variant_field_type,
2511 struct bt_ctf_field *tag_field);
2512
2513 /**
2514 @brief Adds a field (a choice) named \p field_name with the @ft
2515 \p field_type to the @varft \p variant_field_type.
2516
2517 On success, \p field_type becomes the child of \p variant_field_type.
2518
2519 You \em cannot add a field named \p field_name if there's already a
2520 field named \p field_name in \p variant_field_type.
2521
2522 \p field_name \em must name an existing mapping in the tag's
2523 enumeration field type of \p variant_field_type.
2524
2525 @param[in] variant_field_type Variant field type to which to add
2526 a new field.
2527 @param[in] field_type Field type of the field to add to
2528 \p variant_field_type.
2529 @param[in] field_name Name of the field to add to
2530 \p variant_field_type
2531 (copied on success).
2532 @returns 0 on success, or a negative value on error.
2533
2534 @prenotnull{variant_field_type}
2535 @prenotnull{field_type}
2536 @prenotnull{field_name}
2537 @preisvarft{variant_field_type}
2538 @pre \p field_type is not and does not contain \p variant_field_type,
2539 recursively, as a field's type.
2540 @prehot{variant_field_type}
2541 @postrefcountsame{variant_field_type}
2542 @postsuccessrefcountinc{field_type}
2543 */
2544 extern int bt_ctf_field_type_variant_add_field(
2545 struct bt_ctf_field_type *variant_field_type,
2546 struct bt_ctf_field_type *field_type,
2547 const char *field_name);
2548
2549 /** @} */
2550
2551 #ifdef __cplusplus
2552 }
2553 #endif
2554
2555 #endif /* BABELTRACE_CTF_IR_FIELD_TYPES_H */
This page took 0.12418 seconds and 5 git commands to generate.