Update tests to include new packet.header description
[babeltrace.git] / types / types.c
CommitLineData
6dc2ca62 1/*
f6625916 2 * declarations.c
ccd7e1c8 3 *
d79865b9 4 * BabelTrace - Converter
6dc2ca62
MD
5 *
6 * Types registry.
7 *
c054553d 8 * Copyright 2010, 2011 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
de0ba614 9 *
ccd7e1c8
MD
10 * Permission is hereby granted, free of charge, to any person obtaining a copy
11 * of this software and associated documentation files (the "Software"), to deal
12 * in the Software without restriction, including without limitation the rights
13 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14 * copies of the Software, and to permit persons to whom the Software is
15 * furnished to do so, subject to the following conditions:
de0ba614 16 *
ccd7e1c8
MD
17 * The above copyright notice and this permission notice shall be included in
18 * all copies or substantial portions of the Software.
6dc2ca62
MD
19 */
20
4c8bfb7e 21#include <babeltrace/format.h>
6a36ddca 22#include <limits.h>
6dc2ca62 23#include <glib.h>
d1708134
MD
24#include <errno.h>
25
c054553d 26static
78af2bcd
MD
27GQuark prefix_quark(const char *prefix, GQuark quark)
28{
29 GQuark nq;
30 GString *str;
31
32 str = g_string_new(prefix);
33 g_string_append(str, g_quark_to_string(quark));
34 nq = g_quark_from_string(g_string_free(str, FALSE));
35 return nq;
36}
37
38static
39struct declaration *
40 lookup_declaration_scope(GQuark declaration_name,
f6625916 41 struct declaration_scope *scope)
d1708134 42{
f6625916
MD
43 return g_hash_table_lookup(scope->typedef_declarations,
44 (gconstpointer) (unsigned long) declaration_name);
d1708134
MD
45}
46
78af2bcd 47struct declaration *lookup_declaration(GQuark declaration_name,
f6625916 48 struct declaration_scope *scope)
c054553d 49{
78af2bcd 50 struct declaration *declaration;
c054553d
MD
51
52 while (scope) {
78af2bcd
MD
53 declaration = lookup_declaration_scope(declaration_name,
54 scope);
55 if (declaration)
56 return declaration;
c054553d
MD
57 scope = scope->parent_scope;
58 }
59 return NULL;
60}
61
78af2bcd 62int register_declaration(GQuark name, struct declaration *declaration,
f6625916 63 struct declaration_scope *scope)
d1708134 64{
64893f33 65 if (!name)
6ee5115e
MD
66 return -EPERM;
67
c054553d 68 /* Only lookup in local scope */
78af2bcd 69 if (lookup_declaration_scope(name, scope))
d1708134
MD
70 return -EEXIST;
71
f6625916 72 g_hash_table_insert(scope->typedef_declarations,
64893f33 73 (gpointer) (unsigned long) name,
f6625916
MD
74 declaration);
75 declaration_ref(declaration);
ac88af75
MD
76 return 0;
77}
78
79static
e1151715 80struct definition *
f6625916
MD
81 lookup_field_definition_scope(GQuark field_name,
82 struct definition_scope *scope)
ac88af75 83{
e1151715 84 return g_hash_table_lookup(scope->definitions,
ac88af75
MD
85 (gconstpointer) (unsigned long) field_name);
86}
87
05c749e5
MD
88/*
89 * Returns the index at which the paths differ.
90 * If the value returned equals len, it means the paths are identical
91 * from index 0 to len-1.
92 */
93static int compare_paths(GArray *a, GArray *b, int len)
94{
95 int i;
96
97 assert(len <= a->len);
98 assert(len <= b->len);
99
100 for (i = 0; i < len; i++) {
101 GQuark qa, qb;
102
103 qa = g_array_index(a, GQuark, i);
104 qb = g_array_index(b, GQuark, i);
105 if (qa != qb)
106 return i;
107 }
108 return i;
109}
110
111static int is_path_child_of(GArray *path, GArray *maybe_parent)
112{
113 if (path->len <= maybe_parent->len)
114 return 0;
115 if (compare_paths(path, maybe_parent, maybe_parent->len)
116 == maybe_parent->len)
117 return 1;
118 else
119 return 0;
120}
121
122static struct definition_scope *
123 get_definition_scope(struct definition *definition)
124{
125 switch (definition->declaration->id) {
126 case CTF_TYPE_STRUCT:
127 {
128 struct definition_struct *def =
129 container_of(definition, struct definition_struct, p);
130 return def->scope;
131 }
132 case CTF_TYPE_VARIANT:
133 {
134 struct definition_variant *def =
135 container_of(definition, struct definition_variant, p);
136 return def->scope;
137 }
138 case CTF_TYPE_ARRAY:
139 {
140 struct definition_array *def =
141 container_of(definition, struct definition_array, p);
142 return def->scope;
143 }
144 case CTF_TYPE_SEQUENCE:
145 {
146 struct definition_sequence *def =
147 container_of(definition, struct definition_sequence, p);
148 return def->scope;
149 }
150
151 case CTF_TYPE_INTEGER:
152 case CTF_TYPE_FLOAT:
153 case CTF_TYPE_ENUM:
154 case CTF_TYPE_STRING:
155 case CTF_TYPE_UNKNOWN:
156 default:
157 return NULL;
158 }
159}
160
161/*
162 * OK, here is the fun. We want to lookup a field that is:
9e29e16e
MD
163 * - either in the same dynamic scope:
164 * - either in the current scope, but prior to the current field.
165 * - or in a parent scope (or parent of parent ...) still in a field
166 * prior to the current field position within the parents.
167 * - or in a different dynamic scope:
168 * - either in a upper dynamic scope (walk down a targeted scope from
169 * the dynamic scope root)
170 * - or in a lower dynamic scope (failure)
171 * The dynamic scope roots are linked together, so we can access the
172 * parent dynamic scope from the child dynamic scope by walking up to
173 * the parent.
05c749e5
MD
174 * If we cannot find such a field that is prior to our current path, we
175 * return NULL.
176 *
177 * cur_path: the path leading to the variant definition.
178 * lookup_path: the path leading to the enum we want to look for.
179 * scope: the definition scope containing the variant definition.
180 */
e1151715 181struct definition *
05c749e5
MD
182 lookup_definition(GArray *cur_path,
183 GArray *lookup_path,
184 struct definition_scope *scope)
ac88af75 185{
05c749e5
MD
186 struct definition *definition, *lookup_definition;
187 GQuark last;
188 int index;
ac88af75
MD
189
190 while (scope) {
05c749e5
MD
191 /* going up in the hierarchy. Check where we come from. */
192 assert(is_path_child_of(cur_path, scope->scope_path));
193 assert(cur_path->len - scope->scope_path->len == 1);
194 last = g_array_index(cur_path, GQuark, cur_path->len - 1);
195 definition = lookup_field_definition_scope(last, scope);
196 assert(definition);
197 index = definition->index;
198lookup:
199 if (is_path_child_of(lookup_path, scope->scope_path)) {
200 /* Means we can lookup the field in this scope */
201 last = g_array_index(lookup_path, GQuark,
202 scope->scope_path->len);
203 lookup_definition = lookup_field_definition_scope(last, scope);
204 if (!lookup_definition || ((index != -1) && lookup_definition->index >= index))
205 return NULL;
206 /* Found it! And it is prior to the current field. */
207 if (lookup_path->len - scope->scope_path->len == 1) {
208 /* Direct child */
209 return lookup_definition;
210 } else {
211 scope = get_definition_scope(lookup_definition);
212 /* Check if the definition has a sub-scope */
213 if (!scope)
214 return NULL;
215 /*
216 * Don't compare index anymore, because we are
217 * going within a scope that has been validated
218 * to be entirely prior to the current scope.
219 */
220 cur_path = NULL;
221 index = -1;
222 goto lookup;
223 }
224 } else {
225 assert(index != -1);
226 /* lookup_path is within an upper scope */
227 cur_path = scope->scope_path;
228 scope = scope->parent_scope;
229 }
ac88af75
MD
230 }
231 return NULL;
232}
233
e1151715 234int register_field_definition(GQuark field_name, struct definition *definition,
f6625916 235 struct definition_scope *scope)
ac88af75
MD
236{
237 if (!field_name)
238 return -EPERM;
239
240 /* Only lookup in local scope */
e1151715 241 if (lookup_field_definition_scope(field_name, scope))
ac88af75
MD
242 return -EEXIST;
243
e1151715 244 g_hash_table_insert(scope->definitions,
ac88af75 245 (gpointer) (unsigned long) field_name,
e1151715
MD
246 definition);
247 definition_ref(definition);
d1708134
MD
248 return 0;
249}
250
f6625916 251void declaration_ref(struct declaration *declaration)
4c8bfb7e 252{
f6625916 253 declaration->ref++;
4c8bfb7e
MD
254}
255
f6625916 256void declaration_unref(struct declaration *declaration)
4c8bfb7e 257{
f6625916
MD
258 if (!--declaration->ref)
259 declaration->declaration_free(declaration);
4c8bfb7e
MD
260}
261
e1151715 262void definition_ref(struct definition *definition)
d1708134 263{
e1151715 264 definition->ref++;
d1708134
MD
265}
266
e1151715 267void definition_unref(struct definition *definition)
d1708134 268{
e1151715 269 if (!--definition->ref)
f6625916 270 definition->declaration->definition_free(definition);
c054553d
MD
271}
272
f6625916
MD
273struct declaration_scope *
274 new_declaration_scope(struct declaration_scope *parent_scope)
c054553d 275{
f6625916 276 struct declaration_scope *scope = g_new(struct declaration_scope, 1);
c054553d 277
f6625916 278 scope->typedef_declarations = g_hash_table_new_full(g_direct_hash,
c13cbf74 279 g_direct_equal, NULL,
e1151715 280 (GDestroyNotify) definition_unref);
f6625916 281 scope->struct_declarations = g_hash_table_new_full(g_direct_hash,
c13cbf74 282 g_direct_equal, NULL,
f6625916
MD
283 (GDestroyNotify) declaration_unref);
284 scope->variant_declarations = g_hash_table_new_full(g_direct_hash,
c13cbf74 285 g_direct_equal, NULL,
f6625916
MD
286 (GDestroyNotify) declaration_unref);
287 scope->enum_declarations = g_hash_table_new_full(g_direct_hash,
c054553d 288 g_direct_equal, NULL,
f6625916 289 (GDestroyNotify) declaration_unref);
64893f33
MD
290 scope->parent_scope = parent_scope;
291 return scope;
292}
293
f6625916 294void free_declaration_scope(struct declaration_scope *scope)
64893f33 295{
f6625916
MD
296 g_hash_table_destroy(scope->enum_declarations);
297 g_hash_table_destroy(scope->variant_declarations);
298 g_hash_table_destroy(scope->struct_declarations);
299 g_hash_table_destroy(scope->typedef_declarations);
64893f33
MD
300 g_free(scope);
301}
302
c13cbf74 303static
f6625916
MD
304struct declaration_struct *lookup_struct_declaration_scope(GQuark struct_name,
305 struct declaration_scope *scope)
c13cbf74 306{
f6625916 307 return g_hash_table_lookup(scope->struct_declarations,
c13cbf74
MD
308 (gconstpointer) (unsigned long) struct_name);
309}
310
f6625916
MD
311struct declaration_struct *lookup_struct_declaration(GQuark struct_name,
312 struct declaration_scope *scope)
c13cbf74 313{
f6625916 314 struct declaration_struct *declaration;
c13cbf74
MD
315
316 while (scope) {
f6625916
MD
317 declaration = lookup_struct_declaration_scope(struct_name, scope);
318 if (declaration)
319 return declaration;
c13cbf74
MD
320 scope = scope->parent_scope;
321 }
322 return NULL;
323}
324
f6625916
MD
325int register_struct_declaration(GQuark struct_name,
326 struct declaration_struct *struct_declaration,
327 struct declaration_scope *scope)
c13cbf74 328{
78af2bcd
MD
329 GQuark prefix_name;
330 int ret;
331
c13cbf74
MD
332 if (!struct_name)
333 return -EPERM;
334
335 /* Only lookup in local scope */
f6625916 336 if (lookup_struct_declaration_scope(struct_name, scope))
c13cbf74
MD
337 return -EEXIST;
338
f6625916 339 g_hash_table_insert(scope->struct_declarations,
c13cbf74 340 (gpointer) (unsigned long) struct_name,
f6625916
MD
341 struct_declaration);
342 declaration_ref(&struct_declaration->p);
78af2bcd
MD
343
344 /* Also add in typedef/typealias scopes */
345 prefix_name = prefix_quark("struct ", struct_name);
346 ret = register_declaration(prefix_name, &struct_declaration->p, scope);
347 assert(!ret);
c13cbf74
MD
348 return 0;
349}
350
351static
a0720417 352struct declaration_untagged_variant *
f6625916
MD
353 lookup_variant_declaration_scope(GQuark variant_name,
354 struct declaration_scope *scope)
c13cbf74 355{
f6625916 356 return g_hash_table_lookup(scope->variant_declarations,
c13cbf74
MD
357 (gconstpointer) (unsigned long) variant_name);
358}
359
a0720417 360struct declaration_untagged_variant *
f6625916
MD
361 lookup_variant_declaration(GQuark variant_name,
362 struct declaration_scope *scope)
c13cbf74 363{
a0720417 364 struct declaration_untagged_variant *declaration;
c13cbf74
MD
365
366 while (scope) {
f6625916
MD
367 declaration = lookup_variant_declaration_scope(variant_name, scope);
368 if (declaration)
369 return declaration;
c13cbf74
MD
370 scope = scope->parent_scope;
371 }
372 return NULL;
373}
374
f6625916 375int register_variant_declaration(GQuark variant_name,
a0720417 376 struct declaration_untagged_variant *untagged_variant_declaration,
f6625916 377 struct declaration_scope *scope)
c13cbf74 378{
78af2bcd
MD
379 GQuark prefix_name;
380 int ret;
381
c13cbf74
MD
382 if (!variant_name)
383 return -EPERM;
384
385 /* Only lookup in local scope */
f6625916 386 if (lookup_variant_declaration_scope(variant_name, scope))
c13cbf74
MD
387 return -EEXIST;
388
f6625916 389 g_hash_table_insert(scope->variant_declarations,
c13cbf74 390 (gpointer) (unsigned long) variant_name,
a0720417
MD
391 untagged_variant_declaration);
392 declaration_ref(&untagged_variant_declaration->p);
78af2bcd
MD
393
394 /* Also add in typedef/typealias scopes */
395 prefix_name = prefix_quark("variant ", variant_name);
396 ret = register_declaration(prefix_name,
397 &untagged_variant_declaration->p, scope);
398 assert(!ret);
c13cbf74
MD
399 return 0;
400}
401
402static
f6625916
MD
403struct declaration_enum *
404 lookup_enum_declaration_scope(GQuark enum_name,
405 struct declaration_scope *scope)
c13cbf74 406{
f6625916 407 return g_hash_table_lookup(scope->enum_declarations,
c13cbf74
MD
408 (gconstpointer) (unsigned long) enum_name);
409}
410
f6625916
MD
411struct declaration_enum *
412 lookup_enum_declaration(GQuark enum_name,
413 struct declaration_scope *scope)
c13cbf74 414{
f6625916 415 struct declaration_enum *declaration;
c13cbf74
MD
416
417 while (scope) {
f6625916
MD
418 declaration = lookup_enum_declaration_scope(enum_name, scope);
419 if (declaration)
420 return declaration;
c13cbf74
MD
421 scope = scope->parent_scope;
422 }
423 return NULL;
424}
425
f6625916
MD
426int register_enum_declaration(GQuark enum_name,
427 struct declaration_enum *enum_declaration,
428 struct declaration_scope *scope)
c13cbf74 429{
78af2bcd
MD
430 GQuark prefix_name;
431 int ret;
432
c13cbf74
MD
433 if (!enum_name)
434 return -EPERM;
435
436 /* Only lookup in local scope */
f6625916 437 if (lookup_enum_declaration_scope(enum_name, scope))
c13cbf74
MD
438 return -EEXIST;
439
f6625916 440 g_hash_table_insert(scope->enum_declarations,
c13cbf74 441 (gpointer) (unsigned long) enum_name,
f6625916
MD
442 enum_declaration);
443 declaration_ref(&enum_declaration->p);
78af2bcd
MD
444
445 /* Also add in typedef/typealias scopes */
446 prefix_name = prefix_quark("enum ", enum_name);
447 ret = register_declaration(prefix_name, &enum_declaration->p, scope);
448 assert(!ret);
c13cbf74
MD
449 return 0;
450}
451
9e29e16e
MD
452static struct definition_scope *
453 _new_definition_scope(struct definition_scope *parent_scope,
454 int scope_path_len)
64893f33 455{
e1151715 456 struct definition_scope *scope = g_new(struct definition_scope, 1);
64893f33 457
e1151715 458 scope->definitions = g_hash_table_new_full(g_direct_hash,
ac88af75 459 g_direct_equal, NULL,
e1151715 460 (GDestroyNotify) definition_unref);
c054553d 461 scope->parent_scope = parent_scope;
05c749e5
MD
462 scope->scope_path = g_array_sized_new(FALSE, TRUE, sizeof(GQuark),
463 scope_path_len);
464 g_array_set_size(scope->scope_path, scope_path_len);
9e29e16e
MD
465 return scope;
466}
467
468struct definition_scope *
469 new_definition_scope(struct definition_scope *parent_scope,
470 GQuark field_name)
471{
472 struct definition_scope *scope;
473 int scope_path_len = 1;
474
475 if (parent_scope)
476 scope_path_len += parent_scope->scope_path->len;
477 scope = _new_definition_scope(parent_scope, scope_path_len);
478 if (parent_scope)
479 memcpy(scope->scope_path, parent_scope->scope_path,
05c749e5
MD
480 sizeof(GQuark) * (scope_path_len - 1));
481 g_array_index(scope->scope_path, GQuark, scope_path_len - 1) =
482 field_name;
c054553d
MD
483 return scope;
484}
485
d00d17d1 486/*
d60cb676 487 * in: path (dot separated), out: q (GArray of GQuark)
d00d17d1 488 */
d00d17d1
MD
489void append_scope_path(const char *path, GArray *q)
490{
491 const char *ptrbegin, *ptrend = path;
492 GQuark quark;
493
494 for (;;) {
495 char *str;
496 size_t len;
497
498 ptrbegin = ptrend;
499 ptrend = strchr(ptrbegin, '.');
500 if (!ptrend)
501 break;
502 len = ptrend - ptrbegin;
503 /* Don't accept two consecutive dots */
504 assert(len != 0);
505 str = g_new(char, len + 1); /* include \0 */
506 memcpy(str, ptrbegin, len);
507 str[len] = '\0';
508 quark = g_quark_from_string(str);
509 g_array_append_val(q, quark);
510 g_free(str);
427c09b7 511 ptrend++; /* skip current dot */
d00d17d1
MD
512 }
513 /* last. Check for trailing dot (and discard). */
514 if (ptrbegin[0] != '\0') {
515 quark = g_quark_from_string(ptrbegin);
516 g_array_append_val(q, quark);
517 }
518}
519
6a36ddca
MD
520void set_dynamic_definition_scope(struct definition *definition,
521 struct definition_scope *scope,
d00d17d1 522 const char *root_name)
9e29e16e 523{
d00d17d1
MD
524 g_array_set_size(scope->scope_path, 0);
525 append_scope_path(root_name, scope->scope_path);
6a36ddca
MD
526 /*
527 * Use INT_MAX order to ensure that all fields of the parent
528 * scope are seen as being prior to this scope.
529 */
530 definition->index = INT_MAX;
9e29e16e
MD
531}
532
e1151715 533void free_definition_scope(struct definition_scope *scope)
c054553d 534{
05c749e5 535 g_array_free(scope->scope_path, TRUE);
e1151715 536 g_hash_table_destroy(scope->definitions);
c054553d 537 g_free(scope);
d1708134 538}
This page took 0.048752 seconds and 4 git commands to generate.