bt2: add auto source discovery support to TraceCollectionMessageIterator
[babeltrace.git] / src / lib / trace-ir / stream-class.c
CommitLineData
11b0cdc8 1/*
f2b0325d 2 * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
de9dd397 3 * Copyright 2013, 2014 Jérémie Galarneau <jeremie.galarneau@efficios.com>
11b0cdc8 4 *
11b0cdc8
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/STREAM-CLASS"
1633ef46 25#include "lib/logging.h"
d2f71f12 26
57952005 27#include "lib/assert-pre.h"
71c5da58 28#include <babeltrace2/trace-ir/trace-const.h>
57952005
MJ
29#include "compat/compiler.h"
30#include "common/align.h"
31#include "compat/endian.h"
32#include "common/assert.h"
33#include "lib/property.h"
dc3fffef 34#include <inttypes.h>
544d0515 35#include <stdint.h>
e011d2c1 36#include <stdbool.h>
11b0cdc8 37
57952005
MJ
38#include "clock-class.h"
39#include "event-class.h"
40#include "field-class.h"
41#include "field.h"
42#include "field-wrapper.h"
43#include "resolve-field-path.h"
44#include "stream-class.h"
45#include "trace.h"
46#include "utils.h"
fb25b9e3 47#include "lib/func-status.h"
57952005 48
fa6cfec3
PP
49#define BT_ASSERT_PRE_DEV_STREAM_CLASS_HOT(_sc) \
50 BT_ASSERT_PRE_DEV_HOT((_sc), "Stream class", ": %!+S", (_sc))
142c5610 51
18acc6f8 52static
7b33a0e0 53void destroy_stream_class(struct bt_object *obj)
3ea33115 54{
18acc6f8
PP
55 struct bt_stream_class *stream_class = (void *) obj;
56
7b33a0e0
PP
57 BT_LIB_LOGD("Destroying stream class: %!+S", stream_class);
58 BT_LOGD_STR("Putting default clock class.");
1248f5ea 59 BT_OBJECT_PUT_REF_AND_RESET(stream_class->default_clock_class);
3ea33115 60
8deee039
PP
61 if (stream_class->event_classes) {
62 BT_LOGD_STR("Destroying event classes.");
63 g_ptr_array_free(stream_class->event_classes, TRUE);
1248f5ea 64 stream_class->event_classes = NULL;
d2f71f12
PP
65 }
66
7b33a0e0
PP
67 if (stream_class->name.str) {
68 g_string_free(stream_class->name.str, TRUE);
1248f5ea
PP
69 stream_class->name.str = NULL;
70 stream_class->name.value = NULL;
3ea33115
JG
71 }
72
66fd07a5 73 BT_LOGD_STR("Putting packet context field class.");
1248f5ea 74 BT_OBJECT_PUT_REF_AND_RESET(stream_class->packet_context_fc);
66fd07a5 75 BT_LOGD_STR("Putting event common context field class.");
1248f5ea 76 BT_OBJECT_PUT_REF_AND_RESET(stream_class->event_common_context_fc);
a6918753 77 bt_object_pool_finalize(&stream_class->packet_context_field_pool);
8deee039 78 g_free(stream_class);
3ea33115
JG
79}
80
a6918753
PP
81static
82void free_field_wrapper(struct bt_field_wrapper *field_wrapper,
83 struct bt_stream_class *stream_class)
84{
85 bt_field_wrapper_destroy((void *) field_wrapper);
86}
87
7b33a0e0 88static
10b7a2e4 89bool stream_class_id_is_unique(const struct bt_trace_class *tc, uint64_t id)
7b33a0e0
PP
90{
91 uint64_t i;
92 bool is_unique = true;
93
10b7a2e4 94 for (i = 0; i < tc->stream_classes->len; i++) {
78cf9df6 95 const struct bt_stream_class *sc =
10b7a2e4 96 tc->stream_classes->pdata[i];
7b33a0e0
PP
97
98 if (sc->id == id) {
99 is_unique = false;
100 goto end;
101 }
102 }
103
104end:
105 return is_unique;
106}
107
108static
10b7a2e4
PP
109struct bt_stream_class *create_stream_class_with_id(
110 struct bt_trace_class *tc, uint64_t id)
2f100782 111{
8deee039
PP
112 struct bt_stream_class *stream_class = NULL;
113 int ret;
2f100782 114
10b7a2e4
PP
115 BT_ASSERT(tc);
116 BT_ASSERT_PRE(stream_class_id_is_unique(tc, id),
117 "Duplicate stream class ID: %![tc-]+T, id=%" PRIu64, tc, id);
118 BT_LIB_LOGD("Creating stream class object: %![tc-]+T, id=%" PRIu64,
119 tc, id);
8deee039 120 stream_class = g_new0(struct bt_stream_class, 1);
d2f71f12 121 if (!stream_class) {
a8f90e5d
PP
122 BT_LIB_LOGE_APPEND_CAUSE(
123 "Failed to allocate one stream class.");
8deee039 124 goto error;
d2f71f12
PP
125 }
126
7b33a0e0
PP
127 bt_object_init_shared_with_parent(&stream_class->base,
128 destroy_stream_class);
129
130 stream_class->name.str = g_string_new(NULL);
131 if (!stream_class->name.str) {
a8f90e5d 132 BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate a GString.");
7b33a0e0
PP
133 ret = -1;
134 goto end;
135 }
136
137 stream_class->id = id;
138 stream_class->assigns_automatic_event_class_id = true;
139 stream_class->assigns_automatic_stream_id = true;
140 stream_class->event_classes = g_ptr_array_new_with_free_func(
141 (GDestroyNotify) bt_object_try_spec_release);
142 if (!stream_class->event_classes) {
a8f90e5d 143 BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate a GPtrArray.");
8deee039 144 goto error;
2f100782
JG
145 }
146
a6918753
PP
147 ret = bt_object_pool_initialize(&stream_class->packet_context_field_pool,
148 (bt_object_pool_new_object_func) bt_field_wrapper_new,
149 (bt_object_pool_destroy_object_func) free_field_wrapper,
150 stream_class);
151 if (ret) {
a8f90e5d
PP
152 BT_LIB_LOGE_APPEND_CAUSE(
153 "Failed to initialize packet context field pool: ret=%d",
a6918753
PP
154 ret);
155 goto error;
156 }
157
10b7a2e4
PP
158 bt_object_set_parent(&stream_class->base, &tc->base);
159 g_ptr_array_add(tc->stream_classes, stream_class);
160 bt_trace_class_freeze(tc);
7b33a0e0 161 BT_LIB_LOGD("Created stream class object: %!+S", stream_class);
a6918753
PP
162 goto end;
163
164error:
8138bfe1 165 BT_OBJECT_PUT_REF_AND_RESET(stream_class);
a6918753
PP
166
167end:
7b33a0e0 168 return stream_class;
a6918753
PP
169}
170
10b7a2e4 171struct bt_stream_class *bt_stream_class_create(struct bt_trace_class *tc)
a6918753 172{
10b7a2e4
PP
173 BT_ASSERT_PRE_NON_NULL(tc, "Trace class");
174 BT_ASSERT_PRE(tc->assigns_automatic_stream_class_id,
175 "Trace class does not automatically assigns stream class IDs: "
176 "%![sc-]+T", tc);
177 return create_stream_class_with_id(tc,
178 (uint64_t) tc->stream_classes->len);
7b33a0e0 179}
a6918753 180
78cf9df6 181struct bt_stream_class *bt_stream_class_create_with_id(
10b7a2e4 182 struct bt_trace_class *tc, uint64_t id)
7b33a0e0 183{
10b7a2e4
PP
184 BT_ASSERT_PRE_NON_NULL(tc, "Trace class");
185 BT_ASSERT_PRE(!tc->assigns_automatic_stream_class_id,
186 "Trace class automatically assigns stream class IDs: "
187 "%![sc-]+T", tc);
188 return create_stream_class_with_id(tc, id);
a6918753
PP
189}
190
10b7a2e4 191struct bt_trace_class *bt_stream_class_borrow_trace_class(
78cf9df6 192 struct bt_stream_class *stream_class)
11b0cdc8 193{
fa6cfec3 194 BT_ASSERT_PRE_DEV_NON_NULL(stream_class, "Stream class");
10b7a2e4 195 return bt_stream_class_borrow_trace_class_inline(stream_class);
11b0cdc8
JG
196}
197
10b7a2e4 198const struct bt_trace_class *bt_stream_class_borrow_trace_class_const(
78cf9df6 199 const struct bt_stream_class *stream_class)
9e550e5f 200{
10b7a2e4 201 return bt_stream_class_borrow_trace_class((void *) stream_class);
9e550e5f
PP
202}
203
78cf9df6 204const char *bt_stream_class_get_name(const struct bt_stream_class *stream_class)
2f100782 205{
fa6cfec3 206 BT_ASSERT_PRE_DEV_NON_NULL(stream_class, "Stream class");
7b33a0e0 207 return stream_class->name.value;
2f100782
JG
208}
209
fb25b9e3 210enum bt_stream_class_set_name_status bt_stream_class_set_name(
78cf9df6 211 struct bt_stream_class *stream_class,
8deee039 212 const char *name)
5ca83563 213{
7b33a0e0
PP
214 BT_ASSERT_PRE_NON_NULL(stream_class, "Stream class");
215 BT_ASSERT_PRE_NON_NULL(name, "Name");
fa6cfec3 216 BT_ASSERT_PRE_DEV_STREAM_CLASS_HOT(stream_class);
7b33a0e0
PP
217 g_string_assign(stream_class->name.str, name);
218 stream_class->name.value = stream_class->name.str->str;
a684a357 219 BT_LIB_LOGD("Set stream class's name: %!+S", stream_class);
fb25b9e3 220 return BT_FUNC_STATUS_OK;
5ca83563
JG
221}
222
78cf9df6 223uint64_t bt_stream_class_get_id(const struct bt_stream_class *stream_class)
2f100782 224{
fa6cfec3 225 BT_ASSERT_PRE_DEV_NON_NULL(stream_class, "Stream class");
7b33a0e0 226 return stream_class->id;
2f100782
JG
227}
228
7b33a0e0 229uint64_t bt_stream_class_get_event_class_count(
78cf9df6 230 const struct bt_stream_class *stream_class)
29664b2a 231{
fa6cfec3 232 BT_ASSERT_PRE_DEV_NON_NULL(stream_class, "Stream class");
7b33a0e0 233 return (uint64_t) stream_class->event_classes->len;
29664b2a
PP
234}
235
7b33a0e0
PP
236struct bt_event_class *bt_stream_class_borrow_event_class_by_index(
237 struct bt_stream_class *stream_class, uint64_t index)
0d23acbe 238{
fa6cfec3
PP
239 BT_ASSERT_PRE_DEV_NON_NULL(stream_class, "Stream class");
240 BT_ASSERT_PRE_DEV_VALID_INDEX(index, stream_class->event_classes->len);
7b33a0e0 241 return g_ptr_array_index(stream_class->event_classes, index);
0d23acbe
PP
242}
243
78cf9df6
PP
244const struct bt_event_class *
245bt_stream_class_borrow_event_class_by_index_const(
246 const struct bt_stream_class *stream_class, uint64_t index)
9e550e5f 247{
78cf9df6 248 return bt_stream_class_borrow_event_class_by_index(
9e550e5f
PP
249 (void *) stream_class, index);
250}
251
7b33a0e0 252struct bt_event_class *bt_stream_class_borrow_event_class_by_id(
9e550e5f 253 struct bt_stream_class *stream_class, uint64_t id)
11b0cdc8 254{
7b33a0e0
PP
255 struct bt_event_class *event_class = NULL;
256 uint64_t i;
0b9ce69f 257
fa6cfec3 258 BT_ASSERT_PRE_DEV_NON_NULL(stream_class, "Stream class");
11b0cdc8 259
9e550e5f 260 for (i = 0; i < stream_class->event_classes->len; i++) {
7b33a0e0 261 struct bt_event_class *event_class_candidate =
9e550e5f 262 g_ptr_array_index(stream_class->event_classes, i);
e6a8e8e4 263
7b33a0e0
PP
264 if (event_class_candidate->id == id) {
265 event_class = event_class_candidate;
09840de5
PP
266 goto end;
267 }
69dc4535
JG
268 }
269
69dc4535 270end:
7b33a0e0 271 return event_class;
0863f950
PP
272}
273
78cf9df6
PP
274const struct bt_event_class *
275bt_stream_class_borrow_event_class_by_id_const(
276 const struct bt_stream_class *stream_class, uint64_t id)
9e550e5f 277{
78cf9df6 278 return bt_stream_class_borrow_event_class_by_id(
9e550e5f
PP
279 (void *) stream_class, id);
280}
281
78cf9df6
PP
282const struct bt_field_class *
283bt_stream_class_borrow_packet_context_field_class_const(
284 const struct bt_stream_class *stream_class)
12c8a1a3 285{
fa6cfec3 286 BT_ASSERT_PRE_DEV_NON_NULL(stream_class, "Stream class");
939190b3 287 return stream_class->packet_context_fc;
12c8a1a3
JG
288}
289
909d0a89
PP
290struct bt_field_class *
291bt_stream_class_borrow_packet_context_field_class(
292 struct bt_stream_class *stream_class)
293{
fa6cfec3 294 BT_ASSERT_PRE_DEV_NON_NULL(stream_class, "Stream class");
909d0a89
PP
295 return stream_class->packet_context_fc;
296}
297
fb25b9e3
PP
298enum bt_stream_class_set_field_class_status
299bt_stream_class_set_packet_context_field_class(
78cf9df6
PP
300 struct bt_stream_class *stream_class,
301 struct bt_field_class *field_class)
12c8a1a3 302{
7b33a0e0
PP
303 int ret;
304 struct bt_resolve_field_path_context resolve_ctx = {
939190b3 305 .packet_context = field_class,
7b33a0e0
PP
306 .event_common_context = NULL,
307 .event_specific_context = NULL,
308 .event_payload = NULL,
309 };
18acc6f8 310
7b33a0e0 311 BT_ASSERT_PRE_NON_NULL(stream_class, "Stream class");
37a93d41
PP
312 BT_ASSERT_PRE(stream_class->supports_packets,
313 "Stream class does not support packets: %![sc-]+S",
314 stream_class);
939190b3 315 BT_ASSERT_PRE_NON_NULL(field_class, "Field class");
fa6cfec3 316 BT_ASSERT_PRE_DEV_STREAM_CLASS_HOT(stream_class);
af0c18e3
PP
317 BT_ASSERT_PRE(bt_field_class_get_type(field_class) ==
318 BT_FIELD_CLASS_TYPE_STRUCTURE,
66fd07a5 319 "Packet context field class is not a structure field class: %!+F",
939190b3 320 field_class);
939190b3 321 ret = bt_resolve_field_paths(field_class, &resolve_ctx);
7b33a0e0 322 if (ret) {
36a28778
PP
323 /*
324 * This is the only reason for which
325 * bt_resolve_field_paths() can fail: anything else
326 * would be because a precondition is not satisfied.
327 */
fb25b9e3 328 ret = BT_FUNC_STATUS_MEMORY_ERROR;
18acc6f8
PP
329 goto end;
330 }
331
10b7a2e4 332 bt_field_class_make_part_of_trace_class(field_class);
8138bfe1 333 bt_object_put_ref(stream_class->packet_context_fc);
4b70020d
PP
334 stream_class->packet_context_fc = field_class;
335 bt_object_get_no_null_check(stream_class->packet_context_fc);
939190b3 336 bt_field_class_freeze(field_class);
a684a357 337 BT_LIB_LOGD("Set stream class's packet context field class: %!+S",
7b33a0e0 338 stream_class);
18acc6f8
PP
339
340end:
341 return ret;
12c8a1a3
JG
342}
343
78cf9df6
PP
344const struct bt_field_class *
345bt_stream_class_borrow_event_common_context_field_class_const(
346 const struct bt_stream_class *stream_class)
af181248 347{
fa6cfec3 348 BT_ASSERT_PRE_DEV_NON_NULL(stream_class, "Stream class");
939190b3 349 return stream_class->event_common_context_fc;
af181248
JG
350}
351
909d0a89
PP
352struct bt_field_class *
353bt_stream_class_borrow_event_common_context_field_class(
354 struct bt_stream_class *stream_class)
355{
fa6cfec3 356 BT_ASSERT_PRE_DEV_NON_NULL(stream_class, "Stream class");
909d0a89
PP
357 return stream_class->event_common_context_fc;
358}
359
fb25b9e3 360enum bt_stream_class_set_field_class_status
36a28778 361bt_stream_class_set_event_common_context_field_class(
78cf9df6
PP
362 struct bt_stream_class *stream_class,
363 struct bt_field_class *field_class)
af181248 364{
7b33a0e0
PP
365 int ret;
366 struct bt_resolve_field_path_context resolve_ctx = {
7b33a0e0 367 .packet_context = NULL,
939190b3 368 .event_common_context = field_class,
7b33a0e0
PP
369 .event_specific_context = NULL,
370 .event_payload = NULL,
371 };
18acc6f8 372
7b33a0e0 373 BT_ASSERT_PRE_NON_NULL(stream_class, "Stream class");
939190b3 374 BT_ASSERT_PRE_NON_NULL(field_class, "Field class");
fa6cfec3 375 BT_ASSERT_PRE_DEV_STREAM_CLASS_HOT(stream_class);
af0c18e3
PP
376 BT_ASSERT_PRE(bt_field_class_get_type(field_class) ==
377 BT_FIELD_CLASS_TYPE_STRUCTURE,
66fd07a5 378 "Event common context field class is not a structure field class: %!+F",
939190b3 379 field_class);
939190b3 380 resolve_ctx.packet_context = stream_class->packet_context_fc;
939190b3 381 ret = bt_resolve_field_paths(field_class, &resolve_ctx);
7b33a0e0 382 if (ret) {
36a28778
PP
383 /*
384 * This is the only reason for which
385 * bt_resolve_field_paths() can fail: anything else
386 * would be because a precondition is not satisfied.
387 */
fb25b9e3 388 ret = BT_FUNC_STATUS_MEMORY_ERROR;
18acc6f8
PP
389 goto end;
390 }
391
10b7a2e4 392 bt_field_class_make_part_of_trace_class(field_class);
8138bfe1 393 bt_object_put_ref(stream_class->event_common_context_fc);
4b70020d
PP
394 stream_class->event_common_context_fc = field_class;
395 bt_object_get_no_null_check(stream_class->event_common_context_fc);
939190b3 396 bt_field_class_freeze(field_class);
a684a357 397 BT_LIB_LOGD("Set stream class's event common context field class: %!+S",
7b33a0e0 398 stream_class);
18acc6f8 399
18acc6f8
PP
400end:
401 return ret;
11b0cdc8
JG
402}
403
7b33a0e0 404BT_HIDDEN
78cf9df6 405void _bt_stream_class_freeze(const struct bt_stream_class *stream_class)
8bf65fbd 406{
939190b3 407 /* The field classes and default clock class are already frozen */
7b33a0e0
PP
408 BT_ASSERT(stream_class);
409 BT_LIB_LOGD("Freezing stream class: %!+S", stream_class);
78cf9df6 410 ((struct bt_stream_class *) stream_class)->frozen = true;
8bf65fbd
JG
411}
412
fb25b9e3
PP
413enum bt_stream_class_set_default_clock_class_status
414bt_stream_class_set_default_clock_class(
78cf9df6 415 struct bt_stream_class *stream_class,
7b33a0e0 416 struct bt_clock_class *clock_class)
8bf65fbd 417{
7b33a0e0
PP
418 BT_ASSERT_PRE_NON_NULL(stream_class, "Stream class");
419 BT_ASSERT_PRE_NON_NULL(clock_class, "Clock class");
fa6cfec3 420 BT_ASSERT_PRE_DEV_STREAM_CLASS_HOT(stream_class);
8138bfe1 421 bt_object_put_ref(stream_class->default_clock_class);
4b70020d
PP
422 stream_class->default_clock_class = clock_class;
423 bt_object_get_no_null_check(stream_class->default_clock_class);
7b33a0e0 424 bt_clock_class_freeze(clock_class);
a684a357 425 BT_LIB_LOGD("Set stream class's default clock class: %!+S",
7b33a0e0 426 stream_class);
fb25b9e3 427 return BT_FUNC_STATUS_OK;
8bf65fbd
JG
428}
429
7b33a0e0
PP
430struct bt_clock_class *bt_stream_class_borrow_default_clock_class(
431 struct bt_stream_class *stream_class)
8bf65fbd 432{
fa6cfec3 433 BT_ASSERT_PRE_DEV_NON_NULL(stream_class, "Stream class");
7b33a0e0
PP
434 return stream_class->default_clock_class;
435}
8bf65fbd 436
78cf9df6
PP
437const struct bt_clock_class *bt_stream_class_borrow_default_clock_class_const(
438 const struct bt_stream_class *stream_class)
439{
fa6cfec3 440 BT_ASSERT_PRE_DEV_NON_NULL(stream_class, "Stream class");
78cf9df6
PP
441 return stream_class->default_clock_class;
442}
443
7b33a0e0 444bt_bool bt_stream_class_assigns_automatic_event_class_id(
78cf9df6 445 const struct bt_stream_class *stream_class)
7b33a0e0 446{
fa6cfec3 447 BT_ASSERT_PRE_DEV_NON_NULL(stream_class, "Stream class");
7b33a0e0 448 return (bt_bool) stream_class->assigns_automatic_event_class_id;
8bf65fbd
JG
449}
450
78cf9df6
PP
451void bt_stream_class_set_assigns_automatic_event_class_id(
452 struct bt_stream_class *stream_class,
9e550e5f 453 bt_bool value)
8bf65fbd 454{
7b33a0e0 455 BT_ASSERT_PRE_NON_NULL(stream_class, "Stream class");
fa6cfec3 456 BT_ASSERT_PRE_DEV_STREAM_CLASS_HOT(stream_class);
7b33a0e0 457 stream_class->assigns_automatic_event_class_id = (bool) value;
a684a357 458 BT_LIB_LOGD("Set stream class's automatic event class ID "
7b33a0e0 459 "assignment property: %!+S", stream_class);
7b33a0e0 460}
8bf65fbd 461
7b33a0e0 462bt_bool bt_stream_class_assigns_automatic_stream_id(
78cf9df6 463 const struct bt_stream_class *stream_class)
7b33a0e0 464{
fa6cfec3 465 BT_ASSERT_PRE_DEV_NON_NULL(stream_class, "Stream class");
7b33a0e0
PP
466 return (bt_bool) stream_class->assigns_automatic_stream_id;
467}
8bf65fbd 468
77037b2b
PP
469void bt_stream_class_set_supports_discarded_events(
470 struct bt_stream_class *stream_class,
471 bt_bool supports_discarded_events,
472 bt_bool with_default_clock_snapshots)
473{
474 BT_ASSERT_PRE_NON_NULL(stream_class, "Stream class");
fa6cfec3 475 BT_ASSERT_PRE_DEV_STREAM_CLASS_HOT(stream_class);
77037b2b
PP
476 BT_ASSERT_PRE(supports_discarded_events ||
477 !with_default_clock_snapshots,
478 "Discarded events cannot have default clock snapshots when "
479 "not supported: %!+S", stream_class);
480 BT_ASSERT_PRE(!with_default_clock_snapshots ||
481 stream_class->default_clock_class,
482 "Stream class has no default clock class: %!+S", stream_class);
483 stream_class->supports_discarded_events =
484 (bool) supports_discarded_events;
485 stream_class->discarded_events_have_default_clock_snapshots =
486 (bool) with_default_clock_snapshots;
a684a357 487 BT_LIB_LOGD("Set stream class's discarded events support property: "
77037b2b
PP
488 "%!+S", stream_class);
489}
490
491bt_bool bt_stream_class_supports_discarded_events(
492 const struct bt_stream_class *stream_class)
493{
fa6cfec3 494 BT_ASSERT_PRE_DEV_NON_NULL(stream_class, "Stream class");
77037b2b
PP
495 return (bt_bool) stream_class->supports_discarded_events;
496}
497
498bt_bool bt_stream_class_discarded_events_have_default_clock_snapshots(
499 const struct bt_stream_class *stream_class)
500{
fa6cfec3 501 BT_ASSERT_PRE_DEV_NON_NULL(stream_class, "Stream class");
77037b2b
PP
502 return (bt_bool) stream_class->discarded_events_have_default_clock_snapshots;
503}
504
505void bt_stream_class_set_supports_discarded_packets(
506 struct bt_stream_class *stream_class,
507 bt_bool supports_discarded_packets,
508 bt_bool with_default_clock_snapshots)
509{
510 BT_ASSERT_PRE_NON_NULL(stream_class, "Stream class");
fa6cfec3 511 BT_ASSERT_PRE_DEV_STREAM_CLASS_HOT(stream_class);
37a93d41
PP
512 BT_ASSERT_PRE(!supports_discarded_packets ||
513 stream_class->supports_packets,
514 "Stream class does not support packets: %!+S",
515 stream_class);
77037b2b
PP
516 BT_ASSERT_PRE(supports_discarded_packets ||
517 !with_default_clock_snapshots,
518 "Discarded packets cannot have default clock snapshots when "
519 "not supported: %!+S", stream_class);
520 BT_ASSERT_PRE(!with_default_clock_snapshots ||
521 stream_class->default_clock_class,
522 "Stream class has no default clock class: %!+S", stream_class);
523 stream_class->supports_discarded_packets =
524 (bool) supports_discarded_packets;
525 stream_class->discarded_packets_have_default_clock_snapshots =
526 (bool) with_default_clock_snapshots;
a684a357 527 BT_LIB_LOGD("Set stream class's discarded packets support property: "
77037b2b
PP
528 "%!+S", stream_class);
529}
530
531bt_bool bt_stream_class_supports_discarded_packets(
532 const struct bt_stream_class *stream_class)
533{
fa6cfec3 534 BT_ASSERT_PRE_DEV_NON_NULL(stream_class, "Stream class");
77037b2b
PP
535 return (bt_bool) stream_class->supports_discarded_packets;
536}
537
538bt_bool bt_stream_class_discarded_packets_have_default_clock_snapshots(
539 const struct bt_stream_class *stream_class)
540{
fa6cfec3 541 BT_ASSERT_PRE_DEV_NON_NULL(stream_class, "Stream class");
77037b2b
PP
542 return (bt_bool) stream_class->discarded_packets_have_default_clock_snapshots;
543}
544
37a93d41
PP
545void bt_stream_class_set_supports_packets(
546 struct bt_stream_class *stream_class,
547 bt_bool supports_packets,
548 bt_bool with_beginning_default_clock_snapshot,
549 bt_bool with_end_default_clock_snapshot)
550{
551 bt_bool with_default_clock_snapshot =
552 with_beginning_default_clock_snapshot ||
553 with_end_default_clock_snapshot;
554 BT_ASSERT_PRE_NON_NULL(stream_class, "Stream class");
fa6cfec3 555 BT_ASSERT_PRE_DEV_STREAM_CLASS_HOT(stream_class);
37a93d41
PP
556 BT_ASSERT_PRE(supports_packets ||
557 !with_default_clock_snapshot,
558 "Packets cannot have default clock snapshots when "
559 "not supported: %!+S", stream_class);
560 BT_ASSERT_PRE(!with_default_clock_snapshot ||
561 stream_class->default_clock_class,
562 "Stream class has no default clock class: %!+S", stream_class);
563 BT_ASSERT_PRE(supports_packets || !stream_class->packet_context_fc,
564 "Stream class already has a packet context field class: %!+S",
565 stream_class);
566 BT_ASSERT_PRE(supports_packets ||
567 !stream_class->supports_discarded_packets,
568 "Stream class already supports discarded packets: %!+S",
569 stream_class);
570 stream_class->supports_packets = (bool) supports_packets;
571 stream_class->packets_have_beginning_default_clock_snapshot =
572 (bool) with_beginning_default_clock_snapshot;
573 stream_class->packets_have_end_default_clock_snapshot =
574 (bool) with_end_default_clock_snapshot;
575 BT_LIB_LOGD("Set stream class's packets support property: %!+S",
576 stream_class);
577}
578
579bt_bool bt_stream_class_supports_packets(
580 const struct bt_stream_class *stream_class)
581{
582 BT_ASSERT_PRE_NON_NULL(stream_class, "Stream class");
583 return (bt_bool) stream_class->supports_packets;
584}
585
586bt_bool bt_stream_class_packets_have_beginning_default_clock_snapshot(
587 const struct bt_stream_class *stream_class)
588{
fa6cfec3 589 BT_ASSERT_PRE_DEV_NON_NULL(stream_class, "Stream class");
37a93d41
PP
590 return (bt_bool) stream_class->packets_have_beginning_default_clock_snapshot;
591}
592
593bt_bool bt_stream_class_packets_have_end_default_clock_snapshot(
594 const struct bt_stream_class *stream_class)
595{
fa6cfec3 596 BT_ASSERT_PRE_DEV_NON_NULL(stream_class, "Stream class");
37a93d41
PP
597 return (bt_bool) stream_class->packets_have_end_default_clock_snapshot;
598}
599
78cf9df6
PP
600void bt_stream_class_set_assigns_automatic_stream_id(
601 struct bt_stream_class *stream_class,
9e550e5f 602 bt_bool value)
7b33a0e0
PP
603{
604 BT_ASSERT_PRE_NON_NULL(stream_class, "Stream class");
fa6cfec3 605 BT_ASSERT_PRE_DEV_STREAM_CLASS_HOT(stream_class);
7b33a0e0 606 stream_class->assigns_automatic_stream_id = (bool) value;
a684a357 607 BT_LIB_LOGD("Set stream class's automatic stream ID "
7b33a0e0 608 "assignment property: %!+S", stream_class);
7b33a0e0 609}
8deee039 610
8c6884d9
PP
611void bt_stream_class_get_ref(const struct bt_stream_class *stream_class)
612{
613 bt_object_get_ref(stream_class);
614}
615
616void bt_stream_class_put_ref(const struct bt_stream_class *stream_class)
617{
618 bt_object_put_ref(stream_class);
619}
This page took 0.107189 seconds and 4 git commands to generate.