trace{-class}.c: BT_ASSERT_PRE() -> BT_ASSERT_POST() (ref. count check)
[babeltrace.git] / src / lib / trace-ir / trace.c
CommitLineData
bc37ae52 1/*
f2b0325d 2 * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
bc37ae52
JG
3 * Copyright 2014 Jérémie Galarneau <jeremie.galarneau@efficios.com>
4 *
bc37ae52
JG
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
b03487ab 24#define BT_LOG_TAG "LIB/TRACE"
1633ef46 25#include "lib/logging.h"
e011d2c1 26
57952005 27#include "lib/assert-pre.h"
727170fc 28#include "lib/assert-post.h"
71c5da58 29#include <babeltrace2/trace-ir/trace.h>
71c5da58 30#include <babeltrace2/trace-ir/trace-const.h>
71c5da58 31#include <babeltrace2/trace-ir/event-class.h>
57952005
MJ
32#include "ctf-writer/functor.h"
33#include "ctf-writer/clock.h"
34#include "compat/compiler.h"
71c5da58
MJ
35#include <babeltrace2/value.h>
36#include <babeltrace2/value-const.h>
57952005 37#include "lib/value.h"
71c5da58 38#include <babeltrace2/types.h>
57952005
MJ
39#include "compat/endian.h"
40#include "common/assert.h"
41#include "compat/glib.h"
dc3fffef 42#include <inttypes.h>
544d0515 43#include <stdint.h>
4a32fda0 44#include <string.h>
0fbb9a9f 45#include <stdlib.h>
bc37ae52 46
57952005
MJ
47#include "attributes.h"
48#include "clock-class.h"
49#include "event-class.h"
50#include "event.h"
51#include "field-class.h"
52#include "field-wrapper.h"
53#include "resolve-field-path.h"
54#include "stream-class.h"
55#include "stream.h"
56#include "trace-class.h"
57#include "trace.h"
58#include "utils.h"
af90138b 59#include "lib/value.h"
fb25b9e3 60#include "lib/func-status.h"
57952005 61
1122415c
FD
62struct bt_trace_destruction_listener_elem {
63 bt_trace_destruction_listener_func func;
3602afb0
PP
64 void *data;
65};
66
fa6cfec3
PP
67#define BT_ASSERT_PRE_DEV_TRACE_HOT(_trace) \
68 BT_ASSERT_PRE_DEV_HOT((_trace), "Trace", ": %!+t", (_trace))
18acc6f8 69
bc37ae52 70static
7b33a0e0 71void destroy_trace(struct bt_object *obj)
8deee039
PP
72{
73 struct bt_trace *trace = (void *) obj;
bc37ae52 74
7b33a0e0 75 BT_LIB_LOGD("Destroying trace object: %!+t", trace);
af90138b 76 BT_OBJECT_PUT_REF_AND_RESET(trace->user_attributes);
bc37ae52 77
8deee039 78 /*
1122415c
FD
79 * Call destruction listener functions so that everything else
80 * still exists in the trace.
8deee039 81 */
1122415c
FD
82 if (trace->destruction_listeners) {
83 uint64_t i;
a684a357 84 BT_LIB_LOGD("Calling trace destruction listener(s): %!+t", trace);
69868f44
SM
85
86 /*
87 * The trace's reference count is 0 if we're here. Increment
88 * it to avoid a double-destroy (possibly infinitely recursive).
89 * This could happen for example if a destruction listener did
90 * bt_object_get_ref() (or anything that causes
91 * bt_object_get_ref() to be called) on the trace (ref.
92 * count goes from 0 to 1), and then bt_object_put_ref(): the
93 * reference count would go from 1 to 0 again and this function
94 * would be called again.
95 */
96 trace->base.ref_count++;
97
1122415c
FD
98 /* Call all the trace destruction listeners */
99 for (i = 0; i < trace->destruction_listeners->len; i++) {
100 struct bt_trace_destruction_listener_elem elem =
101 g_array_index(trace->destruction_listeners,
102 struct bt_trace_destruction_listener_elem, i);
103
104 if (elem.func) {
105 elem.func(trace, elem.data);
8deee039 106 }
69868f44
SM
107
108 /*
109 * The destruction listener should not have kept a
110 * reference to the trace.
111 */
727170fc 112 BT_ASSERT_POST(trace->base.ref_count == 1, "Destruction listener kept a reference to the trace being destroyed: %![trace-]+t", trace);
8deee039 113 }
1122415c
FD
114 g_array_free(trace->destruction_listeners, TRUE);
115 trace->destruction_listeners = NULL;
bc37ae52
JG
116 }
117
7b33a0e0
PP
118 if (trace->name.str) {
119 g_string_free(trace->name.str, TRUE);
1248f5ea
PP
120 trace->name.str = NULL;
121 trace->name.value = NULL;
95c09b3a
PP
122 }
123
cd03c43c
PP
124 if (trace->environment) {
125 BT_LOGD_STR("Destroying environment attributes.");
126 bt_attributes_destroy(trace->environment);
127 trace->environment = NULL;
128 }
129
7b33a0e0
PP
130 if (trace->streams) {
131 BT_LOGD_STR("Destroying streams.");
132 g_ptr_array_free(trace->streams, TRUE);
1248f5ea 133 trace->streams = NULL;
bc37ae52
JG
134 }
135
7b33a0e0
PP
136 if (trace->stream_classes_stream_count) {
137 g_hash_table_destroy(trace->stream_classes_stream_count);
1248f5ea 138 trace->stream_classes_stream_count = NULL;
7b33a0e0 139 }
8deee039 140
10b7a2e4
PP
141 BT_LOGD_STR("Putting trace's class.");
142 bt_object_put_ref(trace->class);
143 trace->class = NULL;
7b33a0e0 144 g_free(trace);
8deee039
PP
145}
146
10b7a2e4 147struct bt_trace *bt_trace_create(struct bt_trace_class *tc)
8deee039
PP
148{
149 struct bt_trace *trace = NULL;
8deee039 150
10b7a2e4 151 BT_LIB_LOGD("Creating trace object: %![tc-]+T", tc);
8deee039
PP
152 trace = g_new0(struct bt_trace, 1);
153 if (!trace) {
a8f90e5d 154 BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate one trace.");
8deee039
PP
155 goto error;
156 }
157
10b7a2e4 158 bt_object_init_shared(&trace->base, destroy_trace);
af90138b
PP
159 trace->user_attributes = bt_value_map_create();
160 if (!trace->user_attributes) {
161 BT_LIB_LOGE_APPEND_CAUSE(
162 "Failed to create a map value object.");
163 goto error;
164 }
165
7b33a0e0
PP
166 trace->streams = g_ptr_array_new_with_free_func(
167 (GDestroyNotify) bt_object_try_spec_release);
168 if (!trace->streams) {
a8f90e5d 169 BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate one GPtrArray.");
8deee039
PP
170 goto error;
171 }
172
7b33a0e0
PP
173 trace->stream_classes_stream_count = g_hash_table_new(g_direct_hash,
174 g_direct_equal);
175 if (!trace->stream_classes_stream_count) {
a8f90e5d 176 BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate one GHashTable.");
7b33a0e0
PP
177 goto error;
178 }
179
180 trace->name.str = g_string_new(NULL);
181 if (!trace->name.str) {
a8f90e5d 182 BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate one GString.");
7b33a0e0
PP
183 goto error;
184 }
185
cd03c43c
PP
186 trace->environment = bt_attributes_create();
187 if (!trace->environment) {
188 BT_LIB_LOGE_APPEND_CAUSE("Cannot create empty attributes object.");
189 goto error;
190 }
191
1122415c
FD
192 trace->destruction_listeners = g_array_new(FALSE, TRUE,
193 sizeof(struct bt_trace_destruction_listener_elem));
194 if (!trace->destruction_listeners) {
a8f90e5d 195 BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate one GArray.");
3602afb0
PP
196 goto error;
197 }
198
10b7a2e4 199 trace->class = tc;
864aa43f 200 bt_object_get_ref_no_null_check(trace->class);
7b33a0e0
PP
201 BT_LIB_LOGD("Created trace object: %!+t", trace);
202 goto end;
bc37ae52 203
bc37ae52 204error:
8138bfe1 205 BT_OBJECT_PUT_REF_AND_RESET(trace);
7b33a0e0
PP
206
207end:
10b7a2e4 208 return trace;
bc37ae52
JG
209}
210
78cf9df6 211const char *bt_trace_get_name(const struct bt_trace *trace)
e96045d4 212{
fa6cfec3 213 BT_ASSERT_PRE_DEV_NON_NULL(trace, "Trace");
7b33a0e0 214 return trace->name.value;
e96045d4
JG
215}
216
fb25b9e3
PP
217enum bt_trace_set_name_status bt_trace_set_name(struct bt_trace *trace,
218 const char *name)
e96045d4 219{
7b33a0e0
PP
220 BT_ASSERT_PRE_NON_NULL(trace, "Trace");
221 BT_ASSERT_PRE_NON_NULL(name, "Name");
fa6cfec3 222 BT_ASSERT_PRE_DEV_TRACE_HOT(trace);
7b33a0e0
PP
223 g_string_assign(trace->name.str, name);
224 trace->name.value = trace->name.str->str;
a684a357 225 BT_LIB_LOGD("Set trace's name: %!+t", trace);
fb25b9e3 226 return BT_FUNC_STATUS_OK;
e96045d4
JG
227}
228
cd03c43c
PP
229bt_uuid bt_trace_get_uuid(const struct bt_trace *trace)
230{
fa6cfec3 231 BT_ASSERT_PRE_DEV_NON_NULL(trace, "Trace");
cd03c43c
PP
232 return trace->uuid.value;
233}
234
235void bt_trace_set_uuid(struct bt_trace *trace, bt_uuid uuid)
236{
237 BT_ASSERT_PRE_NON_NULL(trace, "Trace");
238 BT_ASSERT_PRE_NON_NULL(uuid, "UUID");
fa6cfec3 239 BT_ASSERT_PRE_DEV_TRACE_HOT(trace);
d126826c 240 bt_uuid_copy(trace->uuid.uuid, uuid);
cd03c43c
PP
241 trace->uuid.value = trace->uuid.uuid;
242 BT_LIB_LOGD("Set trace's UUID: %!+t", trace);
243}
244
245BT_ASSERT_FUNC
246static
247bool trace_has_environment_entry(const struct bt_trace *trace, const char *name)
248{
249 BT_ASSERT(trace);
250
251 return bt_attributes_borrow_field_value_by_name(
8e01f2d9 252 trace->environment, name);
cd03c43c
PP
253}
254
255static
256enum bt_trace_set_environment_entry_status set_environment_entry(
257 struct bt_trace *trace,
258 const char *name, struct bt_value *value)
259{
260 int ret;
261
262 BT_ASSERT(trace);
263 BT_ASSERT(name);
264 BT_ASSERT(value);
265 BT_ASSERT_PRE(!trace->frozen ||
266 !trace_has_environment_entry(trace, name),
267 "Trace is frozen: cannot replace environment entry: "
268 "%![trace-]+t, entry-name=\"%s\"", trace, name);
269 ret = bt_attributes_set_field_value(trace->environment, name,
270 value);
271 if (ret) {
272 ret = BT_FUNC_STATUS_MEMORY_ERROR;
273 BT_LIB_LOGE_APPEND_CAUSE(
274 "Cannot set trace's environment entry: "
275 "%![trace-]+t, entry-name=\"%s\"", trace, name);
276 } else {
277 bt_value_freeze(value);
278 BT_LIB_LOGD("Set trace's environment entry: "
279 "%![trace-]+t, entry-name=\"%s\"", trace, name);
280 }
281
282 return ret;
283}
284
285enum bt_trace_set_environment_entry_status
286bt_trace_set_environment_entry_string(
287 struct bt_trace *trace, const char *name, const char *value)
288{
289 int ret;
290 struct bt_value *value_obj;
291 BT_ASSERT_PRE_NON_NULL(trace, "Trace");
292 BT_ASSERT_PRE_NON_NULL(name, "Name");
293 BT_ASSERT_PRE_NON_NULL(value, "Value");
294 value_obj = bt_value_string_create_init(value);
295 if (!value_obj) {
296 BT_LIB_LOGE_APPEND_CAUSE(
297 "Cannot create a string value object.");
298 ret = -1;
299 goto end;
300 }
301
302 /* set_environment_entry() logs errors */
303 ret = set_environment_entry(trace, name, value_obj);
304
305end:
306 bt_object_put_ref(value_obj);
307 return ret;
308}
309
310enum bt_trace_set_environment_entry_status
311bt_trace_set_environment_entry_integer(
312 struct bt_trace *trace, const char *name, int64_t value)
313{
314 int ret;
315 struct bt_value *value_obj;
316 BT_ASSERT_PRE_NON_NULL(trace, "Trace");
317 BT_ASSERT_PRE_NON_NULL(name, "Name");
60bbfc7c 318 value_obj = bt_value_integer_signed_create_init(value);
cd03c43c
PP
319 if (!value_obj) {
320 BT_LIB_LOGE_APPEND_CAUSE(
321 "Cannot create an integer value object.");
322 ret = BT_FUNC_STATUS_MEMORY_ERROR;
323 goto end;
324 }
325
326 /* set_environment_entry() logs errors */
327 ret = set_environment_entry(trace, name, value_obj);
328
329end:
330 bt_object_put_ref(value_obj);
331 return ret;
332}
333
334uint64_t bt_trace_get_environment_entry_count(const struct bt_trace *trace)
335{
336 int64_t ret;
337
fa6cfec3 338 BT_ASSERT_PRE_DEV_NON_NULL(trace, "Trace");
cd03c43c
PP
339 ret = bt_attributes_get_count(trace->environment);
340 BT_ASSERT(ret >= 0);
341 return (uint64_t) ret;
342}
343
344void bt_trace_borrow_environment_entry_by_index_const(
345 const struct bt_trace *trace, uint64_t index,
346 const char **name, const struct bt_value **value)
347{
fa6cfec3
PP
348 BT_ASSERT_PRE_DEV_NON_NULL(trace, "Trace");
349 BT_ASSERT_PRE_DEV_NON_NULL(name, "Name");
350 BT_ASSERT_PRE_DEV_NON_NULL(value, "Value");
351 BT_ASSERT_PRE_DEV_VALID_INDEX(index,
cd03c43c
PP
352 bt_attributes_get_count(trace->environment));
353 *value = bt_attributes_borrow_field_value(trace->environment, index);
354 BT_ASSERT(*value);
355 *name = bt_attributes_get_field_name(trace->environment, index);
356 BT_ASSERT(*name);
357}
358
359const struct bt_value *bt_trace_borrow_environment_entry_value_by_name_const(
360 const struct bt_trace *trace, const char *name)
361{
fa6cfec3
PP
362 BT_ASSERT_PRE_DEV_NON_NULL(trace, "Trace");
363 BT_ASSERT_PRE_DEV_NON_NULL(name, "Name");
cd03c43c
PP
364 return bt_attributes_borrow_field_value_by_name(trace->environment,
365 name);
366}
367
78cf9df6 368uint64_t bt_trace_get_stream_count(const struct bt_trace *trace)
bc37ae52 369{
fa6cfec3 370 BT_ASSERT_PRE_DEV_NON_NULL(trace, "Trace");
7b33a0e0
PP
371 return (uint64_t) trace->streams->len;
372}
95c09b3a 373
7b33a0e0
PP
374struct bt_stream *bt_trace_borrow_stream_by_index(
375 struct bt_trace *trace, uint64_t index)
376{
fa6cfec3
PP
377 BT_ASSERT_PRE_DEV_NON_NULL(trace, "Trace");
378 BT_ASSERT_PRE_DEV_VALID_INDEX(index, trace->streams->len);
7b33a0e0
PP
379 return g_ptr_array_index(trace->streams, index);
380}
18acc6f8 381
78cf9df6
PP
382const struct bt_stream *bt_trace_borrow_stream_by_index_const(
383 const struct bt_trace *trace, uint64_t index)
9e550e5f 384{
78cf9df6 385 return bt_trace_borrow_stream_by_index((void *) trace, index);
9e550e5f
PP
386}
387
78cf9df6
PP
388struct bt_stream *bt_trace_borrow_stream_by_id(struct bt_trace *trace,
389 uint64_t id)
7b33a0e0
PP
390{
391 struct bt_stream *stream = NULL;
392 uint64_t i;
bc37ae52 393
fa6cfec3 394 BT_ASSERT_PRE_DEV_NON_NULL(trace, "Trace");
bc37ae52 395
7b33a0e0
PP
396 for (i = 0; i < trace->streams->len; i++) {
397 struct bt_stream *stream_candidate =
398 g_ptr_array_index(trace->streams, i);
cfeb617e 399
7b33a0e0
PP
400 if (stream_candidate->id == id) {
401 stream = stream_candidate;
402 goto end;
403 }
6474e016 404 }
95c09b3a 405
bc37ae52 406end:
7b33a0e0 407 return stream;
bc37ae52
JG
408}
409
78cf9df6
PP
410const struct bt_stream *bt_trace_borrow_stream_by_id_const(
411 const struct bt_trace *trace, uint64_t id)
9e550e5f 412{
78cf9df6 413 return bt_trace_borrow_stream_by_id((void *) trace, id);
9e550e5f
PP
414}
415
fb25b9e3 416enum bt_trace_add_listener_status bt_trace_add_destruction_listener(
78cf9df6 417 const struct bt_trace *c_trace,
1122415c 418 bt_trace_destruction_listener_func listener,
eba7ea21 419 void *data, bt_listener_id *listener_id)
3602afb0 420{
78cf9df6 421 struct bt_trace *trace = (void *) c_trace;
7b33a0e0 422 uint64_t i;
1122415c 423 struct bt_trace_destruction_listener_elem new_elem = {
3602afb0
PP
424 .func = listener,
425 .data = data,
426 };
427
7b33a0e0
PP
428 BT_ASSERT_PRE_NON_NULL(trace, "Trace");
429 BT_ASSERT_PRE_NON_NULL(listener, "Listener");
9962ad4b 430
3602afb0 431 /* Find the next available spot */
1122415c
FD
432 for (i = 0; i < trace->destruction_listeners->len; i++) {
433 struct bt_trace_destruction_listener_elem elem =
434 g_array_index(trace->destruction_listeners,
435 struct bt_trace_destruction_listener_elem, i);
3602afb0
PP
436
437 if (!elem.func) {
438 break;
439 }
440 }
441
1122415c
FD
442 if (i == trace->destruction_listeners->len) {
443 g_array_append_val(trace->destruction_listeners, new_elem);
3602afb0 444 } else {
1122415c 445 g_array_insert_val(trace->destruction_listeners, i, new_elem);
3602afb0
PP
446 }
447
7b33a0e0
PP
448 if (listener_id) {
449 *listener_id = i;
450 }
3602afb0 451
a684a357 452 BT_LIB_LOGD("Added destruction listener: " "%![trace-]+t, "
1122415c 453 "listener-id=%" PRIu64, trace, i);
fb25b9e3 454 return BT_FUNC_STATUS_OK;
7b33a0e0
PP
455}
456
7b33a0e0 457static
78cf9df6 458bool has_listener_id(const struct bt_trace *trace, uint64_t listener_id)
7b33a0e0 459{
1122415c
FD
460 BT_ASSERT(listener_id < trace->destruction_listeners->len);
461 return (&g_array_index(trace->destruction_listeners,
462 struct bt_trace_destruction_listener_elem,
8e01f2d9 463 listener_id))->func;
3602afb0
PP
464}
465
fb25b9e3 466enum bt_trace_remove_listener_status bt_trace_remove_destruction_listener(
eba7ea21 467 const struct bt_trace *c_trace, bt_listener_id listener_id)
3602afb0 468{
78cf9df6 469 struct bt_trace *trace = (void *) c_trace;
1122415c 470 struct bt_trace_destruction_listener_elem *elem;
3602afb0 471
7b33a0e0 472 BT_ASSERT_PRE_NON_NULL(trace, "Trace");
7b33a0e0 473 BT_ASSERT_PRE(has_listener_id(trace, listener_id),
1122415c 474 "Trace has no such trace destruction listener ID: "
7b33a0e0 475 "%![trace-]+t, %" PRIu64, trace, listener_id);
1122415c
FD
476 elem = &g_array_index(trace->destruction_listeners,
477 struct bt_trace_destruction_listener_elem,
3602afb0 478 listener_id);
7b33a0e0 479 BT_ASSERT(elem->func);
3602afb0
PP
480
481 elem->func = NULL;
482 elem->data = NULL;
a684a357 483 BT_LIB_LOGD("Removed \"trace destruction listener: "
7b33a0e0
PP
484 "%![trace-]+t, listener-id=%" PRIu64,
485 trace, listener_id);
fb25b9e3 486 return BT_FUNC_STATUS_OK;
7b33a0e0 487}
3602afb0 488
7b33a0e0 489BT_HIDDEN
78cf9df6 490void _bt_trace_freeze(const struct bt_trace *trace)
7b33a0e0 491{
7b33a0e0 492 BT_ASSERT(trace);
10b7a2e4
PP
493 BT_LIB_LOGD("Freezing trace's class: %!+T", trace->class);
494 bt_trace_class_freeze(trace->class);
af90138b
PP
495 BT_LIB_LOGD("Freezing trace's user attributes: %!+v",
496 trace->user_attributes);
497 bt_value_freeze(trace->user_attributes);
7b33a0e0 498 BT_LIB_LOGD("Freezing trace: %!+t", trace);
78cf9df6 499 ((struct bt_trace *) trace)->frozen = true;
5acf2ae6 500}
a6918753 501
7b33a0e0
PP
502BT_HIDDEN
503void bt_trace_add_stream(struct bt_trace *trace, struct bt_stream *stream)
504{
505 guint count = 0;
506
507 bt_object_set_parent(&stream->base, &trace->base);
508 g_ptr_array_add(trace->streams, stream);
18acc6f8 509 bt_trace_freeze(trace);
a6918753 510
7b33a0e0
PP
511 if (bt_g_hash_table_contains(trace->stream_classes_stream_count,
512 stream->class)) {
513 count = GPOINTER_TO_UINT(g_hash_table_lookup(
514 trace->stream_classes_stream_count, stream->class));
a6918753
PP
515 }
516
7b33a0e0
PP
517 g_hash_table_insert(trace->stream_classes_stream_count,
518 stream->class, GUINT_TO_POINTER(count + 1));
519}
520
521BT_HIDDEN
78cf9df6
PP
522uint64_t bt_trace_get_automatic_stream_id(const struct bt_trace *trace,
523 const struct bt_stream_class *stream_class)
7b33a0e0
PP
524{
525 gpointer orig_key;
526 gpointer value;
527 uint64_t id = 0;
528
529 BT_ASSERT(stream_class);
530 BT_ASSERT(trace);
531 if (g_hash_table_lookup_extended(trace->stream_classes_stream_count,
532 stream_class, &orig_key, &value)) {
533 id = (uint64_t) GPOINTER_TO_UINT(value);
534 }
535
536 return id;
a6918753 537}
10b7a2e4
PP
538
539struct bt_trace_class *bt_trace_borrow_class(struct bt_trace *trace)
540{
fa6cfec3 541 BT_ASSERT_PRE_DEV_NON_NULL(trace, "Trace");
10b7a2e4
PP
542 return trace->class;
543}
544
545const struct bt_trace_class *bt_trace_borrow_class_const(
546 const struct bt_trace *trace)
547{
548 return bt_trace_borrow_class((void *) trace);
549}
8c6884d9 550
af90138b
PP
551const struct bt_value *bt_trace_borrow_user_attributes_const(
552 const struct bt_trace *trace)
553{
554 BT_ASSERT_PRE_DEV_NON_NULL(trace, "Trace");
555 return trace->user_attributes;
556}
557
558struct bt_value *bt_trace_borrow_user_attributes(struct bt_trace *trace)
559{
560 return (void *) bt_trace_borrow_user_attributes_const((void *) trace);
561}
562
563void bt_trace_set_user_attributes(
564 struct bt_trace *trace,
565 const struct bt_value *user_attributes)
566{
567 BT_ASSERT_PRE_NON_NULL(trace, "Trace");
568 BT_ASSERT_PRE_NON_NULL(user_attributes, "User attributes");
569 BT_ASSERT_PRE(user_attributes->type == BT_VALUE_TYPE_MAP,
570 "User attributes object is not a map value object.");
571 BT_ASSERT_PRE_DEV_TRACE_HOT(trace);
864aa43f 572 bt_object_put_ref_no_null_check(trace->user_attributes);
af90138b 573 trace->user_attributes = (void *) user_attributes;
864aa43f 574 bt_object_get_ref_no_null_check(trace->user_attributes);
af90138b
PP
575}
576
8c6884d9
PP
577void bt_trace_get_ref(const struct bt_trace *trace)
578{
579 bt_object_get_ref(trace);
580}
581
582void bt_trace_put_ref(const struct bt_trace *trace)
583{
584 bt_object_put_ref(trace);
585}
This page took 0.106226 seconds and 4 git commands to generate.