X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=types%2Fstruct.c;h=f360407c46f3ed956285689ae3847c9b5d01625a;hp=5e7e2b4ef3ef740cd94fcfd396fadb05ea14a555;hb=09349576c27925daab50630bff7d219eebc8df98;hpb=64893f33bdc4bfe20820928b28731277797e41fc diff --git a/types/struct.c b/types/struct.c index 5e7e2b4e..f360407c 100644 --- a/types/struct.c +++ b/types/struct.c @@ -3,7 +3,9 @@ * * BabelTrace - Structure Type Converter * - * Copyright 2010, 2011 - Mathieu Desnoyers + * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation + * + * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -18,194 +20,228 @@ #include #include +#include +#include #ifndef max #define max(a, b) ((a) < (b) ? (b) : (a)) #endif static -struct declaration *_struct_declaration_new(struct type *type, - struct declaration_scope *parent_scope); +struct definition *_struct_definition_new(struct declaration *declaration, + struct definition_scope *parent_scope, + GQuark field_name, int index, + const char *root_name); static -void _struct_declaration_free(struct declaration *declaration); +void _struct_definition_free(struct definition *definition); -void struct_copy(struct stream_pos *dest, const struct format *fdest, - struct stream_pos *src, const struct format *fsrc, - struct declaration *declaration) +int struct_rw(struct stream_pos *ppos, struct definition *definition) { - struct declaration_struct *_struct = - container_of(declaration, struct declaration_struct, p); - struct type_struct *struct_type = _struct->type; + struct definition_struct *struct_definition = + container_of(definition, struct definition_struct, p); unsigned long i; + int ret; - fsrc->struct_begin(src, struct_type); - fdest->struct_begin(dest, struct_type); - - for (i = 0; i < _struct->fields->len; i++) { - struct field *field = &g_array_index(_struct->fields, - struct field, i); - struct type *field_type = field->declaration->type; - - field_type->copy(dest, fdest, src, fsrc, field->declaration); - + for (i = 0; i < struct_definition->fields->len; i++) { + struct definition *field = + g_ptr_array_index(struct_definition->fields, i); + ret = generic_rw(ppos, field); + if (ret) + return ret; } - fsrc->struct_end(src, struct_type); - fdest->struct_end(dest, struct_type); + return 0; } static -void _struct_type_free(struct type *type) +void _struct_declaration_free(struct declaration *declaration) { - struct type_struct *struct_type = - container_of(type, struct type_struct, p); + struct declaration_struct *struct_declaration = + container_of(declaration, struct declaration_struct, p); unsigned long i; - free_type_scope(struct_type->scope); - g_hash_table_destroy(struct_type->fields_by_name); + free_declaration_scope(struct_declaration->scope); + g_hash_table_destroy(struct_declaration->fields_by_name); - for (i = 0; i < struct_type->fields->len; i++) { - struct type_field *type_field = - &g_array_index(struct_type->fields, - struct type_field, i); - type_unref(type_field->type); + for (i = 0; i < struct_declaration->fields->len; i++) { + struct declaration_field *declaration_field = + &g_array_index(struct_declaration->fields, + struct declaration_field, i); + declaration_unref(declaration_field->declaration); } - g_array_free(struct_type->fields, true); - g_free(struct_type); + g_array_free(struct_declaration->fields, true); + g_free(struct_declaration); } -struct type_struct *struct_type_new(const char *name, - struct type_scope *parent_scope) +struct declaration_struct * + struct_declaration_new(struct declaration_scope *parent_scope, + uint64_t min_align) { - struct type_struct *struct_type; - struct type *type; + struct declaration_struct *struct_declaration; + struct declaration *declaration; - struct_type = g_new(struct type_struct, 1); - type = &struct_type->p; - struct_type->fields_by_name = g_hash_table_new(g_direct_hash, + struct_declaration = g_new(struct declaration_struct, 1); + declaration = &struct_declaration->p; + struct_declaration->fields_by_name = g_hash_table_new(g_direct_hash, g_direct_equal); - struct_type->fields = g_array_sized_new(FALSE, TRUE, - sizeof(struct type_field), + struct_declaration->fields = g_array_sized_new(FALSE, TRUE, + sizeof(struct declaration_field), DEFAULT_NR_STRUCT_FIELDS); - struct_type->scope = new_type_scope(parent_scope); - type->name = g_quark_from_string(name); - type->alignment = 1; - type->copy = struct_copy; - type->type_free = _struct_type_free; - type->declaration_new = _struct_declaration_new; - type->declaration_free = _struct_declaration_free; - type->ref = 1; - return struct_type; + struct_declaration->scope = new_declaration_scope(parent_scope); + declaration->id = CTF_TYPE_STRUCT; + declaration->alignment = max(1, min_align); + declaration->declaration_free = _struct_declaration_free; + declaration->definition_new = _struct_definition_new; + declaration->definition_free = _struct_definition_free; + declaration->ref = 1; + return struct_declaration; } static -struct declaration * - _struct_declaration_new(struct type *type, - struct declaration_scope *parent_scope) +struct definition * + _struct_definition_new(struct declaration *declaration, + struct definition_scope *parent_scope, + GQuark field_name, int index, + const char *root_name) { - struct type_struct *struct_type = - container_of(type, struct type_struct, p); - struct declaration_struct *_struct; - unsigned long i; + struct declaration_struct *struct_declaration = + container_of(declaration, struct declaration_struct, p); + struct definition_struct *_struct; + int i; int ret; - _struct = g_new(struct declaration_struct, 1); - type_ref(&struct_type->p); - _struct->p.type = type; - _struct->type = struct_type; + _struct = g_new(struct definition_struct, 1); + declaration_ref(&struct_declaration->p); + _struct->p.declaration = declaration; + _struct->declaration = struct_declaration; _struct->p.ref = 1; - _struct->scope = new_declaration_scope(parent_scope); - _struct->fields = g_array_sized_new(FALSE, TRUE, - sizeof(struct field), - DEFAULT_NR_STRUCT_FIELDS); - g_array_set_size(_struct->fields, struct_type->fields->len); - for (i = 0; i < struct_type->fields->len; i++) { - struct type_field *type_field = - &g_array_index(struct_type->fields, - struct type_field, i); - struct field *field = &g_array_index(_struct->fields, - struct field, i); - - field->name = type_field->name; - field->declaration = - type_field->type->declaration_new(type_field->type, - _struct->scope); - ret = register_declaration(field->name, - field->declaration, _struct->scope); - assert(!ret); + /* + * Use INT_MAX order to ensure that all fields of the parent + * scope are seen as being prior to this scope. + */ + _struct->p.index = root_name ? INT_MAX : index; + _struct->p.name = field_name; + _struct->p.path = new_definition_path(parent_scope, field_name, root_name); + _struct->p.scope = new_definition_scope(parent_scope, field_name, root_name); + + ret = register_field_definition(field_name, &_struct->p, + parent_scope); + assert(!ret || ret == -EPERM); + + _struct->fields = g_ptr_array_sized_new(DEFAULT_NR_STRUCT_FIELDS); + g_ptr_array_set_size(_struct->fields, struct_declaration->fields->len); + for (i = 0; i < struct_declaration->fields->len; i++) { + struct declaration_field *declaration_field = + &g_array_index(struct_declaration->fields, + struct declaration_field, i); + struct definition **field = + (struct definition **) &g_ptr_array_index(_struct->fields, i); + + *field = declaration_field->declaration->definition_new(declaration_field->declaration, + _struct->p.scope, + declaration_field->name, i, NULL); + if (!*field) + goto error; } return &_struct->p; + +error: + for (i--; i >= 0; i--) { + struct definition *field = g_ptr_array_index(_struct->fields, i); + definition_unref(field); + } + free_definition_scope(_struct->p.scope); + declaration_unref(&struct_declaration->p); + g_free(_struct); + return NULL; } static -void _struct_declaration_free(struct declaration *declaration) +void _struct_definition_free(struct definition *definition) { - struct declaration_struct *_struct = - container_of(declaration, struct declaration_struct, p); + struct definition_struct *_struct = + container_of(definition, struct definition_struct, p); unsigned long i; - assert(_struct->fields->len == _struct->type->fields->len); + assert(_struct->fields->len == _struct->declaration->fields->len); for (i = 0; i < _struct->fields->len; i++) { - struct field *field = &g_array_index(_struct->fields, - struct field, i); - declaration_unref(field->declaration); + struct definition *field = g_ptr_array_index(_struct->fields, i); + definition_unref(field); } - free_declaration_scope(_struct->scope); - type_unref(_struct->p.type); + free_definition_scope(_struct->p.scope); + declaration_unref(_struct->p.declaration); g_free(_struct); } -void struct_type_add_field(struct type_struct *struct_type, +void struct_declaration_add_field(struct declaration_struct *struct_declaration, const char *field_name, - struct type *field_type) + struct declaration *field_declaration) { - struct type_field *field; + struct declaration_field *field; unsigned long index; - g_array_set_size(struct_type->fields, struct_type->fields->len + 1); - index = struct_type->fields->len - 1; /* last field (new) */ - field = &g_array_index(struct_type->fields, struct type_field, index); + g_array_set_size(struct_declaration->fields, struct_declaration->fields->len + 1); + index = struct_declaration->fields->len - 1; /* last field (new) */ + field = &g_array_index(struct_declaration->fields, struct declaration_field, index); field->name = g_quark_from_string(field_name); - type_ref(field_type); - field->type = field_type; + declaration_ref(field_declaration); + field->declaration = field_declaration; /* Keep index in hash rather than pointer, because array can relocate */ - g_hash_table_insert(struct_type->fields_by_name, + g_hash_table_insert(struct_declaration->fields_by_name, (gpointer) (unsigned long) field->name, (gpointer) index); /* - * Alignment of structure is the max alignment of types contained + * Alignment of structure is the max alignment of declarations contained * therein. */ - struct_type->p.alignment = max(struct_type->p.alignment, - field_type->alignment); + struct_declaration->p.alignment = max(struct_declaration->p.alignment, + field_declaration->alignment); } -unsigned long - struct_type_lookup_field_index(struct type_struct *struct_type, +/* + * struct_declaration_lookup_field_index - returns field index + * + * Returns the index of a field in a structure, or -1 if it does not + * exist. + */ +int struct_declaration_lookup_field_index(struct declaration_struct *struct_declaration, GQuark field_name) { - unsigned long index; - - index = (unsigned long) g_hash_table_lookup(struct_type->fields_by_name, - (gconstpointer) (unsigned long) field_name); - return index; + gpointer index; + gboolean found; + + found = g_hash_table_lookup_extended(struct_declaration->fields_by_name, + (gconstpointer) (unsigned long) field_name, + NULL, &index); + if (!found) + return -1; + return (int) (unsigned long) index; } /* * field returned only valid as long as the field structure is not appended to. */ -struct type_field * - struct_type_get_field_from_index(struct type_struct *struct_type, - unsigned long index) +struct declaration_field * + struct_declaration_get_field_from_index(struct declaration_struct *struct_declaration, + int index) { - return &g_array_index(struct_type->fields, struct type_field, index); + if (index < 0) + return NULL; + return &g_array_index(struct_declaration->fields, struct declaration_field, index); } /* * field returned only valid as long as the field structure is not appended to. */ -struct field * -struct_declaration_get_field_from_index(struct declaration_struct *_struct, - unsigned long index) +struct definition * +struct_definition_get_field_from_index(struct definition_struct *_struct, + int index) +{ + if (index < 0) + return NULL; + return g_ptr_array_index(_struct->fields, index); +} + +uint64_t struct_declaration_len(struct declaration_struct *struct_declaration) { - return &g_array_index(_struct->fields, struct field, index); + return struct_declaration->fields->len; }