lib: make bt_value_map_foreach_entry_{const_}func() return a status code
[babeltrace.git] / include / babeltrace2 / value-const.h
CommitLineData
924dc299
PP
1#ifndef BABELTRACE2_VALUE_CONST_H
2#define BABELTRACE2_VALUE_CONST_H
05e21286
PP
3
4/*
bbb7b5f0 5 * Copyright (c) 2010-2019 EfficiOS Inc. and Linux Foundation
05e21286
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
4fa90f32
PP
26#ifndef __BT_IN_BABELTRACE_H
27# error "Please include <babeltrace2/babeltrace.h> instead."
28#endif
29
05e21286
PP
30#include <stdint.h>
31#include <stddef.h>
32
3fadfbc0 33#include <babeltrace2/types.h>
05e21286 34
05e21286
PP
35#ifdef __cplusplus
36extern "C" {
37#endif
38
4cdfc5e8 39typedef enum bt_value_type {
40f4ba76 40 /// Null value object.
9c3869a9 41 BT_VALUE_TYPE_NULL = 1 << 0,
40f4ba76
PP
42
43 /// Boolean value object (holds #BT_TRUE or #BT_FALSE).
9c3869a9
PP
44 BT_VALUE_TYPE_BOOL = 1 << 1,
45
46 BT_VALUE_TYPE_INTEGER = 1 << 2,
40f4ba76 47
fdd3a2da 48 /// Unsigned integer value object (holds an unsigned 64-bit integer raw value).
9c3869a9 49 BT_VALUE_TYPE_UNSIGNED_INTEGER = (1 << 3) | BT_VALUE_TYPE_INTEGER,
fdd3a2da
PP
50
51 /// Signed integer value object (holds a signed 64-bit integer raw value).
9c3869a9 52 BT_VALUE_TYPE_SIGNED_INTEGER = (1 << 4) | BT_VALUE_TYPE_INTEGER,
40f4ba76
PP
53
54 /// Floating point number value object (holds a \c double raw value).
9c3869a9 55 BT_VALUE_TYPE_REAL = 1 << 5,
40f4ba76
PP
56
57 /// String value object.
9c3869a9 58 BT_VALUE_TYPE_STRING = 1 << 6,
40f4ba76
PP
59
60 /// Array value object.
9c3869a9 61 BT_VALUE_TYPE_ARRAY = 1 << 7,
40f4ba76
PP
62
63 /// Map value object.
9c3869a9 64 BT_VALUE_TYPE_MAP = 1 << 8,
4cdfc5e8 65} bt_value_type;
40f4ba76 66
4cdfc5e8 67extern bt_value_type bt_value_get_type(const bt_value *object);
05e21286 68
9c3869a9
PP
69static inline
70bt_bool bt_value_type_is(const bt_value_type type,
71 const bt_value_type type_to_check)
72{
73 return (type & type_to_check) == type_to_check;
74}
75
05e21286 76static inline
b19ff26f 77bt_bool bt_value_is_null(const bt_value *object)
05e21286
PP
78{
79 return bt_value_get_type(object) == BT_VALUE_TYPE_NULL;
80}
81
82static inline
b19ff26f 83bt_bool bt_value_is_bool(const bt_value *object)
05e21286
PP
84{
85 return bt_value_get_type(object) == BT_VALUE_TYPE_BOOL;
86}
87
88static inline
fdd3a2da
PP
89bt_bool bt_value_is_unsigned_integer(const bt_value *object)
90{
91 return bt_value_get_type(object) == BT_VALUE_TYPE_UNSIGNED_INTEGER;
92}
93
94static inline
95bt_bool bt_value_is_signed_integer(const bt_value *object)
05e21286 96{
fdd3a2da 97 return bt_value_get_type(object) == BT_VALUE_TYPE_SIGNED_INTEGER;
05e21286
PP
98}
99
100static inline
b19ff26f 101bt_bool bt_value_is_real(const bt_value *object)
05e21286
PP
102{
103 return bt_value_get_type(object) == BT_VALUE_TYPE_REAL;
104}
105
106static inline
b19ff26f 107bt_bool bt_value_is_string(const bt_value *object)
05e21286
PP
108{
109 return bt_value_get_type(object) == BT_VALUE_TYPE_STRING;
110}
111
112static inline
b19ff26f 113bt_bool bt_value_is_array(const bt_value *object)
05e21286
PP
114{
115 return bt_value_get_type(object) == BT_VALUE_TYPE_ARRAY;
116}
117
118static inline
b19ff26f 119bt_bool bt_value_is_map(const bt_value *object)
05e21286
PP
120{
121 return bt_value_get_type(object) == BT_VALUE_TYPE_MAP;
122}
123
d24d5663
PP
124typedef enum bt_value_copy_status {
125 BT_VALUE_COPY_STATUS_MEMORY_ERROR = __BT_FUNC_STATUS_MEMORY_ERROR,
126 BT_VALUE_COPY_STATUS_OK = __BT_FUNC_STATUS_OK,
127} bt_value_copy_status;
128
129extern bt_value_copy_status bt_value_copy(const bt_value *object,
b19ff26f 130 bt_value **copy);
05e21286 131
cd933d89 132extern bt_bool bt_value_is_equal(const bt_value *object_a,
b19ff26f 133 const bt_value *object_b);
05e21286 134
b19ff26f 135extern bt_bool bt_value_bool_get(const bt_value *bool_obj);
05e21286 136
9c08c816 137extern uint64_t bt_value_integer_unsigned_get(const bt_value *integer_obj);
fdd3a2da 138
9c08c816 139extern int64_t bt_value_integer_signed_get(const bt_value *integer_obj);
05e21286 140
b19ff26f 141extern double bt_value_real_get(const bt_value *real_obj);
05e21286 142
b19ff26f 143extern const char *bt_value_string_get(const bt_value *string_obj);
05e21286 144
393729a6 145extern uint64_t bt_value_array_get_length(const bt_value *array_obj);
05e21286
PP
146
147static inline
b19ff26f 148bt_bool bt_value_array_is_empty(const bt_value *array_obj)
05e21286 149{
393729a6 150 return bt_value_array_get_length(array_obj) == 0;
05e21286
PP
151}
152
b19ff26f
PP
153extern const bt_value *bt_value_array_borrow_element_by_index_const(
154 const bt_value *array_obj, uint64_t index);
05e21286 155
b19ff26f 156extern uint64_t bt_value_map_get_size(const bt_value *map_obj);
05e21286
PP
157
158static inline
b19ff26f 159bt_bool bt_value_map_is_empty(const bt_value *map_obj)
05e21286
PP
160{
161 return bt_value_map_get_size(map_obj) == 0;
162}
163
b19ff26f
PP
164extern const bt_value *bt_value_map_borrow_entry_value_const(
165 const bt_value *map_obj, const char *key);
05e21286 166
27c61ce8
PP
167typedef enum bt_value_map_foreach_entry_const_func_status {
168 BT_VALUE_MAP_FOREACH_ENTRY_CONST_FUNC_STATUS_OK = __BT_FUNC_STATUS_OK,
169 BT_VALUE_MAP_FOREACH_ENTRY_CONST_FUNC_STATUS_ERROR = __BT_FUNC_STATUS_ERROR,
170 BT_VALUE_MAP_FOREACH_ENTRY_CONST_FUNC_STATUS_MEMORY_ERROR = __BT_FUNC_STATUS_MEMORY_ERROR,
171 BT_VALUE_MAP_FOREACH_ENTRY_CONST_FUNC_STATUS_INTERRUPT = __BT_FUNC_STATUS_INTERRUPTED,
172} bt_value_map_foreach_entry_const_func_status;
173
174typedef bt_value_map_foreach_entry_const_func_status
175 (* bt_value_map_foreach_entry_const_func)(const char *key,
176 const bt_value *object, void *data);
05e21286 177
d24d5663 178typedef enum bt_value_map_foreach_entry_const_status {
d24d5663 179 BT_VALUE_MAP_FOREACH_ENTRY_CONST_STATUS_OK = __BT_FUNC_STATUS_OK,
27c61ce8
PP
180 BT_VALUE_MAP_FOREACH_ENTRY_CONST_STATUS_ERROR = __BT_FUNC_STATUS_ERROR,
181 BT_VALUE_MAP_FOREACH_ENTRY_CONST_STATUS_MEMORY_ERROR = __BT_FUNC_STATUS_MEMORY_ERROR,
182 BT_VALUE_MAP_FOREACH_ENTRY_CONST_STATUS_USER_ERROR = __BT_FUNC_STATUS_USER_ERROR,
9b4f9b42 183 BT_VALUE_MAP_FOREACH_ENTRY_CONST_STATUS_INTERRUPTED = __BT_FUNC_STATUS_INTERRUPTED,
d24d5663
PP
184} bt_value_map_foreach_entry_const_status;
185
186extern bt_value_map_foreach_entry_const_status bt_value_map_foreach_entry_const(
b19ff26f 187 const bt_value *map_obj,
40f4ba76 188 bt_value_map_foreach_entry_const_func func, void *data);
05e21286 189
b19ff26f 190extern bt_bool bt_value_map_has_entry(const bt_value *map_obj,
05e21286
PP
191 const char *key);
192
b19ff26f 193extern void bt_value_get_ref(const bt_value *value);
c5b9b441 194
b19ff26f 195extern void bt_value_put_ref(const bt_value *value);
c5b9b441
PP
196
197#define BT_VALUE_PUT_REF_AND_RESET(_var) \
198 do { \
199 bt_value_put_ref(_var); \
200 (_var) = NULL; \
201 } while (0)
202
203#define BT_VALUE_MOVE_REF(_var_dst, _var_src) \
204 do { \
205 bt_value_put_ref(_var_dst); \
206 (_var_dst) = (_var_src); \
207 (_var_src) = NULL; \
208 } while (0)
209
05e21286
PP
210#ifdef __cplusplus
211}
212#endif
213
924dc299 214#endif /* BABELTRACE2_VALUE_CONST_H */
This page took 0.050601 seconds and 4 git commands to generate.