tests/bindings/python: Mark all tests as skipped
[babeltrace.git] / include / babeltrace / trace-ir / field-class-const.h
CommitLineData
40f4ba76
PP
1#ifndef BABELTRACE_TRACE_IR_FIELD_CLASSES_CONST_H
2#define BABELTRACE_TRACE_IR_FIELD_CLASSES_CONST_H
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
b19ff26f
PP
30/*
31 * For bt_bool, bt_field_class bt_field_path
32 * bt_field_class_signed_enumeration_mapping_ranges
33 * bt_field_class_unsigned_enumeration_mapping_ranges,
34 * bt_field_class_enumeration_mapping_label_array
35 */
40f4ba76
PP
36#include <babeltrace/types.h>
37
38#include <stdint.h>
39#include <stddef.h>
40
41#ifdef __cplusplus
42extern "C" {
43#endif
44
4cdfc5e8 45typedef enum bt_field_class_status {
4295b9e0
PP
46 BT_FIELD_CLASS_STATUS_OK = 0,
47 BT_FIELD_CLASS_STATUS_NOMEM = -12,
4cdfc5e8 48} bt_field_class_status;
4295b9e0 49
4cdfc5e8 50typedef enum bt_field_class_type {
40f4ba76
PP
51 BT_FIELD_CLASS_TYPE_UNSIGNED_INTEGER,
52 BT_FIELD_CLASS_TYPE_SIGNED_INTEGER,
53 BT_FIELD_CLASS_TYPE_UNSIGNED_ENUMERATION,
54 BT_FIELD_CLASS_TYPE_SIGNED_ENUMERATION,
55 BT_FIELD_CLASS_TYPE_REAL,
56 BT_FIELD_CLASS_TYPE_STRING,
57 BT_FIELD_CLASS_TYPE_STRUCTURE,
58 BT_FIELD_CLASS_TYPE_STATIC_ARRAY,
59 BT_FIELD_CLASS_TYPE_DYNAMIC_ARRAY,
60 BT_FIELD_CLASS_TYPE_VARIANT,
4cdfc5e8 61} bt_field_class_type;
40f4ba76 62
4cdfc5e8 63typedef enum bt_field_class_integer_preferred_display_base {
40f4ba76
PP
64 BT_FIELD_CLASS_INTEGER_PREFERRED_DISPLAY_BASE_BINARY,
65 BT_FIELD_CLASS_INTEGER_PREFERRED_DISPLAY_BASE_OCTAL,
66 BT_FIELD_CLASS_INTEGER_PREFERRED_DISPLAY_BASE_DECIMAL,
67 BT_FIELD_CLASS_INTEGER_PREFERRED_DISPLAY_BASE_HEXADECIMAL,
4cdfc5e8 68} bt_field_class_integer_preferred_display_base;
40f4ba76 69
4cdfc5e8 70extern bt_field_class_type bt_field_class_get_type(
b19ff26f 71 const bt_field_class *field_class);
40f4ba76
PP
72
73extern uint64_t bt_field_class_integer_get_field_value_range(
b19ff26f 74 const bt_field_class *field_class);
40f4ba76 75
4cdfc5e8 76extern bt_field_class_integer_preferred_display_base
40f4ba76 77bt_field_class_integer_get_preferred_display_base(
b19ff26f 78 const bt_field_class *field_class);
40f4ba76
PP
79
80extern bt_bool bt_field_class_real_is_single_precision(
b19ff26f 81 const bt_field_class *field_class);
40f4ba76
PP
82
83extern uint64_t bt_field_class_enumeration_get_mapping_count(
b19ff26f 84 const bt_field_class *field_class);
40f4ba76
PP
85
86extern void bt_field_class_unsigned_enumeration_borrow_mapping_by_index_const(
b19ff26f 87 const bt_field_class *field_class, uint64_t index,
40f4ba76 88 const char **label,
b19ff26f 89 const bt_field_class_unsigned_enumeration_mapping_ranges **ranges);
40f4ba76
PP
90
91extern void bt_field_class_signed_enumeration_borrow_mapping_by_index_const(
b19ff26f 92 const bt_field_class *field_class, uint64_t index,
40f4ba76 93 const char **label,
b19ff26f 94 const bt_field_class_signed_enumeration_mapping_ranges **ranges);
40f4ba76
PP
95
96extern uint64_t
97bt_field_class_unsigned_enumeration_mapping_ranges_get_range_count(
b19ff26f 98 const bt_field_class_unsigned_enumeration_mapping_ranges *ranges);
40f4ba76
PP
99
100extern uint64_t
101bt_field_class_signed_enumeration_mapping_ranges_get_range_count(
b19ff26f 102 const bt_field_class_signed_enumeration_mapping_ranges *ranges);
40f4ba76
PP
103
104extern void
105bt_field_class_unsigned_enumeration_mapping_ranges_get_range_by_index(
b19ff26f 106 const bt_field_class_unsigned_enumeration_mapping_ranges *ranges,
40f4ba76
PP
107 uint64_t index, uint64_t *lower, uint64_t *upper);
108
109extern void
110bt_field_class_signed_enumeration_mapping_ranges_get_range_by_index(
1998d1ab 111 const bt_field_class_signed_enumeration_mapping_ranges *ranges,
40f4ba76
PP
112 uint64_t index, int64_t *lower, int64_t *upper);
113
4cdfc5e8 114extern bt_field_class_status
4295b9e0 115bt_field_class_unsigned_enumeration_get_mapping_labels_by_value(
b19ff26f 116 const bt_field_class *field_class, uint64_t value,
40f4ba76
PP
117 bt_field_class_enumeration_mapping_label_array *label_array,
118 uint64_t *count);
119
4cdfc5e8 120extern bt_field_class_status
4295b9e0 121bt_field_class_signed_enumeration_get_mapping_labels_by_value(
b19ff26f 122 const bt_field_class *field_class, int64_t value,
40f4ba76
PP
123 bt_field_class_enumeration_mapping_label_array *label_array,
124 uint64_t *count);
125
126extern uint64_t bt_field_class_structure_get_member_count(
b19ff26f 127 const bt_field_class *field_class);
40f4ba76 128
1e6fd1d7
PP
129extern const bt_field_class_structure_member *
130bt_field_class_structure_borrow_member_by_index_const(
131 const bt_field_class *field_class, uint64_t index);
40f4ba76 132
1e6fd1d7
PP
133extern const bt_field_class_structure_member *
134bt_field_class_structure_borrow_member_by_name_const(
b19ff26f 135 const bt_field_class *field_class, const char *name);
40f4ba76 136
1e6fd1d7
PP
137extern const char *bt_field_class_structure_member_get_name(
138 const bt_field_class_structure_member *member);
139
140extern const bt_field_class *
141bt_field_class_structure_member_borrow_field_class_const(
142 const bt_field_class_structure_member *member);
143
b19ff26f 144extern const bt_field_class *
40f4ba76 145bt_field_class_array_borrow_element_field_class_const(
b19ff26f 146 const bt_field_class *field_class);
40f4ba76
PP
147
148extern uint64_t bt_field_class_static_array_get_length(
b19ff26f 149 const bt_field_class *field_class);
40f4ba76 150
b19ff26f 151extern const bt_field_path *
40f4ba76 152bt_field_class_dynamic_array_borrow_length_field_path_const(
b19ff26f 153 const bt_field_class *field_class);
40f4ba76 154
b19ff26f 155extern const bt_field_path *
40f4ba76 156bt_field_class_variant_borrow_selector_field_path_const(
b19ff26f 157 const bt_field_class *field_class);
40f4ba76
PP
158
159extern uint64_t bt_field_class_variant_get_option_count(
b19ff26f 160 const bt_field_class *field_class);
40f4ba76 161
1e6fd1d7
PP
162extern const bt_field_class_variant_option *
163bt_field_class_variant_borrow_option_by_index_const(
164 const bt_field_class *field_class, uint64_t index);
40f4ba76 165
1e6fd1d7
PP
166extern const bt_field_class_variant_option *
167bt_field_class_variant_borrow_option_by_name_const(
168 const bt_field_class *field_class, const char *name);
169
170extern const char *bt_field_class_variant_option_get_name(
171 const bt_field_class_variant_option *option);
172
173extern const bt_field_class *
174bt_field_class_variant_option_borrow_field_class_const(
175 const bt_field_class_variant_option *option);
40f4ba76 176
b19ff26f 177extern void bt_field_class_get_ref(const bt_field_class *field_class);
c5b9b441 178
b19ff26f 179extern void bt_field_class_put_ref(const bt_field_class *field_class);
c5b9b441
PP
180
181#define BT_FIELD_CLASS_PUT_REF_AND_RESET(_var) \
182 do { \
183 bt_field_class_put_ref(_var); \
184 (_var) = NULL; \
185 } while (0)
186
187#define BT_FIELD_CLASS_MOVE_REF(_var_dst, _var_src) \
188 do { \
189 bt_field_class_put_ref(_var_dst); \
190 (_var_dst) = (_var_src); \
191 (_var_src) = NULL; \
192 } while (0)
193
194
40f4ba76
PP
195#ifdef __cplusplus
196}
197#endif
198
199#endif /* BABELTRACE_TRACE_IR_FIELD_CLASSES_CONST_H */
This page took 0.034471 seconds and 4 git commands to generate.