lib: split real FC/field into single and double prec FC/field
[babeltrace.git] / include / babeltrace2 / trace-ir / field-class-const.h
CommitLineData
3fd40f46
PP
1#ifndef BABELTRACE2_TRACE_IR_FIELD_CLASS_CONST_H
2#define BABELTRACE2_TRACE_IR_FIELD_CLASS_CONST_H
78cf9df6
PP
3
4/*
0dcb770f 5 * Copyright (c) 2010-2019 EfficiOS Inc. and Linux Foundation
78cf9df6 6 *
78cf9df6
PP
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 * SOFTWARE.
78cf9df6
PP
24 */
25
9df34b44
PP
26#ifndef __BT_IN_BABELTRACE_H
27# error "Please include <babeltrace2/babeltrace.h> instead."
28#endif
29
78cf9df6
PP
30#include <stdint.h>
31#include <stddef.h>
32
e278f258
PP
33#include <babeltrace2/types.h>
34
78cf9df6
PP
35#ifdef __cplusplus
36extern "C" {
37#endif
38
ee78f405 39typedef enum bt_field_class_type {
a0c6c1d7
PP
40 BT_FIELD_CLASS_TYPE_BOOL = 0,
41 BT_FIELD_CLASS_TYPE_BIT_ARRAY = 1,
42 BT_FIELD_CLASS_TYPE_UNSIGNED_INTEGER = 2,
43 BT_FIELD_CLASS_TYPE_SIGNED_INTEGER = 3,
44 BT_FIELD_CLASS_TYPE_UNSIGNED_ENUMERATION = 4,
45 BT_FIELD_CLASS_TYPE_SIGNED_ENUMERATION = 5,
76276a81
FD
46 BT_FIELD_CLASS_TYPE_SINGLE_PRECISION_REAL = 6,
47 BT_FIELD_CLASS_TYPE_DOUBLE_PRECISION_REAL = 7,
48 BT_FIELD_CLASS_TYPE_STRING = 8,
49 BT_FIELD_CLASS_TYPE_STRUCTURE = 9,
50 BT_FIELD_CLASS_TYPE_STATIC_ARRAY = 10,
51 BT_FIELD_CLASS_TYPE_DYNAMIC_ARRAY = 11,
52 BT_FIELD_CLASS_TYPE_OPTION = 12,
53 BT_FIELD_CLASS_TYPE_VARIANT_WITHOUT_SELECTOR = 13,
54 BT_FIELD_CLASS_TYPE_VARIANT_WITH_UNSIGNED_SELECTOR = 14,
55 BT_FIELD_CLASS_TYPE_VARIANT_WITH_SIGNED_SELECTOR = 15,
ee78f405 56} bt_field_class_type;
78cf9df6 57
ee78f405 58typedef enum bt_field_class_integer_preferred_display_base {
a0c6c1d7
PP
59 BT_FIELD_CLASS_INTEGER_PREFERRED_DISPLAY_BASE_BINARY = 2,
60 BT_FIELD_CLASS_INTEGER_PREFERRED_DISPLAY_BASE_OCTAL = 8,
61 BT_FIELD_CLASS_INTEGER_PREFERRED_DISPLAY_BASE_DECIMAL = 10,
62 BT_FIELD_CLASS_INTEGER_PREFERRED_DISPLAY_BASE_HEXADECIMAL = 16,
ee78f405 63} bt_field_class_integer_preferred_display_base;
78cf9df6 64
ee78f405 65extern bt_field_class_type bt_field_class_get_type(
8eee8ea2 66 const bt_field_class *field_class);
78cf9df6 67
af90138b
PP
68extern const bt_value *bt_field_class_borrow_user_attributes_const(
69 const bt_field_class *field_class);
70
6943da6a
PP
71extern uint64_t bt_field_class_bit_array_get_length(
72 const bt_field_class *field_class);
73
78cf9df6 74extern uint64_t bt_field_class_integer_get_field_value_range(
8eee8ea2 75 const bt_field_class *field_class);
78cf9df6 76
ee78f405 77extern bt_field_class_integer_preferred_display_base
78cf9df6 78bt_field_class_integer_get_preferred_display_base(
8eee8ea2 79 const bt_field_class *field_class);
78cf9df6 80
78cf9df6 81extern uint64_t bt_field_class_enumeration_get_mapping_count(
8eee8ea2 82 const bt_field_class *field_class);
78cf9df6 83
60bbfc7c
PP
84extern const bt_field_class_enumeration_unsigned_mapping *
85bt_field_class_enumeration_unsigned_borrow_mapping_by_index_const(
b6baf3bb
PP
86 const bt_field_class *field_class, uint64_t index);
87
60bbfc7c
PP
88extern const bt_field_class_enumeration_unsigned_mapping *
89bt_field_class_enumeration_unsigned_borrow_mapping_by_label_const(
02b61fe0
PP
90 const bt_field_class *field_class, const char *label);
91
60bbfc7c
PP
92extern const bt_field_class_enumeration_signed_mapping *
93bt_field_class_enumeration_signed_borrow_mapping_by_index_const(
b6baf3bb
PP
94 const bt_field_class *field_class, uint64_t index);
95
60bbfc7c
PP
96extern const bt_field_class_enumeration_signed_mapping *
97bt_field_class_enumeration_signed_borrow_mapping_by_label_const(
02b61fe0
PP
98 const bt_field_class *field_class, const char *label);
99
b6baf3bb
PP
100static inline
101const bt_field_class_enumeration_mapping *
60bbfc7c
PP
102bt_field_class_enumeration_unsigned_mapping_as_mapping_const(
103 const bt_field_class_enumeration_unsigned_mapping *mapping)
b6baf3bb 104{
8470daa9 105 return __BT_UPCAST_CONST(bt_field_class_enumeration_mapping, mapping);
b6baf3bb 106}
78cf9df6 107
b6baf3bb
PP
108static inline
109const bt_field_class_enumeration_mapping *
60bbfc7c
PP
110bt_field_class_enumeration_signed_mapping_as_mapping_const(
111 const bt_field_class_enumeration_signed_mapping *mapping)
b6baf3bb 112{
8470daa9 113 return __BT_UPCAST_CONST(bt_field_class_enumeration_mapping, mapping);
b6baf3bb 114}
78cf9df6 115
b6baf3bb
PP
116extern const char *bt_field_class_enumeration_mapping_get_label(
117 const bt_field_class_enumeration_mapping *mapping);
78cf9df6 118
02b61fe0 119extern const bt_integer_range_set_unsigned *
60bbfc7c
PP
120bt_field_class_enumeration_unsigned_mapping_borrow_ranges_const(
121 const bt_field_class_enumeration_unsigned_mapping *mapping);
78cf9df6 122
02b61fe0 123extern const bt_integer_range_set_signed *
60bbfc7c
PP
124bt_field_class_enumeration_signed_mapping_borrow_ranges_const(
125 const bt_field_class_enumeration_signed_mapping *mapping);
78cf9df6 126
1091bb60 127typedef enum bt_field_class_enumeration_get_mapping_labels_for_value_status {
fb25b9e3
PP
128 BT_FIELD_CLASS_ENUMERATION_GET_MAPPING_LABELS_BY_VALUE_STATUS_MEMORY_ERROR = __BT_FUNC_STATUS_MEMORY_ERROR,
129 BT_FIELD_CLASS_ENUMERATION_GET_MAPPING_LABELS_BY_VALUE_STATUS_OK = __BT_FUNC_STATUS_OK,
1091bb60 130} bt_field_class_enumeration_get_mapping_labels_for_value_status;
fb25b9e3 131
1091bb60 132extern bt_field_class_enumeration_get_mapping_labels_for_value_status
60bbfc7c 133bt_field_class_enumeration_unsigned_get_mapping_labels_for_value(
8eee8ea2 134 const bt_field_class *field_class, uint64_t value,
78cf9df6
PP
135 bt_field_class_enumeration_mapping_label_array *label_array,
136 uint64_t *count);
137
1091bb60 138extern bt_field_class_enumeration_get_mapping_labels_for_value_status
60bbfc7c 139bt_field_class_enumeration_signed_get_mapping_labels_for_value(
8eee8ea2 140 const bt_field_class *field_class, int64_t value,
78cf9df6
PP
141 bt_field_class_enumeration_mapping_label_array *label_array,
142 uint64_t *count);
143
144extern uint64_t bt_field_class_structure_get_member_count(
8eee8ea2 145 const bt_field_class *field_class);
78cf9df6 146
e24f271a
PP
147extern const bt_field_class_structure_member *
148bt_field_class_structure_borrow_member_by_index_const(
149 const bt_field_class *field_class, uint64_t index);
78cf9df6 150
e24f271a
PP
151extern const bt_field_class_structure_member *
152bt_field_class_structure_borrow_member_by_name_const(
8eee8ea2 153 const bt_field_class *field_class, const char *name);
78cf9df6 154
e24f271a
PP
155extern const char *bt_field_class_structure_member_get_name(
156 const bt_field_class_structure_member *member);
157
158extern const bt_field_class *
159bt_field_class_structure_member_borrow_field_class_const(
160 const bt_field_class_structure_member *member);
161
af90138b
PP
162extern const bt_value *bt_field_class_structure_member_borrow_user_attributes_const(
163 const bt_field_class_structure_member *member);
164
8eee8ea2 165extern const bt_field_class *
78cf9df6 166bt_field_class_array_borrow_element_field_class_const(
8eee8ea2 167 const bt_field_class *field_class);
78cf9df6 168
60bbfc7c 169extern uint64_t bt_field_class_array_static_get_length(
8eee8ea2 170 const bt_field_class *field_class);
78cf9df6 171
8eee8ea2 172extern const bt_field_path *
60bbfc7c 173bt_field_class_array_dynamic_borrow_length_field_path_const(
8eee8ea2 174 const bt_field_class *field_class);
78cf9df6 175
247fa9e3
PP
176extern const bt_field_class *
177bt_field_class_option_borrow_field_class_const(
178 const bt_field_class *field_class);
179
180extern const bt_field_path *
181bt_field_class_option_borrow_selector_field_path_const(
182 const bt_field_class *field_class);
183
78cf9df6 184extern uint64_t bt_field_class_variant_get_option_count(
8eee8ea2 185 const bt_field_class *field_class);
78cf9df6 186
e24f271a
PP
187extern const bt_field_class_variant_option *
188bt_field_class_variant_borrow_option_by_index_const(
189 const bt_field_class *field_class, uint64_t index);
78cf9df6 190
e24f271a
PP
191extern const bt_field_class_variant_option *
192bt_field_class_variant_borrow_option_by_name_const(
193 const bt_field_class *field_class, const char *name);
194
60bbfc7c
PP
195extern const bt_field_class_variant_with_selector_unsigned_option *
196bt_field_class_variant_with_selector_unsigned_borrow_option_by_index_const(
02b61fe0
PP
197 const bt_field_class *field_class, uint64_t index);
198
60bbfc7c
PP
199extern const bt_field_class_variant_with_selector_unsigned_option *
200bt_field_class_variant_with_selector_unsigned_borrow_option_by_name_const(
02b61fe0
PP
201 const bt_field_class *field_class, const char *name);
202
60bbfc7c
PP
203extern const bt_field_class_variant_with_selector_signed_option *
204bt_field_class_variant_with_selector_signed_borrow_option_by_index_const(
02b61fe0
PP
205 const bt_field_class *field_class, uint64_t index);
206
60bbfc7c
PP
207extern const bt_field_class_variant_with_selector_signed_option *
208bt_field_class_variant_with_selector_signed_borrow_option_by_name_const(
02b61fe0
PP
209 const bt_field_class *field_class, const char *name);
210
e24f271a
PP
211extern const char *bt_field_class_variant_option_get_name(
212 const bt_field_class_variant_option *option);
213
214extern const bt_field_class *
215bt_field_class_variant_option_borrow_field_class_const(
216 const bt_field_class_variant_option *option);
78cf9df6 217
af90138b
PP
218extern const bt_value *bt_field_class_variant_option_borrow_user_attributes_const(
219 const bt_field_class_variant_option *option);
220
02b61fe0
PP
221extern const bt_field_path *
222bt_field_class_variant_with_selector_borrow_selector_field_path_const(
223 const bt_field_class *field_class);
224
225extern const bt_integer_range_set_unsigned *
60bbfc7c
PP
226bt_field_class_variant_with_selector_unsigned_option_borrow_ranges_const(
227 const bt_field_class_variant_with_selector_unsigned_option *option);
02b61fe0
PP
228
229static inline
230const bt_field_class_variant_option *
60bbfc7c
PP
231bt_field_class_variant_with_selector_unsigned_option_as_option_const(
232 const bt_field_class_variant_with_selector_unsigned_option *option)
02b61fe0
PP
233{
234 return __BT_UPCAST_CONST(bt_field_class_variant_option, option);
235}
236
237extern const bt_integer_range_set_signed *
60bbfc7c
PP
238bt_field_class_variant_with_selector_signed_option_borrow_ranges_const(
239 const bt_field_class_variant_with_selector_signed_option *option);
02b61fe0
PP
240
241static inline
242const bt_field_class_variant_option *
60bbfc7c
PP
243bt_field_class_variant_with_selector_signed_option_as_option_const(
244 const bt_field_class_variant_with_selector_signed_option *option)
02b61fe0
PP
245{
246 return __BT_UPCAST_CONST(bt_field_class_variant_option, option);
247}
248
8eee8ea2 249extern void bt_field_class_get_ref(const bt_field_class *field_class);
8c6884d9 250
8eee8ea2 251extern void bt_field_class_put_ref(const bt_field_class *field_class);
8c6884d9
PP
252
253#define BT_FIELD_CLASS_PUT_REF_AND_RESET(_var) \
254 do { \
255 bt_field_class_put_ref(_var); \
256 (_var) = NULL; \
257 } while (0)
258
259#define BT_FIELD_CLASS_MOVE_REF(_var_dst, _var_src) \
260 do { \
261 bt_field_class_put_ref(_var_dst); \
262 (_var_dst) = (_var_src); \
263 (_var_src) = NULL; \
264 } while (0)
265
266
78cf9df6
PP
267#ifdef __cplusplus
268}
269#endif
270
3fd40f46 271#endif /* BABELTRACE2_TRACE_IR_FIELD_CLASS_CONST_H */
This page took 0.0500969999999999 seconds and 4 git commands to generate.