lib: rename option/var. "selector" to "selector field"
[babeltrace.git] / include / babeltrace2 / trace-ir / field-class-const.h
CommitLineData
924dc299
PP
1#ifndef BABELTRACE2_TRACE_IR_FIELD_CLASS_CONST_H
2#define BABELTRACE2_TRACE_IR_FIELD_CLASS_CONST_H
40f4ba76
PP
3
4/*
bbb7b5f0 5 * Copyright (c) 2010-2019 EfficiOS Inc. and Linux Foundation
40f4ba76 6 *
40f4ba76
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.
40f4ba76
PP
24 */
25
4fa90f32
PP
26#ifndef __BT_IN_BABELTRACE_H
27# error "Please include <babeltrace2/babeltrace.h> instead."
28#endif
29
40f4ba76
PP
30#include <stdint.h>
31#include <stddef.h>
32
959b3d46
PP
33#include <babeltrace2/types.h>
34
40f4ba76
PP
35#ifdef __cplusplus
36extern "C" {
37#endif
38
4cdfc5e8 39typedef enum bt_field_class_type {
de821fe5
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,
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_WITHOUT_LENGTH_FIELD = 11,
52 BT_FIELD_CLASS_TYPE_DYNAMIC_ARRAY_WITH_LENGTH_FIELD = 12,
53 BT_FIELD_CLASS_TYPE_OPTION_WITHOUT_SELECTOR_FIELD = 13,
54 BT_FIELD_CLASS_TYPE_OPTION_WITH_BOOL_SELECTOR_FIELD = 14,
55 BT_FIELD_CLASS_TYPE_OPTION_WITH_UNSIGNED_INTEGER_SELECTOR_FIELD = 15,
56 BT_FIELD_CLASS_TYPE_OPTION_WITH_SIGNED_INTEGER_SELECTOR_FIELD = 16,
57 BT_FIELD_CLASS_TYPE_VARIANT_WITHOUT_SELECTOR_FIELD = 17,
58 BT_FIELD_CLASS_TYPE_VARIANT_WITH_UNSIGNED_INTEGER_SELECTOR_FIELD = 18,
59 BT_FIELD_CLASS_TYPE_VARIANT_WITH_SIGNED_INTEGER_SELECTOR_FIELD = 19,
4cdfc5e8 60} bt_field_class_type;
40f4ba76 61
4cdfc5e8 62typedef enum bt_field_class_integer_preferred_display_base {
7b6afccb
PP
63 BT_FIELD_CLASS_INTEGER_PREFERRED_DISPLAY_BASE_BINARY = 2,
64 BT_FIELD_CLASS_INTEGER_PREFERRED_DISPLAY_BASE_OCTAL = 8,
65 BT_FIELD_CLASS_INTEGER_PREFERRED_DISPLAY_BASE_DECIMAL = 10,
66 BT_FIELD_CLASS_INTEGER_PREFERRED_DISPLAY_BASE_HEXADECIMAL = 16,
4cdfc5e8 67} bt_field_class_integer_preferred_display_base;
40f4ba76 68
4cdfc5e8 69extern bt_field_class_type bt_field_class_get_type(
b19ff26f 70 const bt_field_class *field_class);
40f4ba76 71
c6962c96
PP
72extern const bt_value *bt_field_class_borrow_user_attributes_const(
73 const bt_field_class *field_class);
74
1094efa4
PP
75extern uint64_t bt_field_class_bit_array_get_length(
76 const bt_field_class *field_class);
77
40f4ba76 78extern uint64_t bt_field_class_integer_get_field_value_range(
b19ff26f 79 const bt_field_class *field_class);
40f4ba76 80
4cdfc5e8 81extern bt_field_class_integer_preferred_display_base
40f4ba76 82bt_field_class_integer_get_preferred_display_base(
b19ff26f 83 const bt_field_class *field_class);
40f4ba76 84
40f4ba76 85extern uint64_t bt_field_class_enumeration_get_mapping_count(
b19ff26f 86 const bt_field_class *field_class);
40f4ba76 87
9c08c816
PP
88extern const bt_field_class_enumeration_unsigned_mapping *
89bt_field_class_enumeration_unsigned_borrow_mapping_by_index_const(
8f3ccfbc
PP
90 const bt_field_class *field_class, uint64_t index);
91
9c08c816
PP
92extern const bt_field_class_enumeration_unsigned_mapping *
93bt_field_class_enumeration_unsigned_borrow_mapping_by_label_const(
45c51519
PP
94 const bt_field_class *field_class, const char *label);
95
9c08c816
PP
96extern const bt_field_class_enumeration_signed_mapping *
97bt_field_class_enumeration_signed_borrow_mapping_by_index_const(
8f3ccfbc
PP
98 const bt_field_class *field_class, uint64_t index);
99
9c08c816
PP
100extern const bt_field_class_enumeration_signed_mapping *
101bt_field_class_enumeration_signed_borrow_mapping_by_label_const(
45c51519
PP
102 const bt_field_class *field_class, const char *label);
103
8f3ccfbc
PP
104static inline
105const bt_field_class_enumeration_mapping *
9c08c816
PP
106bt_field_class_enumeration_unsigned_mapping_as_mapping_const(
107 const bt_field_class_enumeration_unsigned_mapping *mapping)
8f3ccfbc 108{
005f1204 109 return __BT_UPCAST_CONST(bt_field_class_enumeration_mapping, mapping);
8f3ccfbc 110}
40f4ba76 111
8f3ccfbc
PP
112static inline
113const bt_field_class_enumeration_mapping *
9c08c816
PP
114bt_field_class_enumeration_signed_mapping_as_mapping_const(
115 const bt_field_class_enumeration_signed_mapping *mapping)
8f3ccfbc 116{
005f1204 117 return __BT_UPCAST_CONST(bt_field_class_enumeration_mapping, mapping);
8f3ccfbc 118}
40f4ba76 119
8f3ccfbc
PP
120extern const char *bt_field_class_enumeration_mapping_get_label(
121 const bt_field_class_enumeration_mapping *mapping);
40f4ba76 122
45c51519 123extern const bt_integer_range_set_unsigned *
9c08c816
PP
124bt_field_class_enumeration_unsigned_mapping_borrow_ranges_const(
125 const bt_field_class_enumeration_unsigned_mapping *mapping);
40f4ba76 126
45c51519 127extern const bt_integer_range_set_signed *
9c08c816
PP
128bt_field_class_enumeration_signed_mapping_borrow_ranges_const(
129 const bt_field_class_enumeration_signed_mapping *mapping);
40f4ba76 130
185ecf64 131typedef enum bt_field_class_enumeration_get_mapping_labels_for_value_status {
d24d5663
PP
132 BT_FIELD_CLASS_ENUMERATION_GET_MAPPING_LABELS_BY_VALUE_STATUS_MEMORY_ERROR = __BT_FUNC_STATUS_MEMORY_ERROR,
133 BT_FIELD_CLASS_ENUMERATION_GET_MAPPING_LABELS_BY_VALUE_STATUS_OK = __BT_FUNC_STATUS_OK,
185ecf64 134} bt_field_class_enumeration_get_mapping_labels_for_value_status;
d24d5663 135
185ecf64 136extern bt_field_class_enumeration_get_mapping_labels_for_value_status
9c08c816 137bt_field_class_enumeration_unsigned_get_mapping_labels_for_value(
b19ff26f 138 const bt_field_class *field_class, uint64_t value,
40f4ba76
PP
139 bt_field_class_enumeration_mapping_label_array *label_array,
140 uint64_t *count);
141
185ecf64 142extern bt_field_class_enumeration_get_mapping_labels_for_value_status
9c08c816 143bt_field_class_enumeration_signed_get_mapping_labels_for_value(
b19ff26f 144 const bt_field_class *field_class, int64_t value,
40f4ba76
PP
145 bt_field_class_enumeration_mapping_label_array *label_array,
146 uint64_t *count);
147
148extern uint64_t bt_field_class_structure_get_member_count(
b19ff26f 149 const bt_field_class *field_class);
40f4ba76 150
1e6fd1d7
PP
151extern const bt_field_class_structure_member *
152bt_field_class_structure_borrow_member_by_index_const(
153 const bt_field_class *field_class, uint64_t index);
40f4ba76 154
1e6fd1d7
PP
155extern const bt_field_class_structure_member *
156bt_field_class_structure_borrow_member_by_name_const(
b19ff26f 157 const bt_field_class *field_class, const char *name);
40f4ba76 158
1e6fd1d7
PP
159extern const char *bt_field_class_structure_member_get_name(
160 const bt_field_class_structure_member *member);
161
162extern const bt_field_class *
163bt_field_class_structure_member_borrow_field_class_const(
164 const bt_field_class_structure_member *member);
165
c6962c96
PP
166extern const bt_value *bt_field_class_structure_member_borrow_user_attributes_const(
167 const bt_field_class_structure_member *member);
168
b19ff26f 169extern const bt_field_class *
40f4ba76 170bt_field_class_array_borrow_element_field_class_const(
b19ff26f 171 const bt_field_class *field_class);
40f4ba76 172
9c08c816 173extern uint64_t bt_field_class_array_static_get_length(
b19ff26f 174 const bt_field_class *field_class);
40f4ba76 175
b19ff26f 176extern const bt_field_path *
81b8fa44 177bt_field_class_array_dynamic_with_length_field_borrow_length_field_path_const(
b19ff26f 178 const bt_field_class *field_class);
40f4ba76 179
b38aea74
PP
180extern const bt_field_class *
181bt_field_class_option_borrow_field_class_const(
182 const bt_field_class *field_class);
183
184extern const bt_field_path *
de821fe5 185bt_field_class_option_with_selector_field_borrow_selector_field_path_const(
0aa006b7
PP
186 const bt_field_class *field_class);
187
188extern bt_bool
de821fe5 189bt_field_class_option_with_selector_field_bool_selector_is_reversed(
0aa006b7
PP
190 const bt_field_class *field_class);
191
192extern const bt_integer_range_set_unsigned *
de821fe5 193bt_field_class_option_with_selector_field_integer_unsigned_borrow_selector_ranges_const(
0aa006b7
PP
194 const bt_field_class *field_class);
195
196extern const bt_integer_range_set_signed *
de821fe5 197bt_field_class_option_with_selector_field_integer_signed_borrow_selector_ranges_const(
b38aea74
PP
198 const bt_field_class *field_class);
199
40f4ba76 200extern uint64_t bt_field_class_variant_get_option_count(
b19ff26f 201 const bt_field_class *field_class);
40f4ba76 202
1e6fd1d7
PP
203extern const bt_field_class_variant_option *
204bt_field_class_variant_borrow_option_by_index_const(
205 const bt_field_class *field_class, uint64_t index);
40f4ba76 206
1e6fd1d7
PP
207extern const bt_field_class_variant_option *
208bt_field_class_variant_borrow_option_by_name_const(
209 const bt_field_class *field_class, const char *name);
210
de821fe5
PP
211extern const bt_field_class_variant_with_selector_field_integer_unsigned_option *
212bt_field_class_variant_with_selector_field_integer_unsigned_borrow_option_by_index_const(
45c51519
PP
213 const bt_field_class *field_class, uint64_t index);
214
de821fe5
PP
215extern const bt_field_class_variant_with_selector_field_integer_unsigned_option *
216bt_field_class_variant_with_selector_field_integer_unsigned_borrow_option_by_name_const(
45c51519
PP
217 const bt_field_class *field_class, const char *name);
218
de821fe5
PP
219extern const bt_field_class_variant_with_selector_field_integer_signed_option *
220bt_field_class_variant_with_selector_field_integer_signed_borrow_option_by_index_const(
45c51519
PP
221 const bt_field_class *field_class, uint64_t index);
222
de821fe5
PP
223extern const bt_field_class_variant_with_selector_field_integer_signed_option *
224bt_field_class_variant_with_selector_field_integer_signed_borrow_option_by_name_const(
45c51519
PP
225 const bt_field_class *field_class, const char *name);
226
1e6fd1d7
PP
227extern const char *bt_field_class_variant_option_get_name(
228 const bt_field_class_variant_option *option);
229
230extern const bt_field_class *
231bt_field_class_variant_option_borrow_field_class_const(
232 const bt_field_class_variant_option *option);
40f4ba76 233
c6962c96
PP
234extern const bt_value *bt_field_class_variant_option_borrow_user_attributes_const(
235 const bt_field_class_variant_option *option);
236
45c51519 237extern const bt_field_path *
de821fe5 238bt_field_class_variant_with_selector_field_borrow_selector_field_path_const(
45c51519
PP
239 const bt_field_class *field_class);
240
241extern const bt_integer_range_set_unsigned *
de821fe5
PP
242bt_field_class_variant_with_selector_field_integer_unsigned_option_borrow_ranges_const(
243 const bt_field_class_variant_with_selector_field_integer_unsigned_option *option);
45c51519
PP
244
245static inline
246const bt_field_class_variant_option *
de821fe5
PP
247bt_field_class_variant_with_selector_field_integer_unsigned_option_as_option_const(
248 const bt_field_class_variant_with_selector_field_integer_unsigned_option *option)
45c51519
PP
249{
250 return __BT_UPCAST_CONST(bt_field_class_variant_option, option);
251}
252
253extern const bt_integer_range_set_signed *
de821fe5
PP
254bt_field_class_variant_with_selector_field_integer_signed_option_borrow_ranges_const(
255 const bt_field_class_variant_with_selector_field_integer_signed_option *option);
45c51519
PP
256
257static inline
258const bt_field_class_variant_option *
de821fe5
PP
259bt_field_class_variant_with_selector_field_integer_signed_option_as_option_const(
260 const bt_field_class_variant_with_selector_field_integer_signed_option *option)
45c51519
PP
261{
262 return __BT_UPCAST_CONST(bt_field_class_variant_option, option);
263}
264
b19ff26f 265extern void bt_field_class_get_ref(const bt_field_class *field_class);
c5b9b441 266
b19ff26f 267extern void bt_field_class_put_ref(const bt_field_class *field_class);
c5b9b441
PP
268
269#define BT_FIELD_CLASS_PUT_REF_AND_RESET(_var) \
270 do { \
271 bt_field_class_put_ref(_var); \
272 (_var) = NULL; \
273 } while (0)
274
275#define BT_FIELD_CLASS_MOVE_REF(_var_dst, _var_src) \
276 do { \
277 bt_field_class_put_ref(_var_dst); \
278 (_var_dst) = (_var_src); \
279 (_var_src) = NULL; \
280 } while (0)
281
282
40f4ba76
PP
283#ifdef __cplusplus
284}
285#endif
286
924dc299 287#endif /* BABELTRACE2_TRACE_IR_FIELD_CLASS_CONST_H */
This page took 0.052227 seconds and 4 git commands to generate.