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