lib: force user to include `<babeltrace2/babeltrace.h>`
[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/*
e2f7325d 5 * Copyright (c) 2015-2018 Philippe Proulx <pproulx@efficios.com>
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
b19ff26f 33/* For bt_bool, bt_value */
3fadfbc0 34#include <babeltrace2/types.h>
05e21286 35
05e21286
PP
36#ifdef __cplusplus
37extern "C" {
38#endif
39
4cdfc5e8 40typedef enum bt_value_type {
40f4ba76 41 /// Null value object.
fdd3a2da 42 BT_VALUE_TYPE_NULL = 0,
40f4ba76
PP
43
44 /// Boolean value object (holds #BT_TRUE or #BT_FALSE).
fdd3a2da 45 BT_VALUE_TYPE_BOOL = 1,
40f4ba76 46
fdd3a2da
PP
47 /// Unsigned integer value object (holds an unsigned 64-bit integer raw value).
48 BT_VALUE_TYPE_UNSIGNED_INTEGER = 2,
49
50 /// Signed integer value object (holds a signed 64-bit integer raw value).
51 BT_VALUE_TYPE_SIGNED_INTEGER = 3,
40f4ba76
PP
52
53 /// Floating point number value object (holds a \c double raw value).
fdd3a2da 54 BT_VALUE_TYPE_REAL = 4,
40f4ba76
PP
55
56 /// String value object.
fdd3a2da 57 BT_VALUE_TYPE_STRING = 5,
40f4ba76
PP
58
59 /// Array value object.
fdd3a2da 60 BT_VALUE_TYPE_ARRAY = 6,
40f4ba76
PP
61
62 /// Map value object.
fdd3a2da 63 BT_VALUE_TYPE_MAP = 7,
4cdfc5e8 64} bt_value_type;
40f4ba76 65
4cdfc5e8 66extern bt_value_type bt_value_get_type(const bt_value *object);
05e21286
PP
67
68static inline
b19ff26f 69bt_bool bt_value_is_null(const bt_value *object)
05e21286
PP
70{
71 return bt_value_get_type(object) == BT_VALUE_TYPE_NULL;
72}
73
74static inline
b19ff26f 75bt_bool bt_value_is_bool(const bt_value *object)
05e21286
PP
76{
77 return bt_value_get_type(object) == BT_VALUE_TYPE_BOOL;
78}
79
80static inline
fdd3a2da
PP
81bt_bool bt_value_is_unsigned_integer(const bt_value *object)
82{
83 return bt_value_get_type(object) == BT_VALUE_TYPE_UNSIGNED_INTEGER;
84}
85
86static inline
87bt_bool bt_value_is_signed_integer(const bt_value *object)
05e21286 88{
fdd3a2da 89 return bt_value_get_type(object) == BT_VALUE_TYPE_SIGNED_INTEGER;
05e21286
PP
90}
91
92static inline
b19ff26f 93bt_bool bt_value_is_real(const bt_value *object)
05e21286
PP
94{
95 return bt_value_get_type(object) == BT_VALUE_TYPE_REAL;
96}
97
98static inline
b19ff26f 99bt_bool bt_value_is_string(const bt_value *object)
05e21286
PP
100{
101 return bt_value_get_type(object) == BT_VALUE_TYPE_STRING;
102}
103
104static inline
b19ff26f 105bt_bool bt_value_is_array(const bt_value *object)
05e21286
PP
106{
107 return bt_value_get_type(object) == BT_VALUE_TYPE_ARRAY;
108}
109
110static inline
b19ff26f 111bt_bool bt_value_is_map(const bt_value *object)
05e21286
PP
112{
113 return bt_value_get_type(object) == BT_VALUE_TYPE_MAP;
114}
115
d24d5663
PP
116typedef enum bt_value_copy_status {
117 BT_VALUE_COPY_STATUS_MEMORY_ERROR = __BT_FUNC_STATUS_MEMORY_ERROR,
118 BT_VALUE_COPY_STATUS_OK = __BT_FUNC_STATUS_OK,
119} bt_value_copy_status;
120
121extern bt_value_copy_status bt_value_copy(const bt_value *object,
b19ff26f 122 bt_value **copy);
05e21286 123
b19ff26f
PP
124extern bt_bool bt_value_compare(const bt_value *object_a,
125 const bt_value *object_b);
05e21286 126
b19ff26f 127extern bt_bool bt_value_bool_get(const bt_value *bool_obj);
05e21286 128
fdd3a2da
PP
129extern uint64_t bt_value_unsigned_integer_get(const bt_value *integer_obj);
130
131extern int64_t bt_value_signed_integer_get(const bt_value *integer_obj);
05e21286 132
b19ff26f 133extern double bt_value_real_get(const bt_value *real_obj);
05e21286 134
b19ff26f 135extern const char *bt_value_string_get(const bt_value *string_obj);
05e21286 136
b19ff26f 137extern uint64_t bt_value_array_get_size(const bt_value *array_obj);
05e21286
PP
138
139static inline
b19ff26f 140bt_bool bt_value_array_is_empty(const bt_value *array_obj)
05e21286
PP
141{
142 return bt_value_array_get_size(array_obj) == 0;
143}
144
b19ff26f
PP
145extern const bt_value *bt_value_array_borrow_element_by_index_const(
146 const bt_value *array_obj, uint64_t index);
05e21286 147
b19ff26f 148extern uint64_t bt_value_map_get_size(const bt_value *map_obj);
05e21286
PP
149
150static inline
b19ff26f 151bt_bool bt_value_map_is_empty(const bt_value *map_obj)
05e21286
PP
152{
153 return bt_value_map_get_size(map_obj) == 0;
154}
155
b19ff26f
PP
156extern const bt_value *bt_value_map_borrow_entry_value_const(
157 const bt_value *map_obj, const char *key);
05e21286 158
40f4ba76 159typedef bt_bool (* bt_value_map_foreach_entry_const_func)(const char *key,
b19ff26f 160 const bt_value *object, void *data);
05e21286 161
d24d5663
PP
162typedef enum bt_value_map_foreach_entry_const_status {
163 BT_VALUE_MAP_FOREACH_ENTRY_CONST_STATUS_MEMORY_ERROR = __BT_FUNC_STATUS_MEMORY_ERROR,
164 BT_VALUE_MAP_FOREACH_ENTRY_CONST_STATUS_OK = __BT_FUNC_STATUS_OK,
165 BT_VALUE_MAP_FOREACH_ENTRY_CONST_STATUS_CANCELED = __BT_FUNC_STATUS_CANCELED,
166} bt_value_map_foreach_entry_const_status;
167
168extern bt_value_map_foreach_entry_const_status bt_value_map_foreach_entry_const(
b19ff26f 169 const bt_value *map_obj,
40f4ba76 170 bt_value_map_foreach_entry_const_func func, void *data);
05e21286 171
b19ff26f 172extern bt_bool bt_value_map_has_entry(const bt_value *map_obj,
05e21286
PP
173 const char *key);
174
d24d5663
PP
175typedef enum bt_value_map_extend_status {
176 BT_VALUE_MAP_EXTEND_STATUS_MEMORY_ERROR = __BT_FUNC_STATUS_MEMORY_ERROR,
177 BT_VALUE_MAP_EXTEND_STATUS_OK = __BT_FUNC_STATUS_OK,
178} bt_value_map_extend_status;
179
180extern bt_value_map_extend_status bt_value_map_extend(
b19ff26f
PP
181 const bt_value *base_map_obj,
182 const bt_value *extension_map_obj,
183 bt_value **extended_map_obj);
05e21286 184
b19ff26f 185extern void bt_value_get_ref(const bt_value *value);
c5b9b441 186
b19ff26f 187extern void bt_value_put_ref(const bt_value *value);
c5b9b441
PP
188
189#define BT_VALUE_PUT_REF_AND_RESET(_var) \
190 do { \
191 bt_value_put_ref(_var); \
192 (_var) = NULL; \
193 } while (0)
194
195#define BT_VALUE_MOVE_REF(_var_dst, _var_src) \
196 do { \
197 bt_value_put_ref(_var_dst); \
198 (_var_dst) = (_var_src); \
199 (_var_src) = NULL; \
200 } while (0)
201
05e21286
PP
202#ifdef __cplusplus
203}
204#endif
205
924dc299 206#endif /* BABELTRACE2_VALUE_CONST_H */
This page took 0.039627 seconds and 4 git commands to generate.