5523eb42987adcc7af24a6e3fe2702109f835269
[babeltrace.git] / include / babeltrace / types.h
1 #ifndef _BABELTRACE_TYPES_H
2 #define _BABELTRACE_TYPES_H
3
4 /*
5 * BabelTrace
6 *
7 * Type Header
8 *
9 * Copyright 2010, 2011 - Mathieu Desnoyers <mathieu.desnoyers@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
22 #include <babeltrace/align.h>
23 #include <babeltrace/list.h>
24 #include <stdbool.h>
25 #include <stdint.h>
26 #include <limits.h>
27 #include <string.h>
28 #include <glib.h>
29 #include <assert.h>
30
31 /* Preallocate this many fields for structures */
32 #define DEFAULT_NR_STRUCT_FIELDS 8
33
34 struct ctf_stream;
35 struct stream_pos;
36 struct format;
37 struct definition;
38
39 /* type scope */
40 struct declaration_scope {
41 /* Hash table mapping type name GQuark to "struct declaration" */
42 /* Used for both typedef and typealias. */
43 GHashTable *typedef_declarations;
44 /* Hash table mapping struct name GQuark to "struct declaration_struct" */
45 GHashTable *struct_declarations;
46 /* Hash table mapping variant name GQuark to "struct declaration_variant" */
47 GHashTable *variant_declarations;
48 /* Hash table mapping enum name GQuark to "struct type_enum" */
49 GHashTable *enum_declarations;
50 struct declaration_scope *parent_scope;
51 };
52
53 /* definition scope */
54 struct definition_scope {
55 /* Hash table mapping field name GQuark to "struct definition" */
56 GHashTable *definitions;
57 struct definition_scope *parent_scope;
58 /*
59 * Complete "path" leading to this definition scope.
60 * Includes dynamic scope name '.' field name '.' field name '.' ....
61 * Array of GQuark elements (which are each separated by dots).
62 * The dynamic scope name can contain dots, and is encoded into
63 * a single GQuark. Thus, scope_path[0] returns the GQuark
64 * identifying the dynamic scope.
65 */
66 GArray *scope_path; /* array of GQuark */
67 };
68
69 enum ctf_type_id {
70 CTF_TYPE_UNKNOWN = 0,
71 CTF_TYPE_INTEGER,
72 CTF_TYPE_FLOAT,
73 CTF_TYPE_ENUM,
74 CTF_TYPE_STRING,
75 CTF_TYPE_STRUCT,
76 CTF_TYPE_UNTAGGED_VARIANT,
77 CTF_TYPE_VARIANT,
78 CTF_TYPE_ARRAY,
79 CTF_TYPE_SEQUENCE,
80 NR_CTF_TYPES,
81 };
82
83 struct declaration {
84 enum ctf_type_id id;
85 size_t alignment; /* type alignment, in bits */
86 int ref; /* number of references to the type */
87 /*
88 * declaration_free called with declaration ref is decremented to 0.
89 */
90 void (*declaration_free)(struct declaration *declaration);
91 struct definition *
92 (*definition_new)(struct declaration *declaration,
93 struct definition_scope *parent_scope,
94 GQuark field_name, int index,
95 const char *root_name);
96 /*
97 * definition_free called with definition ref is decremented to 0.
98 */
99 void (*definition_free)(struct definition *definition);
100 };
101
102 struct definition {
103 struct declaration *declaration;
104 int index; /* Position of the definition in its container */
105 GQuark name; /* Field name in its container (or 0 if unset) */
106 int ref; /* number of references to the definition */
107 GQuark path;
108 struct definition_scope *scope;
109 };
110
111 typedef int (*rw_dispatch)(struct stream_pos *pos,
112 struct definition *definition);
113
114 /* Parent of per-plugin positions */
115 struct stream_pos {
116 /* read/write dispatch table. Specific to plugin used for stream. */
117 rw_dispatch *rw_table; /* rw dispatch table */
118 int (*event_cb)(struct stream_pos *pos,
119 struct ctf_stream *stream);
120 };
121
122 static inline
123 int generic_rw(struct stream_pos *pos, struct definition *definition)
124 {
125 enum ctf_type_id dispatch_id = definition->declaration->id;
126 rw_dispatch call;
127
128 assert(pos->rw_table[dispatch_id] != NULL);
129 call = pos->rw_table[dispatch_id];
130 return call(pos, definition);
131 }
132
133 enum ctf_string_encoding {
134 CTF_STRING_NONE = 0,
135 CTF_STRING_UTF8,
136 CTF_STRING_ASCII,
137 CTF_STRING_UNKNOWN,
138 };
139
140 /*
141 * Because we address in bits, bitfields end up being exactly the same as
142 * integers, except that their read/write functions must be able to deal with
143 * read/write non aligned on CHAR_BIT.
144 */
145 struct declaration_integer {
146 struct declaration p;
147 size_t len; /* length, in bits. */
148 int byte_order; /* byte order */
149 int signedness;
150 int base; /* Base for pretty-printing: 2, 8, 10, 16 */
151 enum ctf_string_encoding encoding;
152 };
153
154 struct definition_integer {
155 struct definition p;
156 struct declaration_integer *declaration;
157 /* Last values read */
158 union {
159 uint64_t _unsigned;
160 int64_t _signed;
161 } value;
162 };
163
164 struct declaration_float {
165 struct declaration p;
166 struct declaration_integer *sign;
167 struct declaration_integer *mantissa;
168 struct declaration_integer *exp;
169 int byte_order;
170 /* TODO: we might want to express more info about NaN, +inf and -inf */
171 };
172
173 struct definition_float {
174 struct definition p;
175 struct declaration_float *declaration;
176 struct definition_integer *sign;
177 struct definition_integer *mantissa;
178 struct definition_integer *exp;
179 /* Last values read */
180 long double value;
181 };
182
183 /*
184 * enum_val_equal assumes that signed and unsigned memory layout overlap.
185 */
186 struct enum_range {
187 union {
188 int64_t _signed;
189 uint64_t _unsigned;
190 } start; /* lowest range value */
191 union {
192 int64_t _signed;
193 uint64_t _unsigned;
194 } end; /* highest range value */
195 };
196
197 struct enum_range_to_quark {
198 struct cds_list_head node;
199 struct enum_range range;
200 GQuark quark;
201 };
202
203 /*
204 * We optimize the common case (range of size 1: single value) by creating a
205 * hash table mapping values to quark sets. We then lookup the ranges to
206 * complete the quark set.
207 *
208 * TODO: The proper structure to hold the range to quark set mapping would be an
209 * interval tree, with O(n) size, O(n*log(n)) build time and O(log(n)) query
210 * time. Using a simple O(n) list search for now for implementation speed and
211 * given that we can expect to have a _relatively_ small number of enumeration
212 * ranges. This might become untrue if we are fed with symbol tables often
213 * required to lookup function names from instruction pointer value.
214 */
215 struct enum_table {
216 GHashTable *value_to_quark_set; /* (value, GQuark GArray) */
217 struct cds_list_head range_to_quark; /* (range, GQuark) */
218 GHashTable *quark_to_range_set; /* (GQuark, range GArray) */
219 };
220
221 struct declaration_enum {
222 struct declaration p;
223 struct declaration_integer *integer_declaration;
224 struct enum_table table;
225 };
226
227 struct definition_enum {
228 struct definition p;
229 struct definition_integer *integer;
230 struct declaration_enum *declaration;
231 /* Last GQuark values read. Keeping a reference on the GQuark array. */
232 GArray *value;
233 };
234
235 struct declaration_string {
236 struct declaration p;
237 enum ctf_string_encoding encoding;
238 };
239
240 struct definition_string {
241 struct definition p;
242 struct declaration_string *declaration;
243 char *value; /* freed at definition_string teardown */
244 size_t len, alloc_len;
245 };
246
247 struct declaration_field {
248 GQuark name;
249 struct declaration *declaration;
250 };
251
252 struct declaration_struct {
253 struct declaration p;
254 GHashTable *fields_by_name; /* Tuples (field name, field index) */
255 struct declaration_scope *scope;
256 GArray *fields; /* Array of declaration_field */
257 };
258
259 struct definition_struct {
260 struct definition p;
261 struct declaration_struct *declaration;
262 GPtrArray *fields; /* Array of pointers to struct definition */
263 };
264
265 struct declaration_untagged_variant {
266 struct declaration p;
267 GHashTable *fields_by_tag; /* Tuples (field tag, field index) */
268 struct declaration_scope *scope;
269 GArray *fields; /* Array of declaration_field */
270 };
271
272 struct declaration_variant {
273 struct declaration p;
274 struct declaration_untagged_variant *untagged_variant;
275 GArray *tag_name; /* Array of GQuark */
276 };
277
278 /* A variant needs to be tagged to be defined. */
279 struct definition_variant {
280 struct definition p;
281 struct declaration_variant *declaration;
282 struct definition *enum_tag;
283 GPtrArray *fields; /* Array of pointers to struct definition */
284 struct definition *current_field; /* Last field read */
285 };
286
287 struct declaration_array {
288 struct declaration p;
289 size_t len;
290 struct declaration *elem;
291 struct declaration_scope *scope;
292 };
293
294 struct definition_array {
295 struct definition p;
296 struct declaration_array *declaration;
297 GPtrArray *elems; /* Array of pointers to struct definition */
298 GString *string; /* String for encoded integer children */
299 };
300
301 struct declaration_sequence {
302 struct declaration p;
303 GArray *length_name; /* Array of GQuark */
304 struct declaration *elem;
305 struct declaration_scope *scope;
306 };
307
308 struct definition_sequence {
309 struct definition p;
310 struct declaration_sequence *declaration;
311 struct definition_integer *length;
312 GPtrArray *elems; /* Array of pointers to struct definition */
313 GString *string; /* String for encoded integer children */
314 };
315
316 int register_declaration(GQuark declaration_name,
317 struct declaration *declaration,
318 struct declaration_scope *scope);
319 struct declaration *lookup_declaration(GQuark declaration_name,
320 struct declaration_scope *scope);
321
322 /*
323 * Type scopes also contain a separate registry for struct, variant and
324 * enum types. Those register types rather than type definitions, so
325 * that a named variant can be declared without specifying its target
326 * "choice" tag field immediately.
327 */
328 int register_struct_declaration(GQuark struct_name,
329 struct declaration_struct *struct_declaration,
330 struct declaration_scope *scope);
331 struct declaration_struct *
332 lookup_struct_declaration(GQuark struct_name,
333 struct declaration_scope *scope);
334 int register_variant_declaration(GQuark variant_name,
335 struct declaration_untagged_variant *untagged_variant_declaration,
336 struct declaration_scope *scope);
337 struct declaration_untagged_variant *lookup_variant_declaration(GQuark variant_name,
338 struct declaration_scope *scope);
339 int register_enum_declaration(GQuark enum_name,
340 struct declaration_enum *enum_declaration,
341 struct declaration_scope *scope);
342 struct declaration_enum *
343 lookup_enum_declaration(GQuark enum_name,
344 struct declaration_scope *scope);
345
346 struct declaration_scope *
347 new_declaration_scope(struct declaration_scope *parent_scope);
348 void free_declaration_scope(struct declaration_scope *scope);
349
350 /*
351 * field_definition is for field definitions. They are registered into
352 * definition scopes.
353 */
354 struct definition *
355 lookup_path_definition(GArray *cur_path, /* array of GQuark */
356 GArray *lookup_path, /* array of GQuark */
357 struct definition_scope *scope);
358 int register_field_definition(GQuark field_name,
359 struct definition *definition,
360 struct definition_scope *scope);
361 struct definition_scope *
362 new_definition_scope(struct definition_scope *parent_scope,
363 GQuark field_name, const char *root_name);
364 void free_definition_scope(struct definition_scope *scope);
365
366 GQuark new_definition_path(struct definition_scope *parent_scope,
367 GQuark field_name, const char *root_name);
368
369 static inline
370 int compare_definition_path(struct definition *definition, GQuark path)
371 {
372 return definition->path == path;
373 }
374
375 void declaration_ref(struct declaration *declaration);
376 void declaration_unref(struct declaration *declaration);
377
378 void definition_ref(struct definition *definition);
379 void definition_unref(struct definition *definition);
380
381 struct declaration_integer *integer_declaration_new(size_t len, int byte_order,
382 int signedness, size_t alignment,
383 int base, enum ctf_string_encoding encoding);
384
385 /*
386 * mantissa_len is the length of the number of bytes represented by the mantissa
387 * (e.g. result of DBL_MANT_DIG). It includes the leading 1.
388 */
389 struct declaration_float *float_declaration_new(size_t mantissa_len,
390 size_t exp_len, int byte_order,
391 size_t alignment);
392
393 /*
394 * A GQuark can be translated to/from strings with g_quark_from_string() and
395 * g_quark_to_string().
396 */
397
398 /*
399 * Returns a GArray of GQuark or NULL.
400 * Caller must release the GArray with g_array_unref().
401 */
402 GArray *enum_uint_to_quark_set(const struct declaration_enum *enum_declaration,
403 uint64_t v);
404
405 /*
406 * Returns a GArray of GQuark or NULL.
407 * Caller must release the GArray with g_array_unref().
408 */
409 GArray *enum_int_to_quark_set(const struct declaration_enum *enum_declaration,
410 int64_t v);
411
412 /*
413 * Returns a GArray of struct enum_range or NULL.
414 * Callers do _not_ own the returned GArray (and therefore _don't_ need to
415 * release it).
416 */
417 GArray *enum_quark_to_range_set(const struct declaration_enum *enum_declaration,
418 GQuark q);
419 void enum_signed_insert(struct declaration_enum *enum_declaration,
420 int64_t start, int64_t end, GQuark q);
421 void enum_unsigned_insert(struct declaration_enum *enum_declaration,
422 uint64_t start, uint64_t end, GQuark q);
423 size_t enum_get_nr_enumerators(struct declaration_enum *enum_declaration);
424
425 struct declaration_enum *
426 enum_declaration_new(struct declaration_integer *integer_declaration);
427
428 struct declaration_string *
429 string_declaration_new(enum ctf_string_encoding encoding);
430
431 struct declaration_struct *
432 struct_declaration_new(struct declaration_scope *parent_scope,
433 uint64_t min_align);
434 void struct_declaration_add_field(struct declaration_struct *struct_declaration,
435 const char *field_name,
436 struct declaration *field_declaration);
437 /*
438 * Returns the index of a field within a structure.
439 */
440 int struct_declaration_lookup_field_index(struct declaration_struct *struct_declaration,
441 GQuark field_name);
442 /*
443 * field returned only valid as long as the field structure is not appended to.
444 */
445 struct declaration_field *
446 struct_declaration_get_field_from_index(struct declaration_struct *struct_declaration,
447 int index);
448 struct definition *
449 struct_definition_get_field_from_index(struct definition_struct *struct_definition,
450 int index);
451 int struct_rw(struct stream_pos *pos, struct definition *definition);
452 uint64_t struct_declaration_len(struct declaration_struct *struct_declaration);
453
454 /*
455 * The tag enumeration is validated to ensure that it contains only mappings
456 * from numeric values to a single tag. Overlapping tag value ranges are
457 * therefore forbidden.
458 */
459 struct declaration_untagged_variant *untagged_variant_declaration_new(
460 struct declaration_scope *parent_scope);
461 struct declaration_variant *variant_declaration_new(struct declaration_untagged_variant *untagged_variant,
462 const char *tag);
463
464 void untagged_variant_declaration_add_field(struct declaration_untagged_variant *untagged_variant_declaration,
465 const char *field_name,
466 struct declaration *field_declaration);
467 struct declaration_field *
468 untagged_variant_declaration_get_field_from_tag(struct declaration_untagged_variant *untagged_variant_declaration,
469 GQuark tag);
470 /*
471 * Returns 0 on success, -EPERM on error.
472 */
473 int variant_definition_set_tag(struct definition_variant *variant,
474 struct definition *enum_tag);
475 /*
476 * Returns the field selected by the current tag value.
477 * field returned only valid as long as the variant structure is not appended
478 * to.
479 */
480 struct definition *variant_get_current_field(struct definition_variant *variant);
481 int variant_rw(struct stream_pos *pos, struct definition *definition);
482
483 /*
484 * elem_declaration passed as parameter now belongs to the array. No
485 * need to free it explicitly. "len" is the number of elements in the
486 * array.
487 */
488 struct declaration_array *
489 array_declaration_new(size_t len, struct declaration *elem_declaration,
490 struct declaration_scope *parent_scope);
491 uint64_t array_len(struct definition_array *array);
492 struct definition *array_index(struct definition_array *array, uint64_t i);
493 int array_rw(struct stream_pos *pos, struct definition *definition);
494
495 /*
496 * int_declaration and elem_declaration passed as parameter now belong
497 * to the sequence. No need to free them explicitly.
498 */
499 struct declaration_sequence *
500 sequence_declaration_new(const char *length_name,
501 struct declaration *elem_declaration,
502 struct declaration_scope *parent_scope);
503 uint64_t sequence_len(struct definition_sequence *sequence);
504 struct definition *sequence_index(struct definition_sequence *sequence, uint64_t i);
505 int sequence_rw(struct stream_pos *pos, struct definition *definition);
506
507 /*
508 * in: path (dot separated), out: q (GArray of GQuark)
509 */
510 void append_scope_path(const char *path, GArray *q);
511
512 /*
513 * Lookup helpers.
514 */
515 struct definition *lookup_definition(struct definition *definition,
516 const char *field_name);
517 struct definition_integer *lookup_integer(struct definition *definition,
518 const char *field_name,
519 int signedness);
520 struct definition_enum *lookup_enum(struct definition *definition,
521 const char *field_name,
522 int signedness);
523 struct definition *lookup_variant(struct definition *definition,
524 const char *field_name);
525
526 #endif /* _BABELTRACE_TYPES_H */
This page took 0.040333 seconds and 3 git commands to generate.