cpp-common/bt2: do not use `bpstd::string_view`
[babeltrace.git] / src / cpp-common / bt2 / trace-ir.hpp
CommitLineData
74fc764d
PP
1/*
2 * Copyright (c) 2020-2021 Philippe Proulx <pproulx@efficios.com>
3 *
4 * SPDX-License-Identifier: MIT
5 */
6
7#ifndef BABELTRACE_CPP_COMMON_BT2_TRACE_IR_HPP
8#define BABELTRACE_CPP_COMMON_BT2_TRACE_IR_HPP
9
74fc764d 10#include <cstdint>
c802cacb
SM
11#include <type_traits>
12
74fc764d
PP
13#include <babeltrace2/babeltrace.h>
14
74fc764d 15#include "cpp-common/optional.hpp"
c802cacb 16
0d218157 17#include "borrowed-object.hpp"
74fc764d 18#include "clock-class.hpp"
74fc764d
PP
19#include "field-class.hpp"
20#include "field.hpp"
74fc764d 21#include "internal/utils.hpp"
7f5cdaf0 22#include "shared-object.hpp"
c802cacb 23#include "value.hpp"
74fc764d
PP
24
25namespace bt2 {
26
27template <typename LibObjT>
28class CommonEvent;
29
30template <typename LibObjT>
31class CommonPacket;
32
33template <typename LibObjT>
34class CommonStream;
35
36template <typename LibObjT>
37class CommonTrace;
38
39template <typename LibObjT>
40class CommonEventClass;
41
42template <typename LibObjT>
43class CommonStreamClass;
44
45template <typename LibObjT>
46class CommonTraceClass;
47
48namespace internal {
49
50template <typename LibObjT>
51struct CommonEventSpec;
52
b5f55e9f 53/* Functions specific to mutable events */
74fc764d
PP
54template <>
55struct CommonEventSpec<bt_event> final
56{
57 static bt_event_class *cls(bt_event * const libObjPtr) noexcept
58 {
59 return bt_event_borrow_class(libObjPtr);
60 }
61
62 static bt_stream *stream(bt_event * const libObjPtr) noexcept
63 {
64 return bt_event_borrow_stream(libObjPtr);
65 }
66
67 static bt_packet *packet(bt_event * const libObjPtr) noexcept
68 {
69 return bt_event_borrow_packet(libObjPtr);
70 }
71
72 static bt_field *payloadField(bt_event * const libObjPtr) noexcept
73 {
74 return bt_event_borrow_payload_field(libObjPtr);
75 }
76
77 static bt_field *specificContextField(bt_event * const libObjPtr) noexcept
78 {
79 return bt_event_borrow_specific_context_field(libObjPtr);
80 }
81
82 static bt_field *commonContextField(bt_event * const libObjPtr) noexcept
83 {
84 return bt_event_borrow_common_context_field(libObjPtr);
85 }
86};
87
b5f55e9f 88/* Functions specific to constant events */
74fc764d
PP
89template <>
90struct CommonEventSpec<const bt_event> final
91{
92 static const bt_event_class *cls(const bt_event * const libObjPtr) noexcept
93 {
94 return bt_event_borrow_class_const(libObjPtr);
95 }
96
97 static const bt_stream *stream(const bt_event * const libObjPtr) noexcept
98 {
99 return bt_event_borrow_stream_const(libObjPtr);
100 }
101
102 static const bt_packet *packet(const bt_event * const libObjPtr) noexcept
103 {
104 return bt_event_borrow_packet_const(libObjPtr);
105 }
106
107 static const bt_field *payloadField(const bt_event * const libObjPtr) noexcept
108 {
109 return bt_event_borrow_payload_field_const(libObjPtr);
110 }
111
112 static const bt_field *specificContextField(const bt_event * const libObjPtr) noexcept
113 {
114 return bt_event_borrow_specific_context_field_const(libObjPtr);
115 }
116
117 static const bt_field *commonContextField(const bt_event * const libObjPtr) noexcept
118 {
119 return bt_event_borrow_common_context_field_const(libObjPtr);
120 }
121};
122
8047a175
PP
123template <typename LibObjT>
124using DepStructField = DepType<LibObjT, StructureField, ConstStructureField>;
125
b5f55e9f 126} /* namespace internal */
74fc764d
PP
127
128template <typename LibObjT>
0d218157 129class CommonEvent final : public BorrowedObject<LibObjT>
74fc764d
PP
130{
131private:
0d218157
PP
132 using typename BorrowedObject<LibObjT>::_ThisBorrowedObject;
133 using typename BorrowedObject<LibObjT>::_LibObjPtr;
74fc764d 134 using _Spec = internal::CommonEventSpec<LibObjT>;
8047a175
PP
135 using _Packet = internal::DepPacket<LibObjT>;
136 using _Stream = internal::DepStream<LibObjT>;
137 using _StructureField = internal::DepStructField<LibObjT>;
74fc764d
PP
138
139public:
8047a175
PP
140 using Class = internal::DepType<LibObjT, CommonEventClass<bt_event_class>,
141 CommonEventClass<const bt_event_class>>;
74fc764d 142
0d218157 143 explicit CommonEvent(const _LibObjPtr libObjPtr) noexcept : _ThisBorrowedObject {libObjPtr}
74fc764d
PP
144 {
145 }
146
147 template <typename OtherLibObjT>
0d218157 148 CommonEvent(const CommonEvent<OtherLibObjT> event) noexcept : _ThisBorrowedObject {event}
74fc764d
PP
149 {
150 }
151
152 template <typename OtherLibObjT>
ac30a470 153 CommonEvent<LibObjT> operator=(const CommonEvent<OtherLibObjT> event) noexcept
74fc764d 154 {
0d218157 155 _ThisBorrowedObject::operator=(event);
74fc764d
PP
156 return *this;
157 }
158
328a274a
PP
159 CommonEvent<const bt_event> asConst() const noexcept
160 {
161 return CommonEvent<const bt_event> {*this};
162 }
163
dcb8ae9b
PP
164 Class cls() const noexcept;
165 _Stream stream() const noexcept;
166 nonstd::optional<_Packet> packet() const noexcept;
74fc764d 167
dcb8ae9b 168 nonstd::optional<_StructureField> payloadField() const noexcept
74fc764d 169 {
341a67c4 170 const auto libObjPtr = _Spec::payloadField(this->libObjPtr());
74fc764d
PP
171
172 if (libObjPtr) {
173 return _StructureField {libObjPtr};
174 }
175
176 return nonstd::nullopt;
177 }
178
dcb8ae9b 179 nonstd::optional<_StructureField> specificContextField() const noexcept
74fc764d 180 {
341a67c4 181 const auto libObjPtr = _Spec::specificContextField(this->libObjPtr());
74fc764d
PP
182
183 if (libObjPtr) {
184 return _StructureField {libObjPtr};
185 }
186
187 return nonstd::nullopt;
188 }
189
dcb8ae9b 190 nonstd::optional<_StructureField> commonContextField() const noexcept
74fc764d 191 {
341a67c4 192 const auto libObjPtr = _Spec::commonContextField(this->libObjPtr());
74fc764d
PP
193
194 if (libObjPtr) {
195 return _StructureField {libObjPtr};
196 }
197
198 return nonstd::nullopt;
199 }
200};
201
202using Event = CommonEvent<bt_event>;
203using ConstEvent = CommonEvent<const bt_event>;
204
205namespace internal {
206
4927bae7
PP
207struct EventTypeDescr
208{
209 using Const = ConstEvent;
210 using NonConst = Event;
211};
212
213template <>
214struct TypeDescr<Event> : public EventTypeDescr
215{
216};
217
218template <>
219struct TypeDescr<ConstEvent> : public EventTypeDescr
220{
221};
222
74fc764d
PP
223struct PacketRefFuncs final
224{
c677c492 225 static void get(const bt_packet * const libObjPtr) noexcept
74fc764d
PP
226 {
227 bt_packet_get_ref(libObjPtr);
228 }
229
c677c492 230 static void put(const bt_packet * const libObjPtr) noexcept
74fc764d
PP
231 {
232 bt_packet_put_ref(libObjPtr);
233 }
234};
235
236template <typename LibObjT>
237struct CommonPacketSpec;
238
b5f55e9f 239/* Functions specific to mutable packets */
74fc764d
PP
240template <>
241struct CommonPacketSpec<bt_packet> final
242{
243 static bt_stream *stream(bt_packet * const libObjPtr) noexcept
244 {
245 return bt_packet_borrow_stream(libObjPtr);
246 }
247
248 static bt_field *contextField(bt_packet * const libObjPtr) noexcept
249 {
250 return bt_packet_borrow_context_field(libObjPtr);
251 }
252};
253
b5f55e9f 254/* Functions specific to constant packets */
74fc764d
PP
255template <>
256struct CommonPacketSpec<const bt_packet> final
257{
258 static const bt_stream *stream(const bt_packet * const libObjPtr) noexcept
259 {
260 return bt_packet_borrow_stream_const(libObjPtr);
261 }
262
263 static const bt_field *contextField(const bt_packet * const libObjPtr) noexcept
264 {
265 return bt_packet_borrow_context_field_const(libObjPtr);
266 }
267};
268
b5f55e9f 269} /* namespace internal */
74fc764d
PP
270
271template <typename LibObjT>
0d218157 272class CommonPacket final : public BorrowedObject<LibObjT>
74fc764d
PP
273{
274private:
0d218157
PP
275 using typename BorrowedObject<LibObjT>::_ThisBorrowedObject;
276 using typename BorrowedObject<LibObjT>::_LibObjPtr;
74fc764d 277 using _Spec = internal::CommonPacketSpec<LibObjT>;
8047a175
PP
278 using _Stream = internal::DepStream<LibObjT>;
279 using _StructureField = internal::DepStructField<LibObjT>;
74fc764d
PP
280
281public:
ac19444e 282 using Shared = SharedObject<CommonPacket, LibObjT, internal::PacketRefFuncs>;
74fc764d 283
0d218157 284 explicit CommonPacket(const _LibObjPtr libObjPtr) noexcept : _ThisBorrowedObject {libObjPtr}
74fc764d
PP
285 {
286 }
287
288 template <typename OtherLibObjT>
0d218157 289 CommonPacket(const CommonPacket<OtherLibObjT> packet) noexcept : _ThisBorrowedObject {packet}
74fc764d
PP
290 {
291 }
292
293 template <typename OtherLibObjT>
ac30a470 294 CommonPacket operator=(const CommonPacket<OtherLibObjT> packet) noexcept
74fc764d 295 {
0d218157 296 _ThisBorrowedObject::operator=(packet);
74fc764d
PP
297 return *this;
298 }
299
328a274a
PP
300 CommonPacket<const bt_packet> asConst() const noexcept
301 {
302 return CommonPacket<const bt_packet> {*this};
303 }
304
dcb8ae9b 305 _Stream stream() const noexcept;
74fc764d 306
dcb8ae9b 307 nonstd::optional<_StructureField> contextField() const noexcept
74fc764d 308 {
341a67c4 309 const auto libObjPtr = _Spec::contextField(this->libObjPtr());
74fc764d
PP
310
311 if (libObjPtr) {
312 return _StructureField {libObjPtr};
313 }
314
315 return nonstd::nullopt;
316 }
317
318 Shared shared() const noexcept
319 {
c9c0b6e2 320 return Shared::createWithRef(*this);
74fc764d
PP
321 }
322};
323
324using Packet = CommonPacket<bt_packet>;
325using ConstPacket = CommonPacket<const bt_packet>;
326
4927bae7
PP
327namespace internal {
328
329struct PacketTypeDescr
330{
331 using Const = ConstPacket;
332 using NonConst = Packet;
333};
334
335template <>
336struct TypeDescr<Packet> : public PacketTypeDescr
337{
338};
339
340template <>
341struct TypeDescr<ConstPacket> : public PacketTypeDescr
342{
343};
344
345} /* namespace internal */
346
74fc764d 347template <typename LibObjT>
dcb8ae9b
PP
348nonstd::optional<typename CommonEvent<LibObjT>::_Packet>
349CommonEvent<LibObjT>::packet() const noexcept
74fc764d 350{
341a67c4 351 const auto libObjPtr = _Spec::packet(this->libObjPtr());
74fc764d
PP
352
353 if (libObjPtr) {
354 return _Packet {libObjPtr};
355 }
356
357 return nonstd::nullopt;
358}
359
360namespace internal {
361
362struct StreamRefFuncs final
363{
c677c492 364 static void get(const bt_stream * const libObjPtr) noexcept
74fc764d
PP
365 {
366 bt_stream_get_ref(libObjPtr);
367 }
368
c677c492 369 static void put(const bt_stream * const libObjPtr) noexcept
74fc764d
PP
370 {
371 bt_stream_put_ref(libObjPtr);
372 }
373};
374
375template <typename LibObjT>
376struct CommonStreamSpec;
377
b5f55e9f 378/* Functions specific to mutable streams */
74fc764d
PP
379template <>
380struct CommonStreamSpec<bt_stream> final
381{
382 static bt_stream_class *cls(bt_stream * const libObjPtr) noexcept
383 {
384 return bt_stream_borrow_class(libObjPtr);
385 }
386
387 static bt_trace *trace(bt_stream * const libObjPtr) noexcept
388 {
389 return bt_stream_borrow_trace(libObjPtr);
390 }
391
392 static bt_value *userAttributes(bt_stream * const libObjPtr) noexcept
393 {
394 return bt_stream_borrow_user_attributes(libObjPtr);
395 }
396};
397
b5f55e9f 398/* Functions specific to constant streams */
74fc764d
PP
399template <>
400struct CommonStreamSpec<const bt_stream> final
401{
402 static const bt_stream_class *cls(const bt_stream * const libObjPtr) noexcept
403 {
404 return bt_stream_borrow_class_const(libObjPtr);
405 }
406
407 static const bt_trace *trace(const bt_stream * const libObjPtr) noexcept
408 {
409 return bt_stream_borrow_trace_const(libObjPtr);
410 }
411
412 static const bt_value *userAttributes(const bt_stream * const libObjPtr) noexcept
413 {
414 return bt_stream_borrow_user_attributes_const(libObjPtr);
415 }
416};
417
b5f55e9f 418} /* namespace internal */
74fc764d
PP
419
420template <typename LibObjT>
0d218157 421class CommonStream final : public BorrowedObject<LibObjT>
74fc764d
PP
422{
423private:
0d218157
PP
424 using typename BorrowedObject<LibObjT>::_ThisBorrowedObject;
425 using typename BorrowedObject<LibObjT>::_LibObjPtr;
74fc764d 426 using _Spec = internal::CommonStreamSpec<LibObjT>;
8047a175 427 using _Trace = internal::DepType<LibObjT, CommonTrace<bt_trace>, CommonTrace<const bt_trace>>;
74fc764d
PP
428
429public:
ac19444e 430 using Shared = SharedObject<CommonStream, LibObjT, internal::StreamRefFuncs>;
8047a175 431 using UserAttributes = internal::DepUserAttrs<LibObjT>;
74fc764d 432
8047a175
PP
433 using Class = internal::DepType<LibObjT, CommonStreamClass<bt_stream_class>,
434 CommonStreamClass<const bt_stream_class>>;
74fc764d 435
0d218157 436 explicit CommonStream(const _LibObjPtr libObjPtr) noexcept : _ThisBorrowedObject {libObjPtr}
74fc764d
PP
437 {
438 }
439
440 template <typename OtherLibObjT>
0d218157 441 CommonStream(const CommonStream<OtherLibObjT> stream) noexcept : _ThisBorrowedObject {stream}
74fc764d
PP
442 {
443 }
444
445 template <typename OtherLibObjT>
ac30a470 446 CommonStream operator=(const CommonStream<OtherLibObjT> stream) noexcept
74fc764d 447 {
0d218157 448 _ThisBorrowedObject::operator=(stream);
74fc764d
PP
449 return *this;
450 }
451
328a274a
PP
452 CommonStream<const bt_stream> asConst() const noexcept
453 {
454 return CommonStream<const bt_stream> {*this};
455 }
456
dcb8ae9b 457 Packet::Shared createPacket() const
74fc764d 458 {
5c895f64 459 static_assert(!std::is_const<LibObjT>::value, "Not available with `bt2::ConstStream`.");
74fc764d 460
341a67c4 461 const auto libObjPtr = bt_packet_create(this->libObjPtr());
74fc764d
PP
462
463 internal::validateCreatedObjPtr(libObjPtr);
c9c0b6e2 464 return Packet::Shared::createWithoutRef(libObjPtr);
74fc764d
PP
465 }
466
dcb8ae9b
PP
467 Class cls() const noexcept;
468 _Trace trace() const noexcept;
74fc764d
PP
469
470 std::uint64_t id() const noexcept
471 {
341a67c4 472 return bt_stream_get_id(this->libObjPtr());
74fc764d
PP
473 }
474
dcb8ae9b 475 void name(const char * const name) const
74fc764d 476 {
5c895f64 477 static_assert(!std::is_const<LibObjT>::value, "Not available with `bt2::ConstStream`.");
74fc764d 478
341a67c4 479 const auto status = bt_stream_set_name(this->libObjPtr(), name);
74fc764d
PP
480
481 if (status == BT_STREAM_SET_NAME_STATUS_MEMORY_ERROR) {
39278ebc 482 throw MemoryError {};
74fc764d
PP
483 }
484 }
485
dcb8ae9b 486 void name(const std::string& name) const
74fc764d
PP
487 {
488 this->name(name.data());
489 }
490
5cc5088c 491 const char *name() const noexcept
74fc764d 492 {
5cc5088c 493 return bt_stream_get_name(this->libObjPtr());
74fc764d
PP
494 }
495
496 template <typename LibValT>
b7ffa6f0 497 void userAttributes(const CommonMapValue<LibValT> userAttrs) const noexcept
74fc764d 498 {
5c895f64 499 static_assert(!std::is_const<LibObjT>::value, "Not available with `bt2::ConstStream`.");
74fc764d 500
341a67c4 501 bt_stream_set_user_attributes(this->libObjPtr(), userAttrs.libObjPtr());
74fc764d
PP
502 }
503
dcb8ae9b 504 UserAttributes userAttributes() const noexcept
74fc764d 505 {
341a67c4 506 return UserAttributes {_Spec::userAttributes(this->libObjPtr())};
74fc764d
PP
507 }
508
509 Shared shared() const noexcept
510 {
c9c0b6e2 511 return Shared::createWithRef(*this);
74fc764d
PP
512 }
513};
514
515using Stream = CommonStream<bt_stream>;
516using ConstStream = CommonStream<const bt_stream>;
517
4927bae7
PP
518namespace internal {
519
520struct StreamTypeDescr
521{
522 using Const = ConstStream;
523 using NonConst = Stream;
524};
525
526template <>
527struct TypeDescr<Stream> : public StreamTypeDescr
528{
529};
530
531template <>
532struct TypeDescr<ConstStream> : public StreamTypeDescr
533{
534};
535
536} /* namespace internal */
537
74fc764d 538template <typename LibObjT>
dcb8ae9b 539typename CommonEvent<LibObjT>::_Stream CommonEvent<LibObjT>::stream() const noexcept
74fc764d 540{
341a67c4 541 return _Stream {_Spec::stream(this->libObjPtr())};
74fc764d
PP
542}
543
544template <typename LibObjT>
dcb8ae9b 545typename CommonPacket<LibObjT>::_Stream CommonPacket<LibObjT>::stream() const noexcept
74fc764d 546{
341a67c4 547 return _Stream {_Spec::stream(this->libObjPtr())};
74fc764d
PP
548}
549
550namespace internal {
551
552struct TraceRefFuncs final
553{
c677c492 554 static void get(const bt_trace * const libObjPtr) noexcept
74fc764d
PP
555 {
556 bt_trace_get_ref(libObjPtr);
557 }
558
c677c492 559 static void put(const bt_trace * const libObjPtr) noexcept
74fc764d
PP
560 {
561 bt_trace_put_ref(libObjPtr);
562 }
563};
564
565template <typename LibObjT>
566struct CommonTraceSpec;
567
b5f55e9f 568/* Functions specific to mutable traces */
74fc764d
PP
569template <>
570struct CommonTraceSpec<bt_trace> final
571{
572 static bt_trace_class *cls(bt_trace * const libObjPtr) noexcept
573 {
574 return bt_trace_borrow_class(libObjPtr);
575 }
576
577 static bt_stream *streamByIndex(bt_trace * const libObjPtr, const std::uint64_t index) noexcept
578 {
579 return bt_trace_borrow_stream_by_index(libObjPtr, index);
580 }
581
582 static bt_stream *streamById(bt_trace * const libObjPtr, const std::uint64_t id) noexcept
583 {
584 return bt_trace_borrow_stream_by_id(libObjPtr, id);
585 }
586
587 static bt_value *userAttributes(bt_trace * const libObjPtr) noexcept
588 {
589 return bt_trace_borrow_user_attributes(libObjPtr);
590 }
591};
592
b5f55e9f 593/* Functions specific to constant traces */
74fc764d
PP
594template <>
595struct CommonTraceSpec<const bt_trace> final
596{
597 static const bt_trace_class *cls(const bt_trace * const libObjPtr) noexcept
598 {
599 return bt_trace_borrow_class_const(libObjPtr);
600 }
601
602 static const bt_stream *streamByIndex(const bt_trace * const libObjPtr,
603 const std::uint64_t index) noexcept
604 {
605 return bt_trace_borrow_stream_by_index_const(libObjPtr, index);
606 }
607
608 static const bt_stream *streamById(const bt_trace * const libObjPtr,
609 const std::uint64_t id) noexcept
610 {
611 return bt_trace_borrow_stream_by_id_const(libObjPtr, id);
612 }
613
614 static const bt_value *userAttributes(const bt_trace * const libObjPtr) noexcept
615 {
616 return bt_trace_borrow_user_attributes_const(libObjPtr);
617 }
618};
619
b5f55e9f 620} /* namespace internal */
74fc764d
PP
621
622template <typename LibObjT>
0d218157 623class CommonTrace final : public BorrowedObject<LibObjT>
74fc764d 624{
74fc764d 625private:
0d218157
PP
626 using typename BorrowedObject<LibObjT>::_ThisBorrowedObject;
627 using typename BorrowedObject<LibObjT>::_LibObjPtr;
74fc764d 628 using _Spec = internal::CommonTraceSpec<LibObjT>;
8047a175 629 using _Stream = internal::DepStream<LibObjT>;
74fc764d
PP
630
631public:
ac19444e 632 using Shared = SharedObject<CommonTrace, LibObjT, internal::TraceRefFuncs>;
8047a175 633 using UserAttributes = internal::DepUserAttrs<LibObjT>;
74fc764d 634
8047a175
PP
635 using Class = internal::DepType<LibObjT, CommonTraceClass<bt_trace_class>,
636 CommonTraceClass<const bt_trace_class>>;
74fc764d
PP
637
638 struct ConstEnvironmentEntry
639 {
5cc5088c 640 const char *name;
74fc764d
PP
641 ConstValue value;
642 };
643
0d218157 644 explicit CommonTrace(const _LibObjPtr libObjPtr) noexcept : _ThisBorrowedObject {libObjPtr}
74fc764d
PP
645 {
646 }
647
648 template <typename OtherLibObjT>
0d218157 649 CommonTrace(const CommonTrace<OtherLibObjT> trace) noexcept : _ThisBorrowedObject {trace}
74fc764d
PP
650 {
651 }
652
653 template <typename OtherLibObjT>
ac30a470 654 CommonTrace operator=(const CommonTrace<OtherLibObjT> trace) noexcept
74fc764d 655 {
0d218157 656 _ThisBorrowedObject::operator=(trace);
74fc764d
PP
657 return *this;
658 }
659
328a274a
PP
660 CommonTrace<const bt_trace> asConst() const noexcept
661 {
662 return CommonTrace<const bt_trace> {*this};
663 }
664
dcb8ae9b 665 Class cls() const noexcept;
74fc764d 666
dcb8ae9b 667 void name(const char * const name) const
74fc764d 668 {
5c895f64 669 static_assert(!std::is_const<LibObjT>::value, "Not available with `bt2::ConstTrace`.");
74fc764d 670
341a67c4 671 const auto status = bt_trace_set_name(this->libObjPtr(), name);
74fc764d
PP
672
673 if (status == BT_TRACE_SET_NAME_STATUS_MEMORY_ERROR) {
39278ebc 674 throw MemoryError {};
74fc764d
PP
675 }
676 }
677
dcb8ae9b 678 void name(const std::string& name) const
74fc764d
PP
679 {
680 this->name(name.data());
681 }
682
5cc5088c 683 const char *name() const noexcept
74fc764d 684 {
5cc5088c 685 return bt_trace_get_name(this->libObjPtr());
74fc764d
PP
686 }
687
dcb8ae9b 688 void uuid(const bt2_common::UuidView& uuid) const noexcept
74fc764d 689 {
81d250db 690 bt_trace_set_uuid(this->libObjPtr(), uuid.begin());
74fc764d
PP
691 }
692
693 nonstd::optional<bt2_common::UuidView> uuid() const noexcept
694 {
341a67c4 695 const auto uuid = bt_trace_get_uuid(this->libObjPtr());
74fc764d
PP
696
697 if (uuid) {
698 return bt2_common::UuidView {uuid};
699 }
700
701 return nonstd::nullopt;
702 }
703
c0b73c63 704 std::uint64_t length() const noexcept
74fc764d 705 {
341a67c4 706 return bt_trace_get_stream_count(this->libObjPtr());
74fc764d
PP
707 }
708
dcb8ae9b 709 _Stream operator[](const std::uint64_t index) const noexcept
74fc764d 710 {
341a67c4 711 return _Stream {_Spec::streamByIndex(this->libObjPtr(), index)};
74fc764d
PP
712 }
713
dcb8ae9b 714 nonstd::optional<_Stream> streamById(const std::uint64_t id) const noexcept
74fc764d 715 {
341a67c4 716 const auto libObjPtr = _Spec::streamById(this->libObjPtr(), id);
74fc764d
PP
717
718 if (libObjPtr) {
719 return _Stream {libObjPtr};
720 }
721
722 return nonstd::nullopt;
723 }
724
dcb8ae9b 725 void environmentEntry(const char * const name, const std::int64_t val) const
74fc764d 726 {
5c895f64 727 static_assert(!std::is_const<LibObjT>::value, "Not available with `bt2::ConstTrace`.");
74fc764d 728
341a67c4 729 const auto status = bt_trace_set_environment_entry_integer(this->libObjPtr(), name, val);
74fc764d
PP
730
731 if (status == BT_TRACE_SET_ENVIRONMENT_ENTRY_STATUS_MEMORY_ERROR) {
39278ebc 732 throw MemoryError {};
74fc764d
PP
733 }
734 }
735
dcb8ae9b 736 void environmentEntry(const std::string& name, const std::int64_t val) const
74fc764d
PP
737 {
738 this->environmentEntry(name.data(), val);
739 }
740
dcb8ae9b 741 void environmentEntry(const char * const name, const char * const val) const
74fc764d 742 {
5c895f64 743 static_assert(!std::is_const<LibObjT>::value, "Not available with `bt2::ConstTrace`.");
74fc764d 744
341a67c4 745 const auto status = bt_trace_set_environment_entry_string(this->libObjPtr(), name, val);
74fc764d
PP
746
747 if (status == BT_TRACE_SET_ENVIRONMENT_ENTRY_STATUS_MEMORY_ERROR) {
39278ebc 748 throw MemoryError {};
74fc764d
PP
749 }
750 }
751
dcb8ae9b 752 void environmentEntry(const std::string& name, const char * const val) const
74fc764d
PP
753 {
754 this->environmentEntry(name.data(), val);
755 }
756
dcb8ae9b 757 void environmentEntry(const char * const name, const std::string& val) const
74fc764d
PP
758 {
759 this->environmentEntry(name, val.data());
760 }
761
dcb8ae9b 762 void environmentEntry(const std::string& name, const std::string& val) const
74fc764d
PP
763 {
764 this->environmentEntry(name.data(), val.data());
765 }
766
767 std::uint64_t environmentSize() const noexcept
768 {
341a67c4 769 return bt_trace_get_environment_entry_count(this->libObjPtr());
74fc764d
PP
770 }
771
772 ConstEnvironmentEntry environmentEntry(const std::uint64_t index) const noexcept
773 {
774 const char *name;
775 const bt_value *libObjPtr;
776
341a67c4 777 bt_trace_borrow_environment_entry_by_index_const(this->libObjPtr(), index, &name,
74fc764d
PP
778 &libObjPtr);
779 return ConstEnvironmentEntry {name, ConstValue {libObjPtr}};
780 }
781
782 nonstd::optional<ConstValue> environmentEntry(const char * const name) const noexcept
783 {
784 const auto libObjPtr =
341a67c4 785 bt_trace_borrow_environment_entry_value_by_name_const(this->libObjPtr(), name);
74fc764d
PP
786
787 if (libObjPtr) {
788 return ConstValue {libObjPtr};
789 }
790
791 return nonstd::nullopt;
792 }
793
794 nonstd::optional<ConstValue> environmentEntry(const std::string& name) const noexcept
795 {
796 return this->environmentEntry(name.data());
797 }
798
799 template <typename LibValT>
b7ffa6f0 800 void userAttributes(const CommonMapValue<LibValT> userAttrs) const noexcept
74fc764d 801 {
5c895f64 802 static_assert(!std::is_const<LibObjT>::value, "Not available with `bt2::ConstTrace`.");
74fc764d 803
341a67c4 804 bt_trace_set_user_attributes(this->libObjPtr(), userAttrs.libObjPtr());
74fc764d
PP
805 }
806
dcb8ae9b 807 UserAttributes userAttributes() const noexcept
74fc764d 808 {
341a67c4 809 return UserAttributes {_Spec::userAttributes(this->libObjPtr())};
74fc764d
PP
810 }
811
812 Shared shared() const noexcept
813 {
c9c0b6e2 814 return Shared::createWithRef(*this);
74fc764d
PP
815 }
816};
817
818using Trace = CommonTrace<bt_trace>;
819using ConstTrace = CommonTrace<const bt_trace>;
820
4927bae7
PP
821namespace internal {
822
823struct TraceTypeDescr
824{
825 using Const = ConstTrace;
826 using NonConst = Trace;
827};
828
829template <>
830struct TypeDescr<Trace> : public TraceTypeDescr
831{
832};
833
834template <>
835struct TypeDescr<ConstTrace> : public TraceTypeDescr
836{
837};
838
839} /* namespace internal */
840
74fc764d 841template <typename LibObjT>
dcb8ae9b 842typename CommonStream<LibObjT>::_Trace CommonStream<LibObjT>::trace() const noexcept
74fc764d 843{
341a67c4 844 return _Trace {_Spec::trace(this->libObjPtr())};
74fc764d
PP
845}
846
847namespace internal {
848
849struct EventClassRefFuncs final
850{
c677c492 851 static void get(const bt_event_class * const libObjPtr) noexcept
74fc764d
PP
852 {
853 bt_event_class_get_ref(libObjPtr);
854 }
855
c677c492 856 static void put(const bt_event_class * const libObjPtr) noexcept
74fc764d
PP
857 {
858 bt_event_class_put_ref(libObjPtr);
859 }
860};
861
862template <typename LibObjT>
863struct CommonEventClassSpec;
864
b5f55e9f 865/* Functions specific to mutable event classes */
74fc764d
PP
866template <>
867struct CommonEventClassSpec<bt_event_class> final
868{
869 static bt_stream_class *streamClass(bt_event_class * const libObjPtr) noexcept
870 {
871 return bt_event_class_borrow_stream_class(libObjPtr);
872 }
873
874 static bt_field_class *payloadFieldClass(bt_event_class * const libObjPtr) noexcept
875 {
876 return bt_event_class_borrow_payload_field_class(libObjPtr);
877 }
878
879 static bt_field_class *specificContextFieldClass(bt_event_class * const libObjPtr) noexcept
880 {
881 return bt_event_class_borrow_specific_context_field_class(libObjPtr);
882 }
883
884 static bt_value *userAttributes(bt_event_class * const libObjPtr) noexcept
885 {
886 return bt_event_class_borrow_user_attributes(libObjPtr);
887 }
888};
889
b5f55e9f 890/* Functions specific to constant event classes */
74fc764d
PP
891template <>
892struct CommonEventClassSpec<const bt_event_class> final
893{
894 static const bt_stream_class *streamClass(const bt_event_class * const libObjPtr) noexcept
895 {
896 return bt_event_class_borrow_stream_class_const(libObjPtr);
897 }
898
899 static const bt_field_class *payloadFieldClass(const bt_event_class * const libObjPtr) noexcept
900 {
901 return bt_event_class_borrow_payload_field_class_const(libObjPtr);
902 }
903
904 static const bt_field_class *
905 specificContextFieldClass(const bt_event_class * const libObjPtr) noexcept
906 {
907 return bt_event_class_borrow_specific_context_field_class_const(libObjPtr);
908 }
909
910 static const bt_value *userAttributes(const bt_event_class * const libObjPtr) noexcept
911 {
912 return bt_event_class_borrow_user_attributes_const(libObjPtr);
913 }
914};
915
8047a175
PP
916template <typename LibObjT>
917using DepStructFc = DepType<LibObjT, StructureFieldClass, ConstStructureFieldClass>;
918
b5f55e9f 919} /* namespace internal */
74fc764d
PP
920
921template <typename LibObjT>
0d218157 922class CommonEventClass final : public BorrowedObject<LibObjT>
74fc764d
PP
923{
924private:
0d218157
PP
925 using typename BorrowedObject<LibObjT>::_ThisBorrowedObject;
926 using typename BorrowedObject<LibObjT>::_LibObjPtr;
74fc764d 927 using _Spec = internal::CommonEventClassSpec<LibObjT>;
8047a175 928 using _StructureFieldClass = internal::DepStructFc<LibObjT>;
74fc764d 929
8047a175
PP
930 using _StreamClass = internal::DepType<LibObjT, CommonStreamClass<bt_stream_class>,
931 CommonStreamClass<const bt_stream_class>>;
74fc764d
PP
932
933public:
ac19444e 934 using Shared = SharedObject<CommonEventClass, LibObjT, internal::EventClassRefFuncs>;
8047a175 935 using UserAttributes = internal::DepUserAttrs<LibObjT>;
74fc764d
PP
936
937 enum class LogLevel
938 {
939 EMERGENCY = BT_EVENT_CLASS_LOG_LEVEL_EMERGENCY,
940 ALERT = BT_EVENT_CLASS_LOG_LEVEL_ALERT,
941 CRITICAL = BT_EVENT_CLASS_LOG_LEVEL_CRITICAL,
0c0001b4 942 ERR = BT_EVENT_CLASS_LOG_LEVEL_ERROR,
74fc764d
PP
943 WARNING = BT_EVENT_CLASS_LOG_LEVEL_WARNING,
944 NOTICE = BT_EVENT_CLASS_LOG_LEVEL_NOTICE,
945 INFO = BT_EVENT_CLASS_LOG_LEVEL_INFO,
946 DEBUG_SYSTEM = BT_EVENT_CLASS_LOG_LEVEL_DEBUG_SYSTEM,
947 DEBUG_PROGRAM = BT_EVENT_CLASS_LOG_LEVEL_DEBUG_PROGRAM,
0c0001b4 948 DEBUG_PROC = BT_EVENT_CLASS_LOG_LEVEL_DEBUG_PROCESS,
74fc764d
PP
949 DEBUG_MODULE = BT_EVENT_CLASS_LOG_LEVEL_DEBUG_MODULE,
950 DEBUG_UNIT = BT_EVENT_CLASS_LOG_LEVEL_DEBUG_UNIT,
951 DEBUG_FUNCTION = BT_EVENT_CLASS_LOG_LEVEL_DEBUG_FUNCTION,
952 DEBUG_LINE = BT_EVENT_CLASS_LOG_LEVEL_DEBUG_LINE,
953 DEBUG = BT_EVENT_CLASS_LOG_LEVEL_DEBUG,
954 };
955
0d218157 956 explicit CommonEventClass(const _LibObjPtr libObjPtr) noexcept : _ThisBorrowedObject {libObjPtr}
74fc764d
PP
957 {
958 }
959
960 template <typename OtherLibObjT>
100fa861 961 CommonEventClass(const CommonEventClass<OtherLibObjT> eventClass) noexcept :
0d218157 962 _ThisBorrowedObject {eventClass}
74fc764d
PP
963 {
964 }
965
966 template <typename OtherLibObjT>
ac30a470 967 CommonEventClass operator=(const CommonEventClass<OtherLibObjT> eventClass) noexcept
74fc764d 968 {
0d218157 969 _ThisBorrowedObject::operator=(eventClass);
74fc764d
PP
970 return *this;
971 }
972
328a274a
PP
973 CommonEventClass<const bt_event_class> asConst() const noexcept
974 {
975 return CommonEventClass<const bt_event_class> {*this};
976 }
977
dcb8ae9b 978 _StreamClass streamClass() const noexcept;
74fc764d
PP
979
980 std::uint64_t id() const noexcept
981 {
341a67c4 982 return bt_event_class_get_id(this->libObjPtr());
74fc764d
PP
983 }
984
dcb8ae9b 985 void name(const char * const name) const
74fc764d 986 {
5c895f64 987 static_assert(!std::is_const<LibObjT>::value, "Not available with `bt2::ConstEventClass`.");
74fc764d 988
341a67c4 989 const auto status = bt_event_class_set_name(this->libObjPtr(), name);
74fc764d
PP
990
991 if (status == BT_EVENT_CLASS_SET_NAME_STATUS_MEMORY_ERROR) {
39278ebc 992 throw MemoryError {};
74fc764d
PP
993 }
994 }
995
dcb8ae9b 996 void name(const std::string& name) const
74fc764d
PP
997 {
998 this->name(name.data());
999 }
1000
5cc5088c 1001 const char *name() const noexcept
74fc764d 1002 {
5cc5088c 1003 return bt_event_class_get_name(this->libObjPtr());
74fc764d
PP
1004 }
1005
dcb8ae9b 1006 void logLevel(const LogLevel logLevel) const noexcept
74fc764d 1007 {
5c895f64 1008 static_assert(!std::is_const<LibObjT>::value, "Not available with `bt2::ConstEventClass`.");
74fc764d 1009
341a67c4 1010 bt_event_class_set_log_level(this->libObjPtr(),
74fc764d
PP
1011 static_cast<bt_event_class_log_level>(logLevel));
1012 }
1013
1014 nonstd::optional<LogLevel> logLevel() const noexcept
1015 {
1016 bt_event_class_log_level libLogLevel;
341a67c4 1017 const auto avail = bt_event_class_get_log_level(this->libObjPtr(), &libLogLevel);
74fc764d
PP
1018
1019 if (avail == BT_PROPERTY_AVAILABILITY_AVAILABLE) {
1020 return static_cast<LogLevel>(libLogLevel);
1021 }
1022
1023 return nonstd::nullopt;
1024 }
1025
dcb8ae9b 1026 void emfUri(const char * const emfUri) const
74fc764d 1027 {
5c895f64 1028 static_assert(!std::is_const<LibObjT>::value, "Not available with `bt2::ConstEventClass`.");
74fc764d 1029
341a67c4 1030 const auto status = bt_event_class_set_emf_uri(this->libObjPtr(), emfUri);
74fc764d
PP
1031
1032 if (status == BT_EVENT_CLASS_SET_EMF_URI_STATUS_MEMORY_ERROR) {
39278ebc 1033 throw MemoryError {};
74fc764d
PP
1034 }
1035 }
1036
dcb8ae9b 1037 void emfUri(const std::string& emfUri) const
74fc764d
PP
1038 {
1039 this->emfUri(emfUri.data());
1040 }
1041
5cc5088c 1042 const char *emfUri() const noexcept
74fc764d 1043 {
5cc5088c 1044 return bt_event_class_get_emf_uri(this->libObjPtr());
74fc764d
PP
1045 }
1046
dcb8ae9b 1047 void payloadFieldClass(const StructureFieldClass fc) const
74fc764d 1048 {
5c895f64 1049 static_assert(!std::is_const<LibObjT>::value, "Not available with `bt2::ConstEventClass`.");
74fc764d
PP
1050
1051 const auto status =
341a67c4 1052 bt_event_class_set_payload_field_class(this->libObjPtr(), fc.libObjPtr());
74fc764d
PP
1053
1054 if (status == BT_EVENT_CLASS_SET_FIELD_CLASS_STATUS_MEMORY_ERROR) {
39278ebc 1055 throw MemoryError {};
74fc764d
PP
1056 }
1057 }
1058
dcb8ae9b 1059 nonstd::optional<_StructureFieldClass> payloadFieldClass() const noexcept
74fc764d 1060 {
341a67c4 1061 const auto libObjPtr = _Spec::payloadFieldClass(this->libObjPtr());
74fc764d
PP
1062
1063 if (libObjPtr) {
1064 return _StructureFieldClass {libObjPtr};
1065 }
1066
1067 return nonstd::nullopt;
1068 }
1069
dcb8ae9b 1070 void specificContextFieldClass(const StructureFieldClass fc) const
74fc764d 1071 {
5c895f64 1072 static_assert(!std::is_const<LibObjT>::value, "Not available with `bt2::ConstEventClass`.");
74fc764d
PP
1073
1074 const auto status =
341a67c4 1075 bt_event_class_set_specific_context_field_class(this->libObjPtr(), fc.libObjPtr());
74fc764d
PP
1076
1077 if (status == BT_EVENT_CLASS_SET_FIELD_CLASS_STATUS_MEMORY_ERROR) {
39278ebc 1078 throw MemoryError {};
74fc764d
PP
1079 }
1080 }
1081
dcb8ae9b 1082 nonstd::optional<_StructureFieldClass> specificContextFieldClass() const noexcept
74fc764d 1083 {
341a67c4 1084 const auto libObjPtr = _Spec::specificContextFieldClass(this->libObjPtr());
74fc764d
PP
1085
1086 if (libObjPtr) {
1087 return _StructureFieldClass {libObjPtr};
1088 }
1089
1090 return nonstd::nullopt;
1091 }
1092
1093 template <typename LibValT>
b7ffa6f0 1094 void userAttributes(const CommonMapValue<LibValT> userAttrs) const noexcept
74fc764d 1095 {
5c895f64 1096 static_assert(!std::is_const<LibObjT>::value, "Not available with `bt2::ConstEventClass`.");
74fc764d 1097
341a67c4 1098 bt_event_class_set_user_attributes(this->libObjPtr(), userAttrs.libObjPtr());
74fc764d
PP
1099 }
1100
dcb8ae9b 1101 UserAttributes userAttributes() const noexcept
74fc764d 1102 {
341a67c4 1103 return UserAttributes {_Spec::userAttributes(this->libObjPtr())};
74fc764d
PP
1104 }
1105
1106 Shared shared() const noexcept
1107 {
c9c0b6e2 1108 return Shared::createWithRef(*this);
74fc764d
PP
1109 }
1110};
1111
1112using EventClass = CommonEventClass<bt_event_class>;
1113using ConstEventClass = CommonEventClass<const bt_event_class>;
1114
4927bae7
PP
1115namespace internal {
1116
1117struct EventClassTypeDescr
1118{
1119 using Const = ConstEventClass;
1120 using NonConst = EventClass;
1121};
1122
1123template <>
1124struct TypeDescr<EventClass> : public EventClassTypeDescr
1125{
1126};
1127
1128template <>
1129struct TypeDescr<ConstEventClass> : public EventClassTypeDescr
1130{
1131};
1132
1133} /* namespace internal */
1134
74fc764d 1135template <typename LibObjT>
dcb8ae9b 1136typename CommonEvent<LibObjT>::Class CommonEvent<LibObjT>::cls() const noexcept
74fc764d 1137{
341a67c4 1138 return Class {_Spec::cls(this->libObjPtr())};
74fc764d
PP
1139}
1140
1141namespace internal {
1142
1143struct StreamClassRefFuncs final
1144{
c677c492 1145 static void get(const bt_stream_class * const libObjPtr) noexcept
74fc764d
PP
1146 {
1147 bt_stream_class_get_ref(libObjPtr);
1148 }
1149
c677c492 1150 static void put(const bt_stream_class * const libObjPtr) noexcept
74fc764d
PP
1151 {
1152 bt_stream_class_put_ref(libObjPtr);
1153 }
1154};
1155
1156template <typename LibObjT>
1157struct CommonStreamClassSpec;
1158
b5f55e9f 1159/* Functions specific to mutable stream classes */
74fc764d
PP
1160template <>
1161struct CommonStreamClassSpec<bt_stream_class> final
1162{
1163 static bt_trace_class *traceClass(bt_stream_class * const libObjPtr) noexcept
1164 {
1165 return bt_stream_class_borrow_trace_class(libObjPtr);
1166 }
1167
1168 static bt_event_class *eventClassByIndex(bt_stream_class * const libObjPtr,
1169 const std::uint64_t index) noexcept
1170 {
1171 return bt_stream_class_borrow_event_class_by_index(libObjPtr, index);
1172 }
1173
1174 static bt_event_class *eventClassById(bt_stream_class * const libObjPtr,
1175 const std::uint64_t id) noexcept
1176 {
1177 return bt_stream_class_borrow_event_class_by_id(libObjPtr, id);
1178 }
1179
1180 static bt_clock_class *defaultClockClass(bt_stream_class * const libObjPtr) noexcept
1181 {
1182 return bt_stream_class_borrow_default_clock_class(libObjPtr);
1183 }
1184
1185 static bt_field_class *packetContextFieldClass(bt_stream_class * const libObjPtr) noexcept
1186 {
1187 return bt_stream_class_borrow_packet_context_field_class(libObjPtr);
1188 }
1189
1190 static bt_field_class *eventCommonContextFieldClass(bt_stream_class * const libObjPtr) noexcept
1191 {
1192 return bt_stream_class_borrow_event_common_context_field_class(libObjPtr);
1193 }
1194
1195 static bt_value *userAttributes(bt_stream_class * const libObjPtr) noexcept
1196 {
1197 return bt_stream_class_borrow_user_attributes(libObjPtr);
1198 }
1199};
1200
b5f55e9f 1201/* Functions specific to constant stream classes */
74fc764d
PP
1202template <>
1203struct CommonStreamClassSpec<const bt_stream_class> final
1204{
1205 static const bt_trace_class *traceClass(const bt_stream_class * const libObjPtr) noexcept
1206 {
1207 return bt_stream_class_borrow_trace_class_const(libObjPtr);
1208 }
1209
1210 static const bt_event_class *eventClassByIndex(const bt_stream_class * const libObjPtr,
1211 const std::uint64_t index) noexcept
1212 {
1213 return bt_stream_class_borrow_event_class_by_index_const(libObjPtr, index);
1214 }
1215
1216 static const bt_event_class *eventClassById(const bt_stream_class * const libObjPtr,
1217 const std::uint64_t id) noexcept
1218 {
1219 return bt_stream_class_borrow_event_class_by_id_const(libObjPtr, id);
1220 }
1221
1222 static const bt_clock_class *defaultClockClass(const bt_stream_class * const libObjPtr) noexcept
1223 {
1224 return bt_stream_class_borrow_default_clock_class_const(libObjPtr);
1225 }
1226
1227 static const bt_field_class *
1228 packetContextFieldClass(const bt_stream_class * const libObjPtr) noexcept
1229 {
1230 return bt_stream_class_borrow_packet_context_field_class_const(libObjPtr);
1231 }
1232
1233 static const bt_field_class *
1234 eventCommonContextFieldClass(const bt_stream_class * const libObjPtr) noexcept
1235 {
1236 return bt_stream_class_borrow_event_common_context_field_class_const(libObjPtr);
1237 }
1238
1239 static const bt_value *userAttributes(const bt_stream_class * const libObjPtr) noexcept
1240 {
1241 return bt_stream_class_borrow_user_attributes_const(libObjPtr);
1242 }
1243};
1244
b5f55e9f 1245} /* namespace internal */
74fc764d
PP
1246
1247template <typename LibObjT>
0d218157 1248class CommonStreamClass final : public BorrowedObject<LibObjT>
74fc764d
PP
1249{
1250private:
0d218157
PP
1251 using typename BorrowedObject<LibObjT>::_ThisBorrowedObject;
1252 using typename BorrowedObject<LibObjT>::_LibObjPtr;
74fc764d 1253 using _Spec = internal::CommonStreamClassSpec<LibObjT>;
8047a175 1254 using _StructureFieldClass = internal::DepStructFc<LibObjT>;
74fc764d 1255
8047a175
PP
1256 using _TraceClass = internal::DepType<LibObjT, CommonTraceClass<bt_trace_class>,
1257 CommonTraceClass<const bt_trace_class>>;
74fc764d 1258
8047a175
PP
1259 using _EventClass = internal::DepType<LibObjT, CommonEventClass<bt_event_class>,
1260 CommonEventClass<const bt_event_class>>;
74fc764d 1261
8047a175 1262 using _ClockClass = internal::DepType<LibObjT, ClockClass, ConstClockClass>;
74fc764d
PP
1263
1264public:
ac19444e 1265 using Shared = SharedObject<CommonStreamClass, LibObjT, internal::StreamClassRefFuncs>;
8047a175 1266 using UserAttributes = internal::DepUserAttrs<LibObjT>;
74fc764d 1267
0d218157
PP
1268 explicit CommonStreamClass(const _LibObjPtr libObjPtr) noexcept :
1269 _ThisBorrowedObject {libObjPtr}
74fc764d
PP
1270 {
1271 }
1272
1273 template <typename OtherLibObjT>
100fa861 1274 CommonStreamClass(const CommonStreamClass<OtherLibObjT> streamClass) noexcept :
0d218157 1275 _ThisBorrowedObject {streamClass}
74fc764d
PP
1276 {
1277 }
1278
1279 template <typename OtherLibObjT>
ac30a470 1280 CommonStreamClass operator=(const CommonStreamClass<OtherLibObjT> streamClass) noexcept
74fc764d 1281 {
0d218157 1282 _ThisBorrowedObject::operator=(streamClass);
74fc764d
PP
1283 return *this;
1284 }
1285
328a274a
PP
1286 CommonStreamClass<const bt_stream_class> asConst() const noexcept
1287 {
1288 return CommonStreamClass<const bt_stream_class> {*this};
1289 }
1290
dcb8ae9b 1291 Stream::Shared instantiate(const Trace trace) const
74fc764d 1292 {
5c895f64
PP
1293 static_assert(!std::is_const<LibObjT>::value,
1294 "Not available with `bt2::ConstStreamClass`.");
74fc764d 1295
341a67c4 1296 const auto libObjPtr = bt_stream_create(this->libObjPtr(), trace.libObjPtr());
74fc764d
PP
1297
1298 internal::validateCreatedObjPtr(libObjPtr);
c9c0b6e2 1299 return Stream::Shared::createWithoutRef(libObjPtr);
74fc764d
PP
1300 }
1301
dcb8ae9b 1302 Stream::Shared instantiate(const Trace trace, const std::uint64_t id) const
74fc764d 1303 {
5c895f64
PP
1304 static_assert(!std::is_const<LibObjT>::value,
1305 "Not available with `bt2::ConstStreamClass`.");
74fc764d 1306
341a67c4 1307 const auto libObjPtr = bt_stream_create_with_id(this->libObjPtr(), trace.libObjPtr(), id);
74fc764d
PP
1308
1309 internal::validateCreatedObjPtr(libObjPtr);
c9c0b6e2 1310 return Stream::Shared::createWithoutRef(libObjPtr);
74fc764d
PP
1311 }
1312
dcb8ae9b 1313 EventClass::Shared createEventClass() const
74fc764d 1314 {
5c895f64
PP
1315 static_assert(!std::is_const<LibObjT>::value,
1316 "Not available with `bt2::ConstStreamClass`.");
74fc764d 1317
341a67c4 1318 const auto libObjPtr = bt_event_class_create(this->libObjPtr());
74fc764d
PP
1319
1320 internal::validateCreatedObjPtr(libObjPtr);
c9c0b6e2 1321 return EventClass::Shared::createWithoutRef(libObjPtr);
74fc764d
PP
1322 }
1323
dcb8ae9b 1324 EventClass::Shared createEventClass(const std::uint64_t id) const
74fc764d 1325 {
5c895f64
PP
1326 static_assert(!std::is_const<LibObjT>::value,
1327 "Not available with `bt2::ConstStreamClass`.");
74fc764d 1328
341a67c4 1329 const auto libObjPtr = bt_event_class_create_with_id(this->libObjPtr(), id);
74fc764d
PP
1330
1331 internal::validateCreatedObjPtr(libObjPtr);
c9c0b6e2 1332 return EventClass::Shared::createWithoutRef(libObjPtr);
74fc764d
PP
1333 }
1334
dcb8ae9b 1335 _TraceClass traceClass() const noexcept;
74fc764d
PP
1336
1337 std::uint64_t id() const noexcept
1338 {
341a67c4 1339 return bt_stream_class_get_id(this->libObjPtr());
74fc764d
PP
1340 }
1341
dcb8ae9b 1342 void name(const char * const name) const
74fc764d 1343 {
5c895f64
PP
1344 static_assert(!std::is_const<LibObjT>::value,
1345 "Not available with `bt2::ConstStreamClass`.");
74fc764d 1346
341a67c4 1347 const auto status = bt_stream_class_set_name(this->libObjPtr(), name);
74fc764d
PP
1348
1349 if (status == BT_STREAM_CLASS_SET_NAME_STATUS_MEMORY_ERROR) {
39278ebc 1350 throw MemoryError {};
74fc764d
PP
1351 }
1352 }
1353
dcb8ae9b 1354 void name(const std::string& name) const
74fc764d
PP
1355 {
1356 this->name(name.data());
1357 }
1358
5cc5088c 1359 const char *name() const noexcept
74fc764d 1360 {
5cc5088c 1361 return bt_stream_class_get_name(this->libObjPtr());
74fc764d
PP
1362 }
1363
dcb8ae9b 1364 void assignsAutomaticEventClassId(const bool val) const noexcept
74fc764d 1365 {
5c895f64
PP
1366 static_assert(!std::is_const<LibObjT>::value,
1367 "Not available with `bt2::ConstStreamClass`.");
74fc764d 1368
341a67c4 1369 bt_stream_class_set_assigns_automatic_event_class_id(this->libObjPtr(),
74fc764d
PP
1370 static_cast<bt_bool>(val));
1371 }
1372
1373 bool assignsAutomaticEventClassId() const noexcept
1374 {
1375 return static_cast<bool>(
341a67c4 1376 bt_stream_class_assigns_automatic_event_class_id(this->libObjPtr()));
74fc764d
PP
1377 }
1378
dcb8ae9b 1379 void assignsAutomaticStreamId(const bool val) const noexcept
74fc764d 1380 {
5c895f64
PP
1381 static_assert(!std::is_const<LibObjT>::value,
1382 "Not available with `bt2::ConstStreamClass`.");
74fc764d 1383
341a67c4 1384 bt_stream_class_set_assigns_automatic_stream_id(this->libObjPtr(),
74fc764d
PP
1385 static_cast<bt_bool>(val));
1386 }
1387
1388 bool assignsAutomaticStreamId() const noexcept
1389 {
341a67c4 1390 return static_cast<bool>(bt_stream_class_assigns_automatic_stream_id(this->libObjPtr()));
74fc764d
PP
1391 }
1392
1393 void supportsPackets(const bool supportsPackets, const bool withBeginningDefaultClkSnapshot,
dcb8ae9b 1394 const bool withEndDefaultClkSnapshot) const noexcept
74fc764d 1395 {
5c895f64
PP
1396 static_assert(!std::is_const<LibObjT>::value,
1397 "Not available with `bt2::ConstStreamClass`.");
74fc764d 1398
341a67c4 1399 bt_stream_class_set_supports_packets(this->libObjPtr(),
74fc764d
PP
1400 static_cast<bt_bool>(supportsPackets),
1401 static_cast<bt_bool>(withBeginningDefaultClkSnapshot),
1402 static_cast<bt_bool>(withEndDefaultClkSnapshot));
1403 }
1404
1405 bool supportsPackets() const noexcept
1406 {
341a67c4 1407 return static_cast<bool>(bt_stream_class_supports_packets(this->libObjPtr()));
74fc764d
PP
1408 }
1409
1410 bool packetsHaveBeginningClockSnapshot() const noexcept
1411 {
1412 return static_cast<bool>(
341a67c4 1413 bt_stream_class_packets_have_beginning_default_clock_snapshot(this->libObjPtr()));
74fc764d
PP
1414 }
1415
1416 bool packetsHaveEndClockSnapshot() const noexcept
1417 {
1418 return static_cast<bool>(
341a67c4 1419 bt_stream_class_packets_have_end_default_clock_snapshot(this->libObjPtr()));
74fc764d
PP
1420 }
1421
1422 void supportsDiscardedEvents(const bool supportsDiscardedEvents,
dcb8ae9b 1423 const bool withDefaultClkSnapshots) const noexcept
74fc764d 1424 {
5c895f64
PP
1425 static_assert(!std::is_const<LibObjT>::value,
1426 "Not available with `bt2::ConstStreamClass`.");
74fc764d
PP
1427
1428 bt_stream_class_set_supports_discarded_events(
7593e646 1429 this->libObjPtr(), static_cast<bt_bool>(supportsDiscardedEvents),
74fc764d
PP
1430 static_cast<bt_bool>(withDefaultClkSnapshots));
1431 }
1432
1433 bool supportsDiscardedEvents() const noexcept
1434 {
341a67c4 1435 return static_cast<bool>(bt_stream_class_supports_discarded_events(this->libObjPtr()));
74fc764d
PP
1436 }
1437
1438 bool discardedEventsHaveDefaultClockSnapshots() const noexcept
1439 {
1440 return static_cast<bool>(
341a67c4 1441 bt_stream_class_discarded_events_have_default_clock_snapshots(this->libObjPtr()));
74fc764d
PP
1442 }
1443
1444 void supportsDiscardedPackets(const bool supportsDiscardedPackets,
dcb8ae9b 1445 const bool withDefaultClkSnapshots) const noexcept
74fc764d 1446 {
5c895f64
PP
1447 static_assert(!std::is_const<LibObjT>::value,
1448 "Not available with `bt2::ConstStreamClass`.");
74fc764d
PP
1449
1450 bt_stream_class_set_supports_discarded_packets(
7593e646 1451 this->libObjPtr(), static_cast<bt_bool>(supportsDiscardedPackets),
74fc764d
PP
1452 static_cast<bt_bool>(withDefaultClkSnapshots));
1453 }
1454
1455 bool supportsDiscardedPackets() const noexcept
1456 {
341a67c4 1457 return static_cast<bool>(bt_stream_class_supports_discarded_packets(this->libObjPtr()));
74fc764d
PP
1458 }
1459
1460 bool discardedPacketsHaveDefaultClockSnapshots() const noexcept
1461 {
1462 return static_cast<bool>(
341a67c4 1463 bt_stream_class_discarded_packets_have_default_clock_snapshots(this->libObjPtr()));
74fc764d
PP
1464 }
1465
dcb8ae9b 1466 void defaultClockClass(const ClockClass clkCls) const
74fc764d 1467 {
5c895f64
PP
1468 static_assert(!std::is_const<LibObjT>::value,
1469 "Not available with `bt2::ConstStreamClass`.");
74fc764d
PP
1470
1471 const auto status =
341a67c4 1472 bt_stream_class_set_default_clock_class(this->libObjPtr(), clkCls.libObjPtr());
74fc764d
PP
1473
1474 BT_ASSERT(status == BT_STREAM_CLASS_SET_DEFAULT_CLOCK_CLASS_STATUS_OK);
1475 }
1476
dcb8ae9b 1477 nonstd::optional<_ClockClass> defaultClockClass() const noexcept
74fc764d 1478 {
341a67c4 1479 const auto libObjPtr = _Spec::defaultClockClass(this->libObjPtr());
74fc764d
PP
1480
1481 if (libObjPtr) {
1482 return _ClockClass {libObjPtr};
1483 }
1484
1485 return nonstd::nullopt;
1486 }
1487
c0b73c63 1488 std::uint64_t length() const noexcept
74fc764d 1489 {
341a67c4 1490 return bt_stream_class_get_event_class_count(this->libObjPtr());
74fc764d
PP
1491 }
1492
dcb8ae9b 1493 _EventClass operator[](const std::uint64_t index) const noexcept
74fc764d 1494 {
341a67c4 1495 return _EventClass {_Spec::eventClassByIndex(this->libObjPtr(), index)};
74fc764d
PP
1496 }
1497
dcb8ae9b 1498 nonstd::optional<_EventClass> eventClassById(const std::uint64_t id) const noexcept
74fc764d 1499 {
341a67c4 1500 const auto libObjPtr = _Spec::eventClassById(this->libObjPtr(), id);
74fc764d
PP
1501
1502 if (libObjPtr) {
1503 return _EventClass {libObjPtr};
1504 }
1505
1506 return nonstd::nullopt;
1507 }
1508
dcb8ae9b 1509 void packetContextFieldClass(const StructureFieldClass fc) const
74fc764d 1510 {
5c895f64
PP
1511 static_assert(!std::is_const<LibObjT>::value,
1512 "Not available with `bt2::ConstStreamClass`.");
74fc764d
PP
1513
1514 const auto status =
341a67c4 1515 bt_stream_class_set_packet_context_field_class(this->libObjPtr(), fc.libObjPtr());
74fc764d 1516
9ce695a6 1517 if (status == BT_STREAM_CLASS_SET_FIELD_CLASS_STATUS_MEMORY_ERROR) {
39278ebc 1518 throw MemoryError {};
74fc764d
PP
1519 }
1520 }
1521
dcb8ae9b 1522 nonstd::optional<_StructureFieldClass> packetContextFieldClass() const noexcept
74fc764d 1523 {
341a67c4 1524 const auto libObjPtr = _Spec::packetContextFieldClass(this->libObjPtr());
74fc764d
PP
1525
1526 if (libObjPtr) {
1527 return _StructureFieldClass {libObjPtr};
1528 }
1529
1530 return nonstd::nullopt;
1531 }
1532
dcb8ae9b 1533 void eventCommonContextFieldClass(const StructureFieldClass fc) const
74fc764d 1534 {
5c895f64
PP
1535 static_assert(!std::is_const<LibObjT>::value,
1536 "Not available with `bt2::ConstStreamClass`.");
74fc764d 1537
341a67c4
FD
1538 const auto status =
1539 bt_stream_class_set_event_common_context_field_class(this->libObjPtr(), fc.libObjPtr());
74fc764d 1540
9ce695a6 1541 if (status == BT_STREAM_CLASS_SET_FIELD_CLASS_STATUS_MEMORY_ERROR) {
39278ebc 1542 throw MemoryError {};
74fc764d
PP
1543 }
1544 }
1545
dcb8ae9b 1546 nonstd::optional<_StructureFieldClass> eventCommonContextFieldClass() const noexcept
74fc764d 1547 {
341a67c4 1548 const auto libObjPtr = _Spec::eventCommonContextFieldClass(this->libObjPtr());
74fc764d
PP
1549
1550 if (libObjPtr) {
1551 return _StructureFieldClass {libObjPtr};
1552 }
1553
1554 return nonstd::nullopt;
1555 }
1556
1557 template <typename LibValT>
b7ffa6f0 1558 void userAttributes(const CommonMapValue<LibValT> userAttrs) const noexcept
74fc764d 1559 {
5c895f64
PP
1560 static_assert(!std::is_const<LibObjT>::value,
1561 "Not available with `bt2::ConstStreamClass`.");
74fc764d 1562
341a67c4 1563 bt_stream_class_set_user_attributes(this->libObjPtr(), userAttrs.libObjPtr());
74fc764d
PP
1564 }
1565
dcb8ae9b 1566 UserAttributes userAttributes() const noexcept
74fc764d 1567 {
341a67c4 1568 return UserAttributes {_Spec::userAttributes(this->libObjPtr())};
74fc764d
PP
1569 }
1570
1571 Shared shared() const noexcept
1572 {
c9c0b6e2 1573 return Shared::createWithRef(*this);
74fc764d
PP
1574 }
1575};
1576
1577using StreamClass = CommonStreamClass<bt_stream_class>;
1578using ConstStreamClass = CommonStreamClass<const bt_stream_class>;
1579
4927bae7
PP
1580namespace internal {
1581
1582struct StreamClassTypeDescr
1583{
1584 using Const = ConstStreamClass;
1585 using NonConst = StreamClass;
1586};
1587
1588template <>
1589struct TypeDescr<StreamClass> : public StreamClassTypeDescr
1590{
1591};
1592
1593template <>
1594struct TypeDescr<ConstStreamClass> : public StreamClassTypeDescr
1595{
1596};
1597
1598} /* namespace internal */
1599
74fc764d 1600template <typename LibObjT>
dcb8ae9b
PP
1601typename CommonEventClass<LibObjT>::_StreamClass
1602CommonEventClass<LibObjT>::streamClass() const noexcept
74fc764d 1603{
341a67c4 1604 return _StreamClass {_Spec::streamClass(this->libObjPtr())};
74fc764d
PP
1605}
1606
1607template <typename LibObjT>
dcb8ae9b 1608typename CommonStream<LibObjT>::Class CommonStream<LibObjT>::cls() const noexcept
74fc764d 1609{
341a67c4 1610 return Class {_Spec::cls(this->libObjPtr())};
74fc764d
PP
1611}
1612
1613namespace internal {
1614
1615struct TraceClassRefFuncs final
1616{
c677c492 1617 static void get(const bt_trace_class * const libObjPtr) noexcept
74fc764d
PP
1618 {
1619 bt_trace_class_get_ref(libObjPtr);
1620 }
1621
c677c492 1622 static void put(const bt_trace_class * const libObjPtr) noexcept
74fc764d
PP
1623 {
1624 bt_trace_class_put_ref(libObjPtr);
1625 }
1626};
1627
1628template <typename LibObjT>
1629struct CommonTraceClassSpec;
1630
b5f55e9f 1631/* Functions specific to mutable stream classes */
74fc764d
PP
1632template <>
1633struct CommonTraceClassSpec<bt_trace_class> final
1634{
1635 static bt_stream_class *streamClassByIndex(bt_trace_class * const libObjPtr,
1636 const std::uint64_t index) noexcept
1637 {
1638 return bt_trace_class_borrow_stream_class_by_index(libObjPtr, index);
1639 }
1640
1641 static bt_stream_class *streamClassById(bt_trace_class * const libObjPtr,
1642 const std::uint64_t id) noexcept
1643 {
1644 return bt_trace_class_borrow_stream_class_by_id(libObjPtr, id);
1645 }
1646
1647 static bt_value *userAttributes(bt_trace_class * const libObjPtr) noexcept
1648 {
1649 return bt_trace_class_borrow_user_attributes(libObjPtr);
1650 }
1651};
1652
b5f55e9f 1653/* Functions specific to constant stream classes */
74fc764d
PP
1654template <>
1655struct CommonTraceClassSpec<const bt_trace_class> final
1656{
1657 static const bt_stream_class *streamClassByIndex(const bt_trace_class * const libObjPtr,
1658 const std::uint64_t index) noexcept
1659 {
1660 return bt_trace_class_borrow_stream_class_by_index_const(libObjPtr, index);
1661 }
1662
1663 static const bt_stream_class *streamClassById(const bt_trace_class * const libObjPtr,
1664 const std::uint64_t id) noexcept
1665 {
1666 return bt_trace_class_borrow_stream_class_by_id_const(libObjPtr, id);
1667 }
1668
1669 static const bt_value *userAttributes(const bt_trace_class * const libObjPtr) noexcept
1670 {
1671 return bt_trace_class_borrow_user_attributes_const(libObjPtr);
1672 }
1673};
1674
b5f55e9f 1675} /* namespace internal */
74fc764d
PP
1676
1677template <typename LibObjT>
0d218157 1678class CommonTraceClass final : public BorrowedObject<LibObjT>
74fc764d
PP
1679{
1680private:
0d218157
PP
1681 using typename BorrowedObject<LibObjT>::_ThisBorrowedObject;
1682 using typename BorrowedObject<LibObjT>::_LibObjPtr;
74fc764d 1683 using _Spec = internal::CommonTraceClassSpec<LibObjT>;
74fc764d 1684
8047a175
PP
1685 using _StreamClass = internal::DepType<LibObjT, CommonStreamClass<bt_stream_class>,
1686 CommonStreamClass<const bt_stream_class>>;
74fc764d
PP
1687
1688public:
ac19444e 1689 using Shared = SharedObject<CommonTraceClass, LibObjT, internal::TraceClassRefFuncs>;
8047a175 1690 using UserAttributes = internal::DepUserAttrs<LibObjT>;
74fc764d 1691
0d218157 1692 explicit CommonTraceClass(const _LibObjPtr libObjPtr) noexcept : _ThisBorrowedObject {libObjPtr}
74fc764d
PP
1693 {
1694 }
1695
1696 template <typename OtherLibObjT>
100fa861 1697 CommonTraceClass(const CommonTraceClass<OtherLibObjT> traceClass) noexcept :
0d218157 1698 _ThisBorrowedObject {traceClass}
74fc764d
PP
1699 {
1700 }
1701
1702 template <typename OtherLibObjT>
ac30a470 1703 CommonTraceClass operator=(const CommonTraceClass<OtherLibObjT> traceClass) noexcept
74fc764d 1704 {
0d218157 1705 _ThisBorrowedObject::operator=(traceClass);
74fc764d
PP
1706 return *this;
1707 }
1708
328a274a
PP
1709 CommonTraceClass<const bt_trace_class> asConst() const noexcept
1710 {
1711 return CommonTraceClass<const bt_trace_class> {*this};
1712 }
1713
dcb8ae9b 1714 Trace::Shared instantiate() const
74fc764d 1715 {
5c895f64 1716 static_assert(!std::is_const<LibObjT>::value, "Not available with `bt2::ConstTraceClass`.");
74fc764d 1717
341a67c4 1718 const auto libObjPtr = bt_trace_create(this->libObjPtr());
74fc764d
PP
1719
1720 internal::validateCreatedObjPtr(libObjPtr);
c9c0b6e2 1721 return Trace::Shared::createWithoutRef(libObjPtr);
74fc764d
PP
1722 }
1723
dcb8ae9b 1724 StreamClass::Shared createStreamClass() const
74fc764d 1725 {
5c895f64 1726 static_assert(!std::is_const<LibObjT>::value, "Not available with `bt2::ConstTraceClass`.");
74fc764d 1727
341a67c4 1728 const auto libObjPtr = bt_stream_class_create(this->libObjPtr());
74fc764d
PP
1729
1730 internal::validateCreatedObjPtr(libObjPtr);
c9c0b6e2 1731 return StreamClass::Shared::createWithoutRef(libObjPtr);
74fc764d
PP
1732 }
1733
dcb8ae9b 1734 StreamClass::Shared createStreamClass(const std::uint64_t id) const
74fc764d 1735 {
5c895f64 1736 static_assert(!std::is_const<LibObjT>::value, "Not available with `bt2::ConstTraceClass`.");
74fc764d 1737
341a67c4 1738 const auto libObjPtr = bt_stream_class_create_with_id(this->libObjPtr(), id);
74fc764d
PP
1739
1740 internal::validateCreatedObjPtr(libObjPtr);
c9c0b6e2 1741 return StreamClass::Shared::createWithoutRef(libObjPtr);
74fc764d
PP
1742 }
1743
dcb8ae9b 1744 FieldClass::Shared createBoolFieldClass() const
74fc764d 1745 {
5c895f64 1746 static_assert(!std::is_const<LibObjT>::value, "Not available with `bt2::ConstTraceClass`.");
74fc764d 1747
341a67c4 1748 const auto libObjPtr = bt_field_class_bool_create(this->libObjPtr());
74fc764d
PP
1749
1750 internal::validateCreatedObjPtr(libObjPtr);
c9c0b6e2 1751 return FieldClass::Shared::createWithoutRef(libObjPtr);
74fc764d
PP
1752 }
1753
dcb8ae9b 1754 BitArrayFieldClass::Shared createBitArrayFieldClass(const std::uint64_t length) const
74fc764d 1755 {
5c895f64 1756 static_assert(!std::is_const<LibObjT>::value, "Not available with `bt2::ConstTraceClass`.");
74fc764d 1757
341a67c4 1758 const auto libObjPtr = bt_field_class_bit_array_create(this->libObjPtr(), length);
74fc764d
PP
1759
1760 internal::validateCreatedObjPtr(libObjPtr);
c9c0b6e2 1761 return BitArrayFieldClass::Shared::createWithoutRef(libObjPtr);
74fc764d
PP
1762 }
1763
dcb8ae9b 1764 IntegerFieldClass::Shared createUnsignedIntegerFieldClass() const
74fc764d 1765 {
5c895f64 1766 static_assert(!std::is_const<LibObjT>::value, "Not available with `bt2::ConstTraceClass`.");
74fc764d 1767
341a67c4 1768 const auto libObjPtr = bt_field_class_integer_unsigned_create(this->libObjPtr());
74fc764d
PP
1769
1770 internal::validateCreatedObjPtr(libObjPtr);
c9c0b6e2 1771 return IntegerFieldClass::Shared::createWithoutRef(libObjPtr);
74fc764d
PP
1772 }
1773
dcb8ae9b 1774 IntegerFieldClass::Shared createSignedIntegerFieldClass() const
74fc764d 1775 {
5c895f64 1776 static_assert(!std::is_const<LibObjT>::value, "Not available with `bt2::ConstTraceClass`.");
74fc764d 1777
341a67c4 1778 const auto libObjPtr = bt_field_class_integer_signed_create(this->libObjPtr());
74fc764d
PP
1779
1780 internal::validateCreatedObjPtr(libObjPtr);
c9c0b6e2 1781 return IntegerFieldClass::Shared::createWithoutRef(libObjPtr);
74fc764d
PP
1782 }
1783
dcb8ae9b 1784 UnsignedEnumerationFieldClass::Shared createUnsignedEnumerationFieldClass() const
74fc764d 1785 {
5c895f64 1786 static_assert(!std::is_const<LibObjT>::value, "Not available with `bt2::ConstTraceClass`.");
74fc764d 1787
341a67c4 1788 const auto libObjPtr = bt_field_class_enumeration_unsigned_create(this->libObjPtr());
74fc764d
PP
1789
1790 internal::validateCreatedObjPtr(libObjPtr);
c9c0b6e2 1791 return UnsignedEnumerationFieldClass::Shared::createWithoutRef(libObjPtr);
74fc764d
PP
1792 }
1793
dcb8ae9b 1794 SignedEnumerationFieldClass::Shared createSignedEnumerationFieldClass() const
74fc764d 1795 {
5c895f64 1796 static_assert(!std::is_const<LibObjT>::value, "Not available with `bt2::ConstTraceClass`.");
74fc764d 1797
341a67c4 1798 const auto libObjPtr = bt_field_class_enumeration_signed_create(this->libObjPtr());
74fc764d
PP
1799
1800 internal::validateCreatedObjPtr(libObjPtr);
c9c0b6e2 1801 return SignedEnumerationFieldClass::Shared::createWithoutRef(libObjPtr);
74fc764d
PP
1802 }
1803
dcb8ae9b 1804 FieldClass::Shared createSinglePrecisionRealFieldClass() const
74fc764d 1805 {
5c895f64 1806 static_assert(!std::is_const<LibObjT>::value, "Not available with `bt2::ConstTraceClass`.");
74fc764d 1807
341a67c4 1808 const auto libObjPtr = bt_field_class_real_single_precision_create(this->libObjPtr());
74fc764d
PP
1809
1810 internal::validateCreatedObjPtr(libObjPtr);
c9c0b6e2 1811 return FieldClass::Shared::createWithoutRef(libObjPtr);
74fc764d
PP
1812 }
1813
dcb8ae9b 1814 FieldClass::Shared createDoublePrecisionRealFieldClass() const
74fc764d 1815 {
5c895f64 1816 static_assert(!std::is_const<LibObjT>::value, "Not available with `bt2::ConstTraceClass`.");
74fc764d 1817
341a67c4 1818 const auto libObjPtr = bt_field_class_real_double_precision_create(this->libObjPtr());
74fc764d
PP
1819
1820 internal::validateCreatedObjPtr(libObjPtr);
c9c0b6e2 1821 return FieldClass::Shared::createWithoutRef(libObjPtr);
74fc764d
PP
1822 }
1823
dcb8ae9b 1824 FieldClass::Shared createStringFieldClass() const
74fc764d 1825 {
5c895f64 1826 static_assert(!std::is_const<LibObjT>::value, "Not available with `bt2::ConstTraceClass`.");
74fc764d 1827
341a67c4 1828 const auto libObjPtr = bt_field_class_string_create(this->libObjPtr());
74fc764d
PP
1829
1830 internal::validateCreatedObjPtr(libObjPtr);
c9c0b6e2 1831 return FieldClass::Shared::createWithoutRef(libObjPtr);
74fc764d
PP
1832 }
1833
100fa861 1834 StaticArrayFieldClass::Shared createStaticArrayFieldClass(const FieldClass elementFieldClass,
dcb8ae9b 1835 const std::uint64_t length) const
74fc764d 1836 {
5c895f64 1837 static_assert(!std::is_const<LibObjT>::value, "Not available with `bt2::ConstTraceClass`.");
74fc764d
PP
1838
1839 const auto libObjPtr = bt_field_class_array_static_create(
341a67c4 1840 this->libObjPtr(), elementFieldClass.libObjPtr(), length);
74fc764d
PP
1841
1842 internal::validateCreatedObjPtr(libObjPtr);
c9c0b6e2 1843 return StaticArrayFieldClass::Shared::createWithoutRef(libObjPtr);
74fc764d
PP
1844 }
1845
dcb8ae9b 1846 ArrayFieldClass::Shared createDynamicArrayFieldClass(const FieldClass elementFieldClass) const
74fc764d 1847 {
5c895f64 1848 static_assert(!std::is_const<LibObjT>::value, "Not available with `bt2::ConstTraceClass`.");
74fc764d
PP
1849
1850 const auto libObjPtr = bt_field_class_array_dynamic_create(
341a67c4 1851 this->libObjPtr(), elementFieldClass.libObjPtr(), nullptr);
74fc764d
PP
1852
1853 internal::validateCreatedObjPtr(libObjPtr);
c9c0b6e2 1854 return ArrayFieldClass::Shared::createWithoutRef(libObjPtr);
74fc764d
PP
1855 }
1856
1857 DynamicArrayWithLengthFieldClass::Shared
100fa861 1858 createDynamicArrayFieldClass(const FieldClass elementFieldClass,
dcb8ae9b 1859 const IntegerFieldClass lengthFieldClass) const
74fc764d 1860 {
5c895f64 1861 static_assert(!std::is_const<LibObjT>::value, "Not available with `bt2::ConstTraceClass`.");
74fc764d
PP
1862
1863 const auto libObjPtr = bt_field_class_array_dynamic_create(
341a67c4 1864 this->libObjPtr(), elementFieldClass.libObjPtr(), lengthFieldClass.libObjPtr());
74fc764d
PP
1865
1866 internal::validateCreatedObjPtr(libObjPtr);
c9c0b6e2 1867 return DynamicArrayWithLengthFieldClass::Shared::createWithoutRef(libObjPtr);
74fc764d
PP
1868 }
1869
dcb8ae9b 1870 StructureFieldClass::Shared createStructureFieldClass() const
74fc764d 1871 {
5c895f64 1872 static_assert(!std::is_const<LibObjT>::value, "Not available with `bt2::ConstTraceClass`.");
74fc764d 1873
341a67c4 1874 const auto libObjPtr = bt_field_class_structure_create(this->libObjPtr());
74fc764d
PP
1875
1876 internal::validateCreatedObjPtr(libObjPtr);
c9c0b6e2 1877 return StructureFieldClass::Shared::createWithoutRef(libObjPtr);
74fc764d
PP
1878 }
1879
dcb8ae9b 1880 OptionFieldClass::Shared createOptionFieldClass(const FieldClass optionalFieldClass) const
74fc764d 1881 {
5c895f64 1882 static_assert(!std::is_const<LibObjT>::value, "Not available with `bt2::ConstTraceClass`.");
74fc764d
PP
1883
1884 const auto libObjPtr = bt_field_class_option_without_selector_create(
341a67c4 1885 this->libObjPtr(), optionalFieldClass.libObjPtr());
74fc764d
PP
1886
1887 internal::validateCreatedObjPtr(libObjPtr);
c9c0b6e2 1888 return OptionFieldClass::Shared::createWithoutRef(libObjPtr);
74fc764d
PP
1889 }
1890
1891 OptionWithBoolSelectorFieldClass::Shared
100fa861 1892 createOptionWithBoolSelectorFieldClass(const FieldClass optionalFieldClass,
dcb8ae9b 1893 const FieldClass selectorFieldClass) const
74fc764d 1894 {
5c895f64 1895 static_assert(!std::is_const<LibObjT>::value, "Not available with `bt2::ConstTraceClass`.");
74fc764d
PP
1896
1897 const auto libObjPtr = bt_field_class_option_with_selector_field_bool_create(
341a67c4 1898 this->libObjPtr(), optionalFieldClass.libObjPtr(), selectorFieldClass.libObjPtr());
74fc764d
PP
1899
1900 internal::validateCreatedObjPtr(libObjPtr);
c9c0b6e2 1901 return OptionWithBoolSelectorFieldClass::Shared::createWithoutRef(libObjPtr);
74fc764d
PP
1902 }
1903
1904 OptionWithUnsignedIntegerSelectorFieldClass::Shared
dcb8ae9b
PP
1905 createOptionWithUnsignedIntegerSelectorFieldClass(
1906 const FieldClass optionalFieldClass, const IntegerFieldClass selectorFieldClass,
1907 const ConstUnsignedIntegerRangeSet ranges) const
74fc764d 1908 {
5c895f64 1909 static_assert(!std::is_const<LibObjT>::value, "Not available with `bt2::ConstTraceClass`.");
74fc764d
PP
1910
1911 const auto libObjPtr = bt_field_class_option_with_selector_field_integer_unsigned_create(
341a67c4
FD
1912 this->libObjPtr(), optionalFieldClass.libObjPtr(), selectorFieldClass.libObjPtr(),
1913 ranges.libObjPtr());
74fc764d
PP
1914
1915 internal::validateCreatedObjPtr(libObjPtr);
c9c0b6e2 1916 return OptionWithUnsignedIntegerSelectorFieldClass::Shared::createWithoutRef(libObjPtr);
74fc764d
PP
1917 }
1918
1919 OptionWithSignedIntegerSelectorFieldClass::Shared
100fa861
PP
1920 createOptionWithSignedIntegerSelectorFieldClass(const FieldClass optionalFieldClass,
1921 const IntegerFieldClass selectorFieldClass,
dcb8ae9b 1922 const ConstSignedIntegerRangeSet ranges) const
74fc764d 1923 {
5c895f64 1924 static_assert(!std::is_const<LibObjT>::value, "Not available with `bt2::ConstTraceClass`.");
74fc764d
PP
1925
1926 const auto libObjPtr = bt_field_class_option_with_selector_field_integer_signed_create(
341a67c4
FD
1927 this->libObjPtr(), optionalFieldClass.libObjPtr(), selectorFieldClass.libObjPtr(),
1928 ranges.libObjPtr());
74fc764d
PP
1929
1930 internal::validateCreatedObjPtr(libObjPtr);
c9c0b6e2 1931 return OptionWithSignedIntegerSelectorFieldClass::Shared::createWithoutRef(libObjPtr);
74fc764d
PP
1932 }
1933
dcb8ae9b 1934 VariantWithoutSelectorFieldClass::Shared createVariantFieldClass() const
74fc764d 1935 {
5c895f64 1936 static_assert(!std::is_const<LibObjT>::value, "Not available with `bt2::ConstTraceClass`.");
74fc764d 1937
341a67c4 1938 const auto libObjPtr = bt_field_class_variant_create(this->libObjPtr(), nullptr);
74fc764d
PP
1939
1940 internal::validateCreatedObjPtr(libObjPtr);
c9c0b6e2 1941 return VariantWithoutSelectorFieldClass::Shared::createWithoutRef(libObjPtr);
74fc764d
PP
1942 }
1943
1944 VariantWithUnsignedIntegerSelectorFieldClass::Shared
dcb8ae9b
PP
1945 createVariantWithUnsignedIntegerSelectorFieldClass(
1946 const IntegerFieldClass selectorFieldClass) const
74fc764d 1947 {
69d96f80
FD
1948 return this->_createVariantWithIntegerSelectorFieldClass<
1949 VariantWithUnsignedIntegerSelectorFieldClass>(selectorFieldClass);
74fc764d
PP
1950 }
1951
1952 VariantWithSignedIntegerSelectorFieldClass::Shared
dcb8ae9b
PP
1953 createVariantWithSignedIntegerSelectorFieldClass(
1954 const IntegerFieldClass selectorFieldClass) const
74fc764d 1955 {
69d96f80
FD
1956 return this->_createVariantWithIntegerSelectorFieldClass<
1957 VariantWithSignedIntegerSelectorFieldClass>(selectorFieldClass);
74fc764d
PP
1958 }
1959
dcb8ae9b 1960 void assignsAutomaticStreamClassId(const bool val) const noexcept
74fc764d 1961 {
5c895f64 1962 static_assert(!std::is_const<LibObjT>::value, "Not available with `bt2::ConstTraceClass`.");
74fc764d 1963
341a67c4 1964 bt_trace_class_set_assigns_automatic_stream_class_id(this->libObjPtr(),
74fc764d
PP
1965 static_cast<bt_bool>(val));
1966 }
1967
1968 bool assignsAutomaticStreamClassId() const noexcept
1969 {
1970 return static_cast<bool>(
341a67c4 1971 bt_trace_class_assigns_automatic_stream_class_id(this->libObjPtr()));
74fc764d
PP
1972 }
1973
c0b73c63 1974 std::uint64_t length() const noexcept
74fc764d 1975 {
341a67c4 1976 return bt_trace_class_get_stream_class_count(this->libObjPtr());
74fc764d
PP
1977 }
1978
dcb8ae9b 1979 _StreamClass operator[](const std::uint64_t index) const noexcept
74fc764d 1980 {
341a67c4 1981 return _StreamClass {_Spec::streamClassByIndex(this->libObjPtr(), index)};
74fc764d
PP
1982 }
1983
dcb8ae9b 1984 nonstd::optional<_StreamClass> streamClassById(const std::uint64_t id) const noexcept
74fc764d 1985 {
341a67c4 1986 const auto libObjPtr = _Spec::streamClassById(this->libObjPtr(), id);
74fc764d
PP
1987
1988 if (libObjPtr) {
1989 return _StreamClass {libObjPtr};
1990 }
1991
1992 return nonstd::nullopt;
1993 }
1994
1995 template <typename LibValT>
b7ffa6f0 1996 void userAttributes(const CommonMapValue<LibValT> userAttrs) const noexcept
74fc764d 1997 {
5c895f64 1998 static_assert(!std::is_const<LibObjT>::value, "Not available with `bt2::ConstTraceClass`.");
74fc764d 1999
341a67c4 2000 bt_trace_class_set_user_attributes(this->libObjPtr(), userAttrs.libObjPtr());
74fc764d
PP
2001 }
2002
dcb8ae9b 2003 UserAttributes userAttributes() const noexcept
74fc764d 2004 {
341a67c4 2005 return UserAttributes {_Spec::userAttributes(this->libObjPtr())};
74fc764d
PP
2006 }
2007
2008 Shared shared() const noexcept
2009 {
c9c0b6e2 2010 return Shared::createWithRef(*this);
74fc764d
PP
2011 }
2012
2013private:
69d96f80
FD
2014 template <typename ObjT>
2015 typename ObjT::Shared
dcb8ae9b 2016 _createVariantWithIntegerSelectorFieldClass(const IntegerFieldClass selectorFieldClass) const
74fc764d 2017 {
5c895f64 2018 static_assert(!std::is_const<LibObjT>::value, "Not available with `bt2::ConstTraceClass`.");
74fc764d
PP
2019
2020 const auto libObjPtr =
341a67c4 2021 bt_field_class_variant_create(this->libObjPtr(), selectorFieldClass.libObjPtr());
74fc764d
PP
2022
2023 internal::validateCreatedObjPtr(libObjPtr);
69d96f80 2024 return ObjT::Shared::createWithoutRef(libObjPtr);
74fc764d
PP
2025 }
2026};
2027
2028using TraceClass = CommonTraceClass<bt_trace_class>;
2029using ConstTraceClass = CommonTraceClass<const bt_trace_class>;
2030
4927bae7
PP
2031namespace internal {
2032
2033struct TraceClassTypeDescr
2034{
2035 using Const = ConstTraceClass;
2036 using NonConst = TraceClass;
2037};
2038
2039template <>
2040struct TypeDescr<TraceClass> : public TraceClassTypeDescr
2041{
2042};
2043
2044template <>
2045struct TypeDescr<ConstTraceClass> : public TraceClassTypeDescr
2046{
2047};
2048
2049} /* namespace internal */
2050
74fc764d 2051template <typename LibObjT>
dcb8ae9b
PP
2052typename CommonStreamClass<LibObjT>::_TraceClass
2053CommonStreamClass<LibObjT>::traceClass() const noexcept
74fc764d 2054{
341a67c4 2055 return _TraceClass {_Spec::traceClass(this->libObjPtr())};
74fc764d
PP
2056}
2057
2058template <typename LibObjT>
dcb8ae9b 2059typename CommonTrace<LibObjT>::Class CommonTrace<LibObjT>::cls() const noexcept
74fc764d 2060{
341a67c4 2061 return Class {_Spec::cls(this->libObjPtr())};
74fc764d
PP
2062}
2063
b5f55e9f 2064} /* namespace bt2 */
74fc764d 2065
b5f55e9f 2066#endif /* BABELTRACE_CPP_COMMON_BT2_TRACE_IR_HPP */
This page took 0.132636 seconds and 4 git commands to generate.