lib: make trace IR API const-correct
[babeltrace.git] / include / babeltrace / values.h
1 #ifndef BABELTRACE_VALUES_H
2 #define BABELTRACE_VALUES_H
3
4 /*
5 * Copyright (c) 2015-2016 EfficiOS Inc. and Linux Foundation
6 * Copyright (c) 2015-2018 Philippe Proulx <pproulx@efficios.com>
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a copy
9 * of this software and associated documentation files (the "Software"), to deal
10 * in the Software without restriction, including without limitation the rights
11 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 * copies of the Software, and to permit persons to whom the Software is
13 * furnished to do so, subject to the following conditions:
14 *
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24 * SOFTWARE.
25 */
26
27 #include <stdint.h>
28 #include <stddef.h>
29
30 /* For bt_bool */
31 #include <babeltrace/types.h>
32
33 /* For enum bt_value_status, enum bt_value_type */
34 #include <babeltrace/values-const.h>
35
36 #ifdef __cplusplus
37 extern "C" {
38 #endif
39
40 struct bt_value;
41
42 extern struct bt_value *bt_value_null;
43
44 extern struct bt_value *bt_value_bool_create(void);
45
46 extern struct bt_value *bt_value_bool_create_init(bt_bool val);
47
48 extern void bt_value_bool_set(struct bt_value *bool_obj, bt_bool val);
49
50 extern struct bt_value *bt_value_integer_create(void);
51
52 extern struct bt_value *bt_value_integer_create_init(
53 int64_t val);
54
55 extern void bt_value_integer_set(struct bt_value *integer_obj, int64_t val);
56
57 extern struct bt_value *bt_value_real_create(void);
58
59 extern struct bt_value *bt_value_real_create_init(double val);
60
61 extern void bt_value_real_set(struct bt_value *real_obj, double val);
62
63 extern struct bt_value *bt_value_string_create(void);
64
65 extern struct bt_value *bt_value_string_create_init(const char *val);
66
67 extern enum bt_value_status bt_value_string_set(struct bt_value *string_obj,
68 const char *val);
69
70 extern struct bt_value *bt_value_array_create(void);
71
72 extern struct bt_value *bt_value_array_borrow_element_by_index(
73 struct bt_value *array_obj, uint64_t index);
74
75 extern enum bt_value_status bt_value_array_append_element(
76 struct bt_value *array_obj,
77 struct bt_value *element_obj);
78
79 extern enum bt_value_status bt_value_array_append_bool_element(
80 struct bt_value *array_obj, bt_bool val);
81
82 extern enum bt_value_status bt_value_array_append_integer_element(
83 struct bt_value *array_obj, int64_t val);
84
85 extern enum bt_value_status bt_value_array_append_real_element(
86 struct bt_value *array_obj, double val);
87
88 extern enum bt_value_status bt_value_array_append_string_element(
89 struct bt_value *array_obj, const char *val);
90
91 extern enum bt_value_status bt_value_array_append_empty_array_element(
92 struct bt_value *array_obj);
93
94 extern enum bt_value_status bt_value_array_append_empty_map_element(
95 struct bt_value *array_obj);
96
97 extern enum bt_value_status bt_value_array_set_element_by_index(
98 struct bt_value *array_obj, uint64_t index,
99 struct bt_value *element_obj);
100
101 extern struct bt_value *bt_value_map_create(void);
102
103 extern struct bt_value *bt_value_map_borrow_entry_value(
104 struct bt_value *map_obj, const char *key);
105
106 typedef bt_bool (* bt_value_map_foreach_entry_func)(const char *key,
107 struct bt_value *object, void *data);
108
109 extern enum bt_value_status bt_value_map_foreach_entry(
110 struct bt_value *map_obj,
111 bt_value_map_foreach_entry_func func, void *data);
112
113 extern enum bt_value_status bt_value_map_insert_entry(
114 struct bt_value *map_obj, const char *key,
115 struct bt_value *element_obj);
116
117 extern enum bt_value_status bt_value_map_insert_bool_entry(
118 struct bt_value *map_obj, const char *key, bt_bool val);
119
120 extern enum bt_value_status bt_value_map_insert_integer_entry(
121 struct bt_value *map_obj, const char *key, int64_t val);
122
123 extern enum bt_value_status bt_value_map_insert_real_entry(
124 struct bt_value *map_obj, const char *key, double val);
125
126 extern enum bt_value_status bt_value_map_insert_string_entry(
127 struct bt_value *map_obj, const char *key,
128 const char *val);
129
130 extern enum bt_value_status bt_value_map_insert_empty_array_entry(
131 struct bt_value *map_obj, const char *key);
132
133 extern enum bt_value_status bt_value_map_insert_empty_map_entry(
134 struct bt_value *map_obj, const char *key);
135
136 #ifdef __cplusplus
137 }
138 #endif
139
140 #endif /* BABELTRACE_VALUES_H */
This page took 0.031385 seconds and 4 git commands to generate.