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