lib: force user to include `<babeltrace2/babeltrace.h>`
[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/*
f2b0325d 5 * Copyright (c) 2015-2018 Philippe Proulx <pproulx@efficios.com>
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
8eee8ea2 33/* For bt_bool, bt_value */
71c5da58 34#include <babeltrace2/types.h>
ce141536 35
ce141536
PP
36#ifdef __cplusplus
37extern "C" {
38#endif
39
ee78f405 40typedef enum bt_value_type {
78cf9df6 41 /// Null value object.
68d9d039 42 BT_VALUE_TYPE_NULL = 0,
78cf9df6
PP
43
44 /// Boolean value object (holds #BT_TRUE or #BT_FALSE).
68d9d039 45 BT_VALUE_TYPE_BOOL = 1,
78cf9df6 46
68d9d039
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,
78cf9df6
PP
52
53 /// Floating point number value object (holds a \c double raw value).
68d9d039 54 BT_VALUE_TYPE_REAL = 4,
78cf9df6
PP
55
56 /// String value object.
68d9d039 57 BT_VALUE_TYPE_STRING = 5,
78cf9df6
PP
58
59 /// Array value object.
68d9d039 60 BT_VALUE_TYPE_ARRAY = 6,
78cf9df6
PP
61
62 /// Map value object.
68d9d039 63 BT_VALUE_TYPE_MAP = 7,
ee78f405 64} bt_value_type;
78cf9df6 65
ee78f405 66extern bt_value_type bt_value_get_type(const bt_value *object);
ce141536
PP
67
68static inline
8eee8ea2 69bt_bool bt_value_is_null(const bt_value *object)
ce141536
PP
70{
71 return bt_value_get_type(object) == BT_VALUE_TYPE_NULL;
72}
73
74static inline
8eee8ea2 75bt_bool bt_value_is_bool(const bt_value *object)
ce141536
PP
76{
77 return bt_value_get_type(object) == BT_VALUE_TYPE_BOOL;
78}
79
80static inline
68d9d039
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)
ce141536 88{
68d9d039 89 return bt_value_get_type(object) == BT_VALUE_TYPE_SIGNED_INTEGER;
ce141536
PP
90}
91
92static inline
8eee8ea2 93bt_bool bt_value_is_real(const bt_value *object)
ce141536
PP
94{
95 return bt_value_get_type(object) == BT_VALUE_TYPE_REAL;
96}
97
98static inline
8eee8ea2 99bt_bool bt_value_is_string(const bt_value *object)
ce141536
PP
100{
101 return bt_value_get_type(object) == BT_VALUE_TYPE_STRING;
102}
103
104static inline
8eee8ea2 105bt_bool bt_value_is_array(const bt_value *object)
ce141536
PP
106{
107 return bt_value_get_type(object) == BT_VALUE_TYPE_ARRAY;
108}
109
110static inline
8eee8ea2 111bt_bool bt_value_is_map(const bt_value *object)
ce141536
PP
112{
113 return bt_value_get_type(object) == BT_VALUE_TYPE_MAP;
114}
115
fb25b9e3
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,
8eee8ea2 122 bt_value **copy);
ce141536 123
8eee8ea2
PP
124extern bt_bool bt_value_compare(const bt_value *object_a,
125 const bt_value *object_b);
ce141536 126
8eee8ea2 127extern bt_bool bt_value_bool_get(const bt_value *bool_obj);
ce141536 128
68d9d039
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);
ce141536 132
8eee8ea2 133extern double bt_value_real_get(const bt_value *real_obj);
ce141536 134
8eee8ea2 135extern const char *bt_value_string_get(const bt_value *string_obj);
ce141536 136
8eee8ea2 137extern uint64_t bt_value_array_get_size(const bt_value *array_obj);
ce141536
PP
138
139static inline
8eee8ea2 140bt_bool bt_value_array_is_empty(const bt_value *array_obj)
ce141536
PP
141{
142 return bt_value_array_get_size(array_obj) == 0;
143}
144
8eee8ea2
PP
145extern const bt_value *bt_value_array_borrow_element_by_index_const(
146 const bt_value *array_obj, uint64_t index);
ce141536 147
8eee8ea2 148extern uint64_t bt_value_map_get_size(const bt_value *map_obj);
ce141536
PP
149
150static inline
8eee8ea2 151bt_bool bt_value_map_is_empty(const bt_value *map_obj)
ce141536
PP
152{
153 return bt_value_map_get_size(map_obj) == 0;
154}
155
8eee8ea2
PP
156extern const bt_value *bt_value_map_borrow_entry_value_const(
157 const bt_value *map_obj, const char *key);
ce141536 158
78cf9df6 159typedef bt_bool (* bt_value_map_foreach_entry_const_func)(const char *key,
8eee8ea2 160 const bt_value *object, void *data);
ce141536 161
fb25b9e3
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(
8eee8ea2 169 const bt_value *map_obj,
78cf9df6 170 bt_value_map_foreach_entry_const_func func, void *data);
ce141536 171
8eee8ea2 172extern bt_bool bt_value_map_has_entry(const bt_value *map_obj,
ce141536
PP
173 const char *key);
174
fb25b9e3
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(
8eee8ea2
PP
181 const bt_value *base_map_obj,
182 const bt_value *extension_map_obj,
183 bt_value **extended_map_obj);
ce141536 184
8eee8ea2 185extern void bt_value_get_ref(const bt_value *value);
8c6884d9 186
8eee8ea2 187extern void bt_value_put_ref(const bt_value *value);
8c6884d9
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
ce141536
PP
202#ifdef __cplusplus
203}
204#endif
205
3fd40f46 206#endif /* BABELTRACE2_VALUE_CONST_H */
This page took 0.040956 seconds and 4 git commands to generate.