Add struct/variant/enum named type to type scope
[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;
e19c3d69 88struct declaration;
4c8bfb7e 89
64893f33
MD
90/* type scope */
91struct type_scope {
c13cbf74
MD
92 /* Hash table mapping type name GQuark to "struct declaration" */
93 GHashTable *type_declarations;
94 /* Hash table mapping struct name GQuark to "struct type_struct" */
95 GHashTable *struct_types;
96 /* Hash table mapping variant name GQuark to "struct type_variant" */
97 GHashTable *variant_types;
98 /* Hash table mapping enum name GQuark to "struct type_enum" */
99 GHashTable *enum_types;
64893f33
MD
100 struct type_scope *parent_scope;
101};
102
103/* declaration scope */
104struct declaration_scope {
c13cbf74 105 /* Hash table mapping field name GQuark to "struct declaration" */
ac88af75 106 GHashTable *declarations;
6b71274a
MD
107 struct declaration_scope *parent_scope;
108};
109
05628561
MD
110enum ctf_type_id {
111 CTF_TYPE_UNKNOWN = 0,
112 CTF_TYPE_INTEGER,
113 CTF_TYPE_FLOAT,
114 CTF_TYPE_ENUM,
115 CTF_TYPE_STRING,
116 CTF_TYPE_STRUCT,
117 CTF_TYPE_VARIANT,
118 CTF_TYPE_ARRAY,
119 CTF_TYPE_SEQUENCE,
120 NR_CTF_TYPES,
121};
122
e19c3d69 123struct type {
05628561 124 enum ctf_type_id id;
fc93b2bd
MD
125 GQuark name; /* type name */
126 size_t alignment; /* type alignment, in bits */
e19c3d69 127 int ref; /* number of references to the type */
c054553d
MD
128 /*
129 * type_free called with type ref is decremented to 0.
130 */
131 void (*type_free)(struct type *type);
e19c3d69
MD
132 struct declaration *
133 (*declaration_new)(struct type *type,
134 struct declaration_scope *parent_scope);
c054553d 135 /*
e19c3d69
MD
136 * declaration_free called with declaration ref is decremented to 0.
137 */
138 void (*declaration_free)(struct declaration *declaration);
139 /*
140 * Declaration copy function. Knows how to find the child declaration
141 * from the parent declaration.
fc93b2bd 142 */
4c8bfb7e
MD
143 void (*copy)(struct stream_pos *dest, const struct format *fdest,
144 struct stream_pos *src, const struct format *fsrc,
e19c3d69 145 struct declaration *declaration);
c054553d
MD
146};
147
e19c3d69
MD
148struct declaration {
149 struct type *type;
150 int ref; /* number of references to the declaration */
fc93b2bd
MD
151};
152
bed864a7
MD
153/*
154 * Because we address in bits, bitfields end up being exactly the same as
155 * integers, except that their read/write functions must be able to deal with
156 * read/write non aligned on CHAR_BIT.
157 */
e19c3d69
MD
158struct type_integer {
159 struct type p;
7fe00194
MD
160 size_t len; /* length, in bits. */
161 int byte_order; /* byte order */
162 int signedness;
fc93b2bd
MD
163};
164
e19c3d69
MD
165struct declaration_integer {
166 struct declaration p;
167 struct type_integer *type;
c054553d
MD
168 /* Last values read */
169 union {
170 uint64_t _unsigned;
171 int64_t _signed;
172 } value;
173};
174
e19c3d69
MD
175struct type_float {
176 struct type p;
177 struct type_integer *sign;
178 struct type_integer *mantissa;
179 struct type_integer *exp;
fc93b2bd 180 int byte_order;
0a46062b 181 /* TODO: we might want to express more info about NaN, +inf and -inf */
fc93b2bd
MD
182};
183
e19c3d69
MD
184struct declaration_float {
185 struct declaration p;
186 struct type_float *type;
c054553d
MD
187 /* Last values read */
188 long double value;
189};
190
d65d8abb
MD
191/*
192 * enum_val_equal assumes that signed and unsigned memory layout overlap.
193 */
194struct enum_range {
195 union {
196 int64_t _signed;
197 uint64_t _unsigned;
198 } start; /* lowest range value */
199 union {
200 int64_t _signed;
201 uint64_t _unsigned;
202 } end; /* highest range value */
203};
204
205struct enum_range_to_quark {
206 struct cds_list_head node;
207 struct enum_range range;
208 GQuark quark;
209};
210
211/*
212 * We optimize the common case (range of size 1: single value) by creating a
213 * hash table mapping values to quark sets. We then lookup the ranges to
214 * complete the quark set.
215 *
216 * TODO: The proper structure to hold the range to quark set mapping would be an
217 * interval tree, with O(n) size, O(n*log(n)) build time and O(log(n)) query
218 * time. Using a simple O(n) list search for now for implementation speed and
219 * given that we can expect to have a _relatively_ small number of enumeration
220 * ranges. This might become untrue if we are fed with symbol tables often
221 * required to lookup function names from instruction pointer value.
222 */
448d3cc7 223struct enum_table {
d65d8abb
MD
224 GHashTable *value_to_quark_set; /* (value, GQuark GArray) */
225 struct cds_list_head range_to_quark; /* (range, GQuark) */
226 GHashTable *quark_to_range_set; /* (GQuark, range GArray) */
448d3cc7
MD
227};
228
e19c3d69
MD
229struct type_enum {
230 struct type p;
231 struct type_integer *integer_type;
448d3cc7 232 struct enum_table table;
fc93b2bd
MD
233};
234
e19c3d69
MD
235struct declaration_enum {
236 struct declaration p;
237 struct declaration_integer *integer;
238 struct type_enum *type;
c054553d
MD
239 /* Last GQuark values read. Keeping a reference on the GQuark array. */
240 GArray *value;
241};
242
c054553d
MD
243struct type_string {
244 struct type p;
c054553d
MD
245};
246
e19c3d69
MD
247struct declaration_string {
248 struct declaration p;
249 struct type_string *type;
250 char *value; /* freed at declaration_string teardown */
11796b96
MD
251};
252
e19c3d69
MD
253struct type_field {
254 GQuark name;
c054553d
MD
255 struct type *type;
256};
257
e19c3d69 258struct field {
ac88af75 259 GQuark name;
6ee5115e 260 struct declaration *declaration;
c054553d
MD
261};
262
263struct type_struct {
264 struct type p;
e19c3d69 265 GHashTable *fields_by_name; /* Tuples (field name, field index) */
64893f33 266 struct type_scope *scope;
e19c3d69
MD
267 GArray *fields; /* Array of type_field */
268};
269
270struct declaration_struct {
271 struct declaration p;
272 struct type_struct *type;
c054553d
MD
273 struct declaration_scope *scope;
274 GArray *fields; /* Array of struct field */
275};
276
e19c3d69
MD
277struct type_variant {
278 struct type p;
c054553d 279 GHashTable *fields_by_tag; /* Tuples (field tag, field index) */
64893f33 280 struct type_scope *scope;
e19c3d69 281 GArray *fields; /* Array of type_field */
c054553d
MD
282};
283
e19c3d69
MD
284struct declaration_variant {
285 struct declaration p;
286 struct type_variant *type;
c054553d 287 struct declaration_scope *scope;
6ee5115e 288 struct declaration *enum_tag;
c054553d
MD
289 GArray *fields; /* Array of struct field */
290 struct field *current_field; /* Last field read */
11796b96
MD
291};
292
e19c3d69
MD
293struct type_array {
294 struct type p;
11796b96 295 size_t len;
e19c3d69 296 struct type *elem;
64893f33 297 struct type_scope *scope;
11796b96
MD
298};
299
e19c3d69
MD
300struct declaration_array {
301 struct declaration p;
302 struct type_array *type;
c054553d
MD
303 struct declaration_scope *scope;
304 struct field current_element; /* struct field */
305};
306
c054553d
MD
307struct type_sequence {
308 struct type p;
e19c3d69
MD
309 struct type_integer *len_type;
310 struct type *elem;
64893f33 311 struct type_scope *scope;
e19c3d69
MD
312};
313
314struct declaration_sequence {
315 struct declaration p;
316 struct type_sequence *type;
c054553d 317 struct declaration_scope *scope;
e19c3d69 318 struct declaration_integer *len;
c054553d
MD
319 struct field current_element; /* struct field */
320};
321
c13cbf74
MD
322/*
323 * type_declaration is for typedef and typealias. They are registered
324 * into type scopes.
325 */
326int register_type_declaration(GQuark type_name, struct declaration *declaration,
327 struct type_scope *scope);
328struct declaration *lookup_type_declaration(GQuark type_name,
329 struct type_scope *scope);
330
331/*
332 * Type scopes also contain a separate registry for struct, variant and
333 * enum types. Those register types rather than type declarations, so
334 * that a named variant can be declared without specifying its target
335 * "choice" tag field immediately.
336 */
337int register_struct_type(GQuark struct_name, struct type_struct *struct_type,
338 struct type_scope *scope);
339struct type_struct *lookup_struct_type(GQuark struct_name,
340 struct type_scope *scope);
341int register_variant_type(GQuark variant_name,
342 struct type_variant *variant_type,
343 struct type_scope *scope);
344struct type_variant *lookup_variant_type(GQuark variant_name,
345 struct type_scope *scope);
346int register_enum_type(GQuark enum_name, struct type_enum *enum_type,
347 struct type_scope *scope);
348struct type_enum *lookup_enum_type(GQuark enum_name,
349 struct type_scope *scope);
350
64893f33
MD
351struct type_scope *new_type_scope(struct type_scope *parent_scope);
352void free_type_scope(struct type_scope *scope);
c054553d 353
c13cbf74
MD
354/*
355 * field_declaration is for field declarations. They are registered into
356 * declaration scopes.
357 */
ac88af75 358struct declaration *
c13cbf74
MD
359 lookup_field_declaration(GQuark field_name,
360 struct declaration_scope *scope);
361int register_field_declaration(GQuark field_name,
362 struct declaration *declaration,
363 struct declaration_scope *scope);
c054553d 364struct declaration_scope *
e19c3d69 365 new_declaration_scope(struct declaration_scope *parent_scope);
c054553d 366void free_declaration_scope(struct declaration_scope *scope);
4c8bfb7e 367
64893f33
MD
368void type_ref(struct type *type);
369void type_unref(struct type *type);
370
e19c3d69
MD
371void declaration_ref(struct declaration *declaration);
372void declaration_unref(struct declaration *declaration);
698f0fe4 373
0a46062b
MD
374/* Nameless types can be created by passing a NULL name */
375
e19c3d69
MD
376struct type_integer *integer_type_new(const char *name,
377 size_t len, int byte_order,
378 int signedness, size_t alignment);
0a46062b 379
11d43b90
MD
380/*
381 * mantissa_len is the length of the number of bytes represented by the mantissa
382 * (e.g. result of DBL_MANT_DIG). It includes the leading 1.
383 */
e19c3d69
MD
384struct type_float *float_type_new(const char *name,
385 size_t mantissa_len,
386 size_t exp_len, int byte_order,
387 size_t alignment);
0a46062b 388
448d3cc7
MD
389/*
390 * A GQuark can be translated to/from strings with g_quark_from_string() and
391 * g_quark_to_string().
392 */
47e0f2e2
MD
393
394/*
395 * Returns a GArray of GQuark or NULL.
396 * Caller must release the GArray with g_array_unref().
397 */
e19c3d69 398GArray *enum_uint_to_quark_set(const struct type_enum *enum_type, uint64_t v);
d65d8abb
MD
399
400/*
47e0f2e2 401 * Returns a GArray of GQuark or NULL.
d65d8abb
MD
402 * Caller must release the GArray with g_array_unref().
403 */
e19c3d69 404GArray *enum_int_to_quark_set(const struct type_enum *enum_type, uint64_t v);
47e0f2e2
MD
405
406/*
407 * Returns a GArray of struct enum_range or NULL.
fdacfb73
MD
408 * Callers do _not_ own the returned GArray (and therefore _don't_ need to
409 * release it).
47e0f2e2 410 */
e19c3d69
MD
411GArray *enum_quark_to_range_set(const struct type_enum *enum_type, GQuark q);
412void enum_signed_insert(struct type_enum *enum_type,
d65d8abb 413 int64_t start, int64_t end, GQuark q);
e19c3d69 414void enum_unsigned_insert(struct type_enum *enum_type,
d65d8abb 415 uint64_t start, uint64_t end, GQuark q);
e19c3d69 416size_t enum_get_nr_enumerators(struct type_enum *enum_type);
448d3cc7 417
e19c3d69
MD
418struct type_enum *enum_type_new(const char *name,
419 struct type_integer *integer_type);
448d3cc7 420
64893f33
MD
421struct type_struct *struct_type_new(const char *name,
422 struct type_scope *parent_scope);
e19c3d69
MD
423void struct_type_add_field(struct type_struct *struct_type,
424 const char *field_name, struct type *field_type);
11796b96
MD
425/*
426 * Returns the index of a field within a structure.
427 */
e19c3d69
MD
428unsigned long struct_type_lookup_field_index(struct type_struct *struct_type,
429 GQuark field_name);
11796b96
MD
430/*
431 * field returned only valid as long as the field structure is not appended to.
432 */
e19c3d69
MD
433struct type_field *
434struct_type_get_field_from_index(struct type_struct *struct_type,
11796b96 435 unsigned long index);
e19c3d69
MD
436struct field *
437struct_get_field_from_index(struct declaration_struct *struct_declaration,
438 unsigned long index);
11796b96 439
c054553d
MD
440/*
441 * The tag enumeration is validated to ensure that it contains only mappings
442 * from numeric values to a single tag. Overlapping tag value ranges are
443 * therefore forbidden.
444 */
64893f33
MD
445struct type_variant *variant_type_new(const char *name,
446 struct type_scope *parent_scope);
e19c3d69
MD
447void variant_type_add_field(struct type_variant *variant_type,
448 const char *tag_name, struct type *tag_type);
449struct type_field *
450variant_type_get_field_from_tag(struct type_variant *variant_type, GQuark tag);
c054553d
MD
451/*
452 * Returns 0 on success, -EPERM on error.
453 */
e19c3d69
MD
454int variant_declaration_set_tag(struct declaration_variant *variant,
455 struct declaration *enum_tag);
c054553d
MD
456/*
457 * Returns the field selected by the current tag value.
458 * field returned only valid as long as the variant structure is not appended
459 * to.
460 */
461struct field *
e19c3d69 462variant_get_current_field(struct declaration_variant *variant);
c054553d 463
d06d03db 464/*
e19c3d69 465 * elem_type passed as parameter now belongs to the array. No need to free it
c054553d 466 * explicitly. "len" is the number of elements in the array.
d06d03db 467 */
e19c3d69 468struct type_array *array_type_new(const char *name,
64893f33
MD
469 size_t len, struct type *elem_type,
470 struct type_scope *parent_scope);
11796b96 471
d06d03db 472/*
e19c3d69 473 * int_type and elem_type passed as parameter now belong to the sequence. No
c054553d 474 * need to free them explicitly.
d06d03db 475 */
e19c3d69
MD
476struct type_sequence *sequence_type_new(const char *name,
477 struct type_integer *len_type,
64893f33
MD
478 struct type *elem_type,
479 struct type_scope *parent_scope);
11796b96 480
d79865b9 481#endif /* _BABELTRACE_TYPES_H */
This page took 0.044776 seconds and 4 git commands to generate.