lib: strictly type function return status enumerations
[babeltrace.git] / include / babeltrace2 / value.h
... / ...
CommitLineData
1#ifndef BABELTRACE_VALUES_H
2#define BABELTRACE_VALUES_H
3
4/*
5 * Copyright (c) 2015-2018 Philippe Proulx <pproulx@efficios.com>
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
29/* For bt_bool, bt_value */
30#include <babeltrace2/types.h>
31
32/* For bt_value_type */
33#include <babeltrace2/value-const.h>
34
35/* For __BT_FUNC_STATUS_* */
36#define __BT_FUNC_STATUS_ENABLE
37#include <babeltrace2/func-status.h>
38#undef __BT_FUNC_STATUS_ENABLE
39
40#ifdef __cplusplus
41extern "C" {
42#endif
43
44extern bt_value *const bt_value_null;
45
46extern bt_value *bt_value_bool_create(void);
47
48extern bt_value *bt_value_bool_create_init(bt_bool val);
49
50extern void bt_value_bool_set(bt_value *bool_obj, bt_bool val);
51
52extern bt_value *bt_value_unsigned_integer_create(void);
53
54extern bt_value *bt_value_unsigned_integer_create_init(uint64_t val);
55
56extern void bt_value_unsigned_integer_set(bt_value *integer_obj, uint64_t val);
57
58extern bt_value *bt_value_signed_integer_create(void);
59
60extern bt_value *bt_value_signed_integer_create_init(int64_t val);
61
62extern void bt_value_signed_integer_set(bt_value *integer_obj, int64_t val);
63
64extern bt_value *bt_value_real_create(void);
65
66extern bt_value *bt_value_real_create_init(double val);
67
68extern void bt_value_real_set(bt_value *real_obj, double val);
69
70extern bt_value *bt_value_string_create(void);
71
72extern bt_value *bt_value_string_create_init(const char *val);
73
74typedef enum bt_value_string_set_status {
75 BT_VALUE_STRING_SET_STATUS_MEMORY_ERROR = __BT_FUNC_STATUS_MEMORY_ERROR,
76 BT_VALUE_STRING_SET_STATUS_OK = __BT_FUNC_STATUS_OK,
77} bt_value_string_set_status;
78
79extern bt_value_string_set_status bt_value_string_set(bt_value *string_obj,
80 const char *val);
81
82extern bt_value *bt_value_array_create(void);
83
84extern bt_value *bt_value_array_borrow_element_by_index(bt_value *array_obj,
85 uint64_t index);
86
87typedef enum bt_value_array_append_element_status {
88 BT_VALUE_ARRAY_APPEND_ELEMENT_STATUS_MEMORY_ERROR = __BT_FUNC_STATUS_MEMORY_ERROR,
89 BT_VALUE_ARRAY_APPEND_ELEMENT_STATUS_OK = __BT_FUNC_STATUS_OK,
90} bt_value_array_append_element_status;
91
92extern bt_value_array_append_element_status bt_value_array_append_element(
93 bt_value *array_obj, bt_value *element_obj);
94
95extern bt_value_array_append_element_status
96bt_value_array_append_bool_element(bt_value *array_obj, bt_bool val);
97
98extern bt_value_array_append_element_status
99bt_value_array_append_unsigned_integer_element(bt_value *array_obj,
100 uint64_t val);
101
102extern bt_value_array_append_element_status
103bt_value_array_append_signed_integer_element(bt_value *array_obj, int64_t val);
104
105extern bt_value_array_append_element_status
106bt_value_array_append_real_element(bt_value *array_obj, double val);
107
108extern bt_value_array_append_element_status
109bt_value_array_append_string_element(bt_value *array_obj, const char *val);
110
111extern bt_value_array_append_element_status
112bt_value_array_append_empty_array_element(bt_value *array_obj);
113
114extern bt_value_array_append_element_status
115bt_value_array_append_empty_map_element(bt_value *array_obj);
116
117typedef enum bt_value_array_set_element_by_index_status {
118 BT_VALUE_ARRAY_SET_ELEMENT_BY_INDEX_STATUS_MEMORY_ERROR = __BT_FUNC_STATUS_MEMORY_ERROR,
119 BT_VALUE_ARRAY_SET_ELEMENT_BY_INDEX_STATUS_OK = __BT_FUNC_STATUS_OK,
120} bt_value_array_set_element_by_index_status;
121
122extern bt_value_array_set_element_by_index_status
123bt_value_array_set_element_by_index(bt_value *array_obj, uint64_t index,
124 bt_value *element_obj);
125
126extern bt_value *bt_value_map_create(void);
127
128extern bt_value *bt_value_map_borrow_entry_value(
129 bt_value *map_obj, const char *key);
130
131typedef bt_bool (* bt_value_map_foreach_entry_func)(const char *key,
132 bt_value *object, void *data);
133
134typedef enum bt_value_map_foreach_entry_status {
135 BT_VALUE_MAP_FOREACH_ENTRY_STATUS_MEMORY_ERROR = __BT_FUNC_STATUS_MEMORY_ERROR,
136 BT_VALUE_MAP_FOREACH_ENTRY_STATUS_OK = __BT_FUNC_STATUS_OK,
137 BT_VALUE_MAP_FOREACH_ENTRY_STATUS_CANCELED = __BT_FUNC_STATUS_CANCELED,
138} bt_value_map_foreach_entry_status;
139
140extern bt_value_map_foreach_entry_status bt_value_map_foreach_entry(
141 bt_value *map_obj, bt_value_map_foreach_entry_func func,
142 void *data);
143
144typedef enum bt_value_map_insert_entry_status {
145 BT_VALUE_MAP_INSERT_ENTRY_STATUS_MEMORY_ERROR = __BT_FUNC_STATUS_MEMORY_ERROR,
146 BT_VALUE_MAP_INSERT_ENTRY_STATUS_OK = __BT_FUNC_STATUS_OK,
147} bt_value_map_insert_entry_status;
148
149extern bt_value_map_insert_entry_status bt_value_map_insert_entry(
150 bt_value *map_obj, const char *key, bt_value *element_obj);
151
152extern bt_value_map_insert_entry_status bt_value_map_insert_bool_entry(
153 bt_value *map_obj, const char *key, bt_bool val);
154
155extern bt_value_map_insert_entry_status
156bt_value_map_insert_unsigned_integer_entry(bt_value *map_obj, const char *key,
157 uint64_t val);
158
159extern bt_value_map_insert_entry_status
160bt_value_map_insert_signed_integer_entry(bt_value *map_obj, const char *key,
161 int64_t val);
162
163extern bt_value_map_insert_entry_status bt_value_map_insert_real_entry(
164 bt_value *map_obj, const char *key, double val);
165
166extern bt_value_map_insert_entry_status
167bt_value_map_insert_string_entry(bt_value *map_obj, const char *key,
168 const char *val);
169
170extern bt_value_map_insert_entry_status
171bt_value_map_insert_empty_array_entry(bt_value *map_obj, const char *key);
172
173extern bt_value_map_insert_entry_status
174bt_value_map_insert_empty_map_entry(bt_value *map_obj, const char *key);
175
176#ifdef __cplusplus
177}
178#endif
179
180#include <babeltrace2/undef-func-status.h>
181
182#endif /* BABELTRACE_VALUES_H */
This page took 0.024568 seconds and 4 git commands to generate.