Fix: headers: make static inline upcasts compatible with C++
[babeltrace.git] / include / babeltrace / trace-ir / field-class-const.h
CommitLineData
78cf9df6
PP
1#ifndef BABELTRACE_TRACE_IR_FIELD_CLASSES_CONST_H
2#define BABELTRACE_TRACE_IR_FIELD_CLASSES_CONST_H
3
4/*
f2b0325d 5 * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
78cf9df6
PP
6 * Copyright 2013, 2014 Jérémie Galarneau <jeremie.galarneau@efficios.com>
7 *
78cf9df6
PP
8 * Permission is hereby granted, free of charge, to any person obtaining a copy
9 * of this software and associated documentation files (the "Software"), to deal
10 * in the Software without restriction, including without limitation the rights
11 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 * copies of the Software, and to permit persons to whom the Software is
13 * furnished to do so, subject to the following conditions:
14 *
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24 * SOFTWARE.
25 *
26 * The Common Trace Format (CTF) Specification is available at
27 * http://www.efficios.com/ctf
28 */
29
8eee8ea2 30/*
b6baf3bb
PP
31 * For bt_bool, bt_field_class, bt_field_path,
32 * bt_field_class_enumeration_mapping,
33 * bt_field_class_unsigned_enumeration_mapping,
34 * bt_field_class_signed_enumeration_mapping,
8470daa9 35 * bt_field_class_enumeration_mapping_label_array, __BT_UPCAST_CONST
8eee8ea2 36 */
78cf9df6
PP
37#include <babeltrace/types.h>
38
39#include <stdint.h>
40#include <stddef.h>
41
42#ifdef __cplusplus
43extern "C" {
44#endif
45
ee78f405 46typedef enum bt_field_class_status {
4b514ab3
PP
47 BT_FIELD_CLASS_STATUS_OK = 0,
48 BT_FIELD_CLASS_STATUS_NOMEM = -12,
ee78f405 49} bt_field_class_status;
4b514ab3 50
ee78f405 51typedef enum bt_field_class_type {
78cf9df6
PP
52 BT_FIELD_CLASS_TYPE_UNSIGNED_INTEGER,
53 BT_FIELD_CLASS_TYPE_SIGNED_INTEGER,
54 BT_FIELD_CLASS_TYPE_UNSIGNED_ENUMERATION,
55 BT_FIELD_CLASS_TYPE_SIGNED_ENUMERATION,
56 BT_FIELD_CLASS_TYPE_REAL,
57 BT_FIELD_CLASS_TYPE_STRING,
58 BT_FIELD_CLASS_TYPE_STRUCTURE,
59 BT_FIELD_CLASS_TYPE_STATIC_ARRAY,
60 BT_FIELD_CLASS_TYPE_DYNAMIC_ARRAY,
61 BT_FIELD_CLASS_TYPE_VARIANT,
ee78f405 62} bt_field_class_type;
78cf9df6 63
ee78f405 64typedef enum bt_field_class_integer_preferred_display_base {
78cf9df6
PP
65 BT_FIELD_CLASS_INTEGER_PREFERRED_DISPLAY_BASE_BINARY,
66 BT_FIELD_CLASS_INTEGER_PREFERRED_DISPLAY_BASE_OCTAL,
67 BT_FIELD_CLASS_INTEGER_PREFERRED_DISPLAY_BASE_DECIMAL,
68 BT_FIELD_CLASS_INTEGER_PREFERRED_DISPLAY_BASE_HEXADECIMAL,
ee78f405 69} bt_field_class_integer_preferred_display_base;
78cf9df6 70
ee78f405 71extern bt_field_class_type bt_field_class_get_type(
8eee8ea2 72 const bt_field_class *field_class);
78cf9df6
PP
73
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
PP
80
81extern bt_bool bt_field_class_real_is_single_precision(
8eee8ea2 82 const bt_field_class *field_class);
78cf9df6
PP
83
84extern uint64_t bt_field_class_enumeration_get_mapping_count(
8eee8ea2 85 const bt_field_class *field_class);
78cf9df6 86
b6baf3bb
PP
87extern const bt_field_class_unsigned_enumeration_mapping *
88bt_field_class_unsigned_enumeration_borrow_mapping_by_index_const(
89 const bt_field_class *field_class, uint64_t index);
90
91extern const bt_field_class_signed_enumeration_mapping *
92bt_field_class_signed_enumeration_borrow_mapping_by_index_const(
93 const bt_field_class *field_class, uint64_t index);
94
95static inline
96const bt_field_class_enumeration_mapping *
97bt_field_class_unsigned_enumeration_mapping_as_mapping_const(
98 const bt_field_class_unsigned_enumeration_mapping *mapping)
99{
8470daa9 100 return __BT_UPCAST_CONST(bt_field_class_enumeration_mapping, mapping);
b6baf3bb 101}
78cf9df6 102
b6baf3bb
PP
103static inline
104const bt_field_class_enumeration_mapping *
105bt_field_class_signed_enumeration_mapping_as_mapping_const(
106 const bt_field_class_signed_enumeration_mapping *mapping)
107{
8470daa9 108 return __BT_UPCAST_CONST(bt_field_class_enumeration_mapping, mapping);
b6baf3bb 109}
78cf9df6 110
b6baf3bb
PP
111extern const char *bt_field_class_enumeration_mapping_get_label(
112 const bt_field_class_enumeration_mapping *mapping);
78cf9df6 113
b6baf3bb
PP
114extern uint64_t bt_field_class_enumeration_mapping_get_range_count(
115 const bt_field_class_enumeration_mapping *mapping);
78cf9df6
PP
116
117extern void
b6baf3bb
PP
118bt_field_class_unsigned_enumeration_mapping_get_range_by_index(
119 const bt_field_class_unsigned_enumeration_mapping *mapping,
78cf9df6
PP
120 uint64_t index, uint64_t *lower, uint64_t *upper);
121
122extern void
b6baf3bb
PP
123bt_field_class_signed_enumeration_mapping_get_range_by_index(
124 const bt_field_class_signed_enumeration_mapping *mapping,
78cf9df6
PP
125 uint64_t index, int64_t *lower, int64_t *upper);
126
ee78f405 127extern bt_field_class_status
4b514ab3 128bt_field_class_unsigned_enumeration_get_mapping_labels_by_value(
8eee8ea2 129 const bt_field_class *field_class, uint64_t value,
78cf9df6
PP
130 bt_field_class_enumeration_mapping_label_array *label_array,
131 uint64_t *count);
132
ee78f405 133extern bt_field_class_status
4b514ab3 134bt_field_class_signed_enumeration_get_mapping_labels_by_value(
8eee8ea2 135 const bt_field_class *field_class, int64_t value,
78cf9df6
PP
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(
8eee8ea2 140 const bt_field_class *field_class);
78cf9df6 141
e24f271a
PP
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);
78cf9df6 145
e24f271a
PP
146extern const bt_field_class_structure_member *
147bt_field_class_structure_borrow_member_by_name_const(
8eee8ea2 148 const bt_field_class *field_class, const char *name);
78cf9df6 149
e24f271a
PP
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
8eee8ea2 157extern const bt_field_class *
78cf9df6 158bt_field_class_array_borrow_element_field_class_const(
8eee8ea2 159 const bt_field_class *field_class);
78cf9df6
PP
160
161extern uint64_t bt_field_class_static_array_get_length(
8eee8ea2 162 const bt_field_class *field_class);
78cf9df6 163
8eee8ea2 164extern const bt_field_path *
78cf9df6 165bt_field_class_dynamic_array_borrow_length_field_path_const(
8eee8ea2 166 const bt_field_class *field_class);
78cf9df6 167
8eee8ea2 168extern const bt_field_path *
78cf9df6 169bt_field_class_variant_borrow_selector_field_path_const(
8eee8ea2 170 const bt_field_class *field_class);
78cf9df6
PP
171
172extern uint64_t bt_field_class_variant_get_option_count(
8eee8ea2 173 const bt_field_class *field_class);
78cf9df6 174
e24f271a
PP
175extern const bt_field_class_variant_option *
176bt_field_class_variant_borrow_option_by_index_const(
177 const bt_field_class *field_class, uint64_t index);
78cf9df6 178
e24f271a
PP
179extern const bt_field_class_variant_option *
180bt_field_class_variant_borrow_option_by_name_const(
181 const bt_field_class *field_class, const char *name);
182
183extern const char *bt_field_class_variant_option_get_name(
184 const bt_field_class_variant_option *option);
185
186extern const bt_field_class *
187bt_field_class_variant_option_borrow_field_class_const(
188 const bt_field_class_variant_option *option);
78cf9df6 189
8eee8ea2 190extern void bt_field_class_get_ref(const bt_field_class *field_class);
8c6884d9 191
8eee8ea2 192extern void bt_field_class_put_ref(const bt_field_class *field_class);
8c6884d9
PP
193
194#define BT_FIELD_CLASS_PUT_REF_AND_RESET(_var) \
195 do { \
196 bt_field_class_put_ref(_var); \
197 (_var) = NULL; \
198 } while (0)
199
200#define BT_FIELD_CLASS_MOVE_REF(_var_dst, _var_src) \
201 do { \
202 bt_field_class_put_ref(_var_dst); \
203 (_var_dst) = (_var_src); \
204 (_var_src) = NULL; \
205 } while (0)
206
207
78cf9df6
PP
208#ifdef __cplusplus
209}
210#endif
211
212#endif /* BABELTRACE_TRACE_IR_FIELD_CLASSES_CONST_H */
This page took 0.039081 seconds and 4 git commands to generate.