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