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