f4f722c38055d72f8e84792e1693afaf6415ecc2
[babeltrace.git] / include / babeltrace2 / trace-ir / field-class.h
1 #ifndef BABELTRACE2_TRACE_IR_FIELD_CLASS_H
2 #define BABELTRACE2_TRACE_IR_FIELD_CLASS_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 #include <babeltrace2/trace-ir/field-class-const.h>
35
36 #ifdef __cplusplus
37 extern "C" {
38 #endif
39
40 extern bt_field_class *bt_field_class_bool_create(
41 bt_trace_class *trace_class);
42
43 extern bt_field_class *bt_field_class_bit_array_create(
44 bt_trace_class *trace_class, uint64_t length);
45
46 extern bt_field_class *bt_field_class_integer_unsigned_create(
47 bt_trace_class *trace_class);
48
49 extern bt_field_class *bt_field_class_integer_signed_create(
50 bt_trace_class *trace_class);
51
52 extern void bt_field_class_integer_set_field_value_range(
53 bt_field_class *field_class, uint64_t size);
54
55 extern void bt_field_class_integer_set_preferred_display_base(
56 bt_field_class *field_class,
57 bt_field_class_integer_preferred_display_base base);
58
59 extern bt_field_class *bt_field_class_real_create(bt_trace_class *trace_class);
60
61 extern void bt_field_class_real_set_is_single_precision(
62 bt_field_class *field_class,
63 bt_bool is_single_precision);
64
65 extern bt_field_class *bt_field_class_enumeration_unsigned_create(
66 bt_trace_class *trace_class);
67
68 extern bt_field_class *bt_field_class_enumeration_signed_create(
69 bt_trace_class *trace_class);
70
71 typedef enum bt_field_class_enumeration_add_mapping_status {
72 BT_FIELD_CLASS_ENUMERATION_ADD_MAPPING_STATUS_MEMORY_ERROR = __BT_FUNC_STATUS_MEMORY_ERROR,
73 BT_FIELD_CLASS_ENUMERATION_ADD_MAPPING_STATUS_OK = __BT_FUNC_STATUS_OK,
74 } bt_field_class_enumeration_add_mapping_status;
75
76 extern bt_field_class_enumeration_add_mapping_status
77 bt_field_class_enumeration_unsigned_add_mapping(
78 bt_field_class *field_class, const char *label,
79 const bt_integer_range_set_unsigned *range_set);
80
81 extern bt_field_class_enumeration_add_mapping_status
82 bt_field_class_enumeration_signed_add_mapping(
83 bt_field_class *field_class, const char *label,
84 const bt_integer_range_set_signed *range_set);
85
86 extern bt_field_class *bt_field_class_string_create(
87 bt_trace_class *trace_class);
88
89 extern bt_field_class *bt_field_class_structure_create(
90 bt_trace_class *trace_class);
91
92 typedef enum bt_field_class_structure_append_member_status {
93 BT_FIELD_CLASS_STRUCTURE_APPEND_MEMBER_STATUS_MEMORY_ERROR = __BT_FUNC_STATUS_MEMORY_ERROR,
94 BT_FIELD_CLASS_STRUCTURE_APPEND_MEMBER_STATUS_OK = __BT_FUNC_STATUS_OK,
95 } bt_field_class_structure_append_member_status;
96
97 extern bt_field_class_structure_append_member_status
98 bt_field_class_structure_append_member(
99 bt_field_class *struct_field_class,
100 const char *name, bt_field_class *field_class);
101
102 extern bt_field_class_structure_member *
103 bt_field_class_structure_borrow_member_by_index(
104 bt_field_class *field_class, uint64_t index);
105
106 extern bt_field_class_structure_member *
107 bt_field_class_structure_borrow_member_by_name(
108 bt_field_class *field_class, const char *name);
109
110 extern bt_field_class *bt_field_class_array_static_create(
111 bt_trace_class *trace_class,
112 bt_field_class *elem_field_class, uint64_t length);
113
114 extern bt_field_class *bt_field_class_array_dynamic_create(
115 bt_trace_class *trace_class,
116 bt_field_class *elem_field_class,
117 bt_field_class *length_field_class);
118
119 extern bt_field_class *bt_field_class_array_borrow_element_field_class(
120 bt_field_class *field_class);
121
122 extern bt_field_class *bt_field_class_option_create(
123 bt_trace_class *trace_class,
124 bt_field_class *content_field_class,
125 bt_field_class *selector_field_class);
126
127 extern bt_field_class *bt_field_class_variant_create(
128 bt_trace_class *trace_class,
129 bt_field_class *selector_field_class);
130
131 typedef enum bt_field_class_variant_without_selector_append_option_status {
132 BT_FIELD_CLASS_VARIANT_WITHOUT_SELECTOR_APPEND_OPTION_STATUS_MEMORY_ERROR = __BT_FUNC_STATUS_MEMORY_ERROR,
133 BT_FIELD_CLASS_VARIANT_WITHOUT_SELECTOR_APPEND_OPTION_STATUS_OK = __BT_FUNC_STATUS_OK,
134 } bt_field_class_variant_without_selector_append_option_status;
135
136 extern bt_field_class_variant_without_selector_append_option_status
137 bt_field_class_variant_without_selector_append_option(
138 bt_field_class *var_field_class, const char *name,
139 bt_field_class *field_class);
140
141 typedef enum bt_field_class_variant_with_selector_append_option_status {
142 BT_FIELD_CLASS_VARIANT_WITH_SELECTOR_APPEND_OPTION_STATUS_MEMORY_ERROR = __BT_FUNC_STATUS_MEMORY_ERROR,
143 BT_FIELD_CLASS_VARIANT_WITH_SELECTOR_APPEND_OPTION_STATUS_OK = __BT_FUNC_STATUS_OK,
144 } bt_field_class_variant_with_selector_append_option_status;
145
146 extern bt_field_class_variant_with_selector_append_option_status
147 bt_field_class_variant_with_selector_unsigned_append_option(
148 bt_field_class *var_field_class, const char *name,
149 bt_field_class *field_class,
150 const bt_integer_range_set_unsigned *range_set);
151
152 extern bt_field_class_variant_with_selector_append_option_status
153 bt_field_class_variant_with_selector_signed_append_option(
154 bt_field_class *var_field_class, const char *name,
155 bt_field_class *field_class,
156 const bt_integer_range_set_signed *range_set);
157
158 #ifdef __cplusplus
159 }
160 #endif
161
162 #endif /* BABELTRACE2_TRACE_IR_FIELD_CLASS_H */
This page took 0.032123 seconds and 3 git commands to generate.