Fix: lib: pass down API function name to some helpers
[babeltrace.git] / src / lib / trace-ir / field.c
... / ...
CommitLineData
1/*
2 * SPDX-License-Identifier: MIT
3 *
4 * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
5 * Copyright 2013, 2014 Jérémie Galarneau <jeremie.galarneau@efficios.com>
6 */
7
8#define BT_LOG_TAG "LIB/FIELD"
9#include "lib/logging.h"
10
11#include "lib/assert-cond.h"
12#include <babeltrace2/trace-ir/field.h>
13#include "lib/object.h"
14#include "compat/compiler.h"
15#include "compat/fcntl.h"
16#include "common/align.h"
17#include "common/assert.h"
18#include <inttypes.h>
19#include <stdbool.h>
20
21#include "field.h"
22#include "field-class.h"
23#include "lib/func-status.h"
24
25#define BT_ASSERT_PRE_DEV_FIELD_HOT(_field) \
26 BT_ASSERT_PRE_DEV_HOT("field", \
27 (const struct bt_field *) (_field), "Field", ": %!+f", (_field))
28
29static
30void reset_single_field(struct bt_field *field);
31
32static
33void reset_array_field(struct bt_field *field);
34
35static
36void reset_structure_field(struct bt_field *field);
37
38static
39void reset_option_field(struct bt_field *field);
40
41static
42void reset_variant_field(struct bt_field *field);
43
44static
45void set_single_field_is_frozen(struct bt_field *field, bool is_frozen);
46
47static
48void set_array_field_is_frozen(struct bt_field *field, bool is_frozen);
49
50static
51void set_structure_field_is_frozen(struct bt_field *field, bool is_frozen);
52
53static
54void set_option_field_is_frozen(struct bt_field *field, bool is_frozen);
55
56static
57void set_variant_field_is_frozen(struct bt_field *field, bool is_frozen);
58
59static
60bool single_field_is_set(const struct bt_field *field);
61
62static
63bool array_field_is_set(const struct bt_field *field);
64
65static
66bool structure_field_is_set(const struct bt_field *field);
67
68static
69bool option_field_is_set(const struct bt_field *field);
70
71static
72bool variant_field_is_set(const struct bt_field *field);
73
74static
75struct bt_field_methods bool_field_methods = {
76 .set_is_frozen = set_single_field_is_frozen,
77 .is_set = single_field_is_set,
78 .reset = reset_single_field,
79};
80
81static
82struct bt_field_methods bit_array_field_methods = {
83 .set_is_frozen = set_single_field_is_frozen,
84 .is_set = single_field_is_set,
85 .reset = reset_single_field,
86};
87
88static
89struct bt_field_methods integer_field_methods = {
90 .set_is_frozen = set_single_field_is_frozen,
91 .is_set = single_field_is_set,
92 .reset = reset_single_field,
93};
94
95static
96struct bt_field_methods real_field_methods = {
97 .set_is_frozen = set_single_field_is_frozen,
98 .is_set = single_field_is_set,
99 .reset = reset_single_field,
100};
101
102static
103struct bt_field_methods string_field_methods = {
104 .set_is_frozen = set_single_field_is_frozen,
105 .is_set = single_field_is_set,
106 .reset = reset_single_field,
107};
108
109static
110struct bt_field_methods structure_field_methods = {
111 .set_is_frozen = set_structure_field_is_frozen,
112 .is_set = structure_field_is_set,
113 .reset = reset_structure_field,
114};
115
116static
117struct bt_field_methods array_field_methods = {
118 .set_is_frozen = set_array_field_is_frozen,
119 .is_set = array_field_is_set,
120 .reset = reset_array_field,
121};
122
123static
124struct bt_field_methods option_field_methods = {
125 .set_is_frozen = set_option_field_is_frozen,
126 .is_set = option_field_is_set,
127 .reset = reset_option_field,
128};
129
130static
131struct bt_field_methods variant_field_methods = {
132 .set_is_frozen = set_variant_field_is_frozen,
133 .is_set = variant_field_is_set,
134 .reset = reset_variant_field,
135};
136
137static
138struct bt_field *create_bool_field(struct bt_field_class *);
139
140static
141struct bt_field *create_bit_array_field(struct bt_field_class *);
142
143static
144struct bt_field *create_integer_field(struct bt_field_class *);
145
146static
147struct bt_field *create_real_field(struct bt_field_class *);
148
149static
150struct bt_field *create_string_field(struct bt_field_class *);
151
152static
153struct bt_field *create_structure_field(struct bt_field_class *);
154
155static
156struct bt_field *create_static_array_field(struct bt_field_class *);
157
158static
159struct bt_field *create_dynamic_array_field(struct bt_field_class *);
160
161static
162struct bt_field *create_option_field(struct bt_field_class *);
163
164static
165struct bt_field *create_variant_field(struct bt_field_class *);
166
167static
168void destroy_bool_field(struct bt_field *field);
169
170static
171void destroy_bit_array_field(struct bt_field *field);
172
173static
174void destroy_integer_field(struct bt_field *field);
175
176static
177void destroy_real_field(struct bt_field *field);
178
179static
180void destroy_string_field(struct bt_field *field);
181
182static
183void destroy_structure_field(struct bt_field *field);
184
185static
186void destroy_array_field(struct bt_field *field);
187
188static
189void destroy_option_field(struct bt_field *field);
190
191static
192void destroy_variant_field(struct bt_field *field);
193
194struct bt_field_class *bt_field_borrow_class(struct bt_field *field)
195{
196 BT_ASSERT_PRE_DEV_FIELD_NON_NULL(field);
197 return field->class;
198}
199
200const struct bt_field_class *bt_field_borrow_class_const(
201 const struct bt_field *field)
202{
203 BT_ASSERT_PRE_DEV_FIELD_NON_NULL(field);
204 return field->class;
205}
206
207enum bt_field_class_type bt_field_get_class_type(const struct bt_field *field)
208{
209 BT_ASSERT_PRE_DEV_FIELD_NON_NULL(field);
210 return field->class->type;
211}
212
213BT_HIDDEN
214struct bt_field *bt_field_create(struct bt_field_class *fc)
215{
216 struct bt_field *field = NULL;
217
218 BT_ASSERT(fc);
219
220 switch (fc->type) {
221 case BT_FIELD_CLASS_TYPE_BOOL:
222 field = create_bool_field(fc);
223 break;
224 case BT_FIELD_CLASS_TYPE_BIT_ARRAY:
225 field = create_bit_array_field(fc);
226 break;
227 case BT_FIELD_CLASS_TYPE_UNSIGNED_INTEGER:
228 case BT_FIELD_CLASS_TYPE_SIGNED_INTEGER:
229 case BT_FIELD_CLASS_TYPE_UNSIGNED_ENUMERATION:
230 case BT_FIELD_CLASS_TYPE_SIGNED_ENUMERATION:
231 field = create_integer_field(fc);
232 break;
233 case BT_FIELD_CLASS_TYPE_SINGLE_PRECISION_REAL:
234 case BT_FIELD_CLASS_TYPE_DOUBLE_PRECISION_REAL:
235 field = create_real_field(fc);
236 break;
237 case BT_FIELD_CLASS_TYPE_STRING:
238 field = create_string_field(fc);
239 break;
240 case BT_FIELD_CLASS_TYPE_STRUCTURE:
241 field = create_structure_field(fc);
242 break;
243 case BT_FIELD_CLASS_TYPE_STATIC_ARRAY:
244 field = create_static_array_field(fc);
245 break;
246 case BT_FIELD_CLASS_TYPE_DYNAMIC_ARRAY_WITHOUT_LENGTH_FIELD:
247 case BT_FIELD_CLASS_TYPE_DYNAMIC_ARRAY_WITH_LENGTH_FIELD:
248 field = create_dynamic_array_field(fc);
249 break;
250 case BT_FIELD_CLASS_TYPE_OPTION_WITHOUT_SELECTOR_FIELD:
251 case BT_FIELD_CLASS_TYPE_OPTION_WITH_BOOL_SELECTOR_FIELD:
252 case BT_FIELD_CLASS_TYPE_OPTION_WITH_UNSIGNED_INTEGER_SELECTOR_FIELD:
253 case BT_FIELD_CLASS_TYPE_OPTION_WITH_SIGNED_INTEGER_SELECTOR_FIELD:
254 field = create_option_field(fc);
255 break;
256 case BT_FIELD_CLASS_TYPE_VARIANT_WITHOUT_SELECTOR_FIELD:
257 case BT_FIELD_CLASS_TYPE_VARIANT_WITH_UNSIGNED_INTEGER_SELECTOR_FIELD:
258 case BT_FIELD_CLASS_TYPE_VARIANT_WITH_SIGNED_INTEGER_SELECTOR_FIELD:
259 field = create_variant_field(fc);
260 break;
261 default:
262 bt_common_abort();
263 }
264
265 if (!field) {
266 BT_LIB_LOGE_APPEND_CAUSE("Cannot create field object from field class: "
267 "%![fc-]+F", fc);
268 goto end;
269 }
270
271end:
272 return field;
273}
274
275static inline
276void init_field(struct bt_field *field, struct bt_field_class *fc,
277 struct bt_field_methods *methods)
278{
279 BT_ASSERT(field);
280 BT_ASSERT(fc);
281 bt_object_init_unique(&field->base);
282 field->methods = methods;
283 field->class = fc;
284 bt_object_get_ref_no_null_check(fc);
285}
286
287static
288struct bt_field *create_bool_field(struct bt_field_class *fc)
289{
290 struct bt_field_bool *bool_field;
291
292 BT_LIB_LOGD("Creating boolean field object: %![fc-]+F", fc);
293 bool_field = g_new0(struct bt_field_bool, 1);
294 if (!bool_field) {
295 BT_LIB_LOGE_APPEND_CAUSE(
296 "Failed to allocate one boolean field.");
297 goto end;
298 }
299
300 init_field((void *) bool_field, fc, &bool_field_methods);
301 BT_LIB_LOGD("Created boolean field object: %!+f", bool_field);
302
303end:
304 return (void *) bool_field;
305}
306
307static
308struct bt_field *create_bit_array_field(struct bt_field_class *fc)
309{
310 struct bt_field_bit_array *ba_field;
311
312 BT_LIB_LOGD("Creating bit array field object: %![fc-]+F", fc);
313 ba_field = g_new0(struct bt_field_bit_array, 1);
314 if (!ba_field) {
315 BT_LIB_LOGE_APPEND_CAUSE(
316 "Failed to allocate one bit array field.");
317 goto end;
318 }
319
320 init_field((void *) ba_field, fc, &bit_array_field_methods);
321 BT_LIB_LOGD("Created bit array field object: %!+f", ba_field);
322
323end:
324 return (void *) ba_field;
325}
326
327static
328struct bt_field *create_integer_field(struct bt_field_class *fc)
329{
330 struct bt_field_integer *int_field;
331
332 BT_LIB_LOGD("Creating integer field object: %![fc-]+F", fc);
333 int_field = g_new0(struct bt_field_integer, 1);
334 if (!int_field) {
335 BT_LIB_LOGE_APPEND_CAUSE(
336 "Failed to allocate one integer field.");
337 goto end;
338 }
339
340 init_field((void *) int_field, fc, &integer_field_methods);
341 BT_LIB_LOGD("Created integer field object: %!+f", int_field);
342
343end:
344 return (void *) int_field;
345}
346
347static
348struct bt_field *create_real_field(struct bt_field_class *fc)
349{
350 struct bt_field_real *real_field;
351
352 BT_LIB_LOGD("Creating real field object: %![fc-]+F", fc);
353 real_field = g_new0(struct bt_field_real, 1);
354 if (!real_field) {
355 BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate one real field.");
356 goto end;
357 }
358
359 init_field((void *) real_field, fc, &real_field_methods);
360 BT_LIB_LOGD("Created real field object: %!+f", real_field);
361
362end:
363 return (void *) real_field;
364}
365
366static
367struct bt_field *create_string_field(struct bt_field_class *fc)
368{
369 struct bt_field_string *string_field;
370
371 BT_LIB_LOGD("Creating string field object: %![fc-]+F", fc);
372 string_field = g_new0(struct bt_field_string, 1);
373 if (!string_field) {
374 BT_LIB_LOGE_APPEND_CAUSE(
375 "Failed to allocate one string field.");
376 goto end;
377 }
378
379 init_field((void *) string_field, fc, &string_field_methods);
380 string_field->buf = g_array_sized_new(FALSE, FALSE,
381 sizeof(char), 1);
382 if (!string_field->buf) {
383 BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate a GArray.");
384 bt_field_destroy((void *) string_field);
385 string_field = NULL;
386 goto end;
387 }
388
389 g_array_index(string_field->buf, char, 0) = '\0';
390 BT_LIB_LOGD("Created string field object: %!+f", string_field);
391
392end:
393 return (void *) string_field;
394}
395
396static inline
397int create_fields_from_named_field_classes(
398 struct bt_field_class_named_field_class_container *fc,
399 GPtrArray **fields)
400{
401 int ret = 0;
402 uint64_t i;
403
404 *fields = g_ptr_array_new_with_free_func(
405 (GDestroyNotify) bt_field_destroy);
406 if (!*fields) {
407 BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate a GPtrArray.");
408 ret = -1;
409 goto end;
410 }
411
412 g_ptr_array_set_size(*fields, fc->named_fcs->len);
413
414 for (i = 0; i < fc->named_fcs->len; i++) {
415 struct bt_field *field;
416 struct bt_named_field_class *named_fc = fc->named_fcs->pdata[i];
417
418 field = bt_field_create(named_fc->fc);
419 if (!field) {
420 BT_LIB_LOGE_APPEND_CAUSE(
421 "Failed to create structure member or variant option field: "
422 "name=\"%s\", %![fc-]+F",
423 named_fc->name->str, named_fc->fc);
424 ret = -1;
425 goto end;
426 }
427
428 g_ptr_array_index(*fields, i) = field;
429 }
430
431end:
432 return ret;
433}
434
435static
436struct bt_field *create_structure_field(struct bt_field_class *fc)
437{
438 struct bt_field_structure *struct_field;
439
440 BT_LIB_LOGD("Creating structure field object: %![fc-]+F", fc);
441 struct_field = g_new0(struct bt_field_structure, 1);
442 if (!struct_field) {
443 BT_LIB_LOGE_APPEND_CAUSE(
444 "Failed to allocate one structure field.");
445 goto end;
446 }
447
448 init_field((void *) struct_field, fc, &structure_field_methods);
449
450 if (create_fields_from_named_field_classes((void *) fc,
451 &struct_field->fields)) {
452 BT_LIB_LOGE_APPEND_CAUSE(
453 "Cannot create structure member fields: %![fc-]+F", fc);
454 bt_field_destroy((void *) struct_field);
455 struct_field = NULL;
456 goto end;
457 }
458
459 BT_LIB_LOGD("Created structure field object: %!+f", struct_field);
460
461end:
462 return (void *) struct_field;
463}
464
465static
466struct bt_field *create_option_field(struct bt_field_class *fc)
467{
468 struct bt_field_option *opt_field;
469 struct bt_field_class_option *opt_fc = (void *) fc;
470
471 BT_LIB_LOGD("Creating option field object: %![fc-]+F", fc);
472 opt_field = g_new0(struct bt_field_option, 1);
473 if (!opt_field) {
474 BT_LIB_LOGE_APPEND_CAUSE(
475 "Failed to allocate one option field.");
476 goto end;
477 }
478
479 init_field((void *) opt_field, fc, &option_field_methods);
480 opt_field->content_field = bt_field_create(opt_fc->content_fc);
481 if (!opt_field->content_field) {
482 BT_LIB_LOGE_APPEND_CAUSE(
483 "Failed to create option field's content field: "
484 "%![opt-fc-]+F, %![content-fc-]+F",
485 opt_fc, opt_fc->content_fc);
486 bt_field_destroy((void *) opt_field);
487 opt_field = NULL;
488 goto end;
489 }
490
491 BT_LIB_LOGD("Created option field object: %!+f", opt_field);
492
493end:
494 return (void *) opt_field;
495}
496
497static
498struct bt_field *create_variant_field(struct bt_field_class *fc)
499{
500 struct bt_field_variant *var_field;
501
502 BT_LIB_LOGD("Creating variant field object: %![fc-]+F", fc);
503 var_field = g_new0(struct bt_field_variant, 1);
504 if (!var_field) {
505 BT_LIB_LOGE_APPEND_CAUSE(
506 "Failed to allocate one variant field.");
507 goto end;
508 }
509
510 init_field((void *) var_field, fc, &variant_field_methods);
511
512 if (create_fields_from_named_field_classes((void *) fc,
513 &var_field->fields)) {
514 BT_LIB_LOGE_APPEND_CAUSE("Cannot create variant member fields: "
515 "%![fc-]+F", fc);
516 bt_field_destroy((void *) var_field);
517 var_field = NULL;
518 goto end;
519 }
520
521 BT_LIB_LOGD("Created variant field object: %!+f", var_field);
522
523end:
524 return (void *) var_field;
525}
526
527static inline
528int init_array_field_fields(struct bt_field_array *array_field)
529{
530 int ret = 0;
531 uint64_t i;
532 struct bt_field_class_array *array_fc;
533
534 BT_ASSERT(array_field);
535 array_fc = (void *) array_field->common.class;
536 array_field->fields = g_ptr_array_sized_new(array_field->length);
537 if (!array_field->fields) {
538 BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate a GPtrArray.");
539 ret = -1;
540 goto end;
541 }
542
543 g_ptr_array_set_free_func(array_field->fields,
544 (GDestroyNotify) bt_field_destroy);
545 g_ptr_array_set_size(array_field->fields, array_field->length);
546
547 for (i = 0; i < array_field->length; i++) {
548 array_field->fields->pdata[i] = bt_field_create(
549 array_fc->element_fc);
550 if (!array_field->fields->pdata[i]) {
551 BT_LIB_LOGE_APPEND_CAUSE(
552 "Cannot create array field's element field: "
553 "index=%" PRIu64 ", %![fc-]+F", i, array_fc);
554 ret = -1;
555 goto end;
556 }
557 }
558
559end:
560 return ret;
561}
562
563static
564struct bt_field *create_static_array_field(struct bt_field_class *fc)
565{
566 struct bt_field_class_array_static *array_fc = (void *) fc;
567 struct bt_field_array *array_field;
568
569 BT_LIB_LOGD("Creating static array field object: %![fc-]+F", fc);
570 array_field = g_new0(struct bt_field_array, 1);
571 if (!array_field) {
572 BT_LIB_LOGE_APPEND_CAUSE(
573 "Failed to allocate one static array field.");
574 goto end;
575 }
576
577 init_field((void *) array_field, fc, &array_field_methods);
578 array_field->length = array_fc->length;
579
580 if (init_array_field_fields(array_field)) {
581 BT_LIB_LOGE_APPEND_CAUSE("Cannot create static array fields: "
582 "%![fc-]+F", fc);
583 bt_field_destroy((void *) array_field);
584 array_field = NULL;
585 goto end;
586 }
587
588 BT_LIB_LOGD("Created static array field object: %!+f", array_field);
589
590end:
591 return (void *) array_field;
592}
593
594static
595struct bt_field *create_dynamic_array_field(struct bt_field_class *fc)
596{
597 struct bt_field_array *array_field;
598
599 BT_LIB_LOGD("Creating dynamic array field object: %![fc-]+F", fc);
600 array_field = g_new0(struct bt_field_array, 1);
601 if (!array_field) {
602 BT_LIB_LOGE_APPEND_CAUSE(
603 "Failed to allocate one dynamic array field.");
604 goto end;
605 }
606
607 init_field((void *) array_field, fc, &array_field_methods);
608
609 if (init_array_field_fields(array_field)) {
610 BT_LIB_LOGE_APPEND_CAUSE("Cannot create dynamic array fields: "
611 "%![fc-]+F", fc);
612 bt_field_destroy((void *) array_field);
613 array_field = NULL;
614 goto end;
615 }
616
617 BT_LIB_LOGD("Created dynamic array field object: %!+f", array_field);
618
619end:
620 return (void *) array_field;
621}
622
623bt_bool bt_field_bool_get_value(const struct bt_field *field)
624{
625 const struct bt_field_bool *bool_field = (const void *) field;
626
627 BT_ASSERT_PRE_DEV_FIELD_NON_NULL(field);
628 BT_ASSERT_PRE_DEV_FIELD_IS_SET("field", field);
629 BT_ASSERT_PRE_DEV_FIELD_HAS_CLASS_TYPE("field", field,
630 "boolean-field", BT_FIELD_CLASS_TYPE_BOOL, "Field");
631 return (bt_bool) bool_field->value;
632}
633
634void bt_field_bool_set_value(struct bt_field *field, bt_bool value)
635{
636 struct bt_field_bool *bool_field = (void *) field;
637
638 BT_ASSERT_PRE_DEV_FIELD_NON_NULL(field);
639 BT_ASSERT_PRE_DEV_FIELD_HAS_CLASS_TYPE("field", field,
640 "boolean-field", BT_FIELD_CLASS_TYPE_BOOL, "Field");
641 BT_ASSERT_PRE_DEV_FIELD_HOT(field);
642 bool_field->value = (bool) value;
643 bt_field_set_single(field, true);
644}
645
646uint64_t bt_field_bit_array_get_value_as_integer(const struct bt_field *field)
647{
648 const struct bt_field_bit_array *ba_field = (const void *) field;
649
650 BT_ASSERT_PRE_DEV_FIELD_NON_NULL(field);
651 BT_ASSERT_PRE_DEV_FIELD_IS_SET("field", field);
652 BT_ASSERT_PRE_DEV_FIELD_HAS_CLASS_TYPE("field", field,
653 "bit-array-field", BT_FIELD_CLASS_TYPE_BIT_ARRAY, "Field");
654 return ba_field->value_as_int;
655}
656
657void bt_field_bit_array_set_value_as_integer(struct bt_field *field,
658 uint64_t value)
659{
660 struct bt_field_bit_array *ba_field = (void *) field;
661 struct bt_field_class_bit_array *ba_fc;
662
663 BT_ASSERT_PRE_DEV_FIELD_NON_NULL(field);
664 BT_ASSERT_PRE_DEV_FIELD_HAS_CLASS_TYPE("field", field,
665 "bit-array-field", BT_FIELD_CLASS_TYPE_BIT_ARRAY, "Field");
666 BT_ASSERT_PRE_DEV_FIELD_HOT(field);
667 ba_fc = (void *) field->class;
668 ba_field->value_as_int = value;
669
670 if (ba_fc->length < 64) {
671 /* Apply mask */
672 ba_field->value_as_int &= ((UINT64_C(1) << ba_fc->length) - 1);
673 }
674
675 bt_field_set_single(field, true);
676}
677
678int64_t bt_field_integer_signed_get_value(const struct bt_field *field)
679{
680 const struct bt_field_integer *int_field = (const void *) field;
681
682 BT_ASSERT_PRE_DEV_FIELD_NON_NULL(field);
683 BT_ASSERT_PRE_DEV_FIELD_IS_SET("field", field);
684 BT_ASSERT_PRE_DEV_FIELD_IS_SIGNED_INT("field", field, "Field");
685 return int_field->value.i;
686}
687
688void bt_field_integer_signed_set_value(struct bt_field *field, int64_t value)
689{
690 struct bt_field_integer *int_field = (void *) field;
691
692 BT_ASSERT_PRE_DEV_FIELD_NON_NULL(field);
693 BT_ASSERT_PRE_DEV_FIELD_IS_SIGNED_INT("field", field, "Field");
694 BT_ASSERT_PRE_DEV_FIELD_HOT(field);
695 BT_ASSERT_PRE_DEV("valid-value-for-field-class-field-value-range",
696 bt_util_value_is_in_range_signed(
697 ((struct bt_field_class_integer *) field->class)->range,
698 value),
699 "Value is out of bounds: value=%" PRId64 ", %![field-]+f, "
700 "%![fc-]+F", value, field, field->class);
701 int_field->value.i = value;
702 bt_field_set_single(field, true);
703}
704
705uint64_t bt_field_integer_unsigned_get_value(const struct bt_field *field)
706{
707 const struct bt_field_integer *int_field = (const void *) field;
708
709 BT_ASSERT_PRE_DEV_FIELD_NON_NULL(field);
710 BT_ASSERT_PRE_DEV_FIELD_IS_SET("field", field);
711 BT_ASSERT_PRE_DEV_FIELD_IS_UNSIGNED_INT("field", field, "Field");
712 return int_field->value.u;
713}
714
715void bt_field_integer_unsigned_set_value(struct bt_field *field, uint64_t value)
716{
717 struct bt_field_integer *int_field = (void *) field;
718
719 BT_ASSERT_PRE_DEV_FIELD_NON_NULL(field);
720 BT_ASSERT_PRE_DEV_FIELD_IS_UNSIGNED_INT("field", field, "Field");
721 BT_ASSERT_PRE_DEV_FIELD_HOT(field);
722 BT_ASSERT_PRE_DEV("valid-value-for-field-class-field-value-range",
723 bt_util_value_is_in_range_unsigned(
724 ((struct bt_field_class_integer *) field->class)->range,
725 value),
726 "Value is out of bounds: value=%" PRIu64 ", %![field-]+f, "
727 "%![fc-]+F", value, field, field->class);
728 int_field->value.u = value;
729 bt_field_set_single(field, true);
730}
731
732float bt_field_real_single_precision_get_value(const struct bt_field *field)
733{
734 const struct bt_field_real *real_field = (const void *) field;
735
736 BT_ASSERT_PRE_DEV_FIELD_NON_NULL(field);
737 BT_ASSERT_PRE_DEV_FIELD_IS_SET("field", field);
738 BT_ASSERT_PRE_DEV_FIELD_HAS_CLASS_TYPE("field", field,
739 "single-precision-real-field",
740 BT_FIELD_CLASS_TYPE_SINGLE_PRECISION_REAL, "Field");
741 return (float) real_field->value;
742}
743
744double bt_field_real_double_precision_get_value(const struct bt_field *field)
745{
746 const struct bt_field_real *real_field = (const void *) field;
747
748 BT_ASSERT_PRE_DEV_FIELD_NON_NULL(field);
749 BT_ASSERT_PRE_DEV_FIELD_IS_SET("field", field);
750 BT_ASSERT_PRE_DEV_FIELD_HAS_CLASS_TYPE("field", field,
751 "double-precision-real-field",
752 BT_FIELD_CLASS_TYPE_DOUBLE_PRECISION_REAL, "Field");
753 return real_field->value;
754}
755
756void bt_field_real_single_precision_set_value(struct bt_field *field,
757 float value)
758{
759 struct bt_field_real *real_field = (void *) field;
760
761 BT_ASSERT_PRE_DEV_FIELD_NON_NULL(field);
762 BT_ASSERT_PRE_DEV_FIELD_HAS_CLASS_TYPE("field", field,
763 "single-precision-real-field",
764 BT_FIELD_CLASS_TYPE_SINGLE_PRECISION_REAL, "Field");
765 BT_ASSERT_PRE_DEV_FIELD_HOT(field);
766
767 real_field->value = (double) value;
768 bt_field_set_single(field, true);
769}
770
771void bt_field_real_double_precision_set_value(struct bt_field *field,
772 double value)
773{
774 struct bt_field_real *real_field = (void *) field;
775
776 BT_ASSERT_PRE_DEV_FIELD_NON_NULL(field);
777 BT_ASSERT_PRE_DEV_FIELD_HAS_CLASS_TYPE("field", field,
778 "double-precision-real-field",
779 BT_FIELD_CLASS_TYPE_DOUBLE_PRECISION_REAL, "Field");
780 BT_ASSERT_PRE_DEV_FIELD_HOT(field);
781
782 real_field->value = value;
783 bt_field_set_single(field, true);
784}
785
786enum bt_field_enumeration_get_mapping_labels_status
787bt_field_enumeration_unsigned_get_mapping_labels(
788 const struct bt_field *field,
789 bt_field_class_enumeration_mapping_label_array *label_array,
790 uint64_t *count)
791{
792 const struct bt_field_integer *int_field = (const void *) field;
793
794 BT_ASSERT_PRE_DEV_NO_ERROR();
795 BT_ASSERT_PRE_DEV_FIELD_NON_NULL(field);
796 BT_ASSERT_PRE_DEV_NON_NULL("label-array-output", label_array,
797 "Label array (output)");
798 BT_ASSERT_PRE_DEV_NON_NULL("count-output", count, "Count (output)");
799 BT_ASSERT_PRE_DEV_FIELD_IS_SET("field", field);
800 BT_ASSERT_PRE_DEV_FIELD_HAS_CLASS_TYPE("field", field,
801 "unsigned-enumeration-field",
802 BT_FIELD_CLASS_TYPE_UNSIGNED_ENUMERATION, "Field");
803 return (int)
804 bt_field_class_enumeration_unsigned_get_mapping_labels_for_value(
805 field->class, int_field->value.u, label_array, count);
806}
807
808enum bt_field_enumeration_get_mapping_labels_status
809bt_field_enumeration_signed_get_mapping_labels(
810 const struct bt_field *field,
811 bt_field_class_enumeration_mapping_label_array *label_array,
812 uint64_t *count)
813{
814 const struct bt_field_integer *int_field = (const void *) field;
815
816 BT_ASSERT_PRE_DEV_NO_ERROR();
817 BT_ASSERT_PRE_DEV_FIELD_NON_NULL(field);
818 BT_ASSERT_PRE_DEV_NON_NULL("label-array-output", label_array,
819 "Label array (output)");
820 BT_ASSERT_PRE_DEV_NON_NULL("count-output", count, "Count (output)");
821 BT_ASSERT_PRE_DEV_FIELD_IS_SET("field", field);
822 BT_ASSERT_PRE_DEV_FIELD_HAS_CLASS_TYPE("field", field,
823 "signed-enumeration-field",
824 BT_FIELD_CLASS_TYPE_SIGNED_ENUMERATION, "Field");
825 return (int)
826 bt_field_class_enumeration_signed_get_mapping_labels_for_value(
827 field->class, int_field->value.i, label_array, count);
828}
829
830const char *bt_field_string_get_value(const struct bt_field *field)
831{
832 const struct bt_field_string *string_field = (const void *) field;
833
834 BT_ASSERT_PRE_DEV_FIELD_NON_NULL(field);
835 BT_ASSERT_PRE_DEV_FIELD_IS_SET("field", field);
836 BT_ASSERT_PRE_DEV_FIELD_HAS_CLASS_TYPE("field", field, "string-field",
837 BT_FIELD_CLASS_TYPE_STRING, "Field");
838 return (const char *) string_field->buf->data;
839}
840
841uint64_t bt_field_string_get_length(const struct bt_field *field)
842{
843 const struct bt_field_string *string_field = (const void *) field;
844
845 BT_ASSERT_PRE_DEV_FIELD_NON_NULL(field);
846 BT_ASSERT_PRE_DEV_FIELD_IS_SET("field", field);
847 BT_ASSERT_PRE_DEV_FIELD_HAS_CLASS_TYPE("field", field, "string-field",
848 BT_FIELD_CLASS_TYPE_STRING, "Field");
849 return string_field->length;
850}
851
852static inline
853void clear_string_field(struct bt_field *field)
854{
855 struct bt_field_string *string_field = (void *) field;
856
857 BT_ASSERT_DBG(field);
858 string_field->length = 0;
859 g_array_index(string_field->buf, char, 0) = '\0';
860 bt_field_set_single(field, true);
861}
862
863enum bt_field_string_set_value_status bt_field_string_set_value(
864 struct bt_field *field, const char *value)
865{
866 BT_ASSERT_PRE_DEV_NO_ERROR();
867 BT_ASSERT_PRE_DEV_FIELD_NON_NULL(field);
868 BT_ASSERT_PRE_DEV_NON_NULL("value", value, "Value");
869 BT_ASSERT_PRE_DEV_FIELD_HOT(field);
870 BT_ASSERT_PRE_DEV_FIELD_HAS_CLASS_TYPE("field", field, "string-field",
871 BT_FIELD_CLASS_TYPE_STRING, "Field");
872 clear_string_field(field);
873 return (int) bt_field_string_append_with_length(field, value,
874 (uint64_t) strlen(value));
875}
876
877#define BT_ASSERT_PRE_DEV_FOR_APPEND_TO_STRING_FIELD_WITH_LENGTH(_field, _value, _length) \
878 do { \
879 BT_ASSERT_PRE_DEV_NO_ERROR(); \
880 BT_ASSERT_PRE_DEV_FIELD_NON_NULL(_field); \
881 BT_ASSERT_PRE_DEV_NON_NULL("value", (_value), "Value"); \
882 BT_ASSERT_PRE_DEV_FIELD_HOT(_field); \
883 BT_ASSERT_PRE_DEV_FIELD_HAS_CLASS_TYPE("field", \
884 (_field), "string-field", \
885 BT_FIELD_CLASS_TYPE_STRING, "Field"); \
886 BT_ASSERT_PRE_DEV("value-has-no-null-byte", \
887 !memchr((_value), '\0', (_length)), \
888 "String value to append contains a null character: " \
889 "partial-value=\"%.32s\", length=%" PRIu64, \
890 (_value), (_length)); \
891 } while (0)
892
893static
894enum bt_field_string_append_status append_to_string_field_with_length(
895 struct bt_field *field, const char *value, uint64_t length)
896{
897 struct bt_field_string *string_field = (void *) field;
898 char *data;
899 uint64_t new_length;
900
901 BT_ASSERT_DBG(field);
902 BT_ASSERT_DBG(value);
903 new_length = length + string_field->length;
904
905 if (G_UNLIKELY(new_length + 1 > string_field->buf->len)) {
906 g_array_set_size(string_field->buf, new_length + 1);
907 }
908
909 data = string_field->buf->data;
910 memcpy(data + string_field->length, value, length);
911 ((char *) string_field->buf->data)[new_length] = '\0';
912 string_field->length = new_length;
913 bt_field_set_single(field, true);
914 return BT_FUNC_STATUS_OK;
915}
916
917enum bt_field_string_append_status bt_field_string_append_with_length(
918 struct bt_field *field, const char *value, uint64_t length)
919{
920 BT_ASSERT_PRE_DEV_FOR_APPEND_TO_STRING_FIELD_WITH_LENGTH(field, value,
921 length);
922 return append_to_string_field_with_length(field, value, length);
923}
924
925enum bt_field_string_append_status bt_field_string_append(
926 struct bt_field *field, const char *value)
927{
928 uint64_t length = (uint64_t) strlen(value);
929
930 BT_ASSERT_PRE_DEV_FOR_APPEND_TO_STRING_FIELD_WITH_LENGTH(field, value,
931 length);
932 return append_to_string_field_with_length(field, value, length);
933}
934
935void bt_field_string_clear(struct bt_field *field)
936{
937 BT_ASSERT_PRE_DEV_FIELD_NON_NULL(field);
938 BT_ASSERT_PRE_DEV_FIELD_HOT(field);
939 BT_ASSERT_PRE_DEV_FIELD_HAS_CLASS_TYPE("field", field, "string-field",
940 BT_FIELD_CLASS_TYPE_STRING, "Field");
941 clear_string_field(field);
942}
943
944uint64_t bt_field_array_get_length(const struct bt_field *field)
945{
946 const struct bt_field_array *array_field = (const void *) field;
947
948 BT_ASSERT_PRE_DEV_FIELD_NON_NULL(field);
949 BT_ASSERT_PRE_DEV_FIELD_IS_ARRAY("field", field, "Field");
950 return array_field->length;
951}
952
953enum bt_field_array_dynamic_set_length_status bt_field_array_dynamic_set_length(
954 struct bt_field *field, uint64_t length)
955{
956 int ret = BT_FUNC_STATUS_OK;
957 struct bt_field_array *array_field = (void *) field;
958
959 BT_ASSERT_PRE_DEV_NO_ERROR();
960 BT_ASSERT_PRE_DEV_FIELD_NON_NULL(field);
961 BT_ASSERT_PRE_DEV_FIELD_IS_DYNAMIC_ARRAY("field", field, "Field");
962 BT_ASSERT_PRE_DEV_FIELD_HOT(field);
963
964 if (G_UNLIKELY(length > array_field->fields->len)) {
965 /* Make more room */
966 struct bt_field_class_array *array_fc;
967 uint64_t cur_len = array_field->fields->len;
968 uint64_t i;
969
970 g_ptr_array_set_size(array_field->fields, length);
971 array_fc = (void *) field->class;
972
973 for (i = cur_len; i < array_field->fields->len; i++) {
974 struct bt_field *elem_field = bt_field_create(
975 array_fc->element_fc);
976
977 if (!elem_field) {
978 BT_LIB_LOGE_APPEND_CAUSE(
979 "Cannot create element field for "
980 "dynamic array field: "
981 "index=%" PRIu64 ", "
982 "%![array-field-]+f", i, field);
983 ret = BT_FUNC_STATUS_MEMORY_ERROR;
984 goto end;
985 }
986
987 BT_ASSERT_DBG(!array_field->fields->pdata[i]);
988 array_field->fields->pdata[i] = elem_field;
989 }
990 }
991
992 array_field->length = length;
993
994end:
995 return ret;
996}
997
998static inline
999struct bt_field *borrow_array_field_element_field_by_index(
1000 struct bt_field *field, uint64_t index, const char *api_func)
1001{
1002 struct bt_field_array *array_field = (void *) field;
1003
1004 BT_ASSERT_PRE_DEV_FIELD_NON_NULL_FROM_FUNC(api_func, field);
1005 BT_ASSERT_PRE_DEV_FIELD_IS_ARRAY_FROM_FUNC(api_func, "field", field,
1006 "Field");
1007 BT_ASSERT_PRE_DEV_VALID_INDEX_FROM_FUNC(api_func, index,
1008 array_field->length);
1009 return array_field->fields->pdata[index];
1010}
1011
1012struct bt_field *bt_field_array_borrow_element_field_by_index(
1013 struct bt_field *field, uint64_t index)
1014{
1015 return borrow_array_field_element_field_by_index(field, index,
1016 __func__);
1017}
1018
1019const struct bt_field *
1020bt_field_array_borrow_element_field_by_index_const(
1021 const struct bt_field *field, uint64_t index)
1022{
1023 return borrow_array_field_element_field_by_index((void *) field, index,
1024 __func__);
1025}
1026
1027static inline
1028struct bt_field *borrow_structure_field_member_field_by_index(
1029 struct bt_field *field, uint64_t index, const char *api_func)
1030{
1031 struct bt_field_structure *struct_field = (void *) field;
1032
1033 BT_ASSERT_PRE_DEV_FIELD_NON_NULL_FROM_FUNC(api_func, field);
1034 BT_ASSERT_PRE_DEV_FIELD_HAS_CLASS_TYPE_FROM_FUNC(api_func, "field",
1035 field, "structure-field", BT_FIELD_CLASS_TYPE_STRUCTURE,
1036 "Field");
1037 BT_ASSERT_PRE_DEV_VALID_INDEX_FROM_FUNC(api_func, index,
1038 struct_field->fields->len);
1039 return struct_field->fields->pdata[index];
1040}
1041
1042struct bt_field *bt_field_structure_borrow_member_field_by_index(
1043 struct bt_field *field, uint64_t index)
1044{
1045 return borrow_structure_field_member_field_by_index(field,
1046 index, __func__);
1047}
1048
1049const struct bt_field *
1050bt_field_structure_borrow_member_field_by_index_const(
1051 const struct bt_field *field, uint64_t index)
1052{
1053 return borrow_structure_field_member_field_by_index(
1054 (void *) field, index, __func__);
1055}
1056
1057static inline
1058struct bt_field *borrow_structure_field_member_field_by_name(
1059 struct bt_field *field, const char *name, const char *api_func)
1060{
1061 struct bt_field *ret_field = NULL;
1062 struct bt_field_class_structure *struct_fc;
1063 struct bt_field_structure *struct_field = (void *) field;
1064 gpointer orig_key;
1065 gpointer index;
1066
1067 BT_ASSERT_PRE_DEV_FIELD_NON_NULL_FROM_FUNC(api_func, field);
1068 BT_ASSERT_PRE_DEV_NON_NULL_FROM_FUNC(api_func, "member-name", name,
1069 "Member name");
1070 BT_ASSERT_PRE_DEV_FIELD_HAS_CLASS_TYPE_FROM_FUNC(api_func, "field",
1071 field, "structure-field", BT_FIELD_CLASS_TYPE_STRUCTURE,
1072 "Field");
1073 struct_fc = (void *) field->class;
1074
1075 if (!g_hash_table_lookup_extended(struct_fc->common.name_to_index, name,
1076 &orig_key, &index)) {
1077 goto end;
1078 }
1079
1080 ret_field = struct_field->fields->pdata[GPOINTER_TO_UINT(index)];
1081 BT_ASSERT_DBG(ret_field);
1082
1083end:
1084 return ret_field;
1085}
1086
1087struct bt_field *bt_field_structure_borrow_member_field_by_name(
1088 struct bt_field *field, const char *name)
1089{
1090 return borrow_structure_field_member_field_by_name(field, name,
1091 __func__);
1092}
1093
1094const struct bt_field *bt_field_structure_borrow_member_field_by_name_const(
1095 const struct bt_field *field, const char *name)
1096{
1097 return borrow_structure_field_member_field_by_name(
1098 (void *) field, name, __func__);
1099}
1100
1101void bt_field_option_set_has_field(struct bt_field *field, bt_bool has_field)
1102{
1103 struct bt_field_option *opt_field = (void *) field;
1104
1105 BT_ASSERT_PRE_DEV_FIELD_NON_NULL(field);
1106 BT_ASSERT_PRE_DEV_FIELD_IS_OPTION("field", field, "Field");
1107 BT_ASSERT_PRE_DEV_FIELD_HOT(field);
1108
1109 if (has_field) {
1110 opt_field->selected_field = opt_field->content_field;
1111 } else {
1112 opt_field->selected_field = NULL;
1113 }
1114}
1115
1116struct bt_field *bt_field_option_borrow_field(struct bt_field *field)
1117{
1118 struct bt_field_option *opt_field = (void *) field;
1119
1120 BT_ASSERT_PRE_DEV_FIELD_NON_NULL(field);
1121 BT_ASSERT_PRE_DEV_FIELD_IS_OPTION("field", field, "Field");
1122 return opt_field->selected_field;
1123}
1124
1125const struct bt_field *bt_field_option_borrow_field_const(
1126 const struct bt_field *field)
1127{
1128 return (const void *) bt_field_option_borrow_field((void *) field);
1129}
1130
1131#define BT_ASSERT_PRE_DEV_FOR_BORROW_VAR_FIELD_SEL_OPT_FIELD(_field) \
1132 do { \
1133 struct bt_field_variant *_var_field = (void *) field; \
1134 BT_ASSERT_PRE_DEV_FIELD_NON_NULL(_field); \
1135 BT_ASSERT_PRE_DEV_FIELD_IS_VARIANT("field", (_field), \
1136 "Field"); \
1137 BT_ASSERT_PRE_DEV("has-selected-field", \
1138 _var_field->selected_field, \
1139 "Variant field has no selected field: %!+f", \
1140 field); \
1141 } while (0)
1142
1143static inline
1144struct bt_field *borrow_variant_field_selected_option_field(
1145 struct bt_field *field)
1146{
1147 struct bt_field_variant *var_field = (void *) field;
1148
1149 BT_ASSERT_DBG(field);
1150 return var_field->selected_field;
1151}
1152
1153struct bt_field *bt_field_variant_borrow_selected_option_field(
1154 struct bt_field *field)
1155{
1156 BT_ASSERT_PRE_DEV_FOR_BORROW_VAR_FIELD_SEL_OPT_FIELD(field);
1157 return borrow_variant_field_selected_option_field(field);
1158}
1159
1160const struct bt_field *bt_field_variant_borrow_selected_option_field_const(
1161 const struct bt_field *field)
1162{
1163 BT_ASSERT_PRE_DEV_FOR_BORROW_VAR_FIELD_SEL_OPT_FIELD(field);
1164 return borrow_variant_field_selected_option_field((void *) field);
1165}
1166
1167#define BT_ASSERT_PRE_DEV_FOR_BORROW_VAR_FIELD_SEL_CLASS_OPT(_field) \
1168 do { \
1169 struct bt_field_variant *_var_field = (void *) field; \
1170 BT_ASSERT_PRE_DEV("has-selected-field", \
1171 _var_field->selected_field, \
1172 "Variant field has no selected field: %!+f", \
1173 (_field)); \
1174 } while (0)
1175
1176static
1177const struct bt_field_class_variant_option *
1178borrow_variant_field_selected_class_option(const struct bt_field *field)
1179{
1180 const struct bt_field_class_named_field_class_container *container_fc;
1181 const struct bt_field_variant *var_field = (const void *) field;
1182
1183 BT_ASSERT_DBG(field);
1184 container_fc = (const void *) field->class;
1185 return container_fc->named_fcs->pdata[var_field->selected_index];
1186}
1187
1188const struct bt_field_class_variant_option *
1189bt_field_variant_borrow_selected_option_class_const(
1190 const struct bt_field *field)
1191{
1192 BT_ASSERT_PRE_DEV_FIELD_NON_NULL(field);
1193 BT_ASSERT_PRE_DEV_FIELD_IS_VARIANT("field", field, "Field");
1194 BT_ASSERT_PRE_DEV_FOR_BORROW_VAR_FIELD_SEL_CLASS_OPT(field);
1195 return borrow_variant_field_selected_class_option(field);
1196}
1197
1198const struct bt_field_class_variant_with_selector_field_integer_unsigned_option *
1199bt_field_variant_with_selector_field_integer_unsigned_borrow_selected_option_class_const(
1200 const struct bt_field *field)
1201{
1202 BT_ASSERT_PRE_DEV_FIELD_NON_NULL(field);
1203 BT_ASSERT_PRE_DEV_FIELD_HAS_CLASS_TYPE("field", field,
1204 "variant-field-with-unsigned-selector-field",
1205 BT_FIELD_CLASS_TYPE_VARIANT_WITH_UNSIGNED_INTEGER_SELECTOR_FIELD,
1206 "Field");
1207 BT_ASSERT_PRE_DEV_FOR_BORROW_VAR_FIELD_SEL_CLASS_OPT(field);
1208 return (const void *) borrow_variant_field_selected_class_option(field);
1209}
1210
1211const struct bt_field_class_variant_with_selector_field_integer_signed_option *
1212bt_field_variant_with_selector_field_integer_signed_borrow_selected_option_class_const(
1213 const struct bt_field *field)
1214{
1215 BT_ASSERT_PRE_DEV_FIELD_NON_NULL(field);
1216 BT_ASSERT_PRE_DEV_FIELD_HAS_CLASS_TYPE("field", field,
1217 "variant-field-with-signed-selector-field",
1218 BT_FIELD_CLASS_TYPE_VARIANT_WITH_SIGNED_INTEGER_SELECTOR_FIELD,
1219 "Field");
1220 BT_ASSERT_PRE_DEV_FOR_BORROW_VAR_FIELD_SEL_CLASS_OPT(field);
1221 return (const void *) borrow_variant_field_selected_class_option(field);
1222}
1223
1224enum bt_field_variant_select_option_by_index_status
1225bt_field_variant_select_option_by_index(
1226 struct bt_field *field, uint64_t index)
1227{
1228 struct bt_field_variant *var_field = (void *) field;
1229
1230 BT_ASSERT_PRE_DEV_NO_ERROR();
1231 BT_ASSERT_PRE_DEV_FIELD_NON_NULL(field);
1232 BT_ASSERT_PRE_DEV_FIELD_IS_VARIANT("field", field, "Field");
1233 BT_ASSERT_PRE_DEV_FIELD_HOT(field);
1234 BT_ASSERT_PRE_DEV_VALID_INDEX(index, var_field->fields->len);
1235 var_field->selected_field = var_field->fields->pdata[index];
1236 var_field->selected_index = index;
1237 return BT_FUNC_STATUS_OK;
1238}
1239
1240uint64_t bt_field_variant_get_selected_option_index(
1241 const struct bt_field *field)
1242{
1243 const struct bt_field_variant *var_field = (const void *) field;
1244
1245 BT_ASSERT_PRE_DEV_FIELD_NON_NULL(field);
1246 BT_ASSERT_PRE_DEV_FIELD_IS_VARIANT("field", field, "Field");
1247 BT_ASSERT_PRE_DEV("has-selected-field", var_field->selected_field,
1248 "Variant field has no selected field: %!+f", field);
1249 return var_field->selected_index;
1250}
1251
1252static inline
1253void bt_field_finalize(struct bt_field *field)
1254{
1255 BT_ASSERT(field);
1256 BT_LOGD_STR("Putting field's class.");
1257 BT_OBJECT_PUT_REF_AND_RESET(field->class);
1258}
1259
1260static
1261void destroy_bool_field(struct bt_field *field)
1262{
1263 BT_ASSERT(field);
1264 BT_LIB_LOGD("Destroying boolean field object: %!+f", field);
1265 bt_field_finalize(field);
1266 g_free(field);
1267}
1268
1269static
1270void destroy_bit_array_field(struct bt_field *field)
1271{
1272 BT_ASSERT(field);
1273 BT_LIB_LOGD("Destroying bit array field object: %!+f", field);
1274 bt_field_finalize(field);
1275 g_free(field);
1276}
1277
1278static
1279void destroy_integer_field(struct bt_field *field)
1280{
1281 BT_ASSERT(field);
1282 BT_LIB_LOGD("Destroying integer field object: %!+f", field);
1283 bt_field_finalize(field);
1284 g_free(field);
1285}
1286
1287static
1288void destroy_real_field(struct bt_field *field)
1289{
1290 BT_ASSERT(field);
1291 BT_LIB_LOGD("Destroying real field object: %!+f", field);
1292 bt_field_finalize(field);
1293 g_free(field);
1294}
1295
1296static
1297void destroy_structure_field(struct bt_field *field)
1298{
1299 struct bt_field_structure *struct_field = (void *) field;
1300
1301 BT_ASSERT(field);
1302 BT_LIB_LOGD("Destroying structure field object: %!+f", field);
1303 bt_field_finalize(field);
1304
1305 if (struct_field->fields) {
1306 g_ptr_array_free(struct_field->fields, TRUE);
1307 struct_field->fields = NULL;
1308 }
1309
1310 g_free(field);
1311}
1312
1313static
1314void destroy_option_field(struct bt_field *field)
1315{
1316 struct bt_field_option *opt_field = (void *) field;
1317
1318 BT_ASSERT(field);
1319 BT_LIB_LOGD("Destroying option field object: %!+f", field);
1320 bt_field_finalize(field);
1321
1322 if (opt_field->content_field) {
1323 bt_field_destroy(opt_field->content_field);
1324 }
1325
1326 g_free(field);
1327}
1328
1329static
1330void destroy_variant_field(struct bt_field *field)
1331{
1332 struct bt_field_variant *var_field = (void *) field;
1333
1334 BT_ASSERT(field);
1335 BT_LIB_LOGD("Destroying variant field object: %!+f", field);
1336 bt_field_finalize(field);
1337
1338 if (var_field->fields) {
1339 g_ptr_array_free(var_field->fields, TRUE);
1340 var_field->fields = NULL;
1341 }
1342
1343 g_free(field);
1344}
1345
1346static
1347void destroy_array_field(struct bt_field *field)
1348{
1349 struct bt_field_array *array_field = (void *) field;
1350
1351 BT_ASSERT(field);
1352 BT_LIB_LOGD("Destroying array field object: %!+f", field);
1353 bt_field_finalize(field);
1354
1355 if (array_field->fields) {
1356 g_ptr_array_free(array_field->fields, TRUE);
1357 array_field->fields = NULL;
1358 }
1359
1360 g_free(field);
1361}
1362
1363static
1364void destroy_string_field(struct bt_field *field)
1365{
1366 struct bt_field_string *string_field = (void *) field;
1367
1368 BT_ASSERT(field);
1369 BT_LIB_LOGD("Destroying string field object: %!+f", field);
1370 bt_field_finalize(field);
1371
1372 if (string_field->buf) {
1373 g_array_free(string_field->buf, TRUE);
1374 string_field->buf = NULL;
1375 }
1376
1377 g_free(field);
1378}
1379
1380BT_HIDDEN
1381void bt_field_destroy(struct bt_field *field)
1382{
1383 BT_ASSERT(field);
1384
1385 switch (field->class->type) {
1386 case BT_FIELD_CLASS_TYPE_BOOL:
1387 destroy_bool_field(field);
1388 break;
1389 case BT_FIELD_CLASS_TYPE_BIT_ARRAY:
1390 destroy_bit_array_field(field);
1391 break;
1392 case BT_FIELD_CLASS_TYPE_UNSIGNED_INTEGER:
1393 case BT_FIELD_CLASS_TYPE_SIGNED_INTEGER:
1394 case BT_FIELD_CLASS_TYPE_UNSIGNED_ENUMERATION:
1395 case BT_FIELD_CLASS_TYPE_SIGNED_ENUMERATION:
1396 destroy_integer_field(field);
1397 break;
1398 case BT_FIELD_CLASS_TYPE_SINGLE_PRECISION_REAL:
1399 case BT_FIELD_CLASS_TYPE_DOUBLE_PRECISION_REAL:
1400 destroy_real_field(field);
1401 break;
1402 case BT_FIELD_CLASS_TYPE_STRING:
1403 destroy_string_field(field);
1404 break;
1405 case BT_FIELD_CLASS_TYPE_STRUCTURE:
1406 destroy_structure_field(field);
1407 break;
1408 case BT_FIELD_CLASS_TYPE_STATIC_ARRAY:
1409 case BT_FIELD_CLASS_TYPE_DYNAMIC_ARRAY_WITHOUT_LENGTH_FIELD:
1410 case BT_FIELD_CLASS_TYPE_DYNAMIC_ARRAY_WITH_LENGTH_FIELD:
1411 destroy_array_field(field);
1412 break;
1413 case BT_FIELD_CLASS_TYPE_OPTION_WITHOUT_SELECTOR_FIELD:
1414 case BT_FIELD_CLASS_TYPE_OPTION_WITH_BOOL_SELECTOR_FIELD:
1415 case BT_FIELD_CLASS_TYPE_OPTION_WITH_UNSIGNED_INTEGER_SELECTOR_FIELD:
1416 case BT_FIELD_CLASS_TYPE_OPTION_WITH_SIGNED_INTEGER_SELECTOR_FIELD:
1417 destroy_option_field(field);
1418 break;
1419 case BT_FIELD_CLASS_TYPE_VARIANT_WITHOUT_SELECTOR_FIELD:
1420 case BT_FIELD_CLASS_TYPE_VARIANT_WITH_UNSIGNED_INTEGER_SELECTOR_FIELD:
1421 case BT_FIELD_CLASS_TYPE_VARIANT_WITH_SIGNED_INTEGER_SELECTOR_FIELD:
1422 destroy_variant_field(field);
1423 break;
1424 default:
1425 bt_common_abort();
1426 }
1427}
1428
1429static
1430void reset_single_field(struct bt_field *field)
1431{
1432 BT_ASSERT_DBG(field);
1433 field->is_set = false;
1434}
1435
1436static
1437void reset_structure_field(struct bt_field *field)
1438{
1439 uint64_t i;
1440 struct bt_field_structure *struct_field = (void *) field;
1441
1442 BT_ASSERT_DBG(field);
1443
1444 for (i = 0; i < struct_field->fields->len; i++) {
1445 bt_field_reset(struct_field->fields->pdata[i]);
1446 }
1447}
1448
1449static
1450void reset_option_field(struct bt_field *field)
1451{
1452 struct bt_field_option *opt_field = (void *) field;
1453
1454 BT_ASSERT_DBG(opt_field);
1455 bt_field_reset(opt_field->content_field);
1456 opt_field->selected_field = NULL;
1457}
1458
1459static
1460void reset_variant_field(struct bt_field *field)
1461{
1462 uint64_t i;
1463 struct bt_field_variant *var_field = (void *) field;
1464
1465 BT_ASSERT_DBG(field);
1466
1467 for (i = 0; i < var_field->fields->len; i++) {
1468 bt_field_reset(var_field->fields->pdata[i]);
1469 }
1470}
1471
1472static
1473void reset_array_field(struct bt_field *field)
1474{
1475 uint64_t i;
1476 struct bt_field_array *array_field = (void *) field;
1477
1478 BT_ASSERT_DBG(field);
1479
1480 for (i = 0; i < array_field->fields->len; i++) {
1481 bt_field_reset(array_field->fields->pdata[i]);
1482 }
1483}
1484
1485static
1486void set_single_field_is_frozen(struct bt_field *field, bool is_frozen)
1487{
1488 field->frozen = is_frozen;
1489}
1490
1491static
1492void set_structure_field_is_frozen(struct bt_field *field, bool is_frozen)
1493{
1494 uint64_t i;
1495 struct bt_field_structure *struct_field = (void *) field;
1496
1497 BT_LIB_LOGD("Setting structure field's frozen state: "
1498 "%![field-]+f, is-frozen=%d", field, is_frozen);
1499
1500 for (i = 0; i < struct_field->fields->len; i++) {
1501 struct bt_field *member_field = struct_field->fields->pdata[i];
1502
1503 BT_LIB_LOGD("Setting structure field's member field's "
1504 "frozen state: %![field-]+f, index=%" PRIu64,
1505 member_field, i);
1506 _bt_field_set_is_frozen(member_field, is_frozen);
1507 }
1508
1509 set_single_field_is_frozen(field, is_frozen);
1510}
1511
1512static
1513void set_option_field_is_frozen(struct bt_field *field, bool is_frozen)
1514{
1515 struct bt_field_option *opt_field = (void *) field;
1516
1517 BT_LIB_LOGD("Setting option field's frozen state: "
1518 "%![field-]+f, is-frozen=%d", field, is_frozen);
1519 _bt_field_set_is_frozen(opt_field->content_field, is_frozen);
1520 set_single_field_is_frozen(field, is_frozen);
1521}
1522
1523static
1524void set_variant_field_is_frozen(struct bt_field *field, bool is_frozen)
1525{
1526 uint64_t i;
1527 struct bt_field_variant *var_field = (void *) field;
1528
1529 BT_LIB_LOGD("Setting variant field's frozen state: "
1530 "%![field-]+f, is-frozen=%d", field, is_frozen);
1531
1532 for (i = 0; i < var_field->fields->len; i++) {
1533 struct bt_field *option_field = var_field->fields->pdata[i];
1534
1535 BT_LIB_LOGD("Setting variant field's option field's "
1536 "frozen state: %![field-]+f, index=%" PRIu64,
1537 option_field, i);
1538 _bt_field_set_is_frozen(option_field, is_frozen);
1539 }
1540
1541 set_single_field_is_frozen(field, is_frozen);
1542}
1543
1544static
1545void set_array_field_is_frozen(struct bt_field *field, bool is_frozen)
1546{
1547 uint64_t i;
1548 struct bt_field_array *array_field = (void *) field;
1549
1550 BT_LIB_LOGD("Setting array field's frozen state: "
1551 "%![field-]+f, is-frozen=%d", field, is_frozen);
1552
1553 for (i = 0; i < array_field->fields->len; i++) {
1554 struct bt_field *elem_field = array_field->fields->pdata[i];
1555
1556 BT_LIB_LOGD("Setting array field's element field's "
1557 "frozen state: %![field-]+f, index=%" PRIu64,
1558 elem_field, i);
1559 _bt_field_set_is_frozen(elem_field, is_frozen);
1560 }
1561
1562 set_single_field_is_frozen(field, is_frozen);
1563}
1564
1565BT_HIDDEN
1566void _bt_field_set_is_frozen(const struct bt_field *field,
1567 bool is_frozen)
1568{
1569 BT_ASSERT_DBG(field);
1570 BT_LIB_LOGD("Setting field object's frozen state: %!+f, is-frozen=%d",
1571 field, is_frozen);
1572 BT_ASSERT_DBG(field->methods->set_is_frozen);
1573 field->methods->set_is_frozen((void *) field, is_frozen);
1574}
1575
1576static
1577bool single_field_is_set(const struct bt_field *field)
1578{
1579 BT_ASSERT_DBG(field);
1580 return field->is_set;
1581}
1582
1583static
1584bool structure_field_is_set(const struct bt_field *field)
1585{
1586 bool is_set = true;
1587 uint64_t i;
1588 const struct bt_field_structure *struct_field = (const void *) field;
1589
1590 BT_ASSERT_DBG(field);
1591
1592 for (i = 0; i < struct_field->fields->len; i++) {
1593 is_set = bt_field_is_set(struct_field->fields->pdata[i]);
1594 if (!is_set) {
1595 goto end;
1596 }
1597 }
1598
1599end:
1600 return is_set;
1601}
1602
1603static
1604bool option_field_is_set(const struct bt_field *field)
1605{
1606 const struct bt_field_option *opt_field = (const void *) field;
1607 bool is_set = false;
1608
1609 BT_ASSERT_DBG(field);
1610
1611 if (opt_field->selected_field) {
1612 is_set = bt_field_is_set(opt_field->selected_field);
1613 }
1614
1615 return is_set;
1616}
1617
1618static
1619bool variant_field_is_set(const struct bt_field *field)
1620{
1621 const struct bt_field_variant *var_field = (const void *) field;
1622 bool is_set = false;
1623
1624 BT_ASSERT_DBG(field);
1625
1626 if (var_field->selected_field) {
1627 is_set = bt_field_is_set(var_field->selected_field);
1628 }
1629
1630 return is_set;
1631}
1632
1633static
1634bool array_field_is_set(const struct bt_field *field)
1635{
1636 bool is_set = true;
1637 uint64_t i;
1638 const struct bt_field_array *array_field = (const void *) field;
1639
1640 BT_ASSERT_DBG(field);
1641
1642 for (i = 0; i < array_field->length; i++) {
1643 is_set = bt_field_is_set(array_field->fields->pdata[i]);
1644 if (!is_set) {
1645 goto end;
1646 }
1647 }
1648
1649end:
1650 return is_set;
1651}
This page took 0.028693 seconds and 4 git commands to generate.