Update pretty-print
[babeltrace.git] / types / struct.c
CommitLineData
11796b96 1/*
ccd7e1c8 2 * struct.c
11796b96 3 *
ccd7e1c8 4 * BabelTrace - Structure Type Converter
11796b96 5 *
c054553d 6 * Copyright 2010, 2011 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11796b96 7 *
ccd7e1c8
MD
8 * Permission is hereby granted, free of charge, to any person obtaining a copy
9 * of this software and associated documentation files (the "Software"), to deal
10 * in the Software without restriction, including without limitation the rights
11 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 * copies of the Software, and to permit persons to whom the Software is
13 * furnished to do so, subject to the following conditions:
11796b96 14 *
ccd7e1c8
MD
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
11796b96
MD
17 */
18
19#include <babeltrace/compiler.h>
4c8bfb7e 20#include <babeltrace/format.h>
11796b96 21
be85c1c7
MD
22#ifndef max
23#define max(a, b) ((a) < (b) ? (b) : (a))
24#endif
25
c054553d 26static
f6625916 27struct definition *_struct_definition_new(struct declaration *declaration,
05c749e5
MD
28 struct definition_scope *parent_scope,
29 GQuark field_name, int index);
c054553d 30static
e1151715 31void _struct_definition_free(struct definition *definition);
c054553d 32
c5e74408 33int struct_rw(struct stream_pos *ppos, struct definition *definition)
11796b96 34{
d11e9c49 35 struct definition_struct *struct_definition =
e1151715 36 container_of(definition, struct definition_struct, p);
c054553d 37 unsigned long i;
c5e74408 38 int ret;
11796b96 39
d11e9c49 40 for (i = 0; i < struct_definition->fields->len; i++) {
b1a2f580
MD
41 struct definition *field =
42 g_ptr_array_index(struct_definition->fields, i);
43 ret = generic_rw(ppos, field);
c5e74408
MD
44 if (ret)
45 return ret;
11796b96 46 }
c5e74408 47 return 0;
11796b96
MD
48}
49
c054553d 50static
f6625916 51void _struct_declaration_free(struct declaration *declaration)
11796b96 52{
f6625916
MD
53 struct declaration_struct *struct_declaration =
54 container_of(declaration, struct declaration_struct, p);
c054553d 55 unsigned long i;
4c8bfb7e 56
f6625916
MD
57 free_declaration_scope(struct_declaration->scope);
58 g_hash_table_destroy(struct_declaration->fields_by_name);
4c8bfb7e 59
f6625916
MD
60 for (i = 0; i < struct_declaration->fields->len; i++) {
61 struct declaration_field *declaration_field =
62 &g_array_index(struct_declaration->fields,
63 struct declaration_field, i);
64 declaration_unref(declaration_field->declaration);
4c8bfb7e 65 }
f6625916
MD
66 g_array_free(struct_declaration->fields, true);
67 g_free(struct_declaration);
11796b96
MD
68}
69
ab4cf058
MD
70struct declaration_struct *
71 struct_declaration_new(struct declaration_scope *parent_scope)
11796b96 72{
f6625916
MD
73 struct declaration_struct *struct_declaration;
74 struct declaration *declaration;
11796b96 75
f6625916
MD
76 struct_declaration = g_new(struct declaration_struct, 1);
77 declaration = &struct_declaration->p;
78 struct_declaration->fields_by_name = g_hash_table_new(g_direct_hash,
e19c3d69 79 g_direct_equal);
f6625916
MD
80 struct_declaration->fields = g_array_sized_new(FALSE, TRUE,
81 sizeof(struct declaration_field),
e19c3d69 82 DEFAULT_NR_STRUCT_FIELDS);
f6625916
MD
83 struct_declaration->scope = new_declaration_scope(parent_scope);
84 declaration->id = CTF_TYPE_STRUCT;
f6625916 85 declaration->alignment = 1;
f6625916
MD
86 declaration->declaration_free = _struct_declaration_free;
87 declaration->definition_new = _struct_definition_new;
88 declaration->definition_free = _struct_definition_free;
89 declaration->ref = 1;
90 return struct_declaration;
11796b96
MD
91}
92
c054553d 93static
e1151715 94struct definition *
f6625916 95 _struct_definition_new(struct declaration *declaration,
05c749e5
MD
96 struct definition_scope *parent_scope,
97 GQuark field_name, int index)
11796b96 98{
f6625916
MD
99 struct declaration_struct *struct_declaration =
100 container_of(declaration, struct declaration_struct, p);
e1151715 101 struct definition_struct *_struct;
ac88af75
MD
102 unsigned long i;
103 int ret;
c054553d 104
e1151715 105 _struct = g_new(struct definition_struct, 1);
f6625916
MD
106 declaration_ref(&struct_declaration->p);
107 _struct->p.declaration = declaration;
108 _struct->declaration = struct_declaration;
c054553d 109 _struct->p.ref = 1;
05c749e5 110 _struct->p.index = index;
b1a2f580 111 _struct->p.name = field_name;
31262354 112 _struct->p.path = new_definition_path(parent_scope, field_name);
05c749e5 113 _struct->scope = new_definition_scope(parent_scope, field_name);
b1a2f580
MD
114 _struct->fields = g_ptr_array_sized_new(DEFAULT_NR_STRUCT_FIELDS);
115 g_ptr_array_set_size(_struct->fields, struct_declaration->fields->len);
f6625916
MD
116 for (i = 0; i < struct_declaration->fields->len; i++) {
117 struct declaration_field *declaration_field =
118 &g_array_index(struct_declaration->fields,
119 struct declaration_field, i);
b1a2f580
MD
120 struct definition **field =
121 (struct definition **) &g_ptr_array_index(_struct->fields, i);
ac88af75 122
b1a2f580 123 *field = declaration_field->declaration->definition_new(declaration_field->declaration,
05c749e5 124 _struct->scope,
b1a2f580
MD
125 declaration_field->name, i);
126 ret = register_field_definition(declaration_field->name,
127 *field,
e1151715 128 _struct->scope);
ac88af75
MD
129 assert(!ret);
130 }
c054553d
MD
131 return &_struct->p;
132}
133
134static
e1151715 135void _struct_definition_free(struct definition *definition)
c054553d 136{
e1151715
MD
137 struct definition_struct *_struct =
138 container_of(definition, struct definition_struct, p);
c054553d
MD
139 unsigned long i;
140
f6625916 141 assert(_struct->fields->len == _struct->declaration->fields->len);
c054553d 142 for (i = 0; i < _struct->fields->len; i++) {
b1a2f580
MD
143 struct definition *field = g_ptr_array_index(_struct->fields, i);
144 definition_unref(field);
c054553d 145 }
e1151715 146 free_definition_scope(_struct->scope);
f6625916 147 declaration_unref(_struct->p.declaration);
c054553d
MD
148 g_free(_struct);
149}
150
f6625916 151void struct_declaration_add_field(struct declaration_struct *struct_declaration,
e19c3d69 152 const char *field_name,
f6625916 153 struct declaration *field_declaration)
c054553d 154{
f6625916 155 struct declaration_field *field;
11796b96
MD
156 unsigned long index;
157
f6625916
MD
158 g_array_set_size(struct_declaration->fields, struct_declaration->fields->len + 1);
159 index = struct_declaration->fields->len - 1; /* last field (new) */
160 field = &g_array_index(struct_declaration->fields, struct declaration_field, index);
11796b96 161 field->name = g_quark_from_string(field_name);
f6625916
MD
162 declaration_ref(field_declaration);
163 field->declaration = field_declaration;
11796b96 164 /* Keep index in hash rather than pointer, because array can relocate */
f6625916 165 g_hash_table_insert(struct_declaration->fields_by_name,
11796b96
MD
166 (gpointer) (unsigned long) field->name,
167 (gpointer) index);
168 /*
f6625916 169 * Alignment of structure is the max alignment of declarations contained
11796b96
MD
170 * therein.
171 */
f6625916
MD
172 struct_declaration->p.alignment = max(struct_declaration->p.alignment,
173 field_declaration->alignment);
11796b96
MD
174}
175
0f980a35
MD
176/*
177 * struct_declaration_lookup_field_index - returns field index
178 *
179 * Returns the index of a field in a structure, or -1 if it does not
180 * exist.
181 */
182int struct_declaration_lookup_field_index(struct declaration_struct *struct_declaration,
e19c3d69 183 GQuark field_name)
11796b96 184{
0f980a35
MD
185 gpointer index;
186 gboolean found;
187
188 found = g_hash_table_lookup_extended(struct_declaration->fields_by_name,
189 (gconstpointer) (unsigned long) field_name,
190 NULL, &index);
191 if (!found)
192 return -1;
193 return (int) (unsigned long) index;
11796b96
MD
194}
195
c054553d
MD
196/*
197 * field returned only valid as long as the field structure is not appended to.
198 */
f6625916
MD
199struct declaration_field *
200 struct_declaration_get_field_from_index(struct declaration_struct *struct_declaration,
0f980a35 201 int index)
c054553d 202{
0f980a35
MD
203 if (index < 0)
204 return NULL;
f6625916 205 return &g_array_index(struct_declaration->fields, struct declaration_field, index);
c054553d
MD
206}
207
11796b96
MD
208/*
209 * field returned only valid as long as the field structure is not appended to.
210 */
b1a2f580 211struct definition *
e1151715 212struct_definition_get_field_from_index(struct definition_struct *_struct,
0f980a35 213 int index)
11796b96 214{
0f980a35
MD
215 if (index < 0)
216 return NULL;
b1a2f580 217 return g_ptr_array_index(_struct->fields, index);
11796b96 218}
This page took 0.033754 seconds and 4 git commands to generate.