values: make `bt_value_map_extend()` extend the provided base map
[babeltrace.git] / include / babeltrace2 / value-const.h
CommitLineData
3fd40f46
PP
1#ifndef BABELTRACE2_VALUE_CONST_H
2#define BABELTRACE2_VALUE_CONST_H
ce141536
PP
3
4/*
0dcb770f 5 * Copyright (c) 2010-2019 EfficiOS Inc. and Linux Foundation
ce141536
PP
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 * SOFTWARE.
24 */
25
9df34b44
PP
26#ifndef __BT_IN_BABELTRACE_H
27# error "Please include <babeltrace2/babeltrace.h> instead."
28#endif
29
ce141536
PP
30#include <stdint.h>
31#include <stddef.h>
32
71c5da58 33#include <babeltrace2/types.h>
ce141536 34
ce141536
PP
35#ifdef __cplusplus
36extern "C" {
37#endif
38
ee78f405 39typedef enum bt_value_type {
78cf9df6 40 /// Null value object.
68d9d039 41 BT_VALUE_TYPE_NULL = 0,
78cf9df6
PP
42
43 /// Boolean value object (holds #BT_TRUE or #BT_FALSE).
68d9d039 44 BT_VALUE_TYPE_BOOL = 1,
78cf9df6 45
68d9d039
PP
46 /// Unsigned integer value object (holds an unsigned 64-bit integer raw value).
47 BT_VALUE_TYPE_UNSIGNED_INTEGER = 2,
48
49 /// Signed integer value object (holds a signed 64-bit integer raw value).
50 BT_VALUE_TYPE_SIGNED_INTEGER = 3,
78cf9df6
PP
51
52 /// Floating point number value object (holds a \c double raw value).
68d9d039 53 BT_VALUE_TYPE_REAL = 4,
78cf9df6
PP
54
55 /// String value object.
68d9d039 56 BT_VALUE_TYPE_STRING = 5,
78cf9df6
PP
57
58 /// Array value object.
68d9d039 59 BT_VALUE_TYPE_ARRAY = 6,
78cf9df6
PP
60
61 /// Map value object.
68d9d039 62 BT_VALUE_TYPE_MAP = 7,
ee78f405 63} bt_value_type;
78cf9df6 64
ee78f405 65extern bt_value_type bt_value_get_type(const bt_value *object);
ce141536
PP
66
67static inline
8eee8ea2 68bt_bool bt_value_is_null(const bt_value *object)
ce141536
PP
69{
70 return bt_value_get_type(object) == BT_VALUE_TYPE_NULL;
71}
72
73static inline
8eee8ea2 74bt_bool bt_value_is_bool(const bt_value *object)
ce141536
PP
75{
76 return bt_value_get_type(object) == BT_VALUE_TYPE_BOOL;
77}
78
79static inline
68d9d039
PP
80bt_bool bt_value_is_unsigned_integer(const bt_value *object)
81{
82 return bt_value_get_type(object) == BT_VALUE_TYPE_UNSIGNED_INTEGER;
83}
84
85static inline
86bt_bool bt_value_is_signed_integer(const bt_value *object)
ce141536 87{
68d9d039 88 return bt_value_get_type(object) == BT_VALUE_TYPE_SIGNED_INTEGER;
ce141536
PP
89}
90
91static inline
8eee8ea2 92bt_bool bt_value_is_real(const bt_value *object)
ce141536
PP
93{
94 return bt_value_get_type(object) == BT_VALUE_TYPE_REAL;
95}
96
97static inline
8eee8ea2 98bt_bool bt_value_is_string(const bt_value *object)
ce141536
PP
99{
100 return bt_value_get_type(object) == BT_VALUE_TYPE_STRING;
101}
102
103static inline
8eee8ea2 104bt_bool bt_value_is_array(const bt_value *object)
ce141536
PP
105{
106 return bt_value_get_type(object) == BT_VALUE_TYPE_ARRAY;
107}
108
109static inline
8eee8ea2 110bt_bool bt_value_is_map(const bt_value *object)
ce141536
PP
111{
112 return bt_value_get_type(object) == BT_VALUE_TYPE_MAP;
113}
114
fb25b9e3
PP
115typedef enum bt_value_copy_status {
116 BT_VALUE_COPY_STATUS_MEMORY_ERROR = __BT_FUNC_STATUS_MEMORY_ERROR,
117 BT_VALUE_COPY_STATUS_OK = __BT_FUNC_STATUS_OK,
118} bt_value_copy_status;
119
120extern bt_value_copy_status bt_value_copy(const bt_value *object,
8eee8ea2 121 bt_value **copy);
ce141536 122
e1c423f9 123extern bt_bool bt_value_is_equal(const bt_value *object_a,
8eee8ea2 124 const bt_value *object_b);
ce141536 125
8eee8ea2 126extern bt_bool bt_value_bool_get(const bt_value *bool_obj);
ce141536 127
60bbfc7c 128extern uint64_t bt_value_integer_unsigned_get(const bt_value *integer_obj);
68d9d039 129
60bbfc7c 130extern int64_t bt_value_integer_signed_get(const bt_value *integer_obj);
ce141536 131
8eee8ea2 132extern double bt_value_real_get(const bt_value *real_obj);
ce141536 133
8eee8ea2 134extern const char *bt_value_string_get(const bt_value *string_obj);
ce141536 135
1270d0e9 136extern uint64_t bt_value_array_get_length(const bt_value *array_obj);
ce141536
PP
137
138static inline
8eee8ea2 139bt_bool bt_value_array_is_empty(const bt_value *array_obj)
ce141536 140{
1270d0e9 141 return bt_value_array_get_length(array_obj) == 0;
ce141536
PP
142}
143
8eee8ea2
PP
144extern const bt_value *bt_value_array_borrow_element_by_index_const(
145 const bt_value *array_obj, uint64_t index);
ce141536 146
8eee8ea2 147extern uint64_t bt_value_map_get_size(const bt_value *map_obj);
ce141536
PP
148
149static inline
8eee8ea2 150bt_bool bt_value_map_is_empty(const bt_value *map_obj)
ce141536
PP
151{
152 return bt_value_map_get_size(map_obj) == 0;
153}
154
8eee8ea2
PP
155extern const bt_value *bt_value_map_borrow_entry_value_const(
156 const bt_value *map_obj, const char *key);
ce141536 157
78cf9df6 158typedef bt_bool (* bt_value_map_foreach_entry_const_func)(const char *key,
8eee8ea2 159 const bt_value *object, void *data);
ce141536 160
fb25b9e3 161typedef enum bt_value_map_foreach_entry_const_status {
fb25b9e3 162 BT_VALUE_MAP_FOREACH_ENTRY_CONST_STATUS_OK = __BT_FUNC_STATUS_OK,
d73bb381 163 BT_VALUE_MAP_FOREACH_ENTRY_CONST_STATUS_INTERRUPTED = __BT_FUNC_STATUS_INTERRUPTED,
fb25b9e3
PP
164} bt_value_map_foreach_entry_const_status;
165
166extern bt_value_map_foreach_entry_const_status bt_value_map_foreach_entry_const(
8eee8ea2 167 const bt_value *map_obj,
78cf9df6 168 bt_value_map_foreach_entry_const_func func, void *data);
ce141536 169
8eee8ea2 170extern bt_bool bt_value_map_has_entry(const bt_value *map_obj,
ce141536
PP
171 const char *key);
172
8eee8ea2 173extern void bt_value_get_ref(const bt_value *value);
8c6884d9 174
8eee8ea2 175extern void bt_value_put_ref(const bt_value *value);
8c6884d9
PP
176
177#define BT_VALUE_PUT_REF_AND_RESET(_var) \
178 do { \
179 bt_value_put_ref(_var); \
180 (_var) = NULL; \
181 } while (0)
182
183#define BT_VALUE_MOVE_REF(_var_dst, _var_src) \
184 do { \
185 bt_value_put_ref(_var_dst); \
186 (_var_dst) = (_var_src); \
187 (_var_src) = NULL; \
188 } while (0)
189
ce141536
PP
190#ifdef __cplusplus
191}
192#endif
193
3fd40f46 194#endif /* BABELTRACE2_VALUE_CONST_H */
This page took 0.058982 seconds and 4 git commands to generate.