flt.lttng-utils.debug-info: adapt debug-info component to API changes
[babeltrace.git] / lib / trace-ir / field-class.c
CommitLineData
5cd6d0e5 1/*
e2f7325d 2 * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
5cd6d0e5
PP
3 * Copyright 2013, 2014 Jérémie Galarneau <jeremie.galarneau@efficios.com>
4 *
5cd6d0e5
PP
5 * Permission is hereby granted, free of charge, to any person obtaining a copy
6 * of this software and associated documentation files (the "Software"), to deal
7 * in the Software without restriction, including without limitation the rights
8 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 * copies of the Software, and to permit persons to whom the Software is
10 * furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 * SOFTWARE.
22 */
23
24#define BT_LOG_TAG "FIELD-CLASSES"
25#include <babeltrace/lib-logging-internal.h>
26
27#include <babeltrace/assert-pre-internal.h>
c6bd8523
PP
28#include <babeltrace/trace-ir/field-class.h>
29#include <babeltrace/trace-ir/field-class-const.h>
30#include <babeltrace/trace-ir/field-class-internal.h>
5cd6d0e5 31#include <babeltrace/trace-ir/field-path-internal.h>
c6bd8523
PP
32#include <babeltrace/trace-ir/field-internal.h>
33#include <babeltrace/trace-ir/field-const.h>
34#include <babeltrace/trace-ir/field.h>
5cd6d0e5 35#include <babeltrace/trace-ir/utils-internal.h>
5cd6d0e5
PP
36#include <babeltrace/trace-ir/clock-class.h>
37#include <babeltrace/trace-ir/clock-class-internal.h>
38#include <babeltrace/object-internal.h>
5cd6d0e5
PP
39#include <babeltrace/compiler-internal.h>
40#include <babeltrace/endian-internal.h>
41#include <babeltrace/assert-internal.h>
42#include <babeltrace/compat/glib-internal.h>
43#include <float.h>
44#include <inttypes.h>
45#include <stdlib.h>
46
40f4ba76
PP
47enum bt_field_class_type bt_field_class_get_type(
48 const struct bt_field_class *fc)
5cd6d0e5
PP
49{
50 BT_ASSERT_PRE_NON_NULL(fc, "Field class");
864cad70 51 return fc->type;
5cd6d0e5
PP
52}
53
54static
864cad70 55void init_field_class(struct bt_field_class *fc, enum bt_field_class_type type,
5cd6d0e5
PP
56 bt_object_release_func release_func)
57{
58 BT_ASSERT(fc);
864cad70 59 BT_ASSERT(bt_field_class_has_known_type(fc));
5cd6d0e5
PP
60 BT_ASSERT(release_func);
61 bt_object_init_shared(&fc->base, release_func);
864cad70 62 fc->type = type;
5cd6d0e5
PP
63}
64
65static
864cad70
PP
66void init_integer_field_class(struct bt_field_class_integer *fc,
67 enum bt_field_class_type type,
5cd6d0e5
PP
68 bt_object_release_func release_func)
69{
864cad70 70 init_field_class((void *) fc, type, release_func);
5cd6d0e5
PP
71 fc->range = 64;
72 fc->base = BT_FIELD_CLASS_INTEGER_PREFERRED_DISPLAY_BASE_DECIMAL;
73}
74
75static
76void destroy_integer_field_class(struct bt_object *obj)
77{
78 BT_ASSERT(obj);
e5be10ef 79 BT_LIB_LOGD("Destroying integer field class object: %!+F", obj);
5cd6d0e5
PP
80 g_free(obj);
81}
82
83static inline
1122a43a
PP
84struct bt_field_class *create_integer_field_class(bt_trace_class *trace_class,
85 enum bt_field_class_type type)
5cd6d0e5
PP
86{
87 struct bt_field_class_integer *int_fc = NULL;
88
1122a43a 89 BT_ASSERT_PRE_NON_NULL(trace_class, "Trace class");
e5be10ef 90 BT_LOGD("Creating default integer field class object: type=%s",
864cad70 91 bt_common_field_class_type_string(type));
5cd6d0e5
PP
92 int_fc = g_new0(struct bt_field_class_integer, 1);
93 if (!int_fc) {
e5be10ef 94 BT_LOGE_STR("Failed to allocate one integer field class.");
5cd6d0e5
PP
95 goto error;
96 }
97
864cad70 98 init_integer_field_class(int_fc, type, destroy_integer_field_class);
e5be10ef 99 BT_LIB_LOGD("Created integer field class object: %!+F", int_fc);
5cd6d0e5
PP
100 goto end;
101
102error:
65300d60 103 BT_OBJECT_PUT_REF_AND_RESET(int_fc);
5cd6d0e5
PP
104
105end:
106 return (void *) int_fc;
107}
108
1122a43a
PP
109struct bt_field_class *bt_field_class_unsigned_integer_create(
110 bt_trace_class *trace_class)
5cd6d0e5 111{
1122a43a 112 return create_integer_field_class(trace_class,
e5be10ef 113 BT_FIELD_CLASS_TYPE_UNSIGNED_INTEGER);
5cd6d0e5
PP
114}
115
1122a43a
PP
116struct bt_field_class *bt_field_class_signed_integer_create(
117 bt_trace_class *trace_class)
5cd6d0e5 118{
1122a43a 119 return create_integer_field_class(trace_class,
e5be10ef 120 BT_FIELD_CLASS_TYPE_SIGNED_INTEGER);
5cd6d0e5
PP
121}
122
123uint64_t bt_field_class_integer_get_field_value_range(
40f4ba76 124 const struct bt_field_class *fc)
5cd6d0e5 125{
40f4ba76 126 const struct bt_field_class_integer *int_fc = (const void *) fc;
5cd6d0e5
PP
127
128 BT_ASSERT_PRE_NON_NULL(fc, "Field class");
129 BT_ASSERT_PRE_FC_IS_INT(fc, "Field class");
130 return int_fc->range;
131}
132
133BT_ASSERT_PRE_FUNC
134static
135bool size_is_valid_for_enumeration_field_class(struct bt_field_class *fc,
136 uint64_t size)
137{
138 // TODO
139 return true;
140}
141
40f4ba76
PP
142void bt_field_class_integer_set_field_value_range(
143 struct bt_field_class *fc, uint64_t size)
5cd6d0e5
PP
144{
145 struct bt_field_class_integer *int_fc = (void *) fc;
146
147 BT_ASSERT_PRE_NON_NULL(fc, "Field class");
148 BT_ASSERT_PRE_FC_IS_INT(fc, "Field class");
149 BT_ASSERT_PRE_FC_HOT(fc, "Field class");
150 BT_ASSERT_PRE(size <= 64,
e5be10ef 151 "Unsupported size for integer field class's field value range "
5cd6d0e5 152 "(maximum is 64): size=%" PRIu64, size);
864cad70
PP
153 BT_ASSERT_PRE(
154 int_fc->common.type == BT_FIELD_CLASS_TYPE_UNSIGNED_INTEGER ||
155 int_fc->common.type == BT_FIELD_CLASS_TYPE_SIGNED_INTEGER ||
5cd6d0e5 156 size_is_valid_for_enumeration_field_class(fc, size),
e5be10ef 157 "Invalid field value range for enumeration field class: "
5cd6d0e5
PP
158 "at least one of the current mapping ranges contains values "
159 "which are outside this range: %!+F, size=%" PRIu64, fc, size);
160 int_fc->range = size;
e5be10ef 161 BT_LIB_LOGV("Set integer field class's field value range: %!+F", fc);
5cd6d0e5
PP
162}
163
164enum bt_field_class_integer_preferred_display_base
40f4ba76 165bt_field_class_integer_get_preferred_display_base(const struct bt_field_class *fc)
5cd6d0e5 166{
40f4ba76 167 const struct bt_field_class_integer *int_fc = (const void *) fc;
5cd6d0e5
PP
168
169 BT_ASSERT_PRE_NON_NULL(fc, "Field class");
170 BT_ASSERT_PRE_FC_IS_INT(fc, "Field class");
171 return int_fc->base;
172}
173
40f4ba76
PP
174void bt_field_class_integer_set_preferred_display_base(
175 struct bt_field_class *fc,
5cd6d0e5
PP
176 enum bt_field_class_integer_preferred_display_base base)
177{
178 struct bt_field_class_integer *int_fc = (void *) fc;
179
180 BT_ASSERT_PRE_NON_NULL(fc, "Field class");
181 BT_ASSERT_PRE_FC_IS_INT(fc, "Field class");
182 BT_ASSERT_PRE_FC_HOT(fc, "Field class");
183 int_fc->base = base;
e5be10ef 184 BT_LIB_LOGV("Set integer field class's preferred display base: %!+F", fc);
5cd6d0e5
PP
185}
186
187static
188void finalize_enumeration_field_class_mapping(
189 struct bt_field_class_enumeration_mapping *mapping)
190{
191 BT_ASSERT(mapping);
192
193 if (mapping->label) {
194 g_string_free(mapping->label, TRUE);
195 }
196
197 if (mapping->ranges) {
198 g_array_free(mapping->ranges, TRUE);
199 }
200}
201
202static
203void destroy_enumeration_field_class(struct bt_object *obj)
204{
205 struct bt_field_class_enumeration *fc = (void *) obj;
206
207 BT_ASSERT(fc);
e5be10ef 208 BT_LIB_LOGD("Destroying enumeration field class object: %!+F", fc);
5cd6d0e5
PP
209
210 if (fc->mappings) {
211 uint64_t i;
212
213 for (i = 0; i < fc->mappings->len; i++) {
214 finalize_enumeration_field_class_mapping(
215 BT_FIELD_CLASS_ENUM_MAPPING_AT_INDEX(fc, i));
216 }
217
218 g_array_free(fc->mappings, TRUE);
238b7404 219 fc->mappings = NULL;
5cd6d0e5
PP
220 }
221
222 if (fc->label_buf) {
223 g_ptr_array_free(fc->label_buf, TRUE);
238b7404 224 fc->label_buf = NULL;
5cd6d0e5
PP
225 }
226
227 g_free(fc);
228}
229
230static
40f4ba76 231struct bt_field_class *create_enumeration_field_class(
1122a43a 232 bt_trace_class *trace_class, enum bt_field_class_type type)
5cd6d0e5
PP
233{
234 struct bt_field_class_enumeration *enum_fc = NULL;
235
1122a43a 236 BT_ASSERT_PRE_NON_NULL(trace_class, "Trace class");
e5be10ef 237 BT_LOGD("Creating default enumeration field class object: type=%s",
864cad70 238 bt_common_field_class_type_string(type));
5cd6d0e5
PP
239 enum_fc = g_new0(struct bt_field_class_enumeration, 1);
240 if (!enum_fc) {
e5be10ef 241 BT_LOGE_STR("Failed to allocate one enumeration field class.");
5cd6d0e5
PP
242 goto error;
243 }
244
864cad70 245 init_integer_field_class((void *) enum_fc, type,
5cd6d0e5
PP
246 destroy_enumeration_field_class);
247 enum_fc->mappings = g_array_new(FALSE, TRUE,
248 sizeof(struct bt_field_class_enumeration_mapping));
249 if (!enum_fc->mappings) {
250 BT_LOGE_STR("Failed to allocate a GArray.");
251 goto error;
252 }
253
254 enum_fc->label_buf = g_ptr_array_new();
255 if (!enum_fc->label_buf) {
256 BT_LOGE_STR("Failed to allocate a GArray.");
257 goto error;
258 }
259
e5be10ef 260 BT_LIB_LOGD("Created enumeration field class object: %!+F", enum_fc);
5cd6d0e5
PP
261 goto end;
262
263error:
65300d60 264 BT_OBJECT_PUT_REF_AND_RESET(enum_fc);
5cd6d0e5
PP
265
266end:
267 return (void *) enum_fc;
268}
269
1122a43a
PP
270struct bt_field_class *bt_field_class_unsigned_enumeration_create(
271 bt_trace_class *trace_class)
5cd6d0e5 272{
1122a43a 273 return create_enumeration_field_class(trace_class,
864cad70 274 BT_FIELD_CLASS_TYPE_UNSIGNED_ENUMERATION);
5cd6d0e5
PP
275}
276
1122a43a
PP
277struct bt_field_class *bt_field_class_signed_enumeration_create(
278 bt_trace_class *trace_class)
5cd6d0e5 279{
1122a43a 280 return create_enumeration_field_class(trace_class,
864cad70 281 BT_FIELD_CLASS_TYPE_SIGNED_ENUMERATION);
5cd6d0e5
PP
282}
283
40f4ba76
PP
284uint64_t bt_field_class_enumeration_get_mapping_count(
285 const struct bt_field_class *fc)
5cd6d0e5 286{
40f4ba76 287 const struct bt_field_class_enumeration *enum_fc = (const void *) fc;
5cd6d0e5
PP
288
289 BT_ASSERT_PRE_NON_NULL(fc, "Field class");
290 BT_ASSERT_PRE_FC_IS_ENUM(fc, "Field class");
291 return (uint64_t) enum_fc->mappings->len;
292}
293
40f4ba76
PP
294void bt_field_class_unsigned_enumeration_borrow_mapping_by_index_const(
295 const struct bt_field_class *fc, uint64_t index,
5cd6d0e5 296 const char **name,
40f4ba76 297 const struct bt_field_class_unsigned_enumeration_mapping_ranges **ranges)
5cd6d0e5 298{
40f4ba76
PP
299 const struct bt_field_class_enumeration *enum_fc = (const void *) fc;
300 const struct bt_field_class_enumeration_mapping *mapping;
5cd6d0e5
PP
301
302 BT_ASSERT_PRE_NON_NULL(fc, "Field class");
303 BT_ASSERT_PRE_NON_NULL(name, "Name (output)");
304 BT_ASSERT_PRE_NON_NULL(ranges, "Ranges (output)");
305 BT_ASSERT_PRE_VALID_INDEX(index, enum_fc->mappings->len);
864cad70 306 BT_ASSERT_PRE_FC_HAS_ID(fc, BT_FIELD_CLASS_TYPE_UNSIGNED_ENUMERATION,
5cd6d0e5
PP
307 "Field class");
308 mapping = BT_FIELD_CLASS_ENUM_MAPPING_AT_INDEX(fc, index);
309 *name = mapping->label->str;
310 *ranges = (void *) mapping;
311}
312
40f4ba76
PP
313void bt_field_class_signed_enumeration_borrow_mapping_by_index_const(
314 const struct bt_field_class *fc, uint64_t index,
5cd6d0e5 315 const char **name,
40f4ba76 316 const struct bt_field_class_signed_enumeration_mapping_ranges **ranges)
5cd6d0e5 317{
40f4ba76
PP
318 const struct bt_field_class_enumeration *enum_fc = (const void *) fc;
319 const struct bt_field_class_enumeration_mapping *mapping;
5cd6d0e5
PP
320
321 BT_ASSERT_PRE_NON_NULL(fc, "Field class");
322 BT_ASSERT_PRE_NON_NULL(name, "Name (output)");
323 BT_ASSERT_PRE_NON_NULL(ranges, "Ranges (output)");
324 BT_ASSERT_PRE_VALID_INDEX(index, enum_fc->mappings->len);
864cad70 325 BT_ASSERT_PRE_FC_HAS_ID(fc, BT_FIELD_CLASS_TYPE_SIGNED_ENUMERATION,
5cd6d0e5
PP
326 "Field class");
327 mapping = BT_FIELD_CLASS_ENUM_MAPPING_AT_INDEX(fc, index);
328 *name = mapping->label->str;
329 *ranges = (void *) mapping;
330}
331
332static inline
333uint64_t get_enumeration_field_class_mapping_range_count(
40f4ba76 334 const struct bt_field_class_enumeration_mapping *mapping)
5cd6d0e5
PP
335{
336 BT_ASSERT_PRE_NON_NULL(mapping, "Ranges");
337 return (uint64_t) mapping->ranges->len;
338}
339
340uint64_t bt_field_class_unsigned_enumeration_mapping_ranges_get_range_count(
40f4ba76 341 const struct bt_field_class_unsigned_enumeration_mapping_ranges *ranges)
5cd6d0e5 342{
40f4ba76
PP
343 return get_enumeration_field_class_mapping_range_count(
344 (const void *) ranges);
5cd6d0e5
PP
345}
346
347uint64_t bt_field_class_signed_enumeration_mapping_ranges_get_range_count(
40f4ba76 348 const struct bt_field_class_signed_enumeration_mapping_ranges *ranges)
5cd6d0e5 349{
40f4ba76
PP
350 return get_enumeration_field_class_mapping_range_count(
351 (const void *) ranges);
5cd6d0e5
PP
352}
353
354static inline
355void get_enumeration_field_class_mapping_range_at_index(
40f4ba76 356 const struct bt_field_class_enumeration_mapping *mapping,
5cd6d0e5
PP
357 uint64_t index, uint64_t *lower, uint64_t *upper)
358{
40f4ba76 359 const struct bt_field_class_enumeration_mapping_range *range;
5cd6d0e5
PP
360
361 BT_ASSERT_PRE_NON_NULL(mapping, "Ranges");
362 BT_ASSERT_PRE_NON_NULL(lower, "Range's lower (output)");
363 BT_ASSERT_PRE_NON_NULL(upper, "Range's upper (output)");
364 BT_ASSERT_PRE_VALID_INDEX(index, mapping->ranges->len);
365 range = BT_FIELD_CLASS_ENUM_MAPPING_RANGE_AT_INDEX(mapping, index);
366 *lower = range->lower.u;
367 *upper = range->upper.u;
368}
369
370void bt_field_class_unsigned_enumeration_mapping_ranges_get_range_by_index(
40f4ba76 371 const struct bt_field_class_unsigned_enumeration_mapping_ranges *ranges,
5cd6d0e5
PP
372 uint64_t index, uint64_t *lower, uint64_t *upper)
373{
40f4ba76
PP
374 get_enumeration_field_class_mapping_range_at_index(
375 (const void *) ranges, index, lower, upper);
5cd6d0e5
PP
376}
377
378void bt_field_class_signed_enumeration_mapping_ranges_get_range_by_index(
1998d1ab 379 const struct bt_field_class_signed_enumeration_mapping_ranges *ranges,
5cd6d0e5
PP
380 uint64_t index, int64_t *lower, int64_t *upper)
381{
40f4ba76
PP
382 get_enumeration_field_class_mapping_range_at_index(
383 (const void *) ranges, index,
384 (uint64_t *) lower, (uint64_t *) upper);
5cd6d0e5
PP
385}
386
387
388
4295b9e0
PP
389enum bt_field_class_status
390bt_field_class_unsigned_enumeration_get_mapping_labels_by_value(
40f4ba76 391 const struct bt_field_class *fc, uint64_t value,
5cd6d0e5
PP
392 bt_field_class_enumeration_mapping_label_array *label_array,
393 uint64_t *count)
394{
40f4ba76 395 const struct bt_field_class_enumeration *enum_fc = (const void *) fc;
5cd6d0e5
PP
396 uint64_t i;
397
398 BT_ASSERT_PRE_NON_NULL(fc, "Field class");
399 BT_ASSERT_PRE_NON_NULL(label_array, "Label array (output)");
400 BT_ASSERT_PRE_NON_NULL(count, "Count (output)");
864cad70 401 BT_ASSERT_PRE_FC_HAS_ID(fc, BT_FIELD_CLASS_TYPE_UNSIGNED_ENUMERATION,
5cd6d0e5
PP
402 "Field class");
403 g_ptr_array_set_size(enum_fc->label_buf, 0);
404
405 for (i = 0; i < enum_fc->mappings->len; i++) {
406 uint64_t j;
40f4ba76 407 const struct bt_field_class_enumeration_mapping *mapping =
5cd6d0e5
PP
408 BT_FIELD_CLASS_ENUM_MAPPING_AT_INDEX(enum_fc, i);
409
410 for (j = 0; j < mapping->ranges->len; j++) {
40f4ba76 411 const struct bt_field_class_enumeration_mapping_range *range =
5cd6d0e5
PP
412 BT_FIELD_CLASS_ENUM_MAPPING_RANGE_AT_INDEX(
413 mapping, j);
414
415 if (value >= range->lower.u &&
416 value <= range->upper.u) {
417 g_ptr_array_add(enum_fc->label_buf,
418 mapping->label->str);
419 break;
420 }
421 }
422 }
423
424 *label_array = (void *) enum_fc->label_buf->pdata;
425 *count = (uint64_t) enum_fc->label_buf->len;
4295b9e0 426 return BT_FIELD_CLASS_STATUS_OK;
5cd6d0e5
PP
427}
428
4295b9e0
PP
429enum bt_field_class_status
430bt_field_class_signed_enumeration_get_mapping_labels_by_value(
40f4ba76 431 const struct bt_field_class *fc, int64_t value,
5cd6d0e5
PP
432 bt_field_class_enumeration_mapping_label_array *label_array,
433 uint64_t *count)
434{
40f4ba76 435 const struct bt_field_class_enumeration *enum_fc = (const void *) fc;
5cd6d0e5
PP
436 uint64_t i;
437
438 BT_ASSERT_PRE_NON_NULL(fc, "Field class");
439 BT_ASSERT_PRE_NON_NULL(label_array, "Label array (output)");
440 BT_ASSERT_PRE_NON_NULL(count, "Count (output)");
864cad70 441 BT_ASSERT_PRE_FC_HAS_ID(fc, BT_FIELD_CLASS_TYPE_SIGNED_ENUMERATION,
5cd6d0e5
PP
442 "Field class");
443 g_ptr_array_set_size(enum_fc->label_buf, 0);
444
445 for (i = 0; i < enum_fc->mappings->len; i++) {
446 uint64_t j;
40f4ba76 447 const struct bt_field_class_enumeration_mapping *mapping =
5cd6d0e5
PP
448 BT_FIELD_CLASS_ENUM_MAPPING_AT_INDEX(enum_fc, i);
449
450 for (j = 0; j < mapping->ranges->len; j++) {
40f4ba76 451 const struct bt_field_class_enumeration_mapping_range *range =
5cd6d0e5
PP
452 BT_FIELD_CLASS_ENUM_MAPPING_RANGE_AT_INDEX(
453 mapping, j);
454
455 if (value >= range->lower.i &&
456 value <= range->upper.i) {
457 g_ptr_array_add(enum_fc->label_buf,
458 mapping->label->str);
459 break;
460 }
461 }
462 }
463
464 *label_array = (void *) enum_fc->label_buf->pdata;
465 *count = (uint64_t) enum_fc->label_buf->len;
4295b9e0 466 return BT_FIELD_CLASS_STATUS_OK;
5cd6d0e5
PP
467}
468
469static inline
4295b9e0
PP
470enum bt_field_class_status add_mapping_to_enumeration_field_class(
471 struct bt_field_class *fc,
5cd6d0e5
PP
472 const char *label, uint64_t lower, uint64_t upper)
473{
4295b9e0 474 int ret = BT_FIELD_CLASS_STATUS_OK;
5cd6d0e5
PP
475 uint64_t i;
476 struct bt_field_class_enumeration *enum_fc = (void *) fc;
477 struct bt_field_class_enumeration_mapping *mapping = NULL;
478 struct bt_field_class_enumeration_mapping_range *range;
479
480 BT_ASSERT(fc);
481 BT_ASSERT_PRE_NON_NULL(label, "Label");
482
483 /* Find existing mapping identified by this label */
484 for (i = 0; i < enum_fc->mappings->len; i++) {
485 struct bt_field_class_enumeration_mapping *mapping_candidate =
486 BT_FIELD_CLASS_ENUM_MAPPING_AT_INDEX(enum_fc, i);
487
488 if (strcmp(mapping_candidate->label->str, label) == 0) {
489 mapping = mapping_candidate;
490 break;
491 }
492 }
493
494 if (!mapping) {
495 /* Create new mapping for this label */
496 g_array_set_size(enum_fc->mappings, enum_fc->mappings->len + 1);
497 mapping = BT_FIELD_CLASS_ENUM_MAPPING_AT_INDEX(enum_fc,
498 enum_fc->mappings->len - 1);
499 mapping->ranges = g_array_new(FALSE, TRUE,
500 sizeof(struct bt_field_class_enumeration_mapping_range));
501 if (!mapping->ranges) {
502 finalize_enumeration_field_class_mapping(mapping);
503 g_array_set_size(enum_fc->mappings,
504 enum_fc->mappings->len - 1);
4295b9e0 505 ret = BT_FIELD_CLASS_STATUS_NOMEM;
5cd6d0e5
PP
506 goto end;
507 }
508
509 mapping->label = g_string_new(label);
510 if (!mapping->label) {
511 finalize_enumeration_field_class_mapping(mapping);
512 g_array_set_size(enum_fc->mappings,
513 enum_fc->mappings->len - 1);
4295b9e0 514 ret = BT_FIELD_CLASS_STATUS_NOMEM;
5cd6d0e5
PP
515 goto end;
516 }
517 }
518
519 /* Add range */
520 BT_ASSERT(mapping);
521 g_array_set_size(mapping->ranges, mapping->ranges->len + 1);
522 range = BT_FIELD_CLASS_ENUM_MAPPING_RANGE_AT_INDEX(mapping,
523 mapping->ranges->len - 1);
524 range->lower.u = lower;
525 range->upper.u = upper;
e5be10ef 526 BT_LIB_LOGV("Added mapping to enumeration field class: "
5cd6d0e5
PP
527 "%![fc-]+F, label=\"%s\", lower-unsigned=%" PRIu64 ", "
528 "upper-unsigned=%" PRIu64, fc, label, lower, upper);
529
530end:
531 return ret;
532}
533
4295b9e0 534enum bt_field_class_status bt_field_class_unsigned_enumeration_map_range(
40f4ba76 535 struct bt_field_class *fc, const char *label,
5cd6d0e5
PP
536 uint64_t range_lower, uint64_t range_upper)
537{
538 struct bt_field_class_enumeration *enum_fc = (void *) fc;
539
540 BT_ASSERT_PRE_NON_NULL(fc, "Field class");
864cad70 541 BT_ASSERT_PRE_FC_HAS_ID(fc, BT_FIELD_CLASS_TYPE_UNSIGNED_ENUMERATION,
5cd6d0e5
PP
542 "Field class");
543 BT_ASSERT_PRE(range_lower <= range_upper,
544 "Range's upper bound is less than lower bound: "
545 "upper=%" PRIu64 ", lower=%" PRIu64,
546 range_lower, range_upper);
547 BT_ASSERT_PRE(bt_util_value_is_in_range_unsigned(enum_fc->common.range,
548 range_lower),
e5be10ef 549 "Range's lower bound is outside the enumeration field class's value range: "
5cd6d0e5
PP
550 "%![fc-]+F, lower=%" PRIu64, fc, range_lower);
551 BT_ASSERT_PRE(bt_util_value_is_in_range_unsigned(enum_fc->common.range,
552 range_upper),
e5be10ef 553 "Range's upper bound is outside the enumeration field class's value range: "
5cd6d0e5
PP
554 "%![fc-]+F, upper=%" PRIu64, fc, range_upper);
555 return add_mapping_to_enumeration_field_class(fc, label, range_lower,
556 range_upper);
557}
558
4295b9e0 559enum bt_field_class_status bt_field_class_signed_enumeration_map_range(
40f4ba76 560 struct bt_field_class *fc, const char *label,
5cd6d0e5
PP
561 int64_t range_lower, int64_t range_upper)
562{
563 struct bt_field_class_enumeration *enum_fc = (void *) fc;
564
565 BT_ASSERT_PRE_NON_NULL(fc, "Field class");
864cad70 566 BT_ASSERT_PRE_FC_HAS_ID(fc, BT_FIELD_CLASS_TYPE_SIGNED_ENUMERATION,
5cd6d0e5
PP
567 "Field class");
568 BT_ASSERT_PRE(range_lower <= range_upper,
569 "Range's upper bound is less than lower bound: "
570 "upper=%" PRId64 ", lower=%" PRId64,
571 range_lower, range_upper);
572 BT_ASSERT_PRE(bt_util_value_is_in_range_signed(enum_fc->common.range,
573 range_lower),
e5be10ef 574 "Range's lower bound is outside the enumeration field class's value range: "
5cd6d0e5
PP
575 "%![fc-]+F, lower=%" PRId64, fc, range_lower);
576 BT_ASSERT_PRE(bt_util_value_is_in_range_signed(enum_fc->common.range,
577 range_upper),
e5be10ef 578 "Range's upper bound is outside the enumeration field class's value range: "
5cd6d0e5
PP
579 "%![fc-]+F, upper=%" PRId64, fc, range_upper);
580 return add_mapping_to_enumeration_field_class(fc, label, range_lower,
581 range_upper);
582}
583
584static
585void destroy_real_field_class(struct bt_object *obj)
586{
587 BT_ASSERT(obj);
e5be10ef 588 BT_LIB_LOGD("Destroying real field class object: %!+F", obj);
5cd6d0e5
PP
589 g_free(obj);
590}
591
1122a43a 592struct bt_field_class *bt_field_class_real_create(bt_trace_class *trace_class)
5cd6d0e5
PP
593{
594 struct bt_field_class_real *real_fc = NULL;
595
1122a43a 596 BT_ASSERT_PRE_NON_NULL(trace_class, "Trace class");
e5be10ef 597 BT_LOGD_STR("Creating default real field class object.");
5cd6d0e5
PP
598 real_fc = g_new0(struct bt_field_class_real, 1);
599 if (!real_fc) {
e5be10ef 600 BT_LOGE_STR("Failed to allocate one real field class.");
5cd6d0e5
PP
601 goto error;
602 }
603
864cad70 604 init_field_class((void *) real_fc, BT_FIELD_CLASS_TYPE_REAL,
5cd6d0e5 605 destroy_real_field_class);
e5be10ef 606 BT_LIB_LOGD("Created real field class object: %!+F", real_fc);
5cd6d0e5
PP
607 goto end;
608
609error:
65300d60 610 BT_OBJECT_PUT_REF_AND_RESET(real_fc);
5cd6d0e5
PP
611
612end:
613 return (void *) real_fc;
614}
615
40f4ba76 616bt_bool bt_field_class_real_is_single_precision(const struct bt_field_class *fc)
5cd6d0e5 617{
40f4ba76 618 const struct bt_field_class_real *real_fc = (const void *) fc;
5cd6d0e5
PP
619
620 BT_ASSERT_PRE_NON_NULL(fc, "Field class");
864cad70 621 BT_ASSERT_PRE_FC_HAS_ID(fc, BT_FIELD_CLASS_TYPE_REAL, "Field class");
5cd6d0e5
PP
622 return real_fc->is_single_precision;
623}
624
40f4ba76 625void bt_field_class_real_set_is_single_precision(struct bt_field_class *fc,
5cd6d0e5
PP
626 bt_bool is_single_precision)
627{
628 struct bt_field_class_real *real_fc = (void *) fc;
629
630 BT_ASSERT_PRE_NON_NULL(fc, "Field class");
864cad70 631 BT_ASSERT_PRE_FC_HAS_ID(fc, BT_FIELD_CLASS_TYPE_REAL, "Field class");
5cd6d0e5
PP
632 BT_ASSERT_PRE_FC_HOT(fc, "Field class");
633 real_fc->is_single_precision = (bool) is_single_precision;
e5be10ef 634 BT_LIB_LOGV("Set real field class's \"is single precision\" property: "
5cd6d0e5 635 "%!+F", fc);
5cd6d0e5
PP
636}
637
638static
639int init_named_field_classes_container(
640 struct bt_field_class_named_field_class_container *fc,
40f4ba76
PP
641 enum bt_field_class_type type,
642 bt_object_release_func release_func)
5cd6d0e5
PP
643{
644 int ret = 0;
645
864cad70 646 init_field_class((void *) fc, type, release_func);
5cd6d0e5
PP
647 fc->named_fcs = g_array_new(FALSE, TRUE,
648 sizeof(struct bt_named_field_class));
649 if (!fc->named_fcs) {
650 BT_LOGE_STR("Failed to allocate a GArray.");
651 ret = -1;
652 goto end;
653 }
654
655 fc->name_to_index = g_hash_table_new(g_str_hash, g_str_equal);
656 if (!fc->name_to_index) {
657 BT_LOGE_STR("Failed to allocate a GHashTable.");
658 ret = -1;
659 goto end;
660 }
661
662end:
663 return ret;
664}
665
666static
667void finalize_named_field_class(struct bt_named_field_class *named_fc)
668{
669 BT_ASSERT(named_fc);
e5be10ef 670 BT_LIB_LOGD("Finalizing named field class: "
5cd6d0e5
PP
671 "addr=%p, name=\"%s\", %![fc-]+F",
672 named_fc, named_fc->name ? named_fc->name->str : NULL,
673 named_fc->fc);
674
675 if (named_fc->name) {
676 g_string_free(named_fc->name, TRUE);
677 }
678
e5be10ef 679 BT_LOGD_STR("Putting named field class's field class.");
238b7404 680 BT_OBJECT_PUT_REF_AND_RESET(named_fc->fc);
5cd6d0e5
PP
681}
682
683static
684void finalize_named_field_classes_container(
685 struct bt_field_class_named_field_class_container *fc)
686{
687 uint64_t i;
688
689 BT_ASSERT(fc);
690
691 if (fc->named_fcs) {
692 for (i = 0; i < fc->named_fcs->len; i++) {
693 finalize_named_field_class(
694 &g_array_index(fc->named_fcs,
695 struct bt_named_field_class, i));
696 }
697
698 g_array_free(fc->named_fcs, TRUE);
699 }
700
701 if (fc->name_to_index) {
702 g_hash_table_destroy(fc->name_to_index);
703 }
704}
705
706static
707void destroy_structure_field_class(struct bt_object *obj)
708{
709 BT_ASSERT(obj);
1998d1ab 710 BT_LIB_LOGD("Destroying structure field class object: %!+F", obj);
5cd6d0e5
PP
711 finalize_named_field_classes_container((void *) obj);
712 g_free(obj);
713}
714
1122a43a
PP
715struct bt_field_class *bt_field_class_structure_create(
716 bt_trace_class *trace_class)
5cd6d0e5
PP
717{
718 int ret;
719 struct bt_field_class_structure *struct_fc = NULL;
720
1122a43a 721 BT_ASSERT_PRE_NON_NULL(trace_class, "Trace class");
e5be10ef 722 BT_LOGD_STR("Creating default structure field class object.");
5cd6d0e5
PP
723 struct_fc = g_new0(struct bt_field_class_structure, 1);
724 if (!struct_fc) {
e5be10ef 725 BT_LOGE_STR("Failed to allocate one structure field class.");
5cd6d0e5
PP
726 goto error;
727 }
728
729 ret = init_named_field_classes_container((void *) struct_fc,
864cad70 730 BT_FIELD_CLASS_TYPE_STRUCTURE, destroy_structure_field_class);
5cd6d0e5
PP
731 if (ret) {
732 goto error;
733 }
734
e5be10ef 735 BT_LIB_LOGD("Created structure field class object: %!+F", struct_fc);
5cd6d0e5
PP
736 goto end;
737
738error:
65300d60 739 BT_OBJECT_PUT_REF_AND_RESET(struct_fc);
5cd6d0e5
PP
740
741end:
742 return (void *) struct_fc;
743}
744
745static
4295b9e0 746enum bt_field_class_status append_named_field_class_to_container_field_class(
5cd6d0e5
PP
747 struct bt_field_class_named_field_class_container *container_fc,
748 const char *name, struct bt_field_class *fc)
749{
4295b9e0 750 int ret = BT_FIELD_CLASS_STATUS_OK;
5cd6d0e5
PP
751 struct bt_named_field_class *named_fc;
752 GString *name_str;
753
754 BT_ASSERT(container_fc);
755 BT_ASSERT_PRE_FC_HOT(container_fc, "Field class");
756 BT_ASSERT_PRE_NON_NULL(name, "Name");
757 BT_ASSERT_PRE_NON_NULL(fc, "Field class");
758 BT_ASSERT_PRE(!bt_g_hash_table_contains(container_fc->name_to_index,
759 name),
e5be10ef 760 "Duplicate member/option name in structure/variant field class: "
5cd6d0e5
PP
761 "%![container-fc-]+F, name=\"%s\"", container_fc, name);
762 name_str = g_string_new(name);
763 if (!name_str) {
764 BT_LOGE_STR("Failed to allocate a GString.");
4295b9e0 765 ret = BT_FIELD_CLASS_STATUS_NOMEM;
5cd6d0e5
PP
766 goto end;
767 }
768
769 g_array_set_size(container_fc->named_fcs,
770 container_fc->named_fcs->len + 1);
771 named_fc = &g_array_index(container_fc->named_fcs,
772 struct bt_named_field_class, container_fc->named_fcs->len - 1);
773 named_fc->name = name_str;
398454ed
PP
774 named_fc->fc = fc;
775 bt_object_get_no_null_check(fc);
5cd6d0e5
PP
776 g_hash_table_insert(container_fc->name_to_index, named_fc->name->str,
777 GUINT_TO_POINTER(container_fc->named_fcs->len - 1));
778 bt_field_class_freeze(fc);
779
780end:
781 return ret;
782}
783
4295b9e0
PP
784enum bt_field_class_status bt_field_class_structure_append_member(
785 struct bt_field_class *fc, const char *name,
786 struct bt_field_class *member_fc)
5cd6d0e5 787{
e5be10ef 788
5cd6d0e5 789 BT_ASSERT_PRE_NON_NULL(fc, "Field class");
864cad70 790 BT_ASSERT_PRE_FC_HAS_ID(fc, BT_FIELD_CLASS_TYPE_STRUCTURE, "Field class");
5cd6d0e5 791 return append_named_field_class_to_container_field_class((void *) fc,
40f4ba76 792 name, member_fc);
5cd6d0e5
PP
793}
794
40f4ba76
PP
795uint64_t bt_field_class_structure_get_member_count(
796 const struct bt_field_class *fc)
5cd6d0e5
PP
797{
798 struct bt_field_class_structure *struct_fc = (void *) fc;
799
800 BT_ASSERT_PRE_NON_NULL(fc, "Field class");
864cad70 801 BT_ASSERT_PRE_FC_HAS_ID(fc, BT_FIELD_CLASS_TYPE_STRUCTURE, "Field class");
5cd6d0e5
PP
802 return (uint64_t) struct_fc->common.named_fcs->len;
803}
804
805static
40f4ba76
PP
806void borrow_named_field_class_from_container_field_class_at_index_const(
807 const struct bt_field_class_named_field_class_container *fc,
5cd6d0e5 808 uint64_t index, const char **name,
40f4ba76 809 const struct bt_field_class **out_fc)
5cd6d0e5 810{
40f4ba76 811 const struct bt_named_field_class *named_fc;
5cd6d0e5
PP
812
813 BT_ASSERT(fc);
814 BT_ASSERT_PRE_NON_NULL(name, "Name");
815 BT_ASSERT_PRE_NON_NULL(out_fc, "Field class (output)");
816 BT_ASSERT_PRE_VALID_INDEX(index, fc->named_fcs->len);
817 named_fc = BT_FIELD_CLASS_NAMED_FC_AT_INDEX(fc, index);
818 *name = named_fc->name->str;
819 *out_fc = named_fc->fc;
820}
821
40f4ba76
PP
822void bt_field_class_structure_borrow_member_by_index_const(
823 const struct bt_field_class *fc, uint64_t index,
824 const char **name, const struct bt_field_class **out_fc)
5cd6d0e5
PP
825{
826 BT_ASSERT_PRE_NON_NULL(fc, "Field class");
864cad70 827 BT_ASSERT_PRE_FC_HAS_ID(fc, BT_FIELD_CLASS_TYPE_STRUCTURE, "Field class");
40f4ba76
PP
828 borrow_named_field_class_from_container_field_class_at_index_const(
829 (void *) fc, index, name, out_fc);
e5be10ef
PP
830}
831
5cd6d0e5 832static
40f4ba76
PP
833const struct bt_field_class *
834borrow_field_class_from_container_field_class_by_name_const(
835 const struct bt_field_class_named_field_class_container *fc,
5cd6d0e5
PP
836 const char *name)
837{
40f4ba76
PP
838 const struct bt_field_class *ret_fc = NULL;
839 const struct bt_named_field_class *named_fc;
5cd6d0e5
PP
840 gpointer orig_key;
841 gpointer value;
842
843 BT_ASSERT(fc);
844 BT_ASSERT_PRE_NON_NULL(name, "Name");
845 if (!g_hash_table_lookup_extended(fc->name_to_index, name, &orig_key,
846 &value)) {
847 goto end;
848 }
849
850 named_fc = BT_FIELD_CLASS_NAMED_FC_AT_INDEX(fc,
851 GPOINTER_TO_UINT(value));
852 ret_fc = named_fc->fc;
853
854end:
855 return ret_fc;
856}
857
40f4ba76 858const struct bt_field_class *
11310164 859bt_field_class_structure_borrow_member_field_class_by_name_const(
40f4ba76 860 const struct bt_field_class *fc, const char *name)
5cd6d0e5
PP
861{
862 BT_ASSERT_PRE_NON_NULL(fc, "Field class");
864cad70 863 BT_ASSERT_PRE_FC_HAS_ID(fc, BT_FIELD_CLASS_TYPE_STRUCTURE, "Field class");
40f4ba76
PP
864 return borrow_field_class_from_container_field_class_by_name_const(
865 (void *) fc, name);
e5be10ef
PP
866}
867
5cd6d0e5
PP
868static
869void destroy_variant_field_class(struct bt_object *obj)
870{
871 struct bt_field_class_variant *fc = (void *) obj;
872
873 BT_ASSERT(fc);
e5be10ef 874 BT_LIB_LOGD("Destroying variant field class object: %!+F", fc);
5cd6d0e5
PP
875 finalize_named_field_classes_container((void *) fc);
876 BT_LOGD_STR("Putting selector field path.");
238b7404
PP
877 BT_OBJECT_PUT_REF_AND_RESET(fc->selector_field_path);
878 BT_LOGD_STR("Putting selector field class.");
879 BT_OBJECT_PUT_REF_AND_RESET(fc->selector_fc);
5cd6d0e5
PP
880 g_free(fc);
881}
882
1122a43a
PP
883struct bt_field_class *bt_field_class_variant_create(
884 bt_trace_class *trace_class)
5cd6d0e5
PP
885{
886 int ret;
887 struct bt_field_class_variant *var_fc = NULL;
888
1122a43a 889 BT_ASSERT_PRE_NON_NULL(trace_class, "Trace class");
e5be10ef 890 BT_LOGD_STR("Creating default variant field class object.");
5cd6d0e5
PP
891 var_fc = g_new0(struct bt_field_class_variant, 1);
892 if (!var_fc) {
e5be10ef 893 BT_LOGE_STR("Failed to allocate one variant field class.");
5cd6d0e5
PP
894 goto error;
895 }
896
897 ret = init_named_field_classes_container((void *) var_fc,
864cad70 898 BT_FIELD_CLASS_TYPE_VARIANT, destroy_variant_field_class);
5cd6d0e5
PP
899 if (ret) {
900 goto error;
901 }
902
e5be10ef 903 BT_LIB_LOGD("Created variant field class object: %!+F", var_fc);
5cd6d0e5
PP
904 goto end;
905
906error:
65300d60 907 BT_OBJECT_PUT_REF_AND_RESET(var_fc);
5cd6d0e5
PP
908
909end:
910 return (void *) var_fc;
911}
912
4295b9e0 913enum bt_field_class_status bt_field_class_variant_set_selector_field_class(
40f4ba76
PP
914 struct bt_field_class *fc,
915 struct bt_field_class *selector_fc)
5cd6d0e5
PP
916{
917 struct bt_field_class_variant *var_fc = (void *) fc;
918
e5be10ef
PP
919 BT_ASSERT_PRE_NON_NULL(fc, "Variant field class");
920 BT_ASSERT_PRE_NON_NULL(selector_fc, "Selector field class");
864cad70 921 BT_ASSERT_PRE_FC_HAS_ID(fc, BT_FIELD_CLASS_TYPE_VARIANT, "Field class");
e5be10ef
PP
922 BT_ASSERT_PRE_FC_IS_ENUM(selector_fc, "Selector field class");
923 BT_ASSERT_PRE_FC_HOT(fc, "Variant field class");
40f4ba76 924 var_fc->selector_fc = selector_fc;
398454ed 925 bt_object_get_no_null_check(selector_fc);
40f4ba76 926 bt_field_class_freeze(selector_fc);
4295b9e0 927 return BT_FIELD_CLASS_STATUS_OK;
5cd6d0e5
PP
928}
929
4295b9e0 930enum bt_field_class_status bt_field_class_variant_append_option(
40f4ba76
PP
931 struct bt_field_class *fc,
932 const char *name, struct bt_field_class *option_fc)
5cd6d0e5 933{
e5be10ef 934
5cd6d0e5 935 BT_ASSERT_PRE_NON_NULL(fc, "Field class");
864cad70 936 BT_ASSERT_PRE_FC_HAS_ID(fc, BT_FIELD_CLASS_TYPE_VARIANT, "Field class");
5cd6d0e5 937 return append_named_field_class_to_container_field_class((void *) fc,
40f4ba76 938 name, option_fc);
5cd6d0e5
PP
939}
940
40f4ba76
PP
941const struct bt_field_class *
942bt_field_class_variant_borrow_option_field_class_by_name_const(
943 const struct bt_field_class *fc, const char *name)
5cd6d0e5
PP
944{
945 BT_ASSERT_PRE_NON_NULL(fc, "Field class");
864cad70 946 BT_ASSERT_PRE_FC_HAS_ID(fc, BT_FIELD_CLASS_TYPE_VARIANT, "Field class");
40f4ba76 947 return borrow_field_class_from_container_field_class_by_name_const(
e5be10ef
PP
948 (void *) fc, name);
949}
950
40f4ba76 951uint64_t bt_field_class_variant_get_option_count(const struct bt_field_class *fc)
5cd6d0e5 952{
40f4ba76 953 const struct bt_field_class_variant *var_fc = (const void *) fc;
5cd6d0e5
PP
954
955 BT_ASSERT_PRE_NON_NULL(fc, "Field class");
864cad70 956 BT_ASSERT_PRE_FC_HAS_ID(fc, BT_FIELD_CLASS_TYPE_VARIANT, "Field class");
5cd6d0e5
PP
957 return (uint64_t) var_fc->common.named_fcs->len;
958}
959
40f4ba76
PP
960void bt_field_class_variant_borrow_option_by_index_const(
961 const struct bt_field_class *fc, uint64_t index,
962 const char **name, const struct bt_field_class **out_fc)
5cd6d0e5
PP
963{
964 BT_ASSERT_PRE_NON_NULL(fc, "Field class");
864cad70 965 BT_ASSERT_PRE_FC_HAS_ID(fc, BT_FIELD_CLASS_TYPE_VARIANT, "Field class");
40f4ba76
PP
966 borrow_named_field_class_from_container_field_class_at_index_const(
967 (void *) fc, index, name, out_fc);
5cd6d0e5
PP
968}
969
40f4ba76
PP
970const struct bt_field_path *
971bt_field_class_variant_borrow_selector_field_path_const(
972 const struct bt_field_class *fc)
e5be10ef 973{
40f4ba76 974 const struct bt_field_class_variant *var_fc = (const void *) fc;
5cd6d0e5
PP
975
976 BT_ASSERT_PRE_NON_NULL(fc, "Field class");
864cad70 977 BT_ASSERT_PRE_FC_HAS_ID(fc, BT_FIELD_CLASS_TYPE_VARIANT,
5cd6d0e5
PP
978 "Field class");
979 return var_fc->selector_field_path;
980}
981
982static
983void init_array_field_class(struct bt_field_class_array *fc,
864cad70 984 enum bt_field_class_type type, bt_object_release_func release_func,
5cd6d0e5
PP
985 struct bt_field_class *element_fc)
986{
987 BT_ASSERT(element_fc);
864cad70 988 init_field_class((void *) fc, type, release_func);
398454ed
PP
989 fc->element_fc = element_fc;
990 bt_object_get_no_null_check(element_fc);
5cd6d0e5
PP
991 bt_field_class_freeze(element_fc);
992}
993
994static
995void finalize_array_field_class(struct bt_field_class_array *array_fc)
996{
997 BT_ASSERT(array_fc);
e5be10ef 998 BT_LOGD_STR("Putting element field class.");
238b7404 999 BT_OBJECT_PUT_REF_AND_RESET(array_fc->element_fc);
5cd6d0e5
PP
1000}
1001
1002static
1003void destroy_static_array_field_class(struct bt_object *obj)
1004{
1005 BT_ASSERT(obj);
e5be10ef 1006 BT_LIB_LOGD("Destroying static array field class object: %!+F", obj);
5cd6d0e5
PP
1007 finalize_array_field_class((void *) obj);
1008 g_free(obj);
1009}
1010
40f4ba76 1011struct bt_field_class *
1122a43a
PP
1012bt_field_class_static_array_create(bt_trace_class *trace_class,
1013 struct bt_field_class *element_fc, uint64_t length)
5cd6d0e5
PP
1014{
1015 struct bt_field_class_static_array *array_fc = NULL;
1016
1122a43a 1017 BT_ASSERT_PRE_NON_NULL(trace_class, "Trace class");
e5be10ef
PP
1018 BT_ASSERT_PRE_NON_NULL(element_fc, "Element field class");
1019 BT_LOGD_STR("Creating default static array field class object.");
5cd6d0e5
PP
1020 array_fc = g_new0(struct bt_field_class_static_array, 1);
1021 if (!array_fc) {
e5be10ef 1022 BT_LOGE_STR("Failed to allocate one static array field class.");
5cd6d0e5
PP
1023 goto error;
1024 }
1025
864cad70 1026 init_array_field_class((void *) array_fc, BT_FIELD_CLASS_TYPE_STATIC_ARRAY,
5cd6d0e5
PP
1027 destroy_static_array_field_class, element_fc);
1028 array_fc->length = length;
e5be10ef 1029 BT_LIB_LOGD("Created static array field class object: %!+F", array_fc);
5cd6d0e5
PP
1030 goto end;
1031
1032error:
65300d60 1033 BT_OBJECT_PUT_REF_AND_RESET(array_fc);
5cd6d0e5
PP
1034
1035end:
1036 return (void *) array_fc;
1037}
1038
40f4ba76
PP
1039const struct bt_field_class *
1040bt_field_class_array_borrow_element_field_class_const(
1041 const struct bt_field_class *fc)
5cd6d0e5 1042{
40f4ba76 1043 const struct bt_field_class_array *array_fc = (const void *) fc;
5cd6d0e5
PP
1044
1045 BT_ASSERT_PRE_NON_NULL(fc, "Field class");
1046 BT_ASSERT_PRE_FC_IS_ARRAY(fc, "Field class");
1047 return array_fc->element_fc;
1048}
1049
40f4ba76 1050uint64_t bt_field_class_static_array_get_length(const struct bt_field_class *fc)
e5be10ef 1051{
40f4ba76 1052 const struct bt_field_class_static_array *array_fc = (const void *) fc;
5cd6d0e5
PP
1053
1054 BT_ASSERT_PRE_NON_NULL(fc, "Field class");
864cad70 1055 BT_ASSERT_PRE_FC_HAS_ID(fc, BT_FIELD_CLASS_TYPE_STATIC_ARRAY,
5cd6d0e5
PP
1056 "Field class");
1057 return (uint64_t) array_fc->length;
1058}
1059
1060static
1061void destroy_dynamic_array_field_class(struct bt_object *obj)
1062{
1063 struct bt_field_class_dynamic_array *fc = (void *) obj;
1064
1065 BT_ASSERT(fc);
e5be10ef 1066 BT_LIB_LOGD("Destroying dynamic array field class object: %!+F", fc);
5cd6d0e5
PP
1067 finalize_array_field_class((void *) fc);
1068 BT_LOGD_STR("Putting length field path.");
238b7404
PP
1069 BT_OBJECT_PUT_REF_AND_RESET(fc->length_field_path);
1070 BT_LOGD_STR("Putting length field class.");
1071 BT_OBJECT_PUT_REF_AND_RESET(fc->length_fc);
5cd6d0e5
PP
1072 g_free(fc);
1073}
1074
40f4ba76 1075struct bt_field_class *bt_field_class_dynamic_array_create(
1122a43a 1076 bt_trace_class *trace_class,
40f4ba76 1077 struct bt_field_class *element_fc)
5cd6d0e5
PP
1078{
1079 struct bt_field_class_dynamic_array *array_fc = NULL;
1080
1122a43a 1081 BT_ASSERT_PRE_NON_NULL(trace_class, "Trace class");
e5be10ef
PP
1082 BT_ASSERT_PRE_NON_NULL(element_fc, "Element field class");
1083 BT_LOGD_STR("Creating default dynamic array field class object.");
5cd6d0e5
PP
1084 array_fc = g_new0(struct bt_field_class_dynamic_array, 1);
1085 if (!array_fc) {
e5be10ef 1086 BT_LOGE_STR("Failed to allocate one dynamic array field class.");
5cd6d0e5
PP
1087 goto error;
1088 }
1089
40f4ba76
PP
1090 init_array_field_class((void *) array_fc,
1091 BT_FIELD_CLASS_TYPE_DYNAMIC_ARRAY,
5cd6d0e5 1092 destroy_dynamic_array_field_class, element_fc);
e5be10ef 1093 BT_LIB_LOGD("Created dynamic array field class object: %!+F", array_fc);
5cd6d0e5
PP
1094 goto end;
1095
1096error:
65300d60 1097 BT_OBJECT_PUT_REF_AND_RESET(array_fc);
5cd6d0e5
PP
1098
1099end:
1100 return (void *) array_fc;
1101}
1102
4295b9e0 1103enum bt_field_class_status bt_field_class_dynamic_array_set_length_field_class(
40f4ba76
PP
1104 struct bt_field_class *fc,
1105 struct bt_field_class *length_fc)
5cd6d0e5
PP
1106{
1107 struct bt_field_class_dynamic_array *array_fc = (void *) fc;
1108
e5be10ef
PP
1109 BT_ASSERT_PRE_NON_NULL(fc, "Dynamic array field class");
1110 BT_ASSERT_PRE_NON_NULL(length_fc, "Length field class");
864cad70 1111 BT_ASSERT_PRE_FC_HAS_ID(fc, BT_FIELD_CLASS_TYPE_DYNAMIC_ARRAY,
5cd6d0e5 1112 "Field class");
e5be10ef
PP
1113 BT_ASSERT_PRE_FC_IS_UNSIGNED_INT(length_fc, "Length field class");
1114 BT_ASSERT_PRE_FC_HOT(fc, "Dynamic array field class");
40f4ba76 1115 array_fc->length_fc = length_fc;
398454ed 1116 bt_object_get_no_null_check(length_fc);
5cd6d0e5 1117 bt_field_class_freeze(length_fc);
4295b9e0 1118 return BT_FIELD_CLASS_STATUS_OK;
5cd6d0e5
PP
1119}
1120
40f4ba76
PP
1121const struct bt_field_path *
1122bt_field_class_dynamic_array_borrow_length_field_path_const(
1123 const struct bt_field_class *fc)
5cd6d0e5 1124{
40f4ba76 1125 const struct bt_field_class_dynamic_array *seq_fc = (const void *) fc;
5cd6d0e5
PP
1126
1127 BT_ASSERT_PRE_NON_NULL(fc, "Field class");
864cad70 1128 BT_ASSERT_PRE_FC_HAS_ID(fc, BT_FIELD_CLASS_TYPE_DYNAMIC_ARRAY,
5cd6d0e5
PP
1129 "Field class");
1130 return seq_fc->length_field_path;
1131}
1132
1133static
1134void destroy_string_field_class(struct bt_object *obj)
1135{
1136 BT_ASSERT(obj);
e5be10ef 1137 BT_LIB_LOGD("Destroying string field class object: %!+F", obj);
5cd6d0e5
PP
1138 g_free(obj);
1139}
1140
1122a43a 1141struct bt_field_class *bt_field_class_string_create(bt_trace_class *trace_class)
5cd6d0e5
PP
1142{
1143 struct bt_field_class_string *string_fc = NULL;
1144
1122a43a 1145 BT_ASSERT_PRE_NON_NULL(trace_class, "Trace class");
e5be10ef 1146 BT_LOGD_STR("Creating default string field class object.");
5cd6d0e5
PP
1147 string_fc = g_new0(struct bt_field_class_string, 1);
1148 if (!string_fc) {
e5be10ef 1149 BT_LOGE_STR("Failed to allocate one string field class.");
5cd6d0e5
PP
1150 goto error;
1151 }
1152
864cad70 1153 init_field_class((void *) string_fc, BT_FIELD_CLASS_TYPE_STRING,
5cd6d0e5 1154 destroy_string_field_class);
e5be10ef 1155 BT_LIB_LOGD("Created string field class object: %!+F", string_fc);
5cd6d0e5
PP
1156 goto end;
1157
1158error:
65300d60 1159 BT_OBJECT_PUT_REF_AND_RESET(string_fc);
5cd6d0e5
PP
1160
1161end:
1162 return (void *) string_fc;
1163}
1164
1165BT_HIDDEN
40f4ba76 1166void _bt_field_class_freeze(const struct bt_field_class *fc)
5cd6d0e5
PP
1167{
1168 /*
1169 * Element/member/option field classes are frozen when added to
1170 * their owner.
1171 */
1172 BT_ASSERT(fc);
40f4ba76 1173 ((struct bt_field_class *) fc)->frozen = true;
5cd6d0e5
PP
1174}
1175
1176BT_HIDDEN
862ca4ed 1177void _bt_field_class_make_part_of_trace_class(const struct bt_field_class *c_fc)
5cd6d0e5 1178{
40f4ba76
PP
1179 struct bt_field_class *fc = (void *) c_fc;
1180
5cd6d0e5 1181 BT_ASSERT(fc);
862ca4ed 1182 BT_ASSERT_PRE(!fc->part_of_trace_class,
5cd6d0e5 1183 "Field class is already part of a trace: %!+F", fc);
862ca4ed 1184 fc->part_of_trace_class = true;
5cd6d0e5 1185
864cad70
PP
1186 switch (fc->type) {
1187 case BT_FIELD_CLASS_TYPE_STRUCTURE:
1188 case BT_FIELD_CLASS_TYPE_VARIANT:
5cd6d0e5
PP
1189 {
1190 struct bt_field_class_named_field_class_container *container_fc =
1191 (void *) fc;
1192 uint64_t i;
1193
1194 for (i = 0; i < container_fc->named_fcs->len; i++) {
1195 struct bt_named_field_class *named_fc =
1196 BT_FIELD_CLASS_NAMED_FC_AT_INDEX(
1197 container_fc, i);
1198
862ca4ed 1199 bt_field_class_make_part_of_trace_class(named_fc->fc);
5cd6d0e5
PP
1200 }
1201
1202 break;
1203 }
864cad70
PP
1204 case BT_FIELD_CLASS_TYPE_STATIC_ARRAY:
1205 case BT_FIELD_CLASS_TYPE_DYNAMIC_ARRAY:
5cd6d0e5
PP
1206 {
1207 struct bt_field_class_array *array_fc = (void *) fc;
1208
862ca4ed 1209 bt_field_class_make_part_of_trace_class(array_fc->element_fc);
5cd6d0e5
PP
1210 break;
1211 }
1212 default:
1213 break;
1214 }
1215}
c5b9b441
PP
1216
1217void bt_field_class_get_ref(const struct bt_field_class *field_class)
1218{
1219 bt_object_get_ref(field_class);
1220}
1221
1222void bt_field_class_put_ref(const struct bt_field_class *field_class)
1223{
1224 bt_object_put_ref(field_class);
1225}
This page took 0.082989 seconds and 4 git commands to generate.