Commit | Line | Data |
---|---|---|
273b65be | 1 | /* |
e2f7325d | 2 | * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com> |
de9dd397 | 3 | * Copyright 2013, 2014 Jérémie Galarneau <jeremie.galarneau@efficios.com> |
273b65be JG |
4 | * |
5 | * Permission is hereby granted, free of charge, to any person obtaining a copy | |
6 | * of this software and associated documentation files (the "Software"), to deal | |
7 | * in the Software without restriction, including without limitation the rights | |
8 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
9 | * copies of the Software, and to permit persons to whom the Software is | |
10 | * furnished to do so, subject to the following conditions: | |
11 | * | |
12 | * The above copyright notice and this permission notice shall be included in | |
13 | * all copies or substantial portions of the Software. | |
14 | * | |
15 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
16 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
17 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | |
18 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
19 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
20 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | |
21 | * SOFTWARE. | |
22 | */ | |
23 | ||
fc25abce | 24 | #define BT_LOG_TAG "FIELDS" |
3fadfbc0 | 25 | #include <babeltrace2/lib-logging-internal.h> |
fc25abce | 26 | |
3fadfbc0 MJ |
27 | #include <babeltrace2/assert-pre-internal.h> |
28 | #include <babeltrace2/trace-ir/field.h> | |
29 | #include <babeltrace2/trace-ir/field-const.h> | |
30 | #include <babeltrace2/trace-ir/field-internal.h> | |
31 | #include <babeltrace2/trace-ir/field-class-internal.h> | |
32 | #include <babeltrace2/object-internal.h> | |
33 | #include <babeltrace2/compiler-internal.h> | |
34 | #include <babeltrace2/compat/fcntl-internal.h> | |
35 | #include <babeltrace2/align-internal.h> | |
36 | #include <babeltrace2/assert-internal.h> | |
fc25abce | 37 | #include <inttypes.h> |
273b65be | 38 | |
cb6f1f7d | 39 | static |
44c440bc | 40 | void reset_single_field(struct bt_field *field); |
cb6f1f7d PP |
41 | |
42 | static | |
44c440bc | 43 | void reset_array_field(struct bt_field *field); |
cb6f1f7d PP |
44 | |
45 | static | |
44c440bc | 46 | void reset_structure_field(struct bt_field *field); |
cb6f1f7d PP |
47 | |
48 | static | |
44c440bc | 49 | void reset_variant_field(struct bt_field *field); |
cb6f1f7d PP |
50 | |
51 | static | |
44c440bc | 52 | void set_single_field_is_frozen(struct bt_field *field, bool is_frozen); |
cb6f1f7d PP |
53 | |
54 | static | |
44c440bc | 55 | void set_array_field_is_frozen(struct bt_field *field, bool is_frozen); |
cb6f1f7d PP |
56 | |
57 | static | |
44c440bc | 58 | void set_structure_field_is_frozen(struct bt_field *field, bool is_frozen); |
cb6f1f7d PP |
59 | |
60 | static | |
44c440bc | 61 | void set_variant_field_is_frozen(struct bt_field *field, bool is_frozen); |
cb6f1f7d PP |
62 | |
63 | static | |
40f4ba76 | 64 | bool single_field_is_set(const struct bt_field *field); |
cb6f1f7d PP |
65 | |
66 | static | |
40f4ba76 | 67 | bool array_field_is_set(const struct bt_field *field); |
cb6f1f7d PP |
68 | |
69 | static | |
40f4ba76 | 70 | bool structure_field_is_set(const struct bt_field *field); |
cb6f1f7d PP |
71 | |
72 | static | |
40f4ba76 | 73 | bool variant_field_is_set(const struct bt_field *field); |
cb6f1f7d PP |
74 | |
75 | static | |
44c440bc PP |
76 | struct bt_field_methods integer_field_methods = { |
77 | .set_is_frozen = set_single_field_is_frozen, | |
78 | .is_set = single_field_is_set, | |
79 | .reset = reset_single_field, | |
3dca2276 | 80 | }; |
273b65be | 81 | |
44c440bc PP |
82 | static |
83 | struct bt_field_methods real_field_methods = { | |
84 | .set_is_frozen = set_single_field_is_frozen, | |
85 | .is_set = single_field_is_set, | |
86 | .reset = reset_single_field, | |
12c8a1a3 JG |
87 | }; |
88 | ||
44c440bc PP |
89 | static |
90 | struct bt_field_methods string_field_methods = { | |
91 | .set_is_frozen = set_single_field_is_frozen, | |
92 | .is_set = single_field_is_set, | |
93 | .reset = reset_single_field, | |
273b65be JG |
94 | }; |
95 | ||
44c440bc PP |
96 | static |
97 | struct bt_field_methods structure_field_methods = { | |
98 | .set_is_frozen = set_structure_field_is_frozen, | |
99 | .is_set = structure_field_is_set, | |
100 | .reset = reset_structure_field, | |
87d43dc1 JG |
101 | }; |
102 | ||
44c440bc PP |
103 | static |
104 | struct bt_field_methods array_field_methods = { | |
105 | .set_is_frozen = set_array_field_is_frozen, | |
106 | .is_set = array_field_is_set, | |
107 | .reset = reset_array_field, | |
918be005 PP |
108 | }; |
109 | ||
76f869ab | 110 | static |
44c440bc PP |
111 | struct bt_field_methods variant_field_methods = { |
112 | .set_is_frozen = set_variant_field_is_frozen, | |
113 | .is_set = variant_field_is_set, | |
114 | .reset = reset_variant_field, | |
115 | }; | |
76f869ab | 116 | |
3dca2276 | 117 | static |
5cd6d0e5 | 118 | struct bt_field *create_integer_field(struct bt_field_class *); |
3dca2276 PP |
119 | |
120 | static | |
5cd6d0e5 | 121 | struct bt_field *create_real_field(struct bt_field_class *); |
3dca2276 PP |
122 | |
123 | static | |
5cd6d0e5 | 124 | struct bt_field *create_string_field(struct bt_field_class *); |
3dca2276 PP |
125 | |
126 | static | |
5cd6d0e5 | 127 | struct bt_field *create_structure_field(struct bt_field_class *); |
3dca2276 PP |
128 | |
129 | static | |
5cd6d0e5 | 130 | struct bt_field *create_static_array_field(struct bt_field_class *); |
f6ccaed9 | 131 | |
3dca2276 | 132 | static |
5cd6d0e5 | 133 | struct bt_field *create_dynamic_array_field(struct bt_field_class *); |
f6ccaed9 | 134 | |
3dca2276 | 135 | static |
5cd6d0e5 | 136 | struct bt_field *create_variant_field(struct bt_field_class *); |
f6ccaed9 | 137 | |
3dca2276 | 138 | static |
5cd6d0e5 | 139 | struct bt_field *(* const field_create_funcs[])(struct bt_field_class *) = { |
864cad70 PP |
140 | [BT_FIELD_CLASS_TYPE_UNSIGNED_INTEGER] = create_integer_field, |
141 | [BT_FIELD_CLASS_TYPE_SIGNED_INTEGER] = create_integer_field, | |
142 | [BT_FIELD_CLASS_TYPE_UNSIGNED_ENUMERATION] = create_integer_field, | |
143 | [BT_FIELD_CLASS_TYPE_SIGNED_ENUMERATION] = create_integer_field, | |
144 | [BT_FIELD_CLASS_TYPE_REAL] = create_real_field, | |
145 | [BT_FIELD_CLASS_TYPE_STRING] = create_string_field, | |
146 | [BT_FIELD_CLASS_TYPE_STRUCTURE] = create_structure_field, | |
147 | [BT_FIELD_CLASS_TYPE_STATIC_ARRAY] = create_static_array_field, | |
148 | [BT_FIELD_CLASS_TYPE_DYNAMIC_ARRAY] = create_dynamic_array_field, | |
149 | [BT_FIELD_CLASS_TYPE_VARIANT] = create_variant_field, | |
3dca2276 | 150 | }; |
f6ccaed9 | 151 | |
312c056a | 152 | static |
44c440bc | 153 | void destroy_integer_field(struct bt_field *field); |
312c056a PP |
154 | |
155 | static | |
44c440bc | 156 | void destroy_real_field(struct bt_field *field); |
312c056a PP |
157 | |
158 | static | |
44c440bc | 159 | void destroy_string_field(struct bt_field *field); |
312c056a PP |
160 | |
161 | static | |
44c440bc | 162 | void destroy_structure_field(struct bt_field *field); |
312c056a PP |
163 | |
164 | static | |
44c440bc | 165 | void destroy_array_field(struct bt_field *field); |
312c056a PP |
166 | |
167 | static | |
44c440bc | 168 | void destroy_variant_field(struct bt_field *field); |
312c056a PP |
169 | |
170 | static | |
171 | void (* const field_destroy_funcs[])(struct bt_field *) = { | |
864cad70 PP |
172 | [BT_FIELD_CLASS_TYPE_UNSIGNED_INTEGER] = destroy_integer_field, |
173 | [BT_FIELD_CLASS_TYPE_SIGNED_INTEGER] = destroy_integer_field, | |
174 | [BT_FIELD_CLASS_TYPE_UNSIGNED_ENUMERATION] = destroy_integer_field, | |
175 | [BT_FIELD_CLASS_TYPE_SIGNED_ENUMERATION] = destroy_integer_field, | |
176 | [BT_FIELD_CLASS_TYPE_REAL] = destroy_real_field, | |
177 | [BT_FIELD_CLASS_TYPE_STRING] = destroy_string_field, | |
178 | [BT_FIELD_CLASS_TYPE_STRUCTURE] = destroy_structure_field, | |
179 | [BT_FIELD_CLASS_TYPE_STATIC_ARRAY] = destroy_array_field, | |
180 | [BT_FIELD_CLASS_TYPE_DYNAMIC_ARRAY] = destroy_array_field, | |
181 | [BT_FIELD_CLASS_TYPE_VARIANT] = destroy_variant_field, | |
312c056a PP |
182 | }; |
183 | ||
40f4ba76 | 184 | struct bt_field_class *bt_field_borrow_class(const struct bt_field *field) |
cb6f1f7d | 185 | { |
44c440bc | 186 | BT_ASSERT_PRE_NON_NULL(field, "Field"); |
5cd6d0e5 | 187 | return field->class; |
cb6f1f7d PP |
188 | } |
189 | ||
40f4ba76 PP |
190 | const struct bt_field_class *bt_field_borrow_class_const( |
191 | const struct bt_field *field) | |
e5be10ef | 192 | { |
40f4ba76 PP |
193 | BT_ASSERT_PRE_NON_NULL(field, "Field"); |
194 | return field->class; | |
e5be10ef PP |
195 | } |
196 | ||
40f4ba76 | 197 | enum bt_field_class_type bt_field_get_class_type(const struct bt_field *field) |
cb6f1f7d | 198 | { |
44c440bc | 199 | BT_ASSERT_PRE_NON_NULL(field, "Field"); |
864cad70 | 200 | return field->class->type; |
cb6f1f7d PP |
201 | } |
202 | ||
312c056a | 203 | BT_HIDDEN |
5cd6d0e5 | 204 | struct bt_field *bt_field_create(struct bt_field_class *fc) |
273b65be | 205 | { |
50842bdc | 206 | struct bt_field *field = NULL; |
44c440bc | 207 | |
5cd6d0e5 | 208 | BT_ASSERT_PRE_NON_NULL(fc, "Field class"); |
864cad70 PP |
209 | BT_ASSERT(bt_field_class_has_known_type(fc)); |
210 | field = field_create_funcs[fc->type](fc); | |
273b65be | 211 | if (!field) { |
e6276565 | 212 | BT_LIB_LOGE("Cannot create field object from field class: " |
5cd6d0e5 | 213 | "%![fc-]+F", fc); |
3dca2276 | 214 | goto end; |
273b65be JG |
215 | } |
216 | ||
3dca2276 PP |
217 | end: |
218 | return field; | |
273b65be JG |
219 | } |
220 | ||
44c440bc | 221 | static inline |
5cd6d0e5 | 222 | void init_field(struct bt_field *field, struct bt_field_class *fc, |
44c440bc | 223 | struct bt_field_methods *methods) |
cd95e351 | 224 | { |
44c440bc | 225 | BT_ASSERT(field); |
5cd6d0e5 | 226 | BT_ASSERT(fc); |
44c440bc PP |
227 | bt_object_init_unique(&field->base); |
228 | field->methods = methods; | |
398454ed PP |
229 | field->class = fc; |
230 | bt_object_get_no_null_check(fc); | |
cd95e351 JG |
231 | } |
232 | ||
44c440bc | 233 | static |
5cd6d0e5 | 234 | struct bt_field *create_integer_field(struct bt_field_class *fc) |
4ebcc695 | 235 | { |
44c440bc PP |
236 | struct bt_field_integer *int_field; |
237 | ||
5cd6d0e5 | 238 | BT_LIB_LOGD("Creating integer field object: %![fc-]+F", fc); |
44c440bc PP |
239 | int_field = g_new0(struct bt_field_integer, 1); |
240 | if (!int_field) { | |
241 | BT_LOGE_STR("Failed to allocate one integer field."); | |
242 | goto end; | |
243 | } | |
244 | ||
5cd6d0e5 | 245 | init_field((void *) int_field, fc, &integer_field_methods); |
44c440bc PP |
246 | BT_LIB_LOGD("Created integer field object: %!+f", int_field); |
247 | ||
248 | end: | |
249 | return (void *) int_field; | |
4ebcc695 PP |
250 | } |
251 | ||
44c440bc | 252 | static |
5cd6d0e5 | 253 | struct bt_field *create_real_field(struct bt_field_class *fc) |
2e8876d3 | 254 | { |
44c440bc | 255 | struct bt_field_real *real_field; |
cb6f1f7d | 256 | |
5cd6d0e5 | 257 | BT_LIB_LOGD("Creating real field object: %![fc-]+F", fc); |
44c440bc PP |
258 | real_field = g_new0(struct bt_field_real, 1); |
259 | if (!real_field) { | |
260 | BT_LOGE_STR("Failed to allocate one real field."); | |
261 | goto end; | |
262 | } | |
263 | ||
5cd6d0e5 | 264 | init_field((void *) real_field, fc, &real_field_methods); |
44c440bc PP |
265 | BT_LIB_LOGD("Created real field object: %!+f", real_field); |
266 | ||
267 | end: | |
268 | return (void *) real_field; | |
2e8876d3 PP |
269 | } |
270 | ||
44c440bc | 271 | static |
5cd6d0e5 | 272 | struct bt_field *create_string_field(struct bt_field_class *fc) |
273b65be | 273 | { |
44c440bc | 274 | struct bt_field_string *string_field; |
cb6f1f7d | 275 | |
5cd6d0e5 | 276 | BT_LIB_LOGD("Creating string field object: %![fc-]+F", fc); |
44c440bc PP |
277 | string_field = g_new0(struct bt_field_string, 1); |
278 | if (!string_field) { | |
279 | BT_LOGE_STR("Failed to allocate one string field."); | |
280 | goto end; | |
281 | } | |
cb6f1f7d | 282 | |
5cd6d0e5 | 283 | init_field((void *) string_field, fc, &string_field_methods); |
44c440bc PP |
284 | string_field->buf = g_array_sized_new(FALSE, FALSE, |
285 | sizeof(char), 1); | |
286 | if (!string_field->buf) { | |
287 | BT_LOGE_STR("Failed to allocate a GArray."); | |
65300d60 | 288 | BT_OBJECT_PUT_REF_AND_RESET(string_field); |
44c440bc PP |
289 | goto end; |
290 | } | |
cb6f1f7d | 291 | |
44c440bc PP |
292 | g_array_index(string_field->buf, char, 0) = '\0'; |
293 | BT_LIB_LOGD("Created string field object: %!+f", string_field); | |
cb6f1f7d | 294 | |
44c440bc PP |
295 | end: |
296 | return (void *) string_field; | |
297 | } | |
cb6f1f7d | 298 | |
44c440bc | 299 | static inline |
5cd6d0e5 PP |
300 | int create_fields_from_named_field_classes( |
301 | struct bt_field_class_named_field_class_container *fc, | |
44c440bc PP |
302 | GPtrArray **fields) |
303 | { | |
304 | int ret = 0; | |
305 | uint64_t i; | |
cb6f1f7d | 306 | |
44c440bc PP |
307 | *fields = g_ptr_array_new_with_free_func( |
308 | (GDestroyNotify) bt_field_destroy); | |
309 | if (!*fields) { | |
310 | BT_LOGE_STR("Failed to allocate a GPtrArray."); | |
311 | ret = -1; | |
312 | goto end; | |
cb6f1f7d PP |
313 | } |
314 | ||
5cd6d0e5 | 315 | g_ptr_array_set_size(*fields, fc->named_fcs->len); |
44c440bc | 316 | |
5cd6d0e5 | 317 | for (i = 0; i < fc->named_fcs->len; i++) { |
44c440bc | 318 | struct bt_field *field; |
5cd6d0e5 PP |
319 | struct bt_named_field_class *named_fc = |
320 | BT_FIELD_CLASS_NAMED_FC_AT_INDEX(fc, i); | |
44c440bc | 321 | |
5cd6d0e5 | 322 | field = bt_field_create(named_fc->fc); |
44c440bc PP |
323 | if (!field) { |
324 | BT_LIB_LOGE("Failed to create structure member or variant option field: " | |
5cd6d0e5 PP |
325 | "name=\"%s\", %![fc-]+F", |
326 | named_fc->name->str, named_fc->fc); | |
44c440bc PP |
327 | ret = -1; |
328 | goto end; | |
329 | } | |
330 | ||
331 | g_ptr_array_index(*fields, i) = field; | |
332 | } | |
cb6f1f7d PP |
333 | |
334 | end: | |
335 | return ret; | |
273b65be JG |
336 | } |
337 | ||
44c440bc | 338 | static |
5cd6d0e5 | 339 | struct bt_field *create_structure_field(struct bt_field_class *fc) |
cd95e351 | 340 | { |
44c440bc | 341 | struct bt_field_structure *struct_field; |
cb6f1f7d | 342 | |
5cd6d0e5 | 343 | BT_LIB_LOGD("Creating structure field object: %![fc-]+F", fc); |
44c440bc PP |
344 | struct_field = g_new0(struct bt_field_structure, 1); |
345 | if (!struct_field) { | |
346 | BT_LOGE_STR("Failed to allocate one structure field."); | |
347 | goto end; | |
348 | } | |
fc25abce | 349 | |
5cd6d0e5 | 350 | init_field((void *) struct_field, fc, &structure_field_methods); |
44c440bc | 351 | |
5cd6d0e5 | 352 | if (create_fields_from_named_field_classes((void *) fc, |
44c440bc PP |
353 | &struct_field->fields)) { |
354 | BT_LIB_LOGE("Cannot create structure member fields: " | |
5cd6d0e5 | 355 | "%![fc-]+F", fc); |
65300d60 | 356 | BT_OBJECT_PUT_REF_AND_RESET(struct_field); |
44c440bc | 357 | goto end; |
cb6f1f7d PP |
358 | } |
359 | ||
44c440bc | 360 | BT_LIB_LOGD("Created structure field object: %!+f", struct_field); |
cb6f1f7d | 361 | |
44c440bc PP |
362 | end: |
363 | return (void *) struct_field; | |
cd95e351 JG |
364 | } |
365 | ||
44c440bc | 366 | static |
5cd6d0e5 | 367 | struct bt_field *create_variant_field(struct bt_field_class *fc) |
273b65be | 368 | { |
44c440bc | 369 | struct bt_field_variant *var_field; |
cb6f1f7d | 370 | |
5cd6d0e5 | 371 | BT_LIB_LOGD("Creating variant field object: %![fc-]+F", fc); |
44c440bc PP |
372 | var_field = g_new0(struct bt_field_variant, 1); |
373 | if (!var_field) { | |
374 | BT_LOGE_STR("Failed to allocate one variant field."); | |
375 | goto end; | |
376 | } | |
f6ccaed9 | 377 | |
5cd6d0e5 | 378 | init_field((void *) var_field, fc, &variant_field_methods); |
cb6f1f7d | 379 | |
5cd6d0e5 | 380 | if (create_fields_from_named_field_classes((void *) fc, |
44c440bc PP |
381 | &var_field->fields)) { |
382 | BT_LIB_LOGE("Cannot create variant member fields: " | |
5cd6d0e5 | 383 | "%![fc-]+F", fc); |
65300d60 | 384 | BT_OBJECT_PUT_REF_AND_RESET(var_field); |
44c440bc PP |
385 | goto end; |
386 | } | |
273b65be | 387 | |
44c440bc | 388 | BT_LIB_LOGD("Created variant field object: %!+f", var_field); |
cb6f1f7d | 389 | |
44c440bc PP |
390 | end: |
391 | return (void *) var_field; | |
cb6f1f7d PP |
392 | } |
393 | ||
394 | static inline | |
44c440bc | 395 | int init_array_field_fields(struct bt_field_array *array_field) |
cb6f1f7d PP |
396 | { |
397 | int ret = 0; | |
44c440bc | 398 | uint64_t i; |
5cd6d0e5 | 399 | struct bt_field_class_array *array_fc; |
cb6f1f7d | 400 | |
44c440bc | 401 | BT_ASSERT(array_field); |
5cd6d0e5 | 402 | array_fc = (void *) array_field->common.class; |
44c440bc PP |
403 | array_field->fields = g_ptr_array_sized_new(array_field->length); |
404 | if (!array_field->fields) { | |
405 | BT_LOGE_STR("Failed to allocate a GPtrArray."); | |
cb6f1f7d PP |
406 | ret = -1; |
407 | goto end; | |
408 | } | |
409 | ||
44c440bc PP |
410 | g_ptr_array_set_free_func(array_field->fields, |
411 | (GDestroyNotify) bt_field_destroy); | |
412 | g_ptr_array_set_size(array_field->fields, array_field->length); | |
413 | ||
414 | for (i = 0; i < array_field->length; i++) { | |
415 | array_field->fields->pdata[i] = bt_field_create( | |
5cd6d0e5 | 416 | array_fc->element_fc); |
44c440bc PP |
417 | if (!array_field->fields->pdata[i]) { |
418 | BT_LIB_LOGE("Cannot create array field's element field: " | |
5cd6d0e5 | 419 | "index=%" PRIu64 ", %![fc-]+F", i, array_fc); |
44c440bc PP |
420 | ret = -1; |
421 | goto end; | |
422 | } | |
423 | } | |
cb6f1f7d PP |
424 | |
425 | end: | |
426 | return ret; | |
3f4a108d PP |
427 | } |
428 | ||
44c440bc | 429 | static |
5cd6d0e5 | 430 | struct bt_field *create_static_array_field(struct bt_field_class *fc) |
f78d67fb | 431 | { |
5cd6d0e5 | 432 | struct bt_field_class_static_array *array_fc = (void *) fc; |
44c440bc | 433 | struct bt_field_array *array_field; |
312c056a | 434 | |
5cd6d0e5 | 435 | BT_LIB_LOGD("Creating static array field object: %![fc-]+F", fc); |
44c440bc PP |
436 | array_field = g_new0(struct bt_field_array, 1); |
437 | if (!array_field) { | |
438 | BT_LOGE_STR("Failed to allocate one static array field."); | |
439 | goto end; | |
440 | } | |
f78d67fb | 441 | |
5cd6d0e5 PP |
442 | init_field((void *) array_field, fc, &array_field_methods); |
443 | array_field->length = array_fc->length; | |
cb6f1f7d | 444 | |
44c440bc PP |
445 | if (init_array_field_fields(array_field)) { |
446 | BT_LIB_LOGE("Cannot create static array fields: " | |
5cd6d0e5 | 447 | "%![fc-]+F", fc); |
65300d60 | 448 | BT_OBJECT_PUT_REF_AND_RESET(array_field); |
44c440bc PP |
449 | goto end; |
450 | } | |
312c056a | 451 | |
44c440bc | 452 | BT_LIB_LOGD("Created static array field object: %!+f", array_field); |
cb6f1f7d | 453 | |
44c440bc PP |
454 | end: |
455 | return (void *) array_field; | |
273b65be JG |
456 | } |
457 | ||
44c440bc | 458 | static |
5cd6d0e5 | 459 | struct bt_field *create_dynamic_array_field(struct bt_field_class *fc) |
cd95e351 | 460 | { |
44c440bc | 461 | struct bt_field_array *array_field; |
312c056a | 462 | |
5cd6d0e5 | 463 | BT_LIB_LOGD("Creating dynamic array field object: %![fc-]+F", fc); |
44c440bc PP |
464 | array_field = g_new0(struct bt_field_array, 1); |
465 | if (!array_field) { | |
466 | BT_LOGE_STR("Failed to allocate one dynamic array field."); | |
467 | goto end; | |
468 | } | |
469 | ||
5cd6d0e5 | 470 | init_field((void *) array_field, fc, &array_field_methods); |
44c440bc PP |
471 | |
472 | if (init_array_field_fields(array_field)) { | |
473 | BT_LIB_LOGE("Cannot create dynamic array fields: " | |
5cd6d0e5 | 474 | "%![fc-]+F", fc); |
65300d60 | 475 | BT_OBJECT_PUT_REF_AND_RESET(array_field); |
44c440bc | 476 | goto end; |
cb6f1f7d PP |
477 | } |
478 | ||
44c440bc PP |
479 | BT_LIB_LOGD("Created dynamic array field object: %!+f", array_field); |
480 | ||
481 | end: | |
482 | return (void *) array_field; | |
312c056a PP |
483 | } |
484 | ||
40f4ba76 | 485 | int64_t bt_field_signed_integer_get_value(const struct bt_field *field) |
312c056a | 486 | { |
40f4ba76 | 487 | const struct bt_field_integer *int_field = (const void *) field; |
312c056a | 488 | |
44c440bc PP |
489 | BT_ASSERT_PRE_NON_NULL(field, "Field"); |
490 | BT_ASSERT_PRE_FIELD_IS_SET(field, "Field"); | |
491 | BT_ASSERT_PRE_FIELD_IS_SIGNED_INT(field, "Field"); | |
492 | return int_field->value.i; | |
cd95e351 JG |
493 | } |
494 | ||
40f4ba76 | 495 | void bt_field_signed_integer_set_value(struct bt_field *field, int64_t value) |
cd95e351 | 496 | { |
44c440bc | 497 | struct bt_field_integer *int_field = (void *) field; |
312c056a | 498 | |
44c440bc PP |
499 | BT_ASSERT_PRE_NON_NULL(field, "Field"); |
500 | BT_ASSERT_PRE_FIELD_IS_SIGNED_INT(field, "Field"); | |
501 | BT_ASSERT_PRE_FIELD_HOT(field, "Field"); | |
502 | BT_ASSERT_PRE(bt_util_value_is_in_range_signed( | |
5cd6d0e5 | 503 | ((struct bt_field_class_integer *) field->class)->range, value), |
44c440bc | 504 | "Value is out of bounds: value=%" PRId64 ", %![field-]+f, " |
5cd6d0e5 | 505 | "%![fc-]+F", value, field, field->class); |
44c440bc PP |
506 | int_field->value.i = value; |
507 | bt_field_set_single(field, true); | |
cd95e351 JG |
508 | } |
509 | ||
40f4ba76 | 510 | uint64_t bt_field_unsigned_integer_get_value(const struct bt_field *field) |
273b65be | 511 | { |
40f4ba76 | 512 | const struct bt_field_integer *int_field = (const void *) field; |
44c440bc PP |
513 | |
514 | BT_ASSERT_PRE_NON_NULL(field, "Field"); | |
515 | BT_ASSERT_PRE_FIELD_IS_SET(field, "Field"); | |
516 | BT_ASSERT_PRE_FIELD_IS_UNSIGNED_INT(field, "Field"); | |
517 | return int_field->value.u; | |
273b65be JG |
518 | } |
519 | ||
40f4ba76 | 520 | void bt_field_unsigned_integer_set_value(struct bt_field *field, uint64_t value) |
cd95e351 | 521 | { |
44c440bc | 522 | struct bt_field_integer *int_field = (void *) field; |
312c056a | 523 | |
44c440bc PP |
524 | BT_ASSERT_PRE_NON_NULL(field, "Field"); |
525 | BT_ASSERT_PRE_FIELD_IS_UNSIGNED_INT(field, "Field"); | |
526 | BT_ASSERT_PRE_FIELD_HOT(field, "Field"); | |
527 | BT_ASSERT_PRE(bt_util_value_is_in_range_unsigned( | |
5cd6d0e5 | 528 | ((struct bt_field_class_integer *) field->class)->range, value), |
44c440bc | 529 | "Value is out of bounds: value=%" PRIu64 ", %![field-]+f, " |
5cd6d0e5 | 530 | "%![fc-]+F", value, field, field->class); |
44c440bc PP |
531 | int_field->value.u = value; |
532 | bt_field_set_single(field, true); | |
cd95e351 JG |
533 | } |
534 | ||
40f4ba76 | 535 | double bt_field_real_get_value(const struct bt_field *field) |
273b65be | 536 | { |
40f4ba76 | 537 | const struct bt_field_real *real_field = (const void *) field; |
44c440bc PP |
538 | |
539 | BT_ASSERT_PRE_NON_NULL(field, "Field"); | |
540 | BT_ASSERT_PRE_FIELD_IS_SET(field, "Field"); | |
864cad70 | 541 | BT_ASSERT_PRE_FIELD_HAS_CLASS_TYPE(field, BT_FIELD_CLASS_TYPE_REAL, "Field"); |
44c440bc | 542 | return real_field->value; |
f6ccaed9 PP |
543 | } |
544 | ||
40f4ba76 | 545 | void bt_field_real_set_value(struct bt_field *field, double value) |
f6ccaed9 | 546 | { |
44c440bc | 547 | struct bt_field_real *real_field = (void *) field; |
cb6f1f7d | 548 | |
44c440bc | 549 | BT_ASSERT_PRE_NON_NULL(field, "Field"); |
864cad70 | 550 | BT_ASSERT_PRE_FIELD_HAS_CLASS_TYPE(field, BT_FIELD_CLASS_TYPE_REAL, "Field"); |
44c440bc PP |
551 | BT_ASSERT_PRE_FIELD_HOT(field, "Field"); |
552 | BT_ASSERT_PRE( | |
5cd6d0e5 | 553 | !((struct bt_field_class_real *) field->class)->is_single_precision || |
44c440bc PP |
554 | (double) (float) value == value, |
555 | "Invalid value for a single-precision real number: value=%f, " | |
5cd6d0e5 | 556 | "%![fc-]+F", value, field->class); |
44c440bc PP |
557 | real_field->value = value; |
558 | bt_field_set_single(field, true); | |
559 | } | |
560 | ||
743eec93 | 561 | enum bt_field_status bt_field_unsigned_enumeration_get_mapping_labels( |
40f4ba76 | 562 | const struct bt_field *field, |
5cd6d0e5 | 563 | bt_field_class_enumeration_mapping_label_array *label_array, |
44c440bc PP |
564 | uint64_t *count) |
565 | { | |
40f4ba76 | 566 | const struct bt_field_integer *int_field = (const void *) field; |
44c440bc PP |
567 | |
568 | BT_ASSERT_PRE_NON_NULL(field, "Field"); | |
569 | BT_ASSERT_PRE_NON_NULL(label_array, "Label array (output)"); | |
570 | BT_ASSERT_PRE_NON_NULL(label_array, "Count (output)"); | |
571 | BT_ASSERT_PRE_FIELD_IS_SET(field, "Field"); | |
864cad70 PP |
572 | BT_ASSERT_PRE_FIELD_HAS_CLASS_TYPE(field, |
573 | BT_FIELD_CLASS_TYPE_UNSIGNED_ENUMERATION, "Field"); | |
743eec93 PP |
574 | return (int) |
575 | bt_field_class_unsigned_enumeration_get_mapping_labels_by_value( | |
576 | field->class, int_field->value.u, label_array, count); | |
273b65be JG |
577 | } |
578 | ||
743eec93 | 579 | enum bt_field_status bt_field_signed_enumeration_get_mapping_labels( |
40f4ba76 | 580 | const struct bt_field *field, |
5cd6d0e5 | 581 | bt_field_class_enumeration_mapping_label_array *label_array, |
44c440bc | 582 | uint64_t *count) |
cd95e351 | 583 | { |
40f4ba76 | 584 | const struct bt_field_integer *int_field = (const void *) field; |
cb6f1f7d | 585 | |
44c440bc PP |
586 | BT_ASSERT_PRE_NON_NULL(field, "Field"); |
587 | BT_ASSERT_PRE_NON_NULL(label_array, "Label array (output)"); | |
588 | BT_ASSERT_PRE_NON_NULL(label_array, "Count (output)"); | |
589 | BT_ASSERT_PRE_FIELD_IS_SET(field, "Field"); | |
864cad70 PP |
590 | BT_ASSERT_PRE_FIELD_HAS_CLASS_TYPE(field, |
591 | BT_FIELD_CLASS_TYPE_SIGNED_ENUMERATION, "Field"); | |
743eec93 PP |
592 | return (int) |
593 | bt_field_class_signed_enumeration_get_mapping_labels_by_value( | |
594 | field->class, int_field->value.i, label_array, count); | |
f6ccaed9 | 595 | } |
fc25abce | 596 | |
40f4ba76 | 597 | const char *bt_field_string_get_value(const struct bt_field *field) |
f6ccaed9 | 598 | { |
40f4ba76 | 599 | const struct bt_field_string *string_field = (const void *) field; |
44c440bc PP |
600 | |
601 | BT_ASSERT_PRE_NON_NULL(field, "Field"); | |
602 | BT_ASSERT_PRE_FIELD_IS_SET(field, "Field"); | |
864cad70 | 603 | BT_ASSERT_PRE_FIELD_HAS_CLASS_TYPE(field, BT_FIELD_CLASS_TYPE_STRING, |
44c440bc PP |
604 | "Field"); |
605 | return (const char *) string_field->buf->data; | |
606 | } | |
607 | ||
40f4ba76 | 608 | uint64_t bt_field_string_get_length(const struct bt_field *field) |
44c440bc | 609 | { |
40f4ba76 | 610 | const struct bt_field_string *string_field = (const void *) field; |
cb6f1f7d | 611 | |
44c440bc PP |
612 | BT_ASSERT_PRE_NON_NULL(field, "Field"); |
613 | BT_ASSERT_PRE_FIELD_IS_SET(field, "Field"); | |
864cad70 | 614 | BT_ASSERT_PRE_FIELD_HAS_CLASS_TYPE(field, BT_FIELD_CLASS_TYPE_STRING, |
44c440bc PP |
615 | "Field"); |
616 | return string_field->length; | |
cd95e351 JG |
617 | } |
618 | ||
743eec93 PP |
619 | static inline |
620 | void clear_string_field(struct bt_field *field) | |
621 | { | |
622 | struct bt_field_string *string_field = (void *) field; | |
623 | ||
624 | BT_ASSERT(field); | |
625 | string_field->length = 0; | |
626 | bt_field_set_single(field, true); | |
627 | } | |
628 | ||
629 | enum bt_field_status bt_field_string_set_value(struct bt_field *field, | |
630 | const char *value) | |
273b65be | 631 | { |
44c440bc | 632 | BT_ASSERT_PRE_NON_NULL(field, "Field"); |
cb6f1f7d | 633 | BT_ASSERT_PRE_NON_NULL(value, "Value"); |
44c440bc | 634 | BT_ASSERT_PRE_FIELD_HOT(field, "Field"); |
864cad70 | 635 | BT_ASSERT_PRE_FIELD_HAS_CLASS_TYPE(field, BT_FIELD_CLASS_TYPE_STRING, |
44c440bc | 636 | "Field"); |
743eec93 | 637 | clear_string_field(field); |
40f4ba76 | 638 | return bt_field_string_append_with_length(field, value, |
44c440bc | 639 | (uint64_t) strlen(value)); |
273b65be JG |
640 | } |
641 | ||
743eec93 | 642 | enum bt_field_status bt_field_string_append(struct bt_field *field, const char *value) |
cd95e351 | 643 | { |
40f4ba76 | 644 | return bt_field_string_append_with_length(field, |
e5be10ef | 645 | value, (uint64_t) strlen(value)); |
cd95e351 JG |
646 | } |
647 | ||
743eec93 | 648 | enum bt_field_status bt_field_string_append_with_length(struct bt_field *field, |
44c440bc | 649 | const char *value, uint64_t length) |
273b65be | 650 | { |
cb6f1f7d PP |
651 | struct bt_field_string *string_field = (void *) field; |
652 | char *data; | |
44c440bc | 653 | uint64_t new_length; |
273b65be | 654 | |
44c440bc | 655 | BT_ASSERT_PRE_NON_NULL(field, "Field"); |
cb6f1f7d | 656 | BT_ASSERT_PRE_NON_NULL(value, "Value"); |
44c440bc | 657 | BT_ASSERT_PRE_FIELD_HOT(field, "Field"); |
864cad70 PP |
658 | BT_ASSERT_PRE_FIELD_HAS_CLASS_TYPE(field, |
659 | BT_FIELD_CLASS_TYPE_STRING, "Field"); | |
312c056a | 660 | |
cb6f1f7d PP |
661 | /* Make sure no null bytes are appended */ |
662 | BT_ASSERT_PRE(memchr(value, '\0', length) == NULL, | |
663 | "String value to append contains a null character: " | |
44c440bc | 664 | "partial-value=\"%.32s\", length=%" PRIu64, value, length); |
c6f9c5a3 | 665 | |
44c440bc | 666 | new_length = length + string_field->length; |
cb6f1f7d | 667 | |
44c440bc PP |
668 | if (unlikely(new_length + 1 > string_field->buf->len)) { |
669 | g_array_set_size(string_field->buf, new_length + 1); | |
c6f9c5a3 PP |
670 | } |
671 | ||
cb6f1f7d | 672 | data = string_field->buf->data; |
44c440bc PP |
673 | memcpy(data + string_field->length, value, length); |
674 | ((char *) string_field->buf->data)[new_length] = '\0'; | |
675 | string_field->length = new_length; | |
676 | bt_field_set_single(field, true); | |
743eec93 | 677 | return BT_FIELD_STATUS_OK; |
cb6f1f7d | 678 | } |
3dca2276 | 679 | |
743eec93 | 680 | enum bt_field_status bt_field_string_clear(struct bt_field *field) |
cb6f1f7d | 681 | { |
44c440bc PP |
682 | BT_ASSERT_PRE_NON_NULL(field, "Field"); |
683 | BT_ASSERT_PRE_FIELD_HOT(field, "Field"); | |
864cad70 PP |
684 | BT_ASSERT_PRE_FIELD_HAS_CLASS_TYPE(field, |
685 | BT_FIELD_CLASS_TYPE_STRING, "Field"); | |
743eec93 PP |
686 | clear_string_field(field); |
687 | return BT_FIELD_STATUS_OK; | |
cb6f1f7d PP |
688 | } |
689 | ||
40f4ba76 | 690 | uint64_t bt_field_array_get_length(const struct bt_field *field) |
cb6f1f7d | 691 | { |
40f4ba76 | 692 | const struct bt_field_array *array_field = (const void *) field; |
c6f9c5a3 | 693 | |
44c440bc PP |
694 | BT_ASSERT_PRE_NON_NULL(field, "Field"); |
695 | BT_ASSERT_PRE_FIELD_IS_ARRAY(field, "Field"); | |
696 | return array_field->length; | |
3dca2276 | 697 | } |
f98c6554 | 698 | |
743eec93 PP |
699 | enum bt_field_status bt_field_dynamic_array_set_length(struct bt_field *field, |
700 | uint64_t length) | |
3dca2276 | 701 | { |
743eec93 | 702 | int ret = BT_FIELD_STATUS_OK; |
44c440bc | 703 | struct bt_field_array *array_field = (void *) field; |
f98c6554 | 704 | |
44c440bc | 705 | BT_ASSERT_PRE_NON_NULL(field, "Field"); |
864cad70 PP |
706 | BT_ASSERT_PRE_FIELD_HAS_CLASS_TYPE(field, |
707 | BT_FIELD_CLASS_TYPE_DYNAMIC_ARRAY, "Field"); | |
44c440bc | 708 | BT_ASSERT_PRE_FIELD_HOT(field, "Field"); |
273b65be | 709 | |
44c440bc PP |
710 | if (unlikely(length > array_field->fields->len)) { |
711 | /* Make more room */ | |
5cd6d0e5 | 712 | struct bt_field_class_array *array_fc; |
44c440bc PP |
713 | uint64_t cur_len = array_field->fields->len; |
714 | uint64_t i; | |
cb6f1f7d | 715 | |
44c440bc | 716 | g_ptr_array_set_size(array_field->fields, length); |
5cd6d0e5 | 717 | array_fc = (void *) field->class; |
cb6f1f7d | 718 | |
44c440bc PP |
719 | for (i = cur_len; i < array_field->fields->len; i++) { |
720 | struct bt_field *elem_field = bt_field_create( | |
5cd6d0e5 | 721 | array_fc->element_fc); |
273b65be | 722 | |
44c440bc PP |
723 | if (!elem_field) { |
724 | BT_LIB_LOGE("Cannot create element field for " | |
725 | "dynamic array field: " | |
726 | "index=%" PRIu64 ", " | |
727 | "%![array-field-]+f", i, field); | |
743eec93 | 728 | ret = BT_FIELD_STATUS_NOMEM; |
44c440bc PP |
729 | goto end; |
730 | } | |
c58b9c62 | 731 | |
44c440bc PP |
732 | BT_ASSERT(!array_field->fields->pdata[i]); |
733 | array_field->fields->pdata[i] = elem_field; | |
c58b9c62 | 734 | } |
c58b9c62 JG |
735 | } |
736 | ||
44c440bc | 737 | array_field->length = length; |
3dca2276 | 738 | |
273b65be | 739 | end: |
c58b9c62 | 740 | return ret; |
273b65be JG |
741 | } |
742 | ||
40f4ba76 PP |
743 | static inline |
744 | struct bt_field *borrow_array_field_element_field_by_index( | |
44c440bc | 745 | struct bt_field *field, uint64_t index) |
312c056a | 746 | { |
44c440bc | 747 | struct bt_field_array *array_field = (void *) field; |
312c056a | 748 | |
44c440bc PP |
749 | BT_ASSERT_PRE_NON_NULL(field, "Field"); |
750 | BT_ASSERT_PRE_FIELD_IS_ARRAY(field, "Field"); | |
751 | BT_ASSERT_PRE_VALID_INDEX(index, array_field->length); | |
752 | return array_field->fields->pdata[index]; | |
312c056a PP |
753 | } |
754 | ||
40f4ba76 PP |
755 | struct bt_field *bt_field_array_borrow_element_field_by_index( |
756 | struct bt_field *field, uint64_t index) | |
e5be10ef | 757 | { |
40f4ba76 | 758 | return borrow_array_field_element_field_by_index(field, index); |
e5be10ef PP |
759 | } |
760 | ||
40f4ba76 PP |
761 | const struct bt_field * |
762 | bt_field_array_borrow_element_field_by_index_const( | |
763 | const struct bt_field *field, uint64_t index) | |
764 | { | |
765 | return borrow_array_field_element_field_by_index((void *) field, index); | |
766 | } | |
767 | ||
768 | static inline | |
769 | struct bt_field *borrow_structure_field_member_field_by_index( | |
44c440bc | 770 | struct bt_field *field, uint64_t index) |
4d4b475d | 771 | { |
44c440bc | 772 | struct bt_field_structure *struct_field = (void *) field; |
4d4b475d | 773 | |
44c440bc | 774 | BT_ASSERT_PRE_NON_NULL(field, "Field"); |
864cad70 PP |
775 | BT_ASSERT_PRE_FIELD_HAS_CLASS_TYPE(field, |
776 | BT_FIELD_CLASS_TYPE_STRUCTURE, "Field"); | |
44c440bc PP |
777 | BT_ASSERT_PRE_VALID_INDEX(index, struct_field->fields->len); |
778 | return struct_field->fields->pdata[index]; | |
4d4b475d PP |
779 | } |
780 | ||
40f4ba76 PP |
781 | struct bt_field *bt_field_structure_borrow_member_field_by_index( |
782 | struct bt_field *field, uint64_t index) | |
783 | { | |
784 | return borrow_structure_field_member_field_by_index(field, | |
785 | index); | |
786 | } | |
787 | ||
788 | const struct bt_field * | |
789 | bt_field_structure_borrow_member_field_by_index_const( | |
790 | const struct bt_field *field, uint64_t index) | |
e5be10ef | 791 | { |
40f4ba76 | 792 | return borrow_structure_field_member_field_by_index( |
e5be10ef PP |
793 | (void *) field, index); |
794 | } | |
795 | ||
40f4ba76 PP |
796 | static inline |
797 | struct bt_field *borrow_structure_field_member_field_by_name( | |
44c440bc | 798 | struct bt_field *field, const char *name) |
273b65be | 799 | { |
44c440bc | 800 | struct bt_field *ret_field = NULL; |
5cd6d0e5 | 801 | struct bt_field_class_structure *struct_fc; |
44c440bc PP |
802 | struct bt_field_structure *struct_field = (void *) field; |
803 | gpointer orig_key; | |
804 | gpointer index; | |
fc25abce | 805 | |
44c440bc PP |
806 | BT_ASSERT_PRE_NON_NULL(field, "Field"); |
807 | BT_ASSERT_PRE_NON_NULL(name, "Field name"); | |
864cad70 PP |
808 | BT_ASSERT_PRE_FIELD_HAS_CLASS_TYPE(field, |
809 | BT_FIELD_CLASS_TYPE_STRUCTURE, "Field"); | |
5cd6d0e5 | 810 | struct_fc = (void *) field->class; |
312c056a | 811 | |
5cd6d0e5 | 812 | if (!g_hash_table_lookup_extended(struct_fc->common.name_to_index, name, |
44c440bc | 813 | &orig_key, &index)) { |
312c056a | 814 | goto end; |
fc25abce PP |
815 | } |
816 | ||
44c440bc PP |
817 | ret_field = struct_field->fields->pdata[GPOINTER_TO_UINT(index)]; |
818 | BT_ASSERT(ret_field); | |
312c056a PP |
819 | |
820 | end: | |
44c440bc | 821 | return ret_field; |
273b65be JG |
822 | } |
823 | ||
40f4ba76 PP |
824 | struct bt_field *bt_field_structure_borrow_member_field_by_name( |
825 | struct bt_field *field, const char *name) | |
826 | { | |
827 | return borrow_structure_field_member_field_by_name(field, name); | |
828 | } | |
829 | ||
830 | const struct bt_field *bt_field_structure_borrow_member_field_by_name_const( | |
831 | const struct bt_field *field, const char *name) | |
e5be10ef | 832 | { |
40f4ba76 | 833 | return borrow_structure_field_member_field_by_name( |
e5be10ef PP |
834 | (void *) field, name); |
835 | } | |
836 | ||
40f4ba76 PP |
837 | static inline |
838 | struct bt_field *borrow_variant_field_selected_option_field( | |
44c440bc | 839 | struct bt_field *field) |
273b65be | 840 | { |
44c440bc | 841 | struct bt_field_variant *var_field = (void *) field; |
273b65be | 842 | |
44c440bc | 843 | BT_ASSERT_PRE_NON_NULL(field, "Field"); |
864cad70 PP |
844 | BT_ASSERT_PRE_FIELD_HAS_CLASS_TYPE(field, |
845 | BT_FIELD_CLASS_TYPE_VARIANT, "Field"); | |
44c440bc PP |
846 | BT_ASSERT_PRE(var_field->selected_field, |
847 | "Variant field has no selected field: %!+f", field); | |
848 | return var_field->selected_field; | |
273b65be JG |
849 | } |
850 | ||
40f4ba76 PP |
851 | struct bt_field *bt_field_variant_borrow_selected_option_field( |
852 | struct bt_field *field) | |
853 | { | |
854 | return borrow_variant_field_selected_option_field(field); | |
855 | } | |
856 | ||
857 | const struct bt_field *bt_field_variant_borrow_selected_option_field_const( | |
858 | const struct bt_field *field) | |
273b65be | 859 | { |
40f4ba76 | 860 | return borrow_variant_field_selected_option_field((void *) field); |
e5be10ef PP |
861 | } |
862 | ||
743eec93 | 863 | enum bt_field_status bt_field_variant_select_option_field( |
40f4ba76 | 864 | struct bt_field *field, uint64_t index) |
e5be10ef | 865 | { |
44c440bc | 866 | struct bt_field_variant *var_field = (void *) field; |
fc25abce | 867 | |
44c440bc | 868 | BT_ASSERT_PRE_NON_NULL(field, "Field"); |
864cad70 PP |
869 | BT_ASSERT_PRE_FIELD_HAS_CLASS_TYPE(field, |
870 | BT_FIELD_CLASS_TYPE_VARIANT, "Field"); | |
44c440bc PP |
871 | BT_ASSERT_PRE_FIELD_HOT(field, "Field"); |
872 | BT_ASSERT_PRE_VALID_INDEX(index, var_field->fields->len); | |
873 | var_field->selected_field = var_field->fields->pdata[index]; | |
874 | var_field->selected_index = index; | |
743eec93 | 875 | return BT_FIELD_STATUS_OK; |
273b65be JG |
876 | } |
877 | ||
44c440bc | 878 | uint64_t bt_field_variant_get_selected_option_field_index( |
40f4ba76 | 879 | const struct bt_field *field) |
312c056a | 880 | { |
40f4ba76 | 881 | const struct bt_field_variant *var_field = (const void *) field; |
312c056a | 882 | |
44c440bc | 883 | BT_ASSERT_PRE_NON_NULL(field, "Field"); |
864cad70 PP |
884 | BT_ASSERT_PRE_FIELD_HAS_CLASS_TYPE(field, |
885 | BT_FIELD_CLASS_TYPE_VARIANT, "Field"); | |
44c440bc PP |
886 | BT_ASSERT_PRE(var_field->selected_field, |
887 | "Variant field has no selected field: %!+f", field); | |
888 | return var_field->selected_index; | |
312c056a PP |
889 | } |
890 | ||
44c440bc PP |
891 | static inline |
892 | void bt_field_finalize(struct bt_field *field) | |
273b65be | 893 | { |
44c440bc | 894 | BT_ASSERT(field); |
5cd6d0e5 | 895 | BT_LOGD_STR("Putting field's class."); |
238b7404 | 896 | BT_OBJECT_PUT_REF_AND_RESET(field->class); |
273b65be JG |
897 | } |
898 | ||
899 | static | |
44c440bc | 900 | void destroy_integer_field(struct bt_field *field) |
273b65be | 901 | { |
44c440bc PP |
902 | BT_ASSERT(field); |
903 | BT_LIB_LOGD("Destroying integer field object: %!+f", field); | |
904 | bt_field_finalize(field); | |
905 | g_free(field); | |
273b65be JG |
906 | } |
907 | ||
cb6f1f7d | 908 | static |
44c440bc | 909 | void destroy_real_field(struct bt_field *field) |
273b65be | 910 | { |
44c440bc PP |
911 | BT_ASSERT(field); |
912 | BT_LIB_LOGD("Destroying real field object: %!+f", field); | |
913 | bt_field_finalize(field); | |
914 | g_free(field); | |
273b65be JG |
915 | } |
916 | ||
cb6f1f7d | 917 | static |
44c440bc | 918 | void destroy_structure_field(struct bt_field *field) |
273b65be | 919 | { |
44c440bc | 920 | struct bt_field_structure *struct_field = (void *) field; |
273b65be | 921 | |
f6ccaed9 | 922 | BT_ASSERT(field); |
44c440bc PP |
923 | BT_LIB_LOGD("Destroying structure field object: %!+f", field); |
924 | bt_field_finalize(field); | |
f6ccaed9 | 925 | |
44c440bc PP |
926 | if (struct_field->fields) { |
927 | g_ptr_array_free(struct_field->fields, TRUE); | |
238b7404 | 928 | struct_field->fields = NULL; |
273b65be | 929 | } |
f6ccaed9 | 930 | |
44c440bc | 931 | g_free(field); |
273b65be JG |
932 | } |
933 | ||
cb6f1f7d | 934 | static |
44c440bc | 935 | void destroy_variant_field(struct bt_field *field) |
273b65be | 936 | { |
44c440bc | 937 | struct bt_field_variant *var_field = (void *) field; |
273b65be | 938 | |
f6ccaed9 | 939 | BT_ASSERT(field); |
44c440bc PP |
940 | BT_LIB_LOGD("Destroying variant field object: %!+f", field); |
941 | bt_field_finalize(field); | |
312c056a | 942 | |
44c440bc PP |
943 | if (var_field->fields) { |
944 | g_ptr_array_free(var_field->fields, TRUE); | |
238b7404 | 945 | var_field->fields = NULL; |
fc25abce | 946 | } |
f6ccaed9 | 947 | |
44c440bc | 948 | g_free(field); |
273b65be JG |
949 | } |
950 | ||
cb6f1f7d | 951 | static |
44c440bc | 952 | void destroy_array_field(struct bt_field *field) |
273b65be | 953 | { |
44c440bc | 954 | struct bt_field_array *array_field = (void *) field; |
273b65be | 955 | |
f6ccaed9 | 956 | BT_ASSERT(field); |
44c440bc PP |
957 | BT_LIB_LOGD("Destroying array field object: %!+f", field); |
958 | bt_field_finalize(field); | |
3dca2276 | 959 | |
44c440bc PP |
960 | if (array_field->fields) { |
961 | g_ptr_array_free(array_field->fields, TRUE); | |
238b7404 | 962 | array_field->fields = NULL; |
273b65be | 963 | } |
f6ccaed9 | 964 | |
44c440bc | 965 | g_free(field); |
273b65be JG |
966 | } |
967 | ||
cb6f1f7d | 968 | static |
44c440bc | 969 | void destroy_string_field(struct bt_field *field) |
273b65be | 970 | { |
44c440bc | 971 | struct bt_field_string *string_field = (void *) field; |
273b65be | 972 | |
f6ccaed9 | 973 | BT_ASSERT(field); |
44c440bc PP |
974 | BT_LIB_LOGD("Destroying string field object: %!+f", field); |
975 | bt_field_finalize(field); | |
3dca2276 | 976 | |
44c440bc PP |
977 | if (string_field->buf) { |
978 | g_array_free(string_field->buf, TRUE); | |
238b7404 | 979 | string_field->buf = NULL; |
273b65be | 980 | } |
44c440bc PP |
981 | |
982 | g_free(field); | |
273b65be JG |
983 | } |
984 | ||
44c440bc PP |
985 | BT_HIDDEN |
986 | void bt_field_destroy(struct bt_field *field) | |
12c8a1a3 | 987 | { |
f6ccaed9 | 988 | BT_ASSERT(field); |
864cad70 PP |
989 | BT_ASSERT(bt_field_class_has_known_type(field->class)); |
990 | field_destroy_funcs[field->class->type](field); | |
12c8a1a3 JG |
991 | } |
992 | ||
cb6f1f7d | 993 | static |
44c440bc | 994 | void reset_single_field(struct bt_field *field) |
12c8a1a3 | 995 | { |
f6ccaed9 | 996 | BT_ASSERT(field); |
44c440bc | 997 | field->is_set = false; |
12c8a1a3 JG |
998 | } |
999 | ||
cb6f1f7d | 1000 | static |
44c440bc | 1001 | void reset_structure_field(struct bt_field *field) |
12c8a1a3 | 1002 | { |
44c440bc PP |
1003 | uint64_t i; |
1004 | struct bt_field_structure *struct_field = (void *) field; | |
12c8a1a3 | 1005 | |
f6ccaed9 | 1006 | BT_ASSERT(field); |
44c440bc PP |
1007 | |
1008 | for (i = 0; i < struct_field->fields->len; i++) { | |
1009 | bt_field_reset(struct_field->fields->pdata[i]); | |
1010 | } | |
12c8a1a3 JG |
1011 | } |
1012 | ||
cb6f1f7d | 1013 | static |
44c440bc | 1014 | void reset_variant_field(struct bt_field *field) |
12c8a1a3 | 1015 | { |
44c440bc PP |
1016 | uint64_t i; |
1017 | struct bt_field_variant *var_field = (void *) field; | |
12c8a1a3 | 1018 | |
f6ccaed9 | 1019 | BT_ASSERT(field); |
f6ccaed9 | 1020 | |
44c440bc PP |
1021 | for (i = 0; i < var_field->fields->len; i++) { |
1022 | bt_field_reset(var_field->fields->pdata[i]); | |
12c8a1a3 | 1023 | } |
12c8a1a3 JG |
1024 | } |
1025 | ||
cb6f1f7d | 1026 | static |
44c440bc | 1027 | void reset_array_field(struct bt_field *field) |
12c8a1a3 | 1028 | { |
312c056a | 1029 | uint64_t i; |
44c440bc | 1030 | struct bt_field_array *array_field = (void *) field; |
12c8a1a3 | 1031 | |
f6ccaed9 | 1032 | BT_ASSERT(field); |
f6ccaed9 | 1033 | |
44c440bc PP |
1034 | for (i = 0; i < array_field->fields->len; i++) { |
1035 | bt_field_reset(array_field->fields->pdata[i]); | |
12c8a1a3 | 1036 | } |
12c8a1a3 JG |
1037 | } |
1038 | ||
cb6f1f7d | 1039 | static |
44c440bc | 1040 | void set_single_field_is_frozen(struct bt_field *field, bool is_frozen) |
918be005 | 1041 | { |
312c056a | 1042 | field->frozen = is_frozen; |
918be005 PP |
1043 | } |
1044 | ||
cb6f1f7d | 1045 | static |
44c440bc | 1046 | void set_structure_field_is_frozen(struct bt_field *field, bool is_frozen) |
918be005 | 1047 | { |
312c056a | 1048 | uint64_t i; |
44c440bc | 1049 | struct bt_field_structure *struct_field = (void *) field; |
918be005 | 1050 | |
44c440bc PP |
1051 | BT_LIB_LOGD("Setting structure field's frozen state: " |
1052 | "%![field-]+f, is-frozen=%d", field, is_frozen); | |
fc25abce | 1053 | |
44c440bc PP |
1054 | for (i = 0; i < struct_field->fields->len; i++) { |
1055 | struct bt_field *member_field = struct_field->fields->pdata[i]; | |
918be005 | 1056 | |
44c440bc PP |
1057 | BT_LIB_LOGD("Setting structure field's member field's " |
1058 | "frozen state: %![field-]+f, index=%" PRIu64, | |
1059 | member_field, i); | |
1060 | bt_field_set_is_frozen(member_field, is_frozen); | |
918be005 PP |
1061 | } |
1062 | ||
44c440bc | 1063 | set_single_field_is_frozen(field, is_frozen); |
918be005 PP |
1064 | } |
1065 | ||
cb6f1f7d | 1066 | static |
44c440bc | 1067 | void set_variant_field_is_frozen(struct bt_field *field, bool is_frozen) |
918be005 | 1068 | { |
312c056a | 1069 | uint64_t i; |
44c440bc | 1070 | struct bt_field_variant *var_field = (void *) field; |
918be005 | 1071 | |
44c440bc PP |
1072 | BT_LIB_LOGD("Setting variant field's frozen state: " |
1073 | "%![field-]+f, is-frozen=%d", field, is_frozen); | |
312c056a | 1074 | |
44c440bc PP |
1075 | for (i = 0; i < var_field->fields->len; i++) { |
1076 | struct bt_field *option_field = var_field->fields->pdata[i]; | |
312c056a | 1077 | |
44c440bc PP |
1078 | BT_LIB_LOGD("Setting variant field's option field's " |
1079 | "frozen state: %![field-]+f, index=%" PRIu64, | |
1080 | option_field, i); | |
1081 | bt_field_set_is_frozen(option_field, is_frozen); | |
312c056a PP |
1082 | } |
1083 | ||
44c440bc | 1084 | set_single_field_is_frozen(field, is_frozen); |
918be005 PP |
1085 | } |
1086 | ||
cb6f1f7d | 1087 | static |
44c440bc | 1088 | void set_array_field_is_frozen(struct bt_field *field, bool is_frozen) |
918be005 | 1089 | { |
44c440bc | 1090 | uint64_t i; |
cb6f1f7d | 1091 | struct bt_field_array *array_field = (void *) field; |
918be005 | 1092 | |
44c440bc PP |
1093 | BT_LIB_LOGD("Setting array field's frozen state: " |
1094 | "%![field-]+f, is-frozen=%d", field, is_frozen); | |
fc25abce | 1095 | |
44c440bc PP |
1096 | for (i = 0; i < array_field->fields->len; i++) { |
1097 | struct bt_field *elem_field = array_field->fields->pdata[i]; | |
918be005 | 1098 | |
44c440bc PP |
1099 | BT_LIB_LOGD("Setting array field's element field's " |
1100 | "frozen state: %![field-]+f, index=%" PRIu64, | |
fc25abce | 1101 | elem_field, i); |
44c440bc | 1102 | bt_field_set_is_frozen(elem_field, is_frozen); |
918be005 PP |
1103 | } |
1104 | ||
44c440bc | 1105 | set_single_field_is_frozen(field, is_frozen); |
918be005 PP |
1106 | } |
1107 | ||
1108 | BT_HIDDEN | |
40f4ba76 | 1109 | void _bt_field_set_is_frozen(const struct bt_field *field, |
312c056a | 1110 | bool is_frozen) |
918be005 | 1111 | { |
44c440bc PP |
1112 | BT_ASSERT(field); |
1113 | BT_LIB_LOGD("Setting field object's frozen state: %!+f, is-frozen=%d", | |
312c056a | 1114 | field, is_frozen); |
312c056a | 1115 | BT_ASSERT(field->methods->set_is_frozen); |
40f4ba76 | 1116 | field->methods->set_is_frozen((void *) field, is_frozen); |
918be005 | 1117 | } |
76f869ab | 1118 | |
cb6f1f7d | 1119 | static |
40f4ba76 | 1120 | bool single_field_is_set(const struct bt_field *field) |
76f869ab | 1121 | { |
44c440bc PP |
1122 | BT_ASSERT(field); |
1123 | return field->is_set; | |
76f869ab JG |
1124 | } |
1125 | ||
cb6f1f7d | 1126 | static |
40f4ba76 | 1127 | bool structure_field_is_set(const struct bt_field *field) |
76f869ab | 1128 | { |
44c440bc PP |
1129 | bool is_set = true; |
1130 | uint64_t i; | |
40f4ba76 | 1131 | const struct bt_field_structure *struct_field = (const void *) field; |
76f869ab | 1132 | |
f6ccaed9 | 1133 | BT_ASSERT(field); |
3dca2276 | 1134 | |
44c440bc PP |
1135 | for (i = 0; i < struct_field->fields->len; i++) { |
1136 | is_set = bt_field_is_set(struct_field->fields->pdata[i]); | |
d4bf905a | 1137 | if (!is_set) { |
76f869ab JG |
1138 | goto end; |
1139 | } | |
1140 | } | |
3dca2276 | 1141 | |
76f869ab | 1142 | end: |
d4bf905a | 1143 | return is_set; |
76f869ab JG |
1144 | } |
1145 | ||
cb6f1f7d | 1146 | static |
40f4ba76 | 1147 | bool variant_field_is_set(const struct bt_field *field) |
76f869ab | 1148 | { |
40f4ba76 | 1149 | const struct bt_field_variant *var_field = (const void *) field; |
44c440bc | 1150 | bool is_set = false; |
76f869ab | 1151 | |
f6ccaed9 | 1152 | BT_ASSERT(field); |
3dca2276 | 1153 | |
44c440bc PP |
1154 | if (var_field->selected_field) { |
1155 | is_set = bt_field_is_set(var_field->selected_field); | |
76f869ab | 1156 | } |
3dca2276 | 1157 | |
d4bf905a | 1158 | return is_set; |
76f869ab JG |
1159 | } |
1160 | ||
cb6f1f7d | 1161 | static |
40f4ba76 | 1162 | bool array_field_is_set(const struct bt_field *field) |
76f869ab | 1163 | { |
44c440bc PP |
1164 | bool is_set = true; |
1165 | uint64_t i; | |
40f4ba76 | 1166 | const struct bt_field_array *array_field = (const void *) field; |
76f869ab | 1167 | |
f6ccaed9 | 1168 | BT_ASSERT(field); |
3dca2276 | 1169 | |
44c440bc PP |
1170 | for (i = 0; i < array_field->length; i++) { |
1171 | is_set = bt_field_is_set(array_field->fields->pdata[i]); | |
d4bf905a | 1172 | if (!is_set) { |
76f869ab JG |
1173 | goto end; |
1174 | } | |
1175 | } | |
3dca2276 | 1176 | |
76f869ab | 1177 | end: |
d4bf905a | 1178 | return is_set; |
76f869ab | 1179 | } |