lib: add bit array field class and field types
[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 {
5cebbe7f 40 BT_FIELD_CLASS_TYPE_BOOL,
1094efa4 41 BT_FIELD_CLASS_TYPE_BIT_ARRAY,
40f4ba76
PP
42 BT_FIELD_CLASS_TYPE_UNSIGNED_INTEGER,
43 BT_FIELD_CLASS_TYPE_SIGNED_INTEGER,
44 BT_FIELD_CLASS_TYPE_UNSIGNED_ENUMERATION,
45 BT_FIELD_CLASS_TYPE_SIGNED_ENUMERATION,
46 BT_FIELD_CLASS_TYPE_REAL,
47 BT_FIELD_CLASS_TYPE_STRING,
48 BT_FIELD_CLASS_TYPE_STRUCTURE,
49 BT_FIELD_CLASS_TYPE_STATIC_ARRAY,
50 BT_FIELD_CLASS_TYPE_DYNAMIC_ARRAY,
b38aea74 51 BT_FIELD_CLASS_TYPE_OPTION,
45c51519
PP
52 BT_FIELD_CLASS_TYPE_VARIANT_WITHOUT_SELECTOR,
53 BT_FIELD_CLASS_TYPE_VARIANT_WITH_UNSIGNED_SELECTOR,
54 BT_FIELD_CLASS_TYPE_VARIANT_WITH_SIGNED_SELECTOR,
4cdfc5e8 55} bt_field_class_type;
40f4ba76 56
4cdfc5e8 57typedef enum bt_field_class_integer_preferred_display_base {
40f4ba76
PP
58 BT_FIELD_CLASS_INTEGER_PREFERRED_DISPLAY_BASE_BINARY,
59 BT_FIELD_CLASS_INTEGER_PREFERRED_DISPLAY_BASE_OCTAL,
60 BT_FIELD_CLASS_INTEGER_PREFERRED_DISPLAY_BASE_DECIMAL,
61 BT_FIELD_CLASS_INTEGER_PREFERRED_DISPLAY_BASE_HEXADECIMAL,
4cdfc5e8 62} bt_field_class_integer_preferred_display_base;
40f4ba76 63
4cdfc5e8 64extern bt_field_class_type bt_field_class_get_type(
b19ff26f 65 const bt_field_class *field_class);
40f4ba76 66
1094efa4
PP
67extern uint64_t bt_field_class_bit_array_get_length(
68 const bt_field_class *field_class);
69
40f4ba76 70extern uint64_t bt_field_class_integer_get_field_value_range(
b19ff26f 71 const bt_field_class *field_class);
40f4ba76 72
4cdfc5e8 73extern bt_field_class_integer_preferred_display_base
40f4ba76 74bt_field_class_integer_get_preferred_display_base(
b19ff26f 75 const bt_field_class *field_class);
40f4ba76
PP
76
77extern bt_bool bt_field_class_real_is_single_precision(
b19ff26f 78 const bt_field_class *field_class);
40f4ba76
PP
79
80extern uint64_t bt_field_class_enumeration_get_mapping_count(
b19ff26f 81 const bt_field_class *field_class);
40f4ba76 82
9c08c816
PP
83extern const bt_field_class_enumeration_unsigned_mapping *
84bt_field_class_enumeration_unsigned_borrow_mapping_by_index_const(
8f3ccfbc
PP
85 const bt_field_class *field_class, uint64_t index);
86
9c08c816
PP
87extern const bt_field_class_enumeration_unsigned_mapping *
88bt_field_class_enumeration_unsigned_borrow_mapping_by_label_const(
45c51519
PP
89 const bt_field_class *field_class, const char *label);
90
9c08c816
PP
91extern const bt_field_class_enumeration_signed_mapping *
92bt_field_class_enumeration_signed_borrow_mapping_by_index_const(
8f3ccfbc
PP
93 const bt_field_class *field_class, uint64_t index);
94
9c08c816
PP
95extern const bt_field_class_enumeration_signed_mapping *
96bt_field_class_enumeration_signed_borrow_mapping_by_label_const(
45c51519
PP
97 const bt_field_class *field_class, const char *label);
98
8f3ccfbc
PP
99static inline
100const bt_field_class_enumeration_mapping *
9c08c816
PP
101bt_field_class_enumeration_unsigned_mapping_as_mapping_const(
102 const bt_field_class_enumeration_unsigned_mapping *mapping)
8f3ccfbc 103{
005f1204 104 return __BT_UPCAST_CONST(bt_field_class_enumeration_mapping, mapping);
8f3ccfbc 105}
40f4ba76 106
8f3ccfbc
PP
107static inline
108const bt_field_class_enumeration_mapping *
9c08c816
PP
109bt_field_class_enumeration_signed_mapping_as_mapping_const(
110 const bt_field_class_enumeration_signed_mapping *mapping)
8f3ccfbc 111{
005f1204 112 return __BT_UPCAST_CONST(bt_field_class_enumeration_mapping, mapping);
8f3ccfbc 113}
40f4ba76 114
8f3ccfbc
PP
115extern const char *bt_field_class_enumeration_mapping_get_label(
116 const bt_field_class_enumeration_mapping *mapping);
40f4ba76 117
45c51519 118extern const bt_integer_range_set_unsigned *
9c08c816
PP
119bt_field_class_enumeration_unsigned_mapping_borrow_ranges_const(
120 const bt_field_class_enumeration_unsigned_mapping *mapping);
40f4ba76 121
45c51519 122extern const bt_integer_range_set_signed *
9c08c816
PP
123bt_field_class_enumeration_signed_mapping_borrow_ranges_const(
124 const bt_field_class_enumeration_signed_mapping *mapping);
40f4ba76 125
185ecf64 126typedef enum bt_field_class_enumeration_get_mapping_labels_for_value_status {
d24d5663
PP
127 BT_FIELD_CLASS_ENUMERATION_GET_MAPPING_LABELS_BY_VALUE_STATUS_MEMORY_ERROR = __BT_FUNC_STATUS_MEMORY_ERROR,
128 BT_FIELD_CLASS_ENUMERATION_GET_MAPPING_LABELS_BY_VALUE_STATUS_OK = __BT_FUNC_STATUS_OK,
185ecf64 129} bt_field_class_enumeration_get_mapping_labels_for_value_status;
d24d5663 130
185ecf64 131extern bt_field_class_enumeration_get_mapping_labels_for_value_status
9c08c816 132bt_field_class_enumeration_unsigned_get_mapping_labels_for_value(
b19ff26f 133 const bt_field_class *field_class, uint64_t value,
40f4ba76
PP
134 bt_field_class_enumeration_mapping_label_array *label_array,
135 uint64_t *count);
136
185ecf64 137extern bt_field_class_enumeration_get_mapping_labels_for_value_status
9c08c816 138bt_field_class_enumeration_signed_get_mapping_labels_for_value(
b19ff26f 139 const bt_field_class *field_class, int64_t value,
40f4ba76
PP
140 bt_field_class_enumeration_mapping_label_array *label_array,
141 uint64_t *count);
142
143extern uint64_t bt_field_class_structure_get_member_count(
b19ff26f 144 const bt_field_class *field_class);
40f4ba76 145
1e6fd1d7
PP
146extern const bt_field_class_structure_member *
147bt_field_class_structure_borrow_member_by_index_const(
148 const bt_field_class *field_class, uint64_t index);
40f4ba76 149
1e6fd1d7
PP
150extern const bt_field_class_structure_member *
151bt_field_class_structure_borrow_member_by_name_const(
b19ff26f 152 const bt_field_class *field_class, const char *name);
40f4ba76 153
1e6fd1d7
PP
154extern const char *bt_field_class_structure_member_get_name(
155 const bt_field_class_structure_member *member);
156
157extern const bt_field_class *
158bt_field_class_structure_member_borrow_field_class_const(
159 const bt_field_class_structure_member *member);
160
b19ff26f 161extern const bt_field_class *
40f4ba76 162bt_field_class_array_borrow_element_field_class_const(
b19ff26f 163 const bt_field_class *field_class);
40f4ba76 164
9c08c816 165extern uint64_t bt_field_class_array_static_get_length(
b19ff26f 166 const bt_field_class *field_class);
40f4ba76 167
b19ff26f 168extern const bt_field_path *
9c08c816 169bt_field_class_array_dynamic_borrow_length_field_path_const(
b19ff26f 170 const bt_field_class *field_class);
40f4ba76 171
b38aea74
PP
172extern const bt_field_class *
173bt_field_class_option_borrow_field_class_const(
174 const bt_field_class *field_class);
175
176extern const bt_field_path *
177bt_field_class_option_borrow_selector_field_path_const(
178 const bt_field_class *field_class);
179
40f4ba76 180extern uint64_t bt_field_class_variant_get_option_count(
b19ff26f 181 const bt_field_class *field_class);
40f4ba76 182
1e6fd1d7
PP
183extern const bt_field_class_variant_option *
184bt_field_class_variant_borrow_option_by_index_const(
185 const bt_field_class *field_class, uint64_t index);
40f4ba76 186
1e6fd1d7
PP
187extern const bt_field_class_variant_option *
188bt_field_class_variant_borrow_option_by_name_const(
189 const bt_field_class *field_class, const char *name);
190
9c08c816
PP
191extern const bt_field_class_variant_with_selector_unsigned_option *
192bt_field_class_variant_with_selector_unsigned_borrow_option_by_index_const(
45c51519
PP
193 const bt_field_class *field_class, uint64_t index);
194
9c08c816
PP
195extern const bt_field_class_variant_with_selector_unsigned_option *
196bt_field_class_variant_with_selector_unsigned_borrow_option_by_name_const(
45c51519
PP
197 const bt_field_class *field_class, const char *name);
198
9c08c816
PP
199extern const bt_field_class_variant_with_selector_signed_option *
200bt_field_class_variant_with_selector_signed_borrow_option_by_index_const(
45c51519
PP
201 const bt_field_class *field_class, uint64_t index);
202
9c08c816
PP
203extern const bt_field_class_variant_with_selector_signed_option *
204bt_field_class_variant_with_selector_signed_borrow_option_by_name_const(
45c51519
PP
205 const bt_field_class *field_class, const char *name);
206
1e6fd1d7
PP
207extern const char *bt_field_class_variant_option_get_name(
208 const bt_field_class_variant_option *option);
209
210extern const bt_field_class *
211bt_field_class_variant_option_borrow_field_class_const(
212 const bt_field_class_variant_option *option);
40f4ba76 213
45c51519
PP
214extern const bt_field_path *
215bt_field_class_variant_with_selector_borrow_selector_field_path_const(
216 const bt_field_class *field_class);
217
218extern const bt_integer_range_set_unsigned *
9c08c816
PP
219bt_field_class_variant_with_selector_unsigned_option_borrow_ranges_const(
220 const bt_field_class_variant_with_selector_unsigned_option *option);
45c51519
PP
221
222static inline
223const bt_field_class_variant_option *
9c08c816
PP
224bt_field_class_variant_with_selector_unsigned_option_as_option_const(
225 const bt_field_class_variant_with_selector_unsigned_option *option)
45c51519
PP
226{
227 return __BT_UPCAST_CONST(bt_field_class_variant_option, option);
228}
229
230extern const bt_integer_range_set_signed *
9c08c816
PP
231bt_field_class_variant_with_selector_signed_option_borrow_ranges_const(
232 const bt_field_class_variant_with_selector_signed_option *option);
45c51519
PP
233
234static inline
235const bt_field_class_variant_option *
9c08c816
PP
236bt_field_class_variant_with_selector_signed_option_as_option_const(
237 const bt_field_class_variant_with_selector_signed_option *option)
45c51519
PP
238{
239 return __BT_UPCAST_CONST(bt_field_class_variant_option, option);
240}
241
b19ff26f 242extern void bt_field_class_get_ref(const bt_field_class *field_class);
c5b9b441 243
b19ff26f 244extern void bt_field_class_put_ref(const bt_field_class *field_class);
c5b9b441
PP
245
246#define BT_FIELD_CLASS_PUT_REF_AND_RESET(_var) \
247 do { \
248 bt_field_class_put_ref(_var); \
249 (_var) = NULL; \
250 } while (0)
251
252#define BT_FIELD_CLASS_MOVE_REF(_var_dst, _var_src) \
253 do { \
254 bt_field_class_put_ref(_var_dst); \
255 (_var_dst) = (_var_src); \
256 (_var_src) = NULL; \
257 } while (0)
258
259
40f4ba76
PP
260#ifdef __cplusplus
261}
262#endif
263
924dc299 264#endif /* BABELTRACE2_TRACE_IR_FIELD_CLASS_CONST_H */
This page took 0.047533 seconds and 4 git commands to generate.