ca0cf0280c0393525923770077bc22b5744aebee
[babeltrace.git] / include / babeltrace / ctf-ir / event-types-internal.h
1 #ifndef BABELTRACE_CTF_IR_EVENT_TYPES_INTERNAL_H
2 #define BABELTRACE_CTF_IR_EVENT_TYPES_INTERNAL_H
3
4 /*
5 * BabelTrace - CTF IR: Event types internal
6 *
7 * Copyright 2013, 2014 Jérémie Galarneau <jeremie.galarneau@efficios.com>
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>
31 #include <babeltrace/ctf-writer/ref-internal.h>
32 #include <babeltrace/ctf-writer/event-fields.h>
33 #include <babeltrace/ctf-writer/writer.h>
34 #include <babeltrace/ctf-ir/trace-internal.h>
35 #include <babeltrace/babeltrace-internal.h>
36 #include <babeltrace/types.h>
37 #include <babeltrace/ctf/events.h>
38 #include <glib.h>
39
40 typedef void (*type_freeze_func)(struct bt_ctf_field_type *);
41 typedef int (*type_serialize_func)(struct bt_ctf_field_type *,
42 struct metadata_context *);
43
44 enum 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
55 struct 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
64 struct bt_ctf_field_type {
65 struct bt_ctf_ref ref_count;
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
76 struct bt_ctf_field_type_integer {
77 struct bt_ctf_field_type parent;
78 struct declaration_integer declaration;
79 struct bt_ctf_clock *mapped_clock;
80 };
81
82 struct enumeration_mapping {
83 union {
84 uint64_t _unsigned;
85 int64_t _signed;
86 } range_start;
87
88 union {
89 uint64_t _unsigned;
90 int64_t _signed;
91 } range_end;
92 GQuark string;
93 };
94
95 struct bt_ctf_field_type_enumeration {
96 struct bt_ctf_field_type parent;
97 struct bt_ctf_field_type *container;
98 GPtrArray *entries; /* Array of pointers to struct enum_mapping */
99 struct declaration_enum declaration;
100 };
101
102 struct bt_ctf_field_type_floating_point {
103 struct bt_ctf_field_type parent;
104 struct declaration_float declaration;
105 struct declaration_integer sign;
106 struct declaration_integer mantissa;
107 struct declaration_integer exp;
108 };
109
110 struct structure_field {
111 GQuark name;
112 struct bt_ctf_field_type *type;
113 };
114
115 struct bt_ctf_field_type_structure {
116 struct bt_ctf_field_type parent;
117 GHashTable *field_name_to_index;
118 GPtrArray *fields; /* Array of pointers to struct structure_field */
119 struct declaration_struct declaration;
120 };
121
122 struct bt_ctf_field_type_variant {
123 struct bt_ctf_field_type parent;
124 GString *tag_name;
125 struct bt_ctf_field_type_enumeration *tag;
126 GHashTable *field_name_to_index;
127 GPtrArray *fields; /* Array of pointers to struct structure_field */
128 struct declaration_variant declaration;
129 };
130
131 struct bt_ctf_field_type_array {
132 struct bt_ctf_field_type parent;
133 struct bt_ctf_field_type *element_type;
134 unsigned int length; /* Number of elements */
135 struct declaration_array declaration;
136 };
137
138 struct bt_ctf_field_type_sequence {
139 struct bt_ctf_field_type parent;
140 struct bt_ctf_field_type *element_type;
141 GString *length_field_name;
142 struct bt_ctf_field_path *length_field_path;
143 struct declaration_sequence declaration;
144 };
145
146 struct bt_ctf_field_type_string {
147 struct bt_ctf_field_type parent;
148 struct declaration_string declaration;
149 };
150
151 BT_HIDDEN
152 void bt_ctf_field_type_freeze(struct bt_ctf_field_type *type);
153
154 BT_HIDDEN
155 struct bt_ctf_field_type *bt_ctf_field_type_variant_get_field_type_signed(
156 struct bt_ctf_field_type_variant *variant, int64_t tag_value);
157
158 BT_HIDDEN
159 struct bt_ctf_field_type *bt_ctf_field_type_variant_get_field_type_unsigned(
160 struct bt_ctf_field_type_variant *variant, uint64_t tag_value);
161
162 BT_HIDDEN
163 int bt_ctf_field_type_serialize(struct bt_ctf_field_type *type,
164 struct metadata_context *context);
165
166 BT_HIDDEN
167 int bt_ctf_field_type_validate(struct bt_ctf_field_type *type);
168
169 BT_HIDDEN
170 const char *bt_ctf_field_type_enumeration_get_mapping_name_unsigned(
171 struct bt_ctf_field_type_enumeration *enumeration_type,
172 uint64_t value);
173
174 BT_HIDDEN
175 const char *bt_ctf_field_type_enumeration_get_mapping_name_signed(
176 struct bt_ctf_field_type_enumeration *enumeration_type,
177 int64_t value);
178
179 /* Override field type's byte order only if it is set to "native" */
180 BT_HIDDEN
181 void bt_ctf_field_type_set_native_byte_order(
182 struct bt_ctf_field_type *type, int byte_order);
183
184 /* Deep copy a field type */
185 BT_HIDDEN
186 struct bt_ctf_field_type *bt_ctf_field_type_copy(
187 struct bt_ctf_field_type *type);
188
189 BT_HIDDEN
190 struct bt_ctf_field_path *bt_ctf_field_path_create(void);
191
192 BT_HIDDEN
193 struct bt_ctf_field_path *bt_ctf_field_path_copy(
194 struct bt_ctf_field_path *path);
195
196 BT_HIDDEN
197 void bt_ctf_field_path_destroy(struct bt_ctf_field_path *path);
198
199 BT_HIDDEN
200 int bt_ctf_field_type_structure_get_field_name_index(
201 struct bt_ctf_field_type *structure, const char *name);
202
203 BT_HIDDEN
204 int bt_ctf_field_type_variant_get_field_name_index(
205 struct bt_ctf_field_type *variant, const char *name);
206
207 BT_HIDDEN
208 int bt_ctf_field_type_sequence_set_length_field_path(
209 struct bt_ctf_field_type *type,
210 struct bt_ctf_field_path *path);
211 #endif /* BABELTRACE_CTF_IR_EVENT_TYPES_INTERNAL_H */
This page took 0.040575 seconds and 3 git commands to generate.