96c01ac453f9d79abcd0410cb82488a029f467e0
[babeltrace.git] / src / lib / value.c
1 /*
2 * Copyright (c) 2015-2018 Philippe Proulx <pproulx@efficios.com>
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a copy
5 * of this software and associated documentation files (the "Software"), to deal
6 * in the Software without restriction, including without limitation the rights
7 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 * copies of the Software, and to permit persons to whom the Software is
9 * furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20 * SOFTWARE.
21 */
22
23 #define BT_LOG_TAG "LIB/VALUE"
24 #include "lib/logging.h"
25
26 #include <stdlib.h>
27 #include <string.h>
28 #include <string.h>
29 #include <inttypes.h>
30 #include <babeltrace2/babeltrace.h>
31
32 #include "compat/compiler.h"
33 #include "common/common.h"
34 #include "compat/glib.h"
35 #include "lib/assert-pre.h"
36 #include "lib/value.h"
37 #include "common/assert.h"
38 #include "func-status.h"
39
40 #define BT_VALUE_TO_BOOL(_base) ((struct bt_value_bool *) (_base))
41 #define BT_VALUE_TO_INTEGER(_base) ((struct bt_value_integer *) (_base))
42 #define BT_VALUE_TO_REAL(_base) ((struct bt_value_real *) (_base))
43 #define BT_VALUE_TO_STRING(_base) ((struct bt_value_string *) (_base))
44 #define BT_VALUE_TO_ARRAY(_base) ((struct bt_value_array *) (_base))
45 #define BT_VALUE_TO_MAP(_base) ((struct bt_value_map *) (_base))
46
47 #define _BT_ASSERT_PRE_VALUE_IS_TYPE_COND(_value, _type) \
48 (((struct bt_value *) (_value))->type == (_type))
49
50 #define _BT_ASSERT_PRE_VALUE_IS_TYPE_FMT \
51 "Value has the wrong type ID: expected-type=%s, %![value-]+v"
52
53 #define BT_ASSERT_PRE_VALUE_IS_TYPE(_value, _type) \
54 BT_ASSERT_PRE( \
55 _BT_ASSERT_PRE_VALUE_IS_TYPE_COND((_value), (_type)), \
56 _BT_ASSERT_PRE_VALUE_IS_TYPE_FMT, \
57 bt_common_value_type_string(_type), (_value))
58
59 #define BT_ASSERT_PRE_DEV_VALUE_IS_TYPE(_value, _type) \
60 BT_ASSERT_PRE_DEV( \
61 _BT_ASSERT_PRE_VALUE_IS_TYPE_COND((_value), (_type)), \
62 _BT_ASSERT_PRE_VALUE_IS_TYPE_FMT, \
63 bt_common_value_type_string(_type), (_value))
64
65 #define BT_ASSERT_PRE_DEV_VALUE_HOT(_value, _name) \
66 BT_ASSERT_PRE_DEV_HOT(((struct bt_value *) (_value)), (_name), \
67 ": %!+v", (_value))
68
69 static
70 void bt_value_null_instance_release_func(struct bt_object *obj)
71 {
72 BT_LOGW("Releasing the null value singleton: addr=%p", obj);
73 }
74
75 static
76 struct bt_value bt_value_null_instance = {
77 .base = {
78 .is_shared = true,
79 .ref_count = 1,
80 .release_func = bt_value_null_instance_release_func,
81 .spec_release_func = NULL,
82 .parent_is_owner_listener_func = NULL,
83 .parent = NULL,
84 },
85 .type = BT_VALUE_TYPE_NULL,
86 .frozen = BT_TRUE,
87 };
88
89 struct bt_value *const bt_value_null = &bt_value_null_instance;
90
91 static
92 void bt_value_destroy(struct bt_object *obj);
93
94 static
95 void bt_value_string_destroy(struct bt_value *object)
96 {
97 g_string_free(BT_VALUE_TO_STRING(object)->gstr, TRUE);
98 BT_VALUE_TO_STRING(object)->gstr = NULL;
99 }
100
101 static
102 void bt_value_array_destroy(struct bt_value *object)
103 {
104 /*
105 * Pointer array's registered value destructor will take care
106 * of putting each contained object.
107 */
108 g_ptr_array_free(BT_VALUE_TO_ARRAY(object)->garray, TRUE);
109 BT_VALUE_TO_ARRAY(object)->garray = NULL;
110 }
111
112 static
113 void bt_value_map_destroy(struct bt_value *object)
114 {
115 /*
116 * Hash table's registered value destructor will take care of
117 * putting each contained object. Keys are GQuarks and cannot
118 * be destroyed anyway.
119 */
120 g_hash_table_destroy(BT_VALUE_TO_MAP(object)->ght);
121 BT_VALUE_TO_MAP(object)->ght = NULL;
122 }
123
124 static
125 void (* const destroy_funcs[])(struct bt_value *) = {
126 [BT_VALUE_TYPE_NULL] = NULL,
127 [BT_VALUE_TYPE_BOOL] = NULL,
128 [BT_VALUE_TYPE_UNSIGNED_INTEGER] = NULL,
129 [BT_VALUE_TYPE_SIGNED_INTEGER] = NULL,
130 [BT_VALUE_TYPE_REAL] = NULL,
131 [BT_VALUE_TYPE_STRING] = bt_value_string_destroy,
132 [BT_VALUE_TYPE_ARRAY] = bt_value_array_destroy,
133 [BT_VALUE_TYPE_MAP] = bt_value_map_destroy,
134 };
135
136 static
137 struct bt_value *bt_value_null_copy(const struct bt_value *null_obj)
138 {
139 BT_ASSERT(null_obj == bt_value_null);
140
141 bt_object_get_ref_no_null_check(bt_value_null);
142 return (void *) bt_value_null;
143 }
144
145 static
146 struct bt_value *bt_value_bool_copy(const struct bt_value *bool_obj)
147 {
148 return bt_value_bool_create_init(
149 BT_VALUE_TO_BOOL(bool_obj)->value);
150 }
151
152 static inline
153 struct bt_value *bt_value_integer_create_init(enum bt_value_type type,
154 uint64_t uval);
155
156 static
157 struct bt_value *bt_value_integer_copy(
158 const struct bt_value *integer_obj)
159 {
160 return bt_value_integer_create_init(integer_obj->type,
161 BT_VALUE_TO_INTEGER(integer_obj)->value.u);
162 }
163
164 static
165 struct bt_value *bt_value_real_copy(const struct bt_value *real_obj)
166 {
167 return bt_value_real_create_init(
168 BT_VALUE_TO_REAL(real_obj)->value);
169 }
170
171 static
172 struct bt_value *bt_value_string_copy(const struct bt_value *string_obj)
173 {
174 return bt_value_string_create_init(
175 BT_VALUE_TO_STRING(string_obj)->gstr->str);
176 }
177
178 static
179 struct bt_value *bt_value_array_copy(const struct bt_value *array_obj)
180 {
181 int i;
182 int ret;
183 struct bt_value *copy_obj;
184 struct bt_value_array *typed_array_obj;
185
186 BT_LOGD("Copying array value: addr=%p", array_obj);
187 typed_array_obj = BT_VALUE_TO_ARRAY(array_obj);
188 copy_obj = bt_value_array_create();
189 if (!copy_obj) {
190 BT_LIB_LOGE_APPEND_CAUSE("Cannot create empty array value.");
191 goto end;
192 }
193
194 for (i = 0; i < typed_array_obj->garray->len; ++i) {
195 struct bt_value *element_obj_copy = NULL;
196 const struct bt_value *element_obj =
197 bt_value_array_borrow_element_by_index_const(
198 array_obj, i);
199
200 BT_LOGD("Copying array value's element: element-addr=%p, "
201 "index=%d", element_obj, i);
202 ret = bt_value_copy(element_obj, &element_obj_copy);
203 if (ret) {
204 BT_LIB_LOGE_APPEND_CAUSE(
205 "Cannot copy array value's element: "
206 "array-addr=%p, index=%d",
207 array_obj, i);
208 BT_OBJECT_PUT_REF_AND_RESET(copy_obj);
209 goto end;
210 }
211
212 BT_ASSERT(element_obj_copy);
213 ret = bt_value_array_append_element(copy_obj,
214 (void *) element_obj_copy);
215 BT_OBJECT_PUT_REF_AND_RESET(element_obj_copy);
216 if (ret) {
217 BT_LIB_LOGE_APPEND_CAUSE(
218 "Cannot append to array value: addr=%p",
219 array_obj);
220 BT_OBJECT_PUT_REF_AND_RESET(copy_obj);
221 goto end;
222 }
223 }
224
225 BT_LOGD("Copied array value: original-addr=%p, copy-addr=%p",
226 array_obj, copy_obj);
227
228 end:
229 return copy_obj;
230 }
231
232 static
233 struct bt_value *bt_value_map_copy(const struct bt_value *map_obj)
234 {
235 int ret;
236 GHashTableIter iter;
237 gpointer key, element_obj;
238 struct bt_value *copy_obj;
239 struct bt_value *element_obj_copy = NULL;
240 struct bt_value_map *typed_map_obj;
241
242 BT_LOGD("Copying map value: addr=%p", map_obj);
243 typed_map_obj = BT_VALUE_TO_MAP(map_obj);
244 copy_obj = bt_value_map_create();
245 if (!copy_obj) {
246 goto end;
247 }
248
249 g_hash_table_iter_init(&iter, typed_map_obj->ght);
250
251 while (g_hash_table_iter_next(&iter, &key, &element_obj)) {
252 const char *key_str = g_quark_to_string(GPOINTER_TO_UINT(key));
253
254 BT_ASSERT(key_str);
255 BT_LOGD("Copying map value's element: element-addr=%p, "
256 "key=\"%s\"", element_obj, key_str);
257 ret = bt_value_copy(element_obj, &element_obj_copy);
258 if (ret) {
259 BT_LIB_LOGE_APPEND_CAUSE(
260 "Cannot copy map value's element: "
261 "map-addr=%p, key=\"%s\"",
262 map_obj, key_str);
263 BT_OBJECT_PUT_REF_AND_RESET(copy_obj);
264 goto end;
265 }
266
267 BT_ASSERT(element_obj_copy);
268 ret = bt_value_map_insert_entry(copy_obj, key_str,
269 (void *) element_obj_copy);
270 BT_OBJECT_PUT_REF_AND_RESET(element_obj_copy);
271 if (ret) {
272 BT_LIB_LOGE_APPEND_CAUSE(
273 "Cannot insert into map value: addr=%p, key=\"%s\"",
274 map_obj, key_str);
275 BT_OBJECT_PUT_REF_AND_RESET(copy_obj);
276 goto end;
277 }
278 }
279
280 BT_LOGD("Copied map value: addr=%p", map_obj);
281
282 end:
283 return copy_obj;
284 }
285
286 static
287 struct bt_value *(* const copy_funcs[])(const struct bt_value *) = {
288 [BT_VALUE_TYPE_NULL] = bt_value_null_copy,
289 [BT_VALUE_TYPE_BOOL] = bt_value_bool_copy,
290 [BT_VALUE_TYPE_UNSIGNED_INTEGER] = bt_value_integer_copy,
291 [BT_VALUE_TYPE_SIGNED_INTEGER] = bt_value_integer_copy,
292 [BT_VALUE_TYPE_REAL] = bt_value_real_copy,
293 [BT_VALUE_TYPE_STRING] = bt_value_string_copy,
294 [BT_VALUE_TYPE_ARRAY] = bt_value_array_copy,
295 [BT_VALUE_TYPE_MAP] = bt_value_map_copy,
296 };
297
298 static
299 bt_bool bt_value_null_is_equal(const struct bt_value *object_a,
300 const struct bt_value *object_b)
301 {
302 /*
303 * Always BT_TRUE since bt_value_is_equal() already checks if both
304 * object_a and object_b have the same type, and in the case of
305 * null value objects, they're always the same if it is so.
306 */
307 return BT_TRUE;
308 }
309
310 static
311 bt_bool bt_value_bool_is_equal(const struct bt_value *object_a,
312 const struct bt_value *object_b)
313 {
314 if (BT_VALUE_TO_BOOL(object_a)->value !=
315 BT_VALUE_TO_BOOL(object_b)->value) {
316 BT_LOGT("Boolean value objects are different: "
317 "bool-a-val=%d, bool-b-val=%d",
318 BT_VALUE_TO_BOOL(object_a)->value,
319 BT_VALUE_TO_BOOL(object_b)->value);
320 return BT_FALSE;
321 }
322
323 return BT_TRUE;
324 }
325
326 static
327 bt_bool bt_value_integer_is_equal(const struct bt_value *object_a,
328 const struct bt_value *object_b)
329 {
330 if (BT_VALUE_TO_INTEGER(object_a)->value.u !=
331 BT_VALUE_TO_INTEGER(object_b)->value.u) {
332 if (object_a->type == BT_VALUE_TYPE_UNSIGNED_INTEGER) {
333 BT_LOGT("Unsigned integer value objects are different: "
334 "int-a-val=%" PRIu64 ", int-b-val=%" PRIu64,
335 BT_VALUE_TO_INTEGER(object_a)->value.u,
336 BT_VALUE_TO_INTEGER(object_b)->value.u);
337 } else {
338 BT_LOGT("Signed integer value objects are different: "
339 "int-a-val=%" PRId64 ", int-b-val=%" PRId64,
340 BT_VALUE_TO_INTEGER(object_a)->value.i,
341 BT_VALUE_TO_INTEGER(object_b)->value.i);
342 }
343
344 return BT_FALSE;
345 }
346
347 return BT_TRUE;
348 }
349
350 static
351 bt_bool bt_value_real_is_equal(const struct bt_value *object_a,
352 const struct bt_value *object_b)
353 {
354 if (BT_VALUE_TO_REAL(object_a)->value !=
355 BT_VALUE_TO_REAL(object_b)->value) {
356 BT_LOGT("Real number value objects are different: "
357 "real-a-val=%f, real-b-val=%f",
358 BT_VALUE_TO_REAL(object_a)->value,
359 BT_VALUE_TO_REAL(object_b)->value);
360 return BT_FALSE;
361 }
362
363 return BT_TRUE;
364 }
365
366 static
367 bt_bool bt_value_string_is_equal(const struct bt_value *object_a,
368 const struct bt_value *object_b)
369 {
370 if (strcmp(BT_VALUE_TO_STRING(object_a)->gstr->str,
371 BT_VALUE_TO_STRING(object_b)->gstr->str) != 0) {
372 BT_LOGT("String value objects are different: "
373 "string-a-val=\"%s\", string-b-val=\"%s\"",
374 BT_VALUE_TO_STRING(object_a)->gstr->str,
375 BT_VALUE_TO_STRING(object_b)->gstr->str);
376 return BT_FALSE;
377 }
378
379 return BT_TRUE;
380 }
381
382 static
383 bt_bool bt_value_array_is_equal(const struct bt_value *object_a,
384 const struct bt_value *object_b)
385 {
386 int i;
387 bt_bool ret = BT_TRUE;
388 const struct bt_value_array *array_obj_a =
389 BT_VALUE_TO_ARRAY(object_a);
390
391 if (bt_value_array_get_length(object_a) !=
392 bt_value_array_get_length(object_b)) {
393 BT_LOGT("Array values are different: size mismatch "
394 "value-a-addr=%p, value-b-addr=%p, "
395 "value-a-size=%" PRId64 ", value-b-size=%" PRId64,
396 object_a, object_b,
397 bt_value_array_get_length(object_a),
398 bt_value_array_get_length(object_b));
399 ret = BT_FALSE;
400 goto end;
401 }
402
403 for (i = 0; i < array_obj_a->garray->len; ++i) {
404 const struct bt_value *element_obj_a;
405 const struct bt_value *element_obj_b;
406
407 element_obj_a = bt_value_array_borrow_element_by_index_const(
408 object_a, i);
409 element_obj_b = bt_value_array_borrow_element_by_index_const(
410 object_b, i);
411
412 if (!bt_value_is_equal(element_obj_a, element_obj_b)) {
413 BT_LOGT("Array values's elements are different: "
414 "value-a-addr=%p, value-b-addr=%p, index=%d",
415 element_obj_a, element_obj_b, i);
416 ret = BT_FALSE;
417 goto end;
418 }
419 }
420
421 end:
422 return ret;
423 }
424
425 static
426 bt_bool bt_value_map_is_equal(const struct bt_value *object_a,
427 const struct bt_value *object_b)
428 {
429 bt_bool ret = BT_TRUE;
430 GHashTableIter iter;
431 gpointer key, element_obj_a;
432 const struct bt_value_map *map_obj_a = BT_VALUE_TO_MAP(object_a);
433
434 if (bt_value_map_get_size(object_a) !=
435 bt_value_map_get_size(object_b)) {
436 BT_LOGT("Map values are different: size mismatch "
437 "value-a-addr=%p, value-b-addr=%p, "
438 "value-a-size=%" PRId64 ", value-b-size=%" PRId64,
439 object_a, object_b,
440 bt_value_map_get_size(object_a),
441 bt_value_map_get_size(object_b));
442 ret = BT_FALSE;
443 goto end;
444 }
445
446 g_hash_table_iter_init(&iter, map_obj_a->ght);
447
448 while (g_hash_table_iter_next(&iter, &key, &element_obj_a)) {
449 const struct bt_value *element_obj_b;
450 const char *key_str = g_quark_to_string(GPOINTER_TO_UINT(key));
451
452 element_obj_b = bt_value_map_borrow_entry_value_const(object_b,
453 key_str);
454
455 if (!bt_value_is_equal(element_obj_a, element_obj_b)) {
456 BT_LOGT("Map values's elements are different: "
457 "value-a-addr=%p, value-b-addr=%p, key=\"%s\"",
458 element_obj_a, element_obj_b, key_str);
459 ret = BT_FALSE;
460 goto end;
461 }
462 }
463
464 end:
465 return ret;
466 }
467
468 static
469 bt_bool (* const is_equal_funcs[])(const struct bt_value *,
470 const struct bt_value *) = {
471 [BT_VALUE_TYPE_NULL] = bt_value_null_is_equal,
472 [BT_VALUE_TYPE_BOOL] = bt_value_bool_is_equal,
473 [BT_VALUE_TYPE_UNSIGNED_INTEGER] = bt_value_integer_is_equal,
474 [BT_VALUE_TYPE_SIGNED_INTEGER] = bt_value_integer_is_equal,
475 [BT_VALUE_TYPE_REAL] = bt_value_real_is_equal,
476 [BT_VALUE_TYPE_STRING] = bt_value_string_is_equal,
477 [BT_VALUE_TYPE_ARRAY] = bt_value_array_is_equal,
478 [BT_VALUE_TYPE_MAP] = bt_value_map_is_equal,
479 };
480
481 static
482 void bt_value_null_freeze(struct bt_value *object)
483 {
484 }
485
486 static
487 void bt_value_generic_freeze(struct bt_value *object)
488 {
489 object->frozen = BT_TRUE;
490 }
491
492 static
493 void bt_value_array_freeze(struct bt_value *object)
494 {
495 int i;
496 struct bt_value_array *typed_array_obj =
497 BT_VALUE_TO_ARRAY(object);
498
499 for (i = 0; i < typed_array_obj->garray->len; ++i) {
500 bt_value_freeze(g_ptr_array_index(typed_array_obj->garray, i));
501 }
502
503 bt_value_generic_freeze(object);
504 }
505
506 static
507 void bt_value_map_freeze(struct bt_value *object)
508 {
509 GHashTableIter iter;
510 gpointer key, element_obj;
511 const struct bt_value_map *map_obj = BT_VALUE_TO_MAP(object);
512
513 g_hash_table_iter_init(&iter, map_obj->ght);
514
515 while (g_hash_table_iter_next(&iter, &key, &element_obj)) {
516 bt_value_freeze(element_obj);
517 }
518
519 bt_value_generic_freeze(object);
520 }
521
522 static
523 void (* const freeze_funcs[])(struct bt_value *) = {
524 [BT_VALUE_TYPE_NULL] = bt_value_null_freeze,
525 [BT_VALUE_TYPE_BOOL] = bt_value_generic_freeze,
526 [BT_VALUE_TYPE_UNSIGNED_INTEGER] = bt_value_generic_freeze,
527 [BT_VALUE_TYPE_SIGNED_INTEGER] = bt_value_generic_freeze,
528 [BT_VALUE_TYPE_REAL] = bt_value_generic_freeze,
529 [BT_VALUE_TYPE_STRING] = bt_value_generic_freeze,
530 [BT_VALUE_TYPE_ARRAY] = bt_value_array_freeze,
531 [BT_VALUE_TYPE_MAP] = bt_value_map_freeze,
532 };
533
534 static
535 void bt_value_destroy(struct bt_object *obj)
536 {
537 struct bt_value *value;
538
539 value = container_of(obj, struct bt_value, base);
540 BT_LOGD("Destroying value: addr=%p", value);
541
542 if (bt_value_is_null(value)) {
543 BT_LOGD_STR("Not destroying the null value singleton.");
544 return;
545 }
546
547 if (destroy_funcs[value->type]) {
548 destroy_funcs[value->type](value);
549 }
550
551 g_free(value);
552 }
553
554 BT_HIDDEN
555 void _bt_value_freeze(const struct bt_value *c_object)
556 {
557 const struct bt_value *object = (void *) c_object;
558
559 BT_ASSERT(object);
560
561 if (object->frozen) {
562 goto end;
563 }
564
565 BT_LOGD("Freezing value: addr=%p", object);
566 freeze_funcs[object->type]((void *) object);
567
568 end:
569 return;
570 }
571
572 enum bt_value_type bt_value_get_type(const struct bt_value *object)
573 {
574 BT_ASSERT_PRE_DEV_NON_NULL(object, "Value object");
575 return object->type;
576 }
577
578 static
579 struct bt_value bt_value_create_base(enum bt_value_type type)
580 {
581 struct bt_value value;
582
583 value.type = type;
584 value.frozen = BT_FALSE;
585 bt_object_init_shared(&value.base, bt_value_destroy);
586 return value;
587 }
588
589 struct bt_value *bt_value_bool_create_init(bt_bool val)
590 {
591 struct bt_value_bool *bool_obj;
592
593 BT_LOGD("Creating boolean value object: val=%d", val);
594 bool_obj = g_new0(struct bt_value_bool, 1);
595 if (!bool_obj) {
596 BT_LIB_LOGE_APPEND_CAUSE(
597 "Failed to allocate one boolean value object.");
598 goto end;
599 }
600
601 bool_obj->base = bt_value_create_base(BT_VALUE_TYPE_BOOL);
602 bool_obj->value = val;
603 BT_LOGD("Created boolean value object: addr=%p", bool_obj);
604
605 end:
606 return (void *) bool_obj;
607 }
608
609 struct bt_value *bt_value_bool_create(void)
610 {
611 return bt_value_bool_create_init(BT_FALSE);
612 }
613
614 static inline
615 struct bt_value *bt_value_integer_create_init(enum bt_value_type type,
616 uint64_t uval)
617 {
618 struct bt_value_integer *integer_obj;
619
620 BT_ASSERT(type == BT_VALUE_TYPE_UNSIGNED_INTEGER ||
621 type == BT_VALUE_TYPE_SIGNED_INTEGER);
622
623 if (type == BT_VALUE_TYPE_UNSIGNED_INTEGER) {
624 BT_LOGD("Creating unsigned integer value object: val=%" PRIu64,
625 uval);
626 } else {
627 BT_LOGD("Creating signed integer value object: val=%" PRId64,
628 (int64_t) uval);
629 }
630
631 integer_obj = g_new0(struct bt_value_integer, 1);
632 if (!integer_obj) {
633 BT_LIB_LOGE_APPEND_CAUSE(
634 "Failed to allocate one integer value object.");
635 goto end;
636 }
637
638 integer_obj->base = bt_value_create_base(type);
639 integer_obj->value.u = uval;
640 BT_LOGD("Created %ssigned integer value object: addr=%p",
641 type == BT_VALUE_TYPE_UNSIGNED_INTEGER ? "un" : "",
642 integer_obj);
643
644 end:
645 return (void *) integer_obj;
646 }
647
648 struct bt_value *bt_value_integer_unsigned_create_init(uint64_t val)
649 {
650 return bt_value_integer_create_init(BT_VALUE_TYPE_UNSIGNED_INTEGER,
651 val);
652 }
653
654 struct bt_value *bt_value_integer_unsigned_create(void)
655 {
656 return bt_value_integer_unsigned_create_init(0);
657 }
658
659 struct bt_value *bt_value_integer_signed_create_init(int64_t val)
660 {
661 return bt_value_integer_create_init(BT_VALUE_TYPE_SIGNED_INTEGER,
662 (uint64_t) val);
663 }
664
665 struct bt_value *bt_value_integer_signed_create(void)
666 {
667 return bt_value_integer_signed_create_init(0);
668 }
669
670 struct bt_value *bt_value_real_create_init(double val)
671 {
672 struct bt_value_real *real_obj;
673
674 BT_LOGD("Creating real number value object: val=%f", val);
675 real_obj = g_new0(struct bt_value_real, 1);
676 if (!real_obj) {
677 BT_LIB_LOGE_APPEND_CAUSE(
678 "Failed to allocate one real number value object.");
679 goto end;
680 }
681
682 real_obj->base = bt_value_create_base(BT_VALUE_TYPE_REAL);
683 real_obj->value = val;
684 BT_LOGD("Created real number value object: addr=%p",
685 real_obj);
686
687 end:
688 return (void *) real_obj;
689 }
690
691 struct bt_value *bt_value_real_create(void)
692 {
693 return bt_value_real_create_init(0.);
694 }
695
696 struct bt_value *bt_value_string_create_init(const char *val)
697 {
698 struct bt_value_string *string_obj = NULL;
699
700 BT_ASSERT_PRE_NON_NULL(val, "Value");
701 BT_LOGD("Creating string value object: val-len=%zu", strlen(val));
702 string_obj = g_new0(struct bt_value_string, 1);
703 if (!string_obj) {
704 BT_LIB_LOGE_APPEND_CAUSE(
705 "Failed to allocate one string object.");
706 goto end;
707 }
708
709 string_obj->base = bt_value_create_base(BT_VALUE_TYPE_STRING);
710 string_obj->gstr = g_string_new(val);
711 if (!string_obj->gstr) {
712 BT_LIB_LOGE_APPEND_CAUSE(
713 "Failed to allocate a GString.");
714 g_free(string_obj);
715 string_obj = NULL;
716 goto end;
717 }
718
719 BT_LOGD("Created string value object: addr=%p",
720 string_obj);
721
722 end:
723 return (void *) string_obj;
724 }
725
726 struct bt_value *bt_value_string_create(void)
727 {
728 return bt_value_string_create_init("");
729 }
730
731 struct bt_value *bt_value_array_create(void)
732 {
733 struct bt_value_array *array_obj;
734
735 BT_LOGD_STR("Creating empty array value object.");
736 array_obj = g_new0(struct bt_value_array, 1);
737 if (!array_obj) {
738 BT_LIB_LOGE_APPEND_CAUSE(
739 "Failed to allocate one array object.");
740 goto end;
741 }
742
743 array_obj->base = bt_value_create_base(BT_VALUE_TYPE_ARRAY);
744 array_obj->garray = bt_g_ptr_array_new_full(0,
745 (GDestroyNotify) bt_object_put_ref);
746 if (!array_obj->garray) {
747 BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate a GPtrArray.");
748 g_free(array_obj);
749 array_obj = NULL;
750 goto end;
751 }
752
753 BT_LOGD("Created array value object: addr=%p",
754 array_obj);
755
756 end:
757 return (void *) array_obj;
758 }
759
760 struct bt_value *bt_value_map_create(void)
761 {
762 struct bt_value_map *map_obj;
763
764 BT_LOGD_STR("Creating empty map value object.");
765 map_obj = g_new0(struct bt_value_map, 1);
766 if (!map_obj) {
767 BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate one map object.");
768 goto end;
769 }
770
771 map_obj->base = bt_value_create_base(BT_VALUE_TYPE_MAP);
772 map_obj->ght = g_hash_table_new_full(g_direct_hash, g_direct_equal,
773 NULL, (GDestroyNotify) bt_object_put_ref);
774 if (!map_obj->ght) {
775 BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate a GHashTable.");
776 g_free(map_obj);
777 map_obj = NULL;
778 goto end;
779 }
780
781 BT_LOGD("Created map value object: addr=%p",
782 map_obj);
783
784 end:
785 return (void *) map_obj;
786 }
787
788 bt_bool bt_value_bool_get(const struct bt_value *bool_obj)
789 {
790 BT_ASSERT_PRE_DEV_NON_NULL(bool_obj, "Value object");
791 BT_ASSERT_PRE_DEV_VALUE_IS_TYPE(bool_obj, BT_VALUE_TYPE_BOOL);
792 return BT_VALUE_TO_BOOL(bool_obj)->value;
793 }
794
795 void bt_value_bool_set(struct bt_value *bool_obj, bt_bool val)
796 {
797 BT_ASSERT_PRE_NON_NULL(bool_obj, "Value object");
798 BT_ASSERT_PRE_VALUE_IS_TYPE(bool_obj, BT_VALUE_TYPE_BOOL);
799 BT_ASSERT_PRE_DEV_VALUE_HOT(bool_obj, "Value object");
800 BT_VALUE_TO_BOOL(bool_obj)->value = val;
801 BT_LOGT("Set boolean value's raw value: value-addr=%p, value=%d",
802 bool_obj, val);
803 }
804
805 uint64_t bt_value_integer_unsigned_get(const struct bt_value *integer_obj)
806 {
807 BT_ASSERT_PRE_DEV_NON_NULL(integer_obj, "Value object");
808 BT_ASSERT_PRE_DEV_VALUE_IS_TYPE(integer_obj,
809 BT_VALUE_TYPE_UNSIGNED_INTEGER);
810 return BT_VALUE_TO_INTEGER(integer_obj)->value.u;
811 }
812
813 int64_t bt_value_integer_signed_get(const struct bt_value *integer_obj)
814 {
815 BT_ASSERT_PRE_DEV_NON_NULL(integer_obj, "Value object");
816 BT_ASSERT_PRE_DEV_VALUE_IS_TYPE(integer_obj,
817 BT_VALUE_TYPE_SIGNED_INTEGER);
818 return BT_VALUE_TO_INTEGER(integer_obj)->value.i;
819 }
820
821 static inline
822 void bt_value_integer_set(struct bt_value *integer_obj,
823 enum bt_value_type expected_type, uint64_t uval)
824 {
825 BT_ASSERT_PRE_NON_NULL(integer_obj, "Value object");
826 BT_ASSERT_PRE_VALUE_IS_TYPE(integer_obj, expected_type);
827 BT_ASSERT_PRE_DEV_VALUE_HOT(integer_obj, "Value object");
828 BT_VALUE_TO_INTEGER(integer_obj)->value.u = uval;
829 }
830
831 void bt_value_integer_unsigned_set(struct bt_value *integer_obj,
832 uint64_t val)
833 {
834 bt_value_integer_set(integer_obj, BT_VALUE_TYPE_UNSIGNED_INTEGER, val);
835 BT_LOGT("Set unsigned integer value's raw value: "
836 "value-addr=%p, value=%" PRIu64, integer_obj, val);
837 }
838
839 void bt_value_integer_signed_set(struct bt_value *integer_obj,
840 int64_t val)
841 {
842 bt_value_integer_set(integer_obj, BT_VALUE_TYPE_SIGNED_INTEGER,
843 (uint64_t) val);
844 BT_LOGT("Set signed integer value's raw value: "
845 "value-addr=%p, value=%" PRId64, integer_obj, val);
846 }
847
848 double bt_value_real_get(const struct bt_value *real_obj)
849 {
850 BT_ASSERT_PRE_DEV_NON_NULL(real_obj, "Value object");
851 BT_ASSERT_PRE_DEV_VALUE_IS_TYPE(real_obj, BT_VALUE_TYPE_REAL);
852 return BT_VALUE_TO_REAL(real_obj)->value;
853 }
854
855 void bt_value_real_set(struct bt_value *real_obj, double val)
856 {
857 BT_ASSERT_PRE_NON_NULL(real_obj, "Value object");
858 BT_ASSERT_PRE_VALUE_IS_TYPE(real_obj, BT_VALUE_TYPE_REAL);
859 BT_ASSERT_PRE_DEV_VALUE_HOT(real_obj, "Value object");
860 BT_VALUE_TO_REAL(real_obj)->value = val;
861 BT_LOGT("Set real number value's raw value: value-addr=%p, value=%f",
862 real_obj, val);
863 }
864
865 const char *bt_value_string_get(const struct bt_value *string_obj)
866 {
867 BT_ASSERT_PRE_DEV_NON_NULL(string_obj, "Value object");
868 BT_ASSERT_PRE_DEV_VALUE_IS_TYPE(string_obj, BT_VALUE_TYPE_STRING);
869 return BT_VALUE_TO_STRING(string_obj)->gstr->str;
870 }
871
872 enum bt_value_string_set_status bt_value_string_set(
873 struct bt_value *string_obj, const char *val)
874 {
875 BT_ASSERT_PRE_NON_NULL(string_obj, "Value object");
876 BT_ASSERT_PRE_VALUE_IS_TYPE(string_obj, BT_VALUE_TYPE_STRING);
877 BT_ASSERT_PRE_DEV_VALUE_HOT(string_obj, "Value object");
878 g_string_assign(BT_VALUE_TO_STRING(string_obj)->gstr, val);
879 BT_LOGT("Set string value's raw value: value-addr=%p, raw-value-addr=%p",
880 string_obj, val);
881 return BT_FUNC_STATUS_OK;
882 }
883
884 uint64_t bt_value_array_get_length(const struct bt_value *array_obj)
885 {
886 BT_ASSERT_PRE_DEV_NON_NULL(array_obj, "Value object");
887 BT_ASSERT_PRE_DEV_VALUE_IS_TYPE(array_obj, BT_VALUE_TYPE_ARRAY);
888 return (uint64_t) BT_VALUE_TO_ARRAY(array_obj)->garray->len;
889 }
890
891 struct bt_value *bt_value_array_borrow_element_by_index(
892 struct bt_value *array_obj, uint64_t index)
893 {
894 struct bt_value_array *typed_array_obj =
895 BT_VALUE_TO_ARRAY(array_obj);
896
897 BT_ASSERT_PRE_DEV_NON_NULL(array_obj, "Value object");
898 BT_ASSERT_PRE_DEV_VALUE_IS_TYPE(array_obj, BT_VALUE_TYPE_ARRAY);
899 BT_ASSERT_PRE_DEV_VALID_INDEX(index, typed_array_obj->garray->len);
900 return g_ptr_array_index(typed_array_obj->garray, index);
901 }
902
903 const struct bt_value *bt_value_array_borrow_element_by_index_const(
904 const struct bt_value *array_obj,
905 uint64_t index)
906 {
907 return bt_value_array_borrow_element_by_index(
908 (void *) array_obj, index);
909 }
910
911 enum bt_value_array_append_element_status bt_value_array_append_element(
912 struct bt_value *array_obj,
913 struct bt_value *element_obj)
914 {
915 struct bt_value_array *typed_array_obj =
916 BT_VALUE_TO_ARRAY(array_obj);
917
918 BT_ASSERT_PRE_NON_NULL(array_obj, "Array value object");
919 BT_ASSERT_PRE_NON_NULL(element_obj, "Element value object");
920 BT_ASSERT_PRE_VALUE_IS_TYPE(array_obj, BT_VALUE_TYPE_ARRAY);
921 BT_ASSERT_PRE_DEV_VALUE_HOT(array_obj, "Array value object");
922 g_ptr_array_add(typed_array_obj->garray, element_obj);
923 bt_object_get_ref(element_obj);
924 BT_LOGT("Appended element to array value: array-value-addr=%p, "
925 "element-value-addr=%p, new-size=%u",
926 array_obj, element_obj, typed_array_obj->garray->len);
927 return BT_FUNC_STATUS_OK;
928 }
929
930 enum bt_value_array_append_element_status
931 bt_value_array_append_bool_element(struct bt_value *array_obj, bt_bool val)
932 {
933 enum bt_value_array_append_element_status ret;
934 struct bt_value *bool_obj = NULL;
935
936 bool_obj = bt_value_bool_create_init(val);
937 ret = bt_value_array_append_element(array_obj,
938 (void *) bool_obj);
939 bt_object_put_ref(bool_obj);
940 return ret;
941 }
942
943 enum bt_value_array_append_element_status
944 bt_value_array_append_unsigned_integer_element(struct bt_value *array_obj,
945 uint64_t val)
946 {
947 enum bt_value_array_append_element_status ret;
948 struct bt_value *integer_obj = NULL;
949
950 integer_obj = bt_value_integer_unsigned_create_init(val);
951 ret = bt_value_array_append_element(array_obj,
952 (void *) integer_obj);
953 bt_object_put_ref(integer_obj);
954 return ret;
955 }
956
957 enum bt_value_array_append_element_status
958 bt_value_array_append_signed_integer_element(struct bt_value *array_obj,
959 int64_t val)
960 {
961 enum bt_value_array_append_element_status ret;
962 struct bt_value *integer_obj = NULL;
963
964 integer_obj = bt_value_integer_signed_create_init(val);
965 ret = bt_value_array_append_element(array_obj,
966 (void *) integer_obj);
967 bt_object_put_ref(integer_obj);
968 return ret;
969 }
970
971 enum bt_value_array_append_element_status
972 bt_value_array_append_real_element(struct bt_value *array_obj, double val)
973 {
974 enum bt_value_array_append_element_status ret;
975 struct bt_value *real_obj = NULL;
976
977 real_obj = bt_value_real_create_init(val);
978 ret = bt_value_array_append_element(array_obj,
979 (void *) real_obj);
980 bt_object_put_ref(real_obj);
981 return ret;
982 }
983
984 enum bt_value_array_append_element_status
985 bt_value_array_append_string_element(struct bt_value *array_obj,
986 const char *val)
987 {
988 enum bt_value_array_append_element_status ret;
989 struct bt_value *string_obj = NULL;
990
991 string_obj = bt_value_string_create_init(val);
992 ret = bt_value_array_append_element(array_obj,
993 (void *) string_obj);
994 bt_object_put_ref(string_obj);
995 return ret;
996 }
997
998 enum bt_value_array_append_element_status
999 bt_value_array_append_empty_array_element(struct bt_value *array_obj,
1000 struct bt_value **element_obj)
1001 {
1002 enum bt_value_array_append_element_status ret;
1003 struct bt_value *empty_array_obj = NULL;
1004
1005 empty_array_obj = bt_value_array_create();
1006 ret = bt_value_array_append_element(array_obj,
1007 (void *) empty_array_obj);
1008
1009 if (element_obj) {
1010 *element_obj = empty_array_obj;
1011 }
1012
1013 bt_object_put_ref(empty_array_obj);
1014 return ret;
1015 }
1016
1017 enum bt_value_array_append_element_status
1018 bt_value_array_append_empty_map_element(struct bt_value *array_obj,
1019 struct bt_value **element_obj)
1020 {
1021 enum bt_value_array_append_element_status ret;
1022 struct bt_value *map_obj = NULL;
1023
1024 map_obj = bt_value_map_create();
1025 ret = bt_value_array_append_element(array_obj,
1026 (void *) map_obj);
1027
1028 if (element_obj) {
1029 *element_obj = map_obj;
1030 }
1031
1032 bt_object_put_ref(map_obj);
1033 return ret;
1034 }
1035
1036 enum bt_value_array_set_element_by_index_status
1037 bt_value_array_set_element_by_index(struct bt_value *array_obj, uint64_t index,
1038 struct bt_value *element_obj)
1039 {
1040 struct bt_value_array *typed_array_obj =
1041 BT_VALUE_TO_ARRAY(array_obj);
1042
1043 BT_ASSERT_PRE_NON_NULL(array_obj, "Array value object");
1044 BT_ASSERT_PRE_NON_NULL(element_obj, "Element value object");
1045 BT_ASSERT_PRE_VALUE_IS_TYPE(array_obj, BT_VALUE_TYPE_ARRAY);
1046 BT_ASSERT_PRE_DEV_VALUE_HOT(array_obj, "Array value object");
1047 BT_ASSERT_PRE_VALID_INDEX(index, typed_array_obj->garray->len);
1048 bt_object_put_ref(g_ptr_array_index(typed_array_obj->garray, index));
1049 g_ptr_array_index(typed_array_obj->garray, index) = element_obj;
1050 bt_object_get_ref(element_obj);
1051 BT_LOGT("Set array value's element: array-value-addr=%p, "
1052 "index=%" PRIu64 ", element-value-addr=%p",
1053 array_obj, index, element_obj);
1054 return BT_FUNC_STATUS_OK;
1055 }
1056
1057 uint64_t bt_value_map_get_size(const struct bt_value *map_obj)
1058 {
1059 BT_ASSERT_PRE_DEV_NON_NULL(map_obj, "Value object");
1060 BT_ASSERT_PRE_DEV_VALUE_IS_TYPE(map_obj, BT_VALUE_TYPE_MAP);
1061 return (uint64_t) g_hash_table_size(BT_VALUE_TO_MAP(map_obj)->ght);
1062 }
1063
1064 struct bt_value *bt_value_map_borrow_entry_value(struct bt_value *map_obj,
1065 const char *key)
1066 {
1067 BT_ASSERT_PRE_DEV_NON_NULL(map_obj, "Value object");
1068 BT_ASSERT_PRE_DEV_NON_NULL(key, "Key");
1069 BT_ASSERT_PRE_DEV_VALUE_IS_TYPE(map_obj, BT_VALUE_TYPE_MAP);
1070 return g_hash_table_lookup(BT_VALUE_TO_MAP(map_obj)->ght,
1071 GUINT_TO_POINTER(g_quark_from_string(key)));
1072 }
1073
1074 const struct bt_value *bt_value_map_borrow_entry_value_const(
1075 const struct bt_value *map_obj, const char *key)
1076 {
1077 return bt_value_map_borrow_entry_value((void *) map_obj, key);
1078 }
1079
1080 bt_bool bt_value_map_has_entry(const struct bt_value *map_obj, const char *key)
1081 {
1082 BT_ASSERT_PRE_DEV_NON_NULL(map_obj, "Value object");
1083 BT_ASSERT_PRE_DEV_NON_NULL(key, "Key");
1084 BT_ASSERT_PRE_DEV_VALUE_IS_TYPE(map_obj, BT_VALUE_TYPE_MAP);
1085 return bt_g_hash_table_contains(BT_VALUE_TO_MAP(map_obj)->ght,
1086 GUINT_TO_POINTER(g_quark_from_string(key)));
1087 }
1088
1089 enum bt_value_map_insert_entry_status bt_value_map_insert_entry(
1090 struct bt_value *map_obj, const char *key,
1091 struct bt_value *element_obj)
1092 {
1093 BT_ASSERT_PRE_NON_NULL(map_obj, "Map value object");
1094 BT_ASSERT_PRE_NON_NULL(key, "Key");
1095 BT_ASSERT_PRE_NON_NULL(element_obj, "Element value object");
1096 BT_ASSERT_PRE_VALUE_IS_TYPE(map_obj, BT_VALUE_TYPE_MAP);
1097 BT_ASSERT_PRE_DEV_VALUE_HOT(map_obj, "Map value object");
1098 g_hash_table_insert(BT_VALUE_TO_MAP(map_obj)->ght,
1099 GUINT_TO_POINTER(g_quark_from_string(key)), element_obj);
1100 bt_object_get_ref(element_obj);
1101 BT_LOGT("Inserted value into map value: map-value-addr=%p, "
1102 "key=\"%s\", element-value-addr=%p",
1103 map_obj, key, element_obj);
1104 return BT_FUNC_STATUS_OK;
1105 }
1106
1107 enum bt_value_map_insert_entry_status bt_value_map_insert_bool_entry(
1108 struct bt_value *map_obj, const char *key, bt_bool val)
1109 {
1110 enum bt_value_map_insert_entry_status ret;
1111 struct bt_value *bool_obj = NULL;
1112
1113 bool_obj = bt_value_bool_create_init(val);
1114 ret = bt_value_map_insert_entry(map_obj, key,
1115 (void *) bool_obj);
1116 bt_object_put_ref(bool_obj);
1117 return ret;
1118 }
1119
1120 enum bt_value_map_insert_entry_status
1121 bt_value_map_insert_unsigned_integer_entry(struct bt_value *map_obj,
1122 const char *key, uint64_t val)
1123 {
1124 enum bt_value_map_insert_entry_status ret;
1125 struct bt_value *integer_obj = NULL;
1126
1127 integer_obj = bt_value_integer_unsigned_create_init(val);
1128 ret = bt_value_map_insert_entry(map_obj, key,
1129 (void *) integer_obj);
1130 bt_object_put_ref(integer_obj);
1131 return ret;
1132 }
1133
1134 enum bt_value_map_insert_entry_status
1135 bt_value_map_insert_signed_integer_entry(struct bt_value *map_obj,
1136 const char *key, int64_t val)
1137 {
1138 enum bt_value_map_insert_entry_status ret;
1139 struct bt_value *integer_obj = NULL;
1140
1141 integer_obj = bt_value_integer_signed_create_init(val);
1142 ret = bt_value_map_insert_entry(map_obj, key,
1143 (void *) integer_obj);
1144 bt_object_put_ref(integer_obj);
1145 return ret;
1146 }
1147
1148 enum bt_value_map_insert_entry_status bt_value_map_insert_real_entry(
1149 struct bt_value *map_obj, const char *key, double val)
1150 {
1151 enum bt_value_map_insert_entry_status ret;
1152 struct bt_value *real_obj = NULL;
1153
1154 real_obj = bt_value_real_create_init(val);
1155 ret = bt_value_map_insert_entry(map_obj, key,
1156 (void *) real_obj);
1157 bt_object_put_ref(real_obj);
1158 return ret;
1159 }
1160
1161 enum bt_value_map_insert_entry_status bt_value_map_insert_string_entry(
1162 struct bt_value *map_obj, const char *key,
1163 const char *val)
1164 {
1165 enum bt_value_map_insert_entry_status ret;
1166 struct bt_value *string_obj = NULL;
1167
1168 string_obj = bt_value_string_create_init(val);
1169 ret = bt_value_map_insert_entry(map_obj, key,
1170 (void *) string_obj);
1171 bt_object_put_ref(string_obj);
1172 return ret;
1173 }
1174
1175 enum bt_value_map_insert_entry_status
1176 bt_value_map_insert_empty_array_entry(
1177 struct bt_value *map_obj, const char *key,
1178 bt_value **entry_obj)
1179 {
1180 enum bt_value_map_insert_entry_status ret;
1181 struct bt_value *array_obj = NULL;
1182
1183 array_obj = bt_value_array_create();
1184 ret = bt_value_map_insert_entry(map_obj, key,
1185 (void *) array_obj);
1186
1187 if (entry_obj) {
1188 *entry_obj = array_obj;
1189 }
1190
1191 bt_object_put_ref(array_obj);
1192 return ret;
1193 }
1194
1195 enum bt_value_map_insert_entry_status
1196 bt_value_map_insert_empty_map_entry(struct bt_value *map_obj, const char *key,
1197 bt_value **entry_obj)
1198 {
1199 enum bt_value_map_insert_entry_status ret;
1200 struct bt_value *empty_map_obj = NULL;
1201
1202 empty_map_obj = bt_value_map_create();
1203 ret = bt_value_map_insert_entry(map_obj, key,
1204 (void *) empty_map_obj);
1205
1206 if (entry_obj) {
1207 *entry_obj = empty_map_obj;
1208 }
1209
1210 bt_object_put_ref(empty_map_obj);
1211 return ret;
1212 }
1213
1214 enum bt_value_map_foreach_entry_status bt_value_map_foreach_entry(
1215 struct bt_value *map_obj, bt_value_map_foreach_entry_func func,
1216 void *data)
1217 {
1218 enum bt_value_map_foreach_entry_status ret = BT_FUNC_STATUS_OK;
1219 gpointer key, element_obj;
1220 GHashTableIter iter;
1221 struct bt_value_map *typed_map_obj = BT_VALUE_TO_MAP(map_obj);
1222
1223 BT_ASSERT_PRE_DEV_NON_NULL(map_obj, "Value object");
1224 BT_ASSERT_PRE_DEV_NON_NULL(func, "Callback");
1225 BT_ASSERT_PRE_DEV_VALUE_IS_TYPE(map_obj, BT_VALUE_TYPE_MAP);
1226 g_hash_table_iter_init(&iter, typed_map_obj->ght);
1227
1228 while (g_hash_table_iter_next(&iter, &key, &element_obj)) {
1229 const char *key_str = g_quark_to_string(GPOINTER_TO_UINT(key));
1230
1231 if (!func(key_str, element_obj, data)) {
1232 BT_LOGT("User interrupted the loop: key=\"%s\", "
1233 "value-addr=%p, data=%p",
1234 key_str, element_obj, data);
1235 ret = BT_FUNC_STATUS_INTERRUPTED;
1236 break;
1237 }
1238 }
1239
1240 return ret;
1241 }
1242
1243 enum bt_value_map_foreach_entry_const_status bt_value_map_foreach_entry_const(
1244 const struct bt_value *map_obj,
1245 bt_value_map_foreach_entry_const_func func, void *data)
1246 {
1247 return (int) bt_value_map_foreach_entry((void *) map_obj,
1248 (bt_value_map_foreach_entry_func) func, data);
1249 }
1250
1251 struct extend_map_element_data {
1252 struct bt_value *base_obj;
1253 int status;
1254 };
1255
1256 static
1257 bt_bool extend_map_element(const char *key,
1258 const struct bt_value *extension_obj_elem, void *data)
1259 {
1260 bt_bool ret = BT_TRUE;
1261 struct extend_map_element_data *extend_data = data;
1262 struct bt_value *extension_obj_elem_copy = NULL;
1263
1264 /* Copy object which is to replace the current one */
1265 extend_data->status = bt_value_copy(extension_obj_elem,
1266 &extension_obj_elem_copy);
1267 if (extend_data->status) {
1268 BT_LIB_LOGE_APPEND_CAUSE("Cannot copy map element: %!+v",
1269 extension_obj_elem);
1270 goto error;
1271 }
1272
1273 BT_ASSERT(extension_obj_elem_copy);
1274
1275 /* Replace in base map value. */
1276 extend_data->status = bt_value_map_insert_entry(
1277 extend_data->base_obj, key,
1278 (void *) extension_obj_elem_copy);
1279 if (extend_data->status) {
1280 BT_LIB_LOGE_APPEND_CAUSE(
1281 "Cannot replace value in base map value: key=\"%s\", "
1282 "%![base-map-value-]+v, %![element-value-]+v",
1283 key, extend_data->base_obj,
1284 extension_obj_elem_copy);
1285 goto error;
1286 }
1287
1288 goto end;
1289
1290 error:
1291 BT_ASSERT(extend_data->status != BT_FUNC_STATUS_OK);
1292 ret = BT_FALSE;
1293
1294 end:
1295 BT_OBJECT_PUT_REF_AND_RESET(extension_obj_elem_copy);
1296 return ret;
1297 }
1298
1299 enum bt_value_map_extend_status bt_value_map_extend(
1300 struct bt_value *base_map_obj,
1301 const struct bt_value *extension_obj)
1302 {
1303 struct extend_map_element_data extend_data = {
1304 .base_obj = NULL,
1305 .status = BT_FUNC_STATUS_OK,
1306 };
1307
1308 BT_ASSERT_PRE_NON_NULL(base_map_obj, "Base value object");
1309 BT_ASSERT_PRE_DEV_VALUE_HOT(base_map_obj, "Base value object");
1310 BT_ASSERT_PRE_NON_NULL(extension_obj, "Extension value object");
1311 BT_ASSERT_PRE_VALUE_IS_TYPE(base_map_obj, BT_VALUE_TYPE_MAP);
1312 BT_ASSERT_PRE_VALUE_IS_TYPE(extension_obj, BT_VALUE_TYPE_MAP);
1313 BT_LOGD("Extending map value: base-value-addr=%p, extension-value-addr=%p",
1314 base_map_obj, extension_obj);
1315
1316 /*
1317 * For each key in the extension map object, replace this key
1318 * in the base map object.
1319 */
1320 extend_data.base_obj = base_map_obj;
1321
1322 if (bt_value_map_foreach_entry_const(extension_obj, extend_map_element,
1323 &extend_data)) {
1324 BT_LIB_LOGE_APPEND_CAUSE(
1325 "Cannot iterate on the extension object's elements: "
1326 "%![extension-value-]+v", extension_obj);
1327 }
1328
1329 return extend_data.status;
1330 }
1331
1332 enum bt_value_copy_status bt_value_copy(const struct bt_value *object,
1333 struct bt_value **copy_obj)
1334 {
1335 enum bt_value_copy_status status = BT_FUNC_STATUS_OK;
1336
1337 BT_ASSERT_PRE_NON_NULL(object, "Value object");
1338 BT_ASSERT_PRE_NON_NULL(copy_obj, "Value object copy (output)");
1339 BT_LOGD("Copying value object: addr=%p", object);
1340 *copy_obj = copy_funcs[object->type](object);
1341 if (*copy_obj) {
1342 BT_LOGD("Copied value object: copy-value-addr=%p",
1343 copy_obj);
1344 } else {
1345 status = BT_FUNC_STATUS_MEMORY_ERROR;
1346 *copy_obj = NULL;
1347 BT_LIB_LOGE_APPEND_CAUSE("Failed to copy value object.");
1348 }
1349
1350 return status;
1351 }
1352
1353 bt_bool bt_value_is_equal(const struct bt_value *object_a,
1354 const struct bt_value *object_b)
1355 {
1356 bt_bool ret = BT_FALSE;
1357
1358 BT_ASSERT_PRE_DEV_NON_NULL(object_a, "Value object A");
1359 BT_ASSERT_PRE_DEV_NON_NULL(object_b, "Value object B");
1360
1361 if (object_a->type != object_b->type) {
1362 BT_LOGT("Values are different: type mismatch: "
1363 "value-a-addr=%p, value-b-addr=%p, "
1364 "value-a-type=%s, value-b-type=%s",
1365 object_a, object_b,
1366 bt_common_value_type_string(object_a->type),
1367 bt_common_value_type_string(object_b->type));
1368 goto end;
1369 }
1370
1371 ret = is_equal_funcs[object_a->type](object_a, object_b);
1372
1373 end:
1374 return ret;
1375 }
1376
1377 void bt_value_get_ref(const struct bt_value *value)
1378 {
1379 bt_object_get_ref(value);
1380 }
1381
1382 void bt_value_put_ref(const struct bt_value *value)
1383 {
1384 bt_object_put_ref(value);
1385 }
This page took 0.070303 seconds and 3 git commands to generate.