lib: remove "For *" comments in public headers
[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/*
e2f7325d 5 * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
40f4ba76
PP
6 * Copyright 2013, 2014 Jérémie Galarneau <jeremie.galarneau@efficios.com>
7 *
40f4ba76
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
4fa90f32
PP
30#ifndef __BT_IN_BABELTRACE_H
31# error "Please include <babeltrace2/babeltrace.h> instead."
32#endif
33
40f4ba76
PP
34#include <stdint.h>
35#include <stddef.h>
36
959b3d46
PP
37#include <babeltrace2/types.h>
38
40f4ba76
PP
39#ifdef __cplusplus
40extern "C" {
41#endif
42
4cdfc5e8 43typedef enum bt_field_class_type {
40f4ba76
PP
44 BT_FIELD_CLASS_TYPE_UNSIGNED_INTEGER,
45 BT_FIELD_CLASS_TYPE_SIGNED_INTEGER,
46 BT_FIELD_CLASS_TYPE_UNSIGNED_ENUMERATION,
47 BT_FIELD_CLASS_TYPE_SIGNED_ENUMERATION,
48 BT_FIELD_CLASS_TYPE_REAL,
49 BT_FIELD_CLASS_TYPE_STRING,
50 BT_FIELD_CLASS_TYPE_STRUCTURE,
51 BT_FIELD_CLASS_TYPE_STATIC_ARRAY,
52 BT_FIELD_CLASS_TYPE_DYNAMIC_ARRAY,
53 BT_FIELD_CLASS_TYPE_VARIANT,
4cdfc5e8 54} bt_field_class_type;
40f4ba76 55
4cdfc5e8 56typedef enum bt_field_class_integer_preferred_display_base {
40f4ba76
PP
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,
4cdfc5e8 61} bt_field_class_integer_preferred_display_base;
40f4ba76 62
4cdfc5e8 63extern bt_field_class_type bt_field_class_get_type(
b19ff26f 64 const bt_field_class *field_class);
40f4ba76
PP
65
66extern uint64_t bt_field_class_integer_get_field_value_range(
b19ff26f 67 const bt_field_class *field_class);
40f4ba76 68
4cdfc5e8 69extern bt_field_class_integer_preferred_display_base
40f4ba76 70bt_field_class_integer_get_preferred_display_base(
b19ff26f 71 const bt_field_class *field_class);
40f4ba76
PP
72
73extern bt_bool bt_field_class_real_is_single_precision(
b19ff26f 74 const bt_field_class *field_class);
40f4ba76
PP
75
76extern uint64_t bt_field_class_enumeration_get_mapping_count(
b19ff26f 77 const bt_field_class *field_class);
40f4ba76 78
8f3ccfbc
PP
79extern const bt_field_class_unsigned_enumeration_mapping *
80bt_field_class_unsigned_enumeration_borrow_mapping_by_index_const(
81 const bt_field_class *field_class, uint64_t index);
82
83extern const bt_field_class_signed_enumeration_mapping *
84bt_field_class_signed_enumeration_borrow_mapping_by_index_const(
85 const bt_field_class *field_class, uint64_t index);
86
87static inline
88const bt_field_class_enumeration_mapping *
89bt_field_class_unsigned_enumeration_mapping_as_mapping_const(
90 const bt_field_class_unsigned_enumeration_mapping *mapping)
91{
005f1204 92 return __BT_UPCAST_CONST(bt_field_class_enumeration_mapping, mapping);
8f3ccfbc 93}
40f4ba76 94
8f3ccfbc
PP
95static inline
96const bt_field_class_enumeration_mapping *
97bt_field_class_signed_enumeration_mapping_as_mapping_const(
98 const bt_field_class_signed_enumeration_mapping *mapping)
99{
005f1204 100 return __BT_UPCAST_CONST(bt_field_class_enumeration_mapping, mapping);
8f3ccfbc 101}
40f4ba76 102
8f3ccfbc
PP
103extern const char *bt_field_class_enumeration_mapping_get_label(
104 const bt_field_class_enumeration_mapping *mapping);
40f4ba76 105
8f3ccfbc
PP
106extern uint64_t bt_field_class_enumeration_mapping_get_range_count(
107 const bt_field_class_enumeration_mapping *mapping);
40f4ba76
PP
108
109extern void
8f3ccfbc
PP
110bt_field_class_unsigned_enumeration_mapping_get_range_by_index(
111 const bt_field_class_unsigned_enumeration_mapping *mapping,
40f4ba76
PP
112 uint64_t index, uint64_t *lower, uint64_t *upper);
113
114extern void
8f3ccfbc
PP
115bt_field_class_signed_enumeration_mapping_get_range_by_index(
116 const bt_field_class_signed_enumeration_mapping *mapping,
40f4ba76
PP
117 uint64_t index, int64_t *lower, int64_t *upper);
118
185ecf64 119typedef enum bt_field_class_enumeration_get_mapping_labels_for_value_status {
d24d5663
PP
120 BT_FIELD_CLASS_ENUMERATION_GET_MAPPING_LABELS_BY_VALUE_STATUS_MEMORY_ERROR = __BT_FUNC_STATUS_MEMORY_ERROR,
121 BT_FIELD_CLASS_ENUMERATION_GET_MAPPING_LABELS_BY_VALUE_STATUS_OK = __BT_FUNC_STATUS_OK,
185ecf64 122} bt_field_class_enumeration_get_mapping_labels_for_value_status;
d24d5663 123
185ecf64
PP
124extern bt_field_class_enumeration_get_mapping_labels_for_value_status
125bt_field_class_unsigned_enumeration_get_mapping_labels_for_value(
b19ff26f 126 const bt_field_class *field_class, uint64_t value,
40f4ba76
PP
127 bt_field_class_enumeration_mapping_label_array *label_array,
128 uint64_t *count);
129
185ecf64
PP
130extern bt_field_class_enumeration_get_mapping_labels_for_value_status
131bt_field_class_signed_enumeration_get_mapping_labels_for_value(
b19ff26f 132 const bt_field_class *field_class, int64_t value,
40f4ba76
PP
133 bt_field_class_enumeration_mapping_label_array *label_array,
134 uint64_t *count);
135
136extern uint64_t bt_field_class_structure_get_member_count(
b19ff26f 137 const bt_field_class *field_class);
40f4ba76 138
1e6fd1d7
PP
139extern const bt_field_class_structure_member *
140bt_field_class_structure_borrow_member_by_index_const(
141 const bt_field_class *field_class, uint64_t index);
40f4ba76 142
1e6fd1d7
PP
143extern const bt_field_class_structure_member *
144bt_field_class_structure_borrow_member_by_name_const(
b19ff26f 145 const bt_field_class *field_class, const char *name);
40f4ba76 146
1e6fd1d7
PP
147extern const char *bt_field_class_structure_member_get_name(
148 const bt_field_class_structure_member *member);
149
150extern const bt_field_class *
151bt_field_class_structure_member_borrow_field_class_const(
152 const bt_field_class_structure_member *member);
153
b19ff26f 154extern const bt_field_class *
40f4ba76 155bt_field_class_array_borrow_element_field_class_const(
b19ff26f 156 const bt_field_class *field_class);
40f4ba76
PP
157
158extern uint64_t bt_field_class_static_array_get_length(
b19ff26f 159 const bt_field_class *field_class);
40f4ba76 160
b19ff26f 161extern const bt_field_path *
40f4ba76 162bt_field_class_dynamic_array_borrow_length_field_path_const(
b19ff26f 163 const bt_field_class *field_class);
40f4ba76 164
b19ff26f 165extern const bt_field_path *
40f4ba76 166bt_field_class_variant_borrow_selector_field_path_const(
b19ff26f 167 const bt_field_class *field_class);
40f4ba76
PP
168
169extern uint64_t bt_field_class_variant_get_option_count(
b19ff26f 170 const bt_field_class *field_class);
40f4ba76 171
1e6fd1d7
PP
172extern const bt_field_class_variant_option *
173bt_field_class_variant_borrow_option_by_index_const(
174 const bt_field_class *field_class, uint64_t index);
40f4ba76 175
1e6fd1d7
PP
176extern const bt_field_class_variant_option *
177bt_field_class_variant_borrow_option_by_name_const(
178 const bt_field_class *field_class, const char *name);
179
180extern const char *bt_field_class_variant_option_get_name(
181 const bt_field_class_variant_option *option);
182
183extern const bt_field_class *
184bt_field_class_variant_option_borrow_field_class_const(
185 const bt_field_class_variant_option *option);
40f4ba76 186
b19ff26f 187extern void bt_field_class_get_ref(const bt_field_class *field_class);
c5b9b441 188
b19ff26f 189extern void bt_field_class_put_ref(const bt_field_class *field_class);
c5b9b441
PP
190
191#define BT_FIELD_CLASS_PUT_REF_AND_RESET(_var) \
192 do { \
193 bt_field_class_put_ref(_var); \
194 (_var) = NULL; \
195 } while (0)
196
197#define BT_FIELD_CLASS_MOVE_REF(_var_dst, _var_src) \
198 do { \
199 bt_field_class_put_ref(_var_dst); \
200 (_var_dst) = (_var_src); \
201 (_var_src) = NULL; \
202 } while (0)
203
204
40f4ba76
PP
205#ifdef __cplusplus
206}
207#endif
208
924dc299 209#endif /* BABELTRACE2_TRACE_IR_FIELD_CLASS_CONST_H */
This page took 0.042337 seconds and 4 git commands to generate.