f0e4868d7b831cab3028693eddac92752875961b
[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 2017-2018 Philippe Proulx <pproulx@efficios.com>
6 * Copyright 2013, 2014 Jérémie Galarneau <jeremie.galarneau@efficios.com>
7 *
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
30 #ifndef __BT_IN_BABELTRACE_H
31 # error "Please include <babeltrace2/babeltrace.h> instead."
32 #endif
33
34 #include <stdint.h>
35 #include <stddef.h>
36
37 #include <babeltrace2/types.h>
38 #include <babeltrace2/trace-ir/field-class-const.h>
39
40 #ifdef __cplusplus
41 extern "C" {
42 #endif
43
44 extern bt_field_class *bt_field_class_unsigned_integer_create(
45 bt_trace_class *trace_class);
46
47 extern bt_field_class *bt_field_class_signed_integer_create(
48 bt_trace_class *trace_class);
49
50 extern void bt_field_class_integer_set_field_value_range(
51 bt_field_class *field_class, uint64_t size);
52
53 extern void bt_field_class_integer_set_preferred_display_base(
54 bt_field_class *field_class,
55 bt_field_class_integer_preferred_display_base base);
56
57 extern bt_field_class *bt_field_class_real_create(bt_trace_class *trace_class);
58
59 extern void bt_field_class_real_set_is_single_precision(
60 bt_field_class *field_class,
61 bt_bool is_single_precision);
62
63 extern bt_field_class *bt_field_class_unsigned_enumeration_create(
64 bt_trace_class *trace_class);
65
66 extern bt_field_class *bt_field_class_signed_enumeration_create(
67 bt_trace_class *trace_class);
68
69 typedef enum bt_field_class_enumeration_map_range_status {
70 BT_FIELD_CLASS_ENUMERATION_MAP_RANGE_STATUS_MEMORY_ERROR = __BT_FUNC_STATUS_MEMORY_ERROR,
71 BT_FIELD_CLASS_ENUMERATION_MAP_RANGE_STATUS_OK = __BT_FUNC_STATUS_OK,
72 } bt_field_class_enumeration_map_range_status;
73
74 extern bt_field_class_enumeration_map_range_status
75 bt_field_class_unsigned_enumeration_map_range(
76 bt_field_class *field_class, const char *label,
77 uint64_t range_lower, uint64_t range_upper);
78
79 extern bt_field_class_enumeration_map_range_status
80 bt_field_class_signed_enumeration_map_range(
81 bt_field_class *field_class, const char *label,
82 int64_t range_lower, int64_t range_upper);
83
84 extern bt_field_class *bt_field_class_string_create(
85 bt_trace_class *trace_class);
86
87 extern bt_field_class *bt_field_class_structure_create(
88 bt_trace_class *trace_class);
89
90 typedef enum bt_field_class_structure_append_member_status {
91 BT_FIELD_CLASS_STRUCTURE_APPEND_MEMBER_STATUS_MEMORY_ERROR = __BT_FUNC_STATUS_MEMORY_ERROR,
92 BT_FIELD_CLASS_STRUCTURE_APPEND_MEMBER_STATUS_OK = __BT_FUNC_STATUS_OK,
93 } bt_field_class_structure_append_member_status;
94
95 extern bt_field_class_structure_append_member_status
96 bt_field_class_structure_append_member(
97 bt_field_class *struct_field_class,
98 const char *name, bt_field_class *field_class);
99
100 extern bt_field_class_structure_member *
101 bt_field_class_structure_borrow_member_by_index(
102 bt_field_class *field_class, uint64_t index);
103
104 extern bt_field_class_structure_member *
105 bt_field_class_structure_borrow_member_by_name(
106 bt_field_class *field_class, const char *name);
107
108 extern bt_field_class *bt_field_class_static_array_create(
109 bt_trace_class *trace_class,
110 bt_field_class *elem_field_class, uint64_t length);
111
112 extern bt_field_class *bt_field_class_dynamic_array_create(
113 bt_trace_class *trace_class,
114 bt_field_class *elem_field_class);
115
116 extern bt_field_class *bt_field_class_array_borrow_element_field_class(
117 bt_field_class *field_class);
118
119 typedef enum bt_field_class_dynamic_array_set_length_field_class_status {
120 BT_FIELD_CLASS_DYNAMIC_ARRAY_SET_LENGTH_FIELD_CLASS_STATUS_MEMORY_ERROR = __BT_FUNC_STATUS_MEMORY_ERROR,
121 BT_FIELD_CLASS_DYNAMIC_ARRAY_SET_LENGTH_FIELD_CLASS_STATUS_OK = __BT_FUNC_STATUS_OK,
122 } bt_field_class_dynamic_array_set_length_field_class_status;
123
124 extern bt_field_class_dynamic_array_set_length_field_class_status
125 bt_field_class_dynamic_array_set_length_field_class(
126 bt_field_class *field_class,
127 bt_field_class *length_field_class);
128
129 extern bt_field_class *bt_field_class_variant_create(
130 bt_trace_class *trace_class);
131
132 typedef enum bt_field_class_variant_set_selector_field_class_status {
133 BT_FIELD_CLASS_VARIANT_SET_SELECTOR_FIELD_CLASS_STATUS_MEMORY_ERROR = __BT_FUNC_STATUS_MEMORY_ERROR,
134 BT_FIELD_CLASS_VARIANT_SET_SELECTOR_FIELD_CLASS_STATUS_OK = __BT_FUNC_STATUS_OK,
135 } bt_field_class_variant_set_selector_field_class_status;
136
137 extern bt_field_class_variant_set_selector_field_class_status
138 bt_field_class_variant_set_selector_field_class(bt_field_class *field_class,
139 bt_field_class *selector_field_class);
140
141 typedef enum bt_field_class_variant_append_option_status {
142 BT_FIELD_CLASS_VARIANT_APPEND_OPTION_STATUS_MEMORY_ERROR = __BT_FUNC_STATUS_MEMORY_ERROR,
143 BT_FIELD_CLASS_VARIANT_APPEND_OPTION_STATUS_OK = __BT_FUNC_STATUS_OK,
144 } bt_field_class_variant_append_option_status;
145
146 extern bt_field_class_variant_append_option_status
147 bt_field_class_variant_append_option(
148 bt_field_class *var_field_class,
149 const char *name, bt_field_class *field_class);
150
151 extern bt_field_class_variant_option *
152 bt_field_class_variant_borrow_option_by_index(
153 bt_field_class *field_class, uint64_t index);
154
155 extern bt_field_class_variant_option *
156 bt_field_class_variant_borrow_option_by_name(
157 bt_field_class *field_class, const char *name);
158
159 extern bt_field_class *bt_field_class_variant_option_borrow_field_class(
160 bt_field_class_variant_option *option);
161
162 #ifdef __cplusplus
163 }
164 #endif
165
166 #endif /* BABELTRACE2_TRACE_IR_FIELD_CLASS_H */
This page took 0.034912 seconds and 3 git commands to generate.