register type name fix
[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
e19c3d69
MD
27struct declaration *_struct_declaration_new(struct type *type,
28 struct declaration_scope *parent_scope);
c054553d 29static
e19c3d69 30void _struct_declaration_free(struct declaration *declaration);
c054553d 31
11796b96
MD
32void struct_copy(struct stream_pos *dest, const struct format *fdest,
33 struct stream_pos *src, const struct format *fsrc,
e19c3d69 34 struct declaration *declaration)
11796b96 35{
e19c3d69
MD
36 struct declaration_struct *_struct =
37 container_of(declaration, struct declaration_struct, p);
38 struct type_struct *struct_type = _struct->type;
c054553d 39 unsigned long i;
11796b96 40
e19c3d69
MD
41 fsrc->struct_begin(src, struct_type);
42 fdest->struct_begin(dest, struct_type);
11796b96 43
c054553d
MD
44 for (i = 0; i < _struct->fields->len; i++) {
45 struct field *field = &g_array_index(_struct->fields,
11796b96 46 struct field, i);
6ee5115e 47 struct type *field_type = field->declaration->type;
11796b96 48
6ee5115e 49 field_type->copy(dest, fdest, src, fsrc, field->declaration);
11796b96
MD
50
51 }
e19c3d69
MD
52 fsrc->struct_end(src, struct_type);
53 fdest->struct_end(dest, struct_type);
11796b96
MD
54}
55
c054553d 56static
e19c3d69 57void _struct_type_free(struct type *type)
11796b96 58{
e19c3d69
MD
59 struct type_struct *struct_type =
60 container_of(type, struct type_struct, p);
c054553d 61 unsigned long i;
4c8bfb7e 62
64893f33 63 free_type_scope(struct_type->scope);
e19c3d69 64 g_hash_table_destroy(struct_type->fields_by_name);
4c8bfb7e 65
e19c3d69 66 for (i = 0; i < struct_type->fields->len; i++) {
6ee5115e 67 struct type_field *type_field =
e19c3d69
MD
68 &g_array_index(struct_type->fields,
69 struct type_field, i);
6ee5115e 70 type_unref(type_field->type);
4c8bfb7e 71 }
e19c3d69
MD
72 g_array_free(struct_type->fields, true);
73 g_free(struct_type);
11796b96
MD
74}
75
64893f33
MD
76struct type_struct *struct_type_new(const char *name,
77 struct type_scope *parent_scope)
11796b96 78{
e19c3d69
MD
79 struct type_struct *struct_type;
80 struct type *type;
11796b96 81
e19c3d69
MD
82 struct_type = g_new(struct type_struct, 1);
83 type = &struct_type->p;
84 struct_type->fields_by_name = g_hash_table_new(g_direct_hash,
85 g_direct_equal);
86 struct_type->fields = g_array_sized_new(FALSE, TRUE,
87 sizeof(struct type_field),
88 DEFAULT_NR_STRUCT_FIELDS);
64893f33 89 struct_type->scope = new_type_scope(parent_scope);
e19c3d69
MD
90 type->name = g_quark_from_string(name);
91 type->alignment = 1;
92 type->copy = struct_copy;
93 type->type_free = _struct_type_free;
94 type->declaration_new = _struct_declaration_new;
95 type->declaration_free = _struct_declaration_free;
96 type->ref = 1;
e19c3d69 97 return struct_type;
11796b96
MD
98}
99
c054553d 100static
e19c3d69
MD
101struct declaration *
102 _struct_declaration_new(struct type *type,
103 struct declaration_scope *parent_scope)
11796b96 104{
e19c3d69
MD
105 struct type_struct *struct_type =
106 container_of(type, struct type_struct, p);
107 struct declaration_struct *_struct;
ac88af75
MD
108 unsigned long i;
109 int ret;
c054553d 110
e19c3d69
MD
111 _struct = g_new(struct declaration_struct, 1);
112 type_ref(&struct_type->p);
6ee5115e
MD
113 _struct->p.type = type;
114 _struct->type = struct_type;
c054553d
MD
115 _struct->p.ref = 1;
116 _struct->scope = new_declaration_scope(parent_scope);
117 _struct->fields = g_array_sized_new(FALSE, TRUE,
118 sizeof(struct field),
119 DEFAULT_NR_STRUCT_FIELDS);
ac88af75
MD
120 g_array_set_size(_struct->fields, struct_type->fields->len);
121 for (i = 0; i < struct_type->fields->len; i++) {
122 struct type_field *type_field =
123 &g_array_index(struct_type->fields,
124 struct type_field, i);
125 struct field *field = &g_array_index(_struct->fields,
126 struct field, i);
127
128 field->name = type_field->name;
129 field->declaration =
130 type_field->type->declaration_new(type_field->type,
131 _struct->scope);
132 ret = register_declaration(field->name,
133 field->declaration, _struct->scope);
134 assert(!ret);
135 }
c054553d
MD
136 return &_struct->p;
137}
138
139static
e19c3d69 140void _struct_declaration_free(struct declaration *declaration)
c054553d 141{
e19c3d69
MD
142 struct declaration_struct *_struct =
143 container_of(declaration, struct declaration_struct, p);
c054553d
MD
144 unsigned long i;
145
ac88af75 146 assert(_struct->fields->len == _struct->type->fields->len);
c054553d
MD
147 for (i = 0; i < _struct->fields->len; i++) {
148 struct field *field = &g_array_index(_struct->fields,
149 struct field, i);
e19c3d69 150 declaration_unref(field->declaration);
c054553d
MD
151 }
152 free_declaration_scope(_struct->scope);
e19c3d69 153 type_unref(_struct->p.type);
c054553d
MD
154 g_free(_struct);
155}
156
e19c3d69
MD
157void struct_type_add_field(struct type_struct *struct_type,
158 const char *field_name,
159 struct type *field_type)
c054553d 160{
e19c3d69 161 struct type_field *field;
11796b96
MD
162 unsigned long index;
163
e19c3d69
MD
164 g_array_set_size(struct_type->fields, struct_type->fields->len + 1);
165 index = struct_type->fields->len - 1; /* last field (new) */
166 field = &g_array_index(struct_type->fields, struct type_field, index);
11796b96 167 field->name = g_quark_from_string(field_name);
e19c3d69
MD
168 type_ref(field_type);
169 field->type = field_type;
11796b96 170 /* Keep index in hash rather than pointer, because array can relocate */
e19c3d69 171 g_hash_table_insert(struct_type->fields_by_name,
11796b96
MD
172 (gpointer) (unsigned long) field->name,
173 (gpointer) index);
174 /*
175 * Alignment of structure is the max alignment of types contained
176 * therein.
177 */
e19c3d69
MD
178 struct_type->p.alignment = max(struct_type->p.alignment,
179 field_type->alignment);
11796b96
MD
180}
181
182unsigned long
e19c3d69
MD
183 struct_type_lookup_field_index(struct type_struct *struct_type,
184 GQuark field_name)
11796b96
MD
185{
186 unsigned long index;
187
e19c3d69 188 index = (unsigned long) g_hash_table_lookup(struct_type->fields_by_name,
4c8bfb7e 189 (gconstpointer) (unsigned long) field_name);
11796b96
MD
190 return index;
191}
192
c054553d
MD
193/*
194 * field returned only valid as long as the field structure is not appended to.
195 */
e19c3d69
MD
196struct type_field *
197 struct_type_get_field_from_index(struct type_struct *struct_type,
198 unsigned long index)
c054553d 199{
e19c3d69 200 return &g_array_index(struct_type->fields, struct type_field, index);
c054553d
MD
201}
202
11796b96
MD
203/*
204 * field returned only valid as long as the field structure is not appended to.
205 */
206struct field *
e19c3d69
MD
207struct_declaration_get_field_from_index(struct declaration_struct *_struct,
208 unsigned long index)
11796b96 209{
e19c3d69 210 return &g_array_index(_struct->fields, struct field, index);
11796b96 211}
This page took 0.032535 seconds and 4 git commands to generate.