values: fix indentation
[babeltrace.git] / include / babeltrace / ctf-ir / event-types-internal.h
CommitLineData
adc315b8
JG
1#ifndef BABELTRACE_CTF_IR_EVENT_TYPES_INTERNAL_H
2#define BABELTRACE_CTF_IR_EVENT_TYPES_INTERNAL_H
273b65be
JG
3
4/*
adc315b8 5 * BabelTrace - CTF IR: Event types internal
273b65be 6 *
de9dd397 7 * Copyright 2013, 2014 Jérémie Galarneau <jeremie.galarneau@efficios.com>
273b65be
JG
8 *
9 * Author: Jérémie Galarneau <jeremie.galarneau@efficios.com>
10 *
11 * Permission is hereby granted, free of charge, to any person obtaining a copy
12 * of this software and associated documentation files (the "Software"), to deal
13 * in the Software without restriction, including without limitation the rights
14 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15 * copies of the Software, and to permit persons to whom the Software is
16 * furnished to do so, subject to the following conditions:
17 *
18 * The above copyright notice and this permission notice shall be included in
19 * all copies or substantial portions of the Software.
20 *
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27 * SOFTWARE.
28 */
29
30#include <babeltrace/ctf-writer/event-types.h>
273b65be
JG
31#include <babeltrace/ctf-writer/event-fields.h>
32#include <babeltrace/ctf-writer/writer.h>
bc37ae52 33#include <babeltrace/ctf-ir/trace-internal.h>
273b65be 34#include <babeltrace/babeltrace-internal.h>
83509119 35#include <babeltrace/object-internal.h>
273b65be
JG
36#include <babeltrace/types.h>
37#include <babeltrace/ctf/events.h>
38#include <glib.h>
39
b75277fb
JG
40typedef void (*type_freeze_func)(struct bt_ctf_field_type *);
41typedef int (*type_serialize_func)(struct bt_ctf_field_type *,
273b65be
JG
42 struct metadata_context *);
43
6b64f185
JG
44enum bt_ctf_node {
45 CTF_NODE_UNKNOWN = -1,
46 CTF_NODE_ENV = 0,
47 CTF_NODE_TRACE_PACKET_HEADER = 1,
48 CTF_NODE_STREAM_PACKET_CONTEXT = 2,
49 CTF_NODE_STREAM_EVENT_HEADER = 3,
50 CTF_NODE_STREAM_EVENT_CONTEXT = 4,
51 CTF_NODE_EVENT_CONTEXT = 5,
52 CTF_NODE_EVENT_FIELDS = 6,
53};
54
55struct bt_ctf_field_path {
56 enum bt_ctf_node root;
57 /*
58 * Array of integers (int) indicating the index in either
59 * structures or variants that make-up the path to a field.
60 */
61 GArray *path_indexes;
62};
63
273b65be 64struct bt_ctf_field_type {
83509119 65 struct bt_object base;
273b65be
JG
66 struct bt_declaration *declaration;
67 type_freeze_func freeze;
68 type_serialize_func serialize;
69 /*
70 * A type can't be modified once it is added to an event or after a
71 * a field has been instanciated from it.
72 */
73 int frozen;
74};
75
76struct bt_ctf_field_type_integer {
77 struct bt_ctf_field_type parent;
78 struct declaration_integer declaration;
6cfb906f 79 struct bt_ctf_clock *mapped_clock;
445c3471
PP
80
81 /*
82 * This is what the user sets and is never modified by internal
83 * code.
84 *
85 * This field must contain a `BT_CTF_BYTE_ORDER_*` value.
86 */
87 enum bt_ctf_byte_order user_byte_order;
273b65be
JG
88};
89
90struct enumeration_mapping {
b92ddaaa
JG
91 union {
92 uint64_t _unsigned;
93 int64_t _signed;
94 } range_start;
95
96 union {
97 uint64_t _unsigned;
98 int64_t _signed;
99 } range_end;
273b65be
JG
100 GQuark string;
101};
102
103struct bt_ctf_field_type_enumeration {
104 struct bt_ctf_field_type parent;
105 struct bt_ctf_field_type *container;
db8ef253 106 GPtrArray *entries; /* Array of ptrs to struct enumeration_mapping */
273b65be
JG
107 struct declaration_enum declaration;
108};
109
110struct bt_ctf_field_type_floating_point {
111 struct bt_ctf_field_type parent;
112 struct declaration_float declaration;
d480b699
PP
113
114 /*
115 * The `declaration` field above contains 3 pointers pointing
116 * to the fields below. This avoids unnecessary dynamic
117 * allocations.
118 */
273b65be
JG
119 struct declaration_integer sign;
120 struct declaration_integer mantissa;
121 struct declaration_integer exp;
445c3471
PP
122
123 /*
124 * This is what the user sets and is never modified by internal
125 * code.
126 *
127 * This field must contain a `BT_CTF_BYTE_ORDER_*` value.
128 */
129 enum bt_ctf_byte_order user_byte_order;
273b65be
JG
130};
131
132struct structure_field {
133 GQuark name;
134 struct bt_ctf_field_type *type;
135};
136
137struct bt_ctf_field_type_structure {
138 struct bt_ctf_field_type parent;
139 GHashTable *field_name_to_index;
140 GPtrArray *fields; /* Array of pointers to struct structure_field */
24724933 141 struct declaration_struct declaration;
273b65be
JG
142};
143
144struct bt_ctf_field_type_variant {
145 struct bt_ctf_field_type parent;
146 GString *tag_name;
147 struct bt_ctf_field_type_enumeration *tag;
4a1e8671 148 struct bt_ctf_field_path *tag_path;
273b65be
JG
149 GHashTable *field_name_to_index;
150 GPtrArray *fields; /* Array of pointers to struct structure_field */
151 struct declaration_variant declaration;
152};
153
154struct bt_ctf_field_type_array {
155 struct bt_ctf_field_type parent;
156 struct bt_ctf_field_type *element_type;
157 unsigned int length; /* Number of elements */
158 struct declaration_array declaration;
159};
160
161struct bt_ctf_field_type_sequence {
162 struct bt_ctf_field_type parent;
163 struct bt_ctf_field_type *element_type;
164 GString *length_field_name;
aa4e271c 165 struct bt_ctf_field_path *length_field_path;
273b65be
JG
166 struct declaration_sequence declaration;
167};
168
169struct bt_ctf_field_type_string {
170 struct bt_ctf_field_type parent;
171 struct declaration_string declaration;
172};
173
174BT_HIDDEN
175void bt_ctf_field_type_freeze(struct bt_ctf_field_type *type);
176
177BT_HIDDEN
b92ddaaa
JG
178struct bt_ctf_field_type *bt_ctf_field_type_variant_get_field_type_signed(
179 struct bt_ctf_field_type_variant *variant, int64_t tag_value);
273b65be
JG
180
181BT_HIDDEN
b92ddaaa
JG
182struct bt_ctf_field_type *bt_ctf_field_type_variant_get_field_type_unsigned(
183 struct bt_ctf_field_type_variant *variant, uint64_t tag_value);
273b65be
JG
184
185BT_HIDDEN
186int bt_ctf_field_type_serialize(struct bt_ctf_field_type *type,
187 struct metadata_context *context);
188
9ce21c30
JG
189BT_HIDDEN
190int bt_ctf_field_type_validate(struct bt_ctf_field_type *type);
191
e5958c30
JG
192BT_HIDDEN
193const char *bt_ctf_field_type_enumeration_get_mapping_name_unsigned(
194 struct bt_ctf_field_type_enumeration *enumeration_type,
195 uint64_t value);
196
197BT_HIDDEN
198const char *bt_ctf_field_type_enumeration_get_mapping_name_signed(
199 struct bt_ctf_field_type_enumeration *enumeration_type,
200 int64_t value);
201
c35a1669
JG
202/* Override field type's byte order only if it is set to "native" */
203BT_HIDDEN
204void bt_ctf_field_type_set_native_byte_order(
205 struct bt_ctf_field_type *type, int byte_order);
24724933
JG
206
207/* Deep copy a field type */
208BT_HIDDEN
209struct bt_ctf_field_type *bt_ctf_field_type_copy(
210 struct bt_ctf_field_type *type);
211
6b64f185
JG
212BT_HIDDEN
213struct bt_ctf_field_path *bt_ctf_field_path_create(void);
214
215BT_HIDDEN
216struct bt_ctf_field_path *bt_ctf_field_path_copy(
217 struct bt_ctf_field_path *path);
218
219BT_HIDDEN
220void bt_ctf_field_path_destroy(struct bt_ctf_field_path *path);
39a5e0db
JG
221
222BT_HIDDEN
223int bt_ctf_field_type_structure_get_field_name_index(
224 struct bt_ctf_field_type *structure, const char *name);
736133f1 225
5cec03e4
JG
226/* Replace an existing field's type in a structure */
227BT_HIDDEN
228int bt_ctf_field_type_structure_set_field_index(
229 struct bt_ctf_field_type *structure,
230 struct bt_ctf_field_type *field, int index);
231
736133f1
JG
232BT_HIDDEN
233int bt_ctf_field_type_variant_get_field_name_index(
234 struct bt_ctf_field_type *variant, const char *name);
aa4e271c
JG
235
236BT_HIDDEN
237int bt_ctf_field_type_sequence_set_length_field_path(
238 struct bt_ctf_field_type *type,
239 struct bt_ctf_field_path *path);
4a1e8671 240
32fe3f28
PP
241BT_HIDDEN
242struct bt_ctf_field_path *bt_ctf_field_type_sequence_get_length_field_path(
243 struct bt_ctf_field_type *type);
244
4a1e8671
JG
245BT_HIDDEN
246int bt_ctf_field_type_variant_set_tag_field_path(struct bt_ctf_field_type *type,
247 struct bt_ctf_field_path *path);
3f39933a 248
32fe3f28
PP
249BT_HIDDEN
250struct bt_ctf_field_path *bt_ctf_field_type_variant_get_tag_field_path(
251 struct bt_ctf_field_type *type);
252
3f39933a
JG
253BT_HIDDEN
254int bt_ctf_field_type_variant_set_tag(struct bt_ctf_field_type *type,
255 struct bt_ctf_field_type *tag);
256
5cec03e4
JG
257/* Replace an existing field's type in a variant */
258BT_HIDDEN
259int bt_ctf_field_type_variant_set_field_index(
260 struct bt_ctf_field_type *variant,
261 struct bt_ctf_field_type *field, int index);
262
626e93aa
PP
263BT_HIDDEN
264int bt_ctf_field_type_array_set_element_type(struct bt_ctf_field_type *array,
265 struct bt_ctf_field_type *element_type);
266
267BT_HIDDEN
268int bt_ctf_field_type_sequence_set_element_type(struct bt_ctf_field_type *array,
269 struct bt_ctf_field_type *element_type);
270
adc315b8 271#endif /* BABELTRACE_CTF_IR_EVENT_TYPES_INTERNAL_H */
This page took 0.039845 seconds and 4 git commands to generate.