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