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