Values API: standardize parameters and return values
[babeltrace.git] / include / babeltrace / values.h
CommitLineData
1ca80abd
PP
1#ifndef BABELTRACE_VALUES_H
2#define BABELTRACE_VALUES_H
dac5c838
PP
3
4/*
5 * Babeltrace - Value objects
6 *
de079588
PP
7 * Copyright (c) 2015-2016 EfficiOS Inc. and Linux Foundation
8 * Copyright (c) 2015-2016 Philippe Proulx <pproulx@efficios.com>
dac5c838
PP
9 *
10 * Permission is hereby granted, free of charge, to any person obtaining a copy
11 * of this software and associated documentation files (the "Software"), to deal
12 * in the Software without restriction, including without limitation the rights
13 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14 * copies of the Software, and to permit persons to whom the Software is
15 * furnished to do so, subject to the following conditions:
16 *
17 * The above copyright notice and this permission notice shall be included in
18 * all copies or substantial portions of the Software.
19 *
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26 * SOFTWARE.
27 */
28
dac5c838 29#include <stdint.h>
dac5c838 30#include <stddef.h>
9d408fca
PP
31
32/* For bt_bool */
c55a9f58 33#include <babeltrace/types.h>
dac5c838
PP
34
35#ifdef __cplusplus
36extern "C" {
37#endif
38
dac5c838 39/**
de079588
PP
40@brief Status codes.
41*/
dac5c838 42enum bt_value_status {
f6ccaed9 43 /// Operation canceled.
601b0d3c 44 BT_VALUE_STATUS_CANCELED = 125,
dac5c838 45
601b0d3c
PP
46 /// Cannot allocate memory.
47 BT_VALUE_STATUS_NOMEM = -12,
dac5c838 48
de079588 49 /// Okay, no error.
601b0d3c 50 BT_VALUE_STATUS_OK = 0,
dac5c838
PP
51};
52
dac5c838 53struct bt_value;
da91b29a 54struct bt_private_value;
dac5c838 55
dac5c838
PP
56extern struct bt_value *bt_value_null;
57
de079588 58enum bt_value_type {
de079588
PP
59 /// Null value object.
60 BT_VALUE_TYPE_NULL = 0,
61
c55a9f58 62 /// Boolean value object (holds #BT_TRUE or #BT_FALSE).
de079588
PP
63 BT_VALUE_TYPE_BOOL = 1,
64
65 /// Integer value object (holds a signed 64-bit integer raw value).
66 BT_VALUE_TYPE_INTEGER = 2,
67
68 /// Floating point number value object (holds a \c double raw value).
a373bf69 69 BT_VALUE_TYPE_REAL = 3,
de079588
PP
70
71 /// String value object.
72 BT_VALUE_TYPE_STRING = 4,
73
74 /// Array value object.
75 BT_VALUE_TYPE_ARRAY = 5,
76
77 /// Map value object.
78 BT_VALUE_TYPE_MAP = 6,
79};
dac5c838 80
dac5c838
PP
81extern enum bt_value_type bt_value_get_type(const struct bt_value *object);
82
dac5c838 83static inline
c55a9f58 84bt_bool bt_value_is_null(const struct bt_value *object)
dac5c838
PP
85{
86 return bt_value_get_type(object) == BT_VALUE_TYPE_NULL;
87}
88
dac5c838 89static inline
c55a9f58 90bt_bool bt_value_is_bool(const struct bt_value *object)
dac5c838
PP
91{
92 return bt_value_get_type(object) == BT_VALUE_TYPE_BOOL;
93}
94
dac5c838 95static inline
c55a9f58 96bt_bool bt_value_is_integer(const struct bt_value *object)
dac5c838
PP
97{
98 return bt_value_get_type(object) == BT_VALUE_TYPE_INTEGER;
99}
100
dac5c838 101static inline
a373bf69 102bt_bool bt_value_is_real(const struct bt_value *object)
dac5c838 103{
a373bf69 104 return bt_value_get_type(object) == BT_VALUE_TYPE_REAL;
dac5c838
PP
105}
106
dac5c838 107static inline
c55a9f58 108bt_bool bt_value_is_string(const struct bt_value *object)
dac5c838
PP
109{
110 return bt_value_get_type(object) == BT_VALUE_TYPE_STRING;
111}
112
dac5c838 113static inline
c55a9f58 114bt_bool bt_value_is_array(const struct bt_value *object)
dac5c838
PP
115{
116 return bt_value_get_type(object) == BT_VALUE_TYPE_ARRAY;
117}
118
dac5c838 119static inline
c55a9f58 120bt_bool bt_value_is_map(const struct bt_value *object)
dac5c838
PP
121{
122 return bt_value_get_type(object) == BT_VALUE_TYPE_MAP;
123}
124
601b0d3c
PP
125extern enum bt_value_status bt_value_copy(struct bt_private_value **copy,
126 const struct bt_value *object);
de079588 127
c55a9f58 128extern bt_bool bt_value_compare(const struct bt_value *object_a,
de079588
PP
129 const struct bt_value *object_b);
130
601b0d3c 131extern bt_bool bt_value_bool_get(const struct bt_value *bool_obj);
dac5c838 132
601b0d3c 133extern int64_t bt_value_integer_get(const struct bt_value *integer_obj);
dac5c838 134
601b0d3c 135extern double bt_value_real_get(const struct bt_value *real_obj);
dac5c838 136
601b0d3c 137extern const char *bt_value_string_get(const struct bt_value *string_obj);
dac5c838 138
601b0d3c 139extern uint64_t bt_value_array_get_size(const struct bt_value *array_obj);
de079588 140
601b0d3c
PP
141static inline
142bt_bool bt_value_array_is_empty(const struct bt_value *array_obj)
143{
144 return bt_value_array_get_size(array_obj) == 0;
145}
dac5c838 146
07208d85
PP
147extern struct bt_value *bt_value_array_borrow_element_by_index(
148 const struct bt_value *array_obj, uint64_t index);
dac5c838 149
601b0d3c 150extern uint64_t bt_value_map_get_size(const struct bt_value *map_obj);
dac5c838 151
601b0d3c
PP
152static inline
153bt_bool bt_value_map_is_empty(const struct bt_value *map_obj)
154{
155 return bt_value_map_get_size(map_obj) == 0;
156}
dac5c838 157
07208d85
PP
158extern struct bt_value *bt_value_map_borrow_entry_value(
159 const struct bt_value *map_obj, const char *key);
dac5c838 160
07208d85 161typedef bt_bool (* bt_value_map_foreach_entry_cb)(const char *key,
de079588
PP
162 struct bt_value *object, void *data);
163
07208d85
PP
164extern enum bt_value_status bt_value_map_foreach_entry(
165 const struct bt_value *map_obj,
166 bt_value_map_foreach_entry_cb cb, void *data);
dac5c838 167
07208d85 168extern bt_bool bt_value_map_has_entry(const struct bt_value *map_obj,
364747d6 169 const char *key);
dac5c838 170
601b0d3c
PP
171extern enum bt_value_status bt_value_map_extend(
172 struct bt_private_value **extended_map_obj,
da91b29a 173 struct bt_value *base_map_obj,
770750d3
PP
174 struct bt_value *extension_map_obj);
175
dac5c838
PP
176#ifdef __cplusplus
177}
178#endif
179
1ca80abd 180#endif /* BABELTRACE_VALUES_H */
This page took 0.054543 seconds and 4 git commands to generate.