Tests: flt.lttng-utils.debug-info: update debug-info tests
[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 {
78cf9df6
PP
40 BT_FIELD_CLASS_TYPE_UNSIGNED_INTEGER,
41 BT_FIELD_CLASS_TYPE_SIGNED_INTEGER,
42 BT_FIELD_CLASS_TYPE_UNSIGNED_ENUMERATION,
43 BT_FIELD_CLASS_TYPE_SIGNED_ENUMERATION,
44 BT_FIELD_CLASS_TYPE_REAL,
45 BT_FIELD_CLASS_TYPE_STRING,
46 BT_FIELD_CLASS_TYPE_STRUCTURE,
47 BT_FIELD_CLASS_TYPE_STATIC_ARRAY,
48 BT_FIELD_CLASS_TYPE_DYNAMIC_ARRAY,
02b61fe0
PP
49 BT_FIELD_CLASS_TYPE_VARIANT_WITHOUT_SELECTOR,
50 BT_FIELD_CLASS_TYPE_VARIANT_WITH_UNSIGNED_SELECTOR,
51 BT_FIELD_CLASS_TYPE_VARIANT_WITH_SIGNED_SELECTOR,
ee78f405 52} bt_field_class_type;
78cf9df6 53
ee78f405 54typedef enum bt_field_class_integer_preferred_display_base {
78cf9df6
PP
55 BT_FIELD_CLASS_INTEGER_PREFERRED_DISPLAY_BASE_BINARY,
56 BT_FIELD_CLASS_INTEGER_PREFERRED_DISPLAY_BASE_OCTAL,
57 BT_FIELD_CLASS_INTEGER_PREFERRED_DISPLAY_BASE_DECIMAL,
58 BT_FIELD_CLASS_INTEGER_PREFERRED_DISPLAY_BASE_HEXADECIMAL,
ee78f405 59} bt_field_class_integer_preferred_display_base;
78cf9df6 60
ee78f405 61extern bt_field_class_type bt_field_class_get_type(
8eee8ea2 62 const bt_field_class *field_class);
78cf9df6
PP
63
64extern uint64_t bt_field_class_integer_get_field_value_range(
8eee8ea2 65 const bt_field_class *field_class);
78cf9df6 66
ee78f405 67extern bt_field_class_integer_preferred_display_base
78cf9df6 68bt_field_class_integer_get_preferred_display_base(
8eee8ea2 69 const bt_field_class *field_class);
78cf9df6
PP
70
71extern bt_bool bt_field_class_real_is_single_precision(
8eee8ea2 72 const bt_field_class *field_class);
78cf9df6
PP
73
74extern uint64_t bt_field_class_enumeration_get_mapping_count(
8eee8ea2 75 const bt_field_class *field_class);
78cf9df6 76
b6baf3bb
PP
77extern const bt_field_class_unsigned_enumeration_mapping *
78bt_field_class_unsigned_enumeration_borrow_mapping_by_index_const(
79 const bt_field_class *field_class, uint64_t index);
80
02b61fe0
PP
81extern const bt_field_class_unsigned_enumeration_mapping *
82bt_field_class_unsigned_enumeration_borrow_mapping_by_label_const(
83 const bt_field_class *field_class, const char *label);
84
b6baf3bb
PP
85extern const bt_field_class_signed_enumeration_mapping *
86bt_field_class_signed_enumeration_borrow_mapping_by_index_const(
87 const bt_field_class *field_class, uint64_t index);
88
02b61fe0
PP
89extern const bt_field_class_signed_enumeration_mapping *
90bt_field_class_signed_enumeration_borrow_mapping_by_label_const(
91 const bt_field_class *field_class, const char *label);
92
b6baf3bb
PP
93static inline
94const bt_field_class_enumeration_mapping *
95bt_field_class_unsigned_enumeration_mapping_as_mapping_const(
96 const bt_field_class_unsigned_enumeration_mapping *mapping)
97{
8470daa9 98 return __BT_UPCAST_CONST(bt_field_class_enumeration_mapping, mapping);
b6baf3bb 99}
78cf9df6 100
b6baf3bb
PP
101static inline
102const bt_field_class_enumeration_mapping *
103bt_field_class_signed_enumeration_mapping_as_mapping_const(
104 const bt_field_class_signed_enumeration_mapping *mapping)
105{
8470daa9 106 return __BT_UPCAST_CONST(bt_field_class_enumeration_mapping, mapping);
b6baf3bb 107}
78cf9df6 108
b6baf3bb
PP
109extern const char *bt_field_class_enumeration_mapping_get_label(
110 const bt_field_class_enumeration_mapping *mapping);
78cf9df6 111
02b61fe0
PP
112extern const bt_integer_range_set_unsigned *
113bt_field_class_unsigned_enumeration_mapping_borrow_ranges_const(
114 const bt_field_class_unsigned_enumeration_mapping *mapping);
78cf9df6 115
02b61fe0
PP
116extern const bt_integer_range_set_signed *
117bt_field_class_signed_enumeration_mapping_borrow_ranges_const(
118 const bt_field_class_signed_enumeration_mapping *mapping);
78cf9df6 119
1091bb60 120typedef enum bt_field_class_enumeration_get_mapping_labels_for_value_status {
fb25b9e3
PP
121 BT_FIELD_CLASS_ENUMERATION_GET_MAPPING_LABELS_BY_VALUE_STATUS_MEMORY_ERROR = __BT_FUNC_STATUS_MEMORY_ERROR,
122 BT_FIELD_CLASS_ENUMERATION_GET_MAPPING_LABELS_BY_VALUE_STATUS_OK = __BT_FUNC_STATUS_OK,
1091bb60 123} bt_field_class_enumeration_get_mapping_labels_for_value_status;
fb25b9e3 124
1091bb60
PP
125extern bt_field_class_enumeration_get_mapping_labels_for_value_status
126bt_field_class_unsigned_enumeration_get_mapping_labels_for_value(
8eee8ea2 127 const bt_field_class *field_class, uint64_t value,
78cf9df6
PP
128 bt_field_class_enumeration_mapping_label_array *label_array,
129 uint64_t *count);
130
1091bb60
PP
131extern bt_field_class_enumeration_get_mapping_labels_for_value_status
132bt_field_class_signed_enumeration_get_mapping_labels_for_value(
8eee8ea2 133 const bt_field_class *field_class, int64_t value,
78cf9df6
PP
134 bt_field_class_enumeration_mapping_label_array *label_array,
135 uint64_t *count);
136
137extern uint64_t bt_field_class_structure_get_member_count(
8eee8ea2 138 const bt_field_class *field_class);
78cf9df6 139
e24f271a
PP
140extern const bt_field_class_structure_member *
141bt_field_class_structure_borrow_member_by_index_const(
142 const bt_field_class *field_class, uint64_t index);
78cf9df6 143
e24f271a
PP
144extern const bt_field_class_structure_member *
145bt_field_class_structure_borrow_member_by_name_const(
8eee8ea2 146 const bt_field_class *field_class, const char *name);
78cf9df6 147
e24f271a
PP
148extern const char *bt_field_class_structure_member_get_name(
149 const bt_field_class_structure_member *member);
150
151extern const bt_field_class *
152bt_field_class_structure_member_borrow_field_class_const(
153 const bt_field_class_structure_member *member);
154
8eee8ea2 155extern const bt_field_class *
78cf9df6 156bt_field_class_array_borrow_element_field_class_const(
8eee8ea2 157 const bt_field_class *field_class);
78cf9df6
PP
158
159extern uint64_t bt_field_class_static_array_get_length(
8eee8ea2 160 const bt_field_class *field_class);
78cf9df6 161
8eee8ea2 162extern const bt_field_path *
78cf9df6 163bt_field_class_dynamic_array_borrow_length_field_path_const(
8eee8ea2 164 const bt_field_class *field_class);
78cf9df6 165
78cf9df6 166extern uint64_t bt_field_class_variant_get_option_count(
8eee8ea2 167 const bt_field_class *field_class);
78cf9df6 168
e24f271a
PP
169extern const bt_field_class_variant_option *
170bt_field_class_variant_borrow_option_by_index_const(
171 const bt_field_class *field_class, uint64_t index);
78cf9df6 172
e24f271a
PP
173extern const bt_field_class_variant_option *
174bt_field_class_variant_borrow_option_by_name_const(
175 const bt_field_class *field_class, const char *name);
176
02b61fe0
PP
177extern const bt_field_class_variant_with_unsigned_selector_option *
178bt_field_class_variant_with_unsigned_selector_borrow_option_by_index_const(
179 const bt_field_class *field_class, uint64_t index);
180
181extern const bt_field_class_variant_with_unsigned_selector_option *
182bt_field_class_variant_with_unsigned_selector_borrow_option_by_name_const(
183 const bt_field_class *field_class, const char *name);
184
185extern const bt_field_class_variant_with_signed_selector_option *
186bt_field_class_variant_with_signed_selector_borrow_option_by_index_const(
187 const bt_field_class *field_class, uint64_t index);
188
189extern const bt_field_class_variant_with_signed_selector_option *
190bt_field_class_variant_with_signed_selector_borrow_option_by_name_const(
191 const bt_field_class *field_class, const char *name);
192
e24f271a
PP
193extern const char *bt_field_class_variant_option_get_name(
194 const bt_field_class_variant_option *option);
195
196extern const bt_field_class *
197bt_field_class_variant_option_borrow_field_class_const(
198 const bt_field_class_variant_option *option);
78cf9df6 199
02b61fe0
PP
200extern const bt_field_path *
201bt_field_class_variant_with_selector_borrow_selector_field_path_const(
202 const bt_field_class *field_class);
203
204extern const bt_integer_range_set_unsigned *
205bt_field_class_variant_with_unsigned_selector_option_borrow_ranges_const(
206 const bt_field_class_variant_with_unsigned_selector_option *option);
207
208static inline
209const bt_field_class_variant_option *
210bt_field_class_variant_with_unsigned_selector_option_as_option_const(
211 const bt_field_class_variant_with_unsigned_selector_option *option)
212{
213 return __BT_UPCAST_CONST(bt_field_class_variant_option, option);
214}
215
216extern const bt_integer_range_set_signed *
217bt_field_class_variant_with_signed_selector_option_borrow_ranges_const(
218 const bt_field_class_variant_with_signed_selector_option *option);
219
220static inline
221const bt_field_class_variant_option *
222bt_field_class_variant_with_signed_selector_option_as_option_const(
223 const bt_field_class_variant_with_signed_selector_option *option)
224{
225 return __BT_UPCAST_CONST(bt_field_class_variant_option, option);
226}
227
8eee8ea2 228extern void bt_field_class_get_ref(const bt_field_class *field_class);
8c6884d9 229
8eee8ea2 230extern void bt_field_class_put_ref(const bt_field_class *field_class);
8c6884d9
PP
231
232#define BT_FIELD_CLASS_PUT_REF_AND_RESET(_var) \
233 do { \
234 bt_field_class_put_ref(_var); \
235 (_var) = NULL; \
236 } while (0)
237
238#define BT_FIELD_CLASS_MOVE_REF(_var_dst, _var_src) \
239 do { \
240 bt_field_class_put_ref(_var_dst); \
241 (_var_dst) = (_var_src); \
242 (_var_src) = NULL; \
243 } while (0)
244
245
78cf9df6
PP
246#ifdef __cplusplus
247}
248#endif
249
3fd40f46 250#endif /* BABELTRACE2_TRACE_IR_FIELD_CLASS_CONST_H */
This page took 0.060523 seconds and 4 git commands to generate.