cpp-common/bt2: remove redundant assertions
[babeltrace.git] / src / cpp-common / bt2 / field-path.hpp
CommitLineData
40ed8b01
PP
1/*
2 * Copyright (c) 2020 Philippe Proulx <pproulx@efficios.com>
3 *
4 * SPDX-License-Identifier: MIT
5 */
6
7#ifndef BABELTRACE_CPP_COMMON_BT2_FIELD_PATH_HPP
8#define BABELTRACE_CPP_COMMON_BT2_FIELD_PATH_HPP
9
10#include <cstdint>
c802cacb 11
40ed8b01
PP
12#include <babeltrace2/babeltrace.h>
13
14#include "common/assert.h"
c802cacb 15
56862ee2 16#include "borrowed-object-iterator.hpp"
0d218157 17#include "borrowed-object.hpp"
7f5cdaf0 18#include "shared-object.hpp"
40ed8b01
PP
19
20namespace bt2 {
21
22class ConstIndexFieldPathItem;
23
24enum class FieldPathItemType
25{
26 INDEX = BT_FIELD_PATH_ITEM_TYPE_INDEX,
27 CURRENT_ARRAY_ELEMENT = BT_FIELD_PATH_ITEM_TYPE_CURRENT_ARRAY_ELEMENT,
28 CURRENT_OPTION_CONTENT = BT_FIELD_PATH_ITEM_TYPE_CURRENT_OPTION_CONTENT,
29};
30
0d218157 31class ConstFieldPathItem : public BorrowedObject<const bt_field_path_item>
40ed8b01
PP
32{
33public:
d246c457 34 explicit ConstFieldPathItem(const LibObjPtr libObjPtr) noexcept :
0d218157 35 _ThisBorrowedObject {libObjPtr}
40ed8b01
PP
36 {
37 }
38
40ed8b01
PP
39 FieldPathItemType type() const noexcept
40 {
41 return static_cast<FieldPathItemType>(this->_libType());
42 }
43
44 bool isIndex() const noexcept
45 {
46 return this->_libType() == BT_FIELD_PATH_ITEM_TYPE_INDEX;
47 }
48
49 bool isCurrentArrayElement() const noexcept
50 {
51 return this->_libType() == BT_FIELD_PATH_ITEM_TYPE_CURRENT_ARRAY_ELEMENT;
52 }
53
54 bool isCurrentOptionContent() const noexcept
55 {
56 return this->_libType() == BT_FIELD_PATH_ITEM_TYPE_CURRENT_OPTION_CONTENT;
57 }
58
59 ConstIndexFieldPathItem asIndex() const noexcept;
60
61private:
62 bt_field_path_item_type _libType() const noexcept
63 {
341a67c4 64 return bt_field_path_item_get_type(this->libObjPtr());
40ed8b01
PP
65 }
66};
67
68class ConstIndexFieldPathItem final : public ConstFieldPathItem
69{
70public:
d246c457 71 explicit ConstIndexFieldPathItem(const LibObjPtr libObjPtr) noexcept :
40ed8b01
PP
72 ConstFieldPathItem {libObjPtr}
73 {
74 BT_ASSERT_DBG(this->isIndex());
75 }
76
40ed8b01
PP
77 std::uint64_t index() const noexcept
78 {
341a67c4 79 return bt_field_path_item_index_get_index(this->libObjPtr());
40ed8b01
PP
80 }
81};
82
83inline ConstIndexFieldPathItem ConstFieldPathItem::asIndex() const noexcept
84{
341a67c4 85 return ConstIndexFieldPathItem {this->libObjPtr()};
40ed8b01
PP
86}
87
88namespace internal {
89
90struct FieldPathRefFuncs final
91{
c677c492 92 static void get(const bt_field_path * const libObjPtr) noexcept
40ed8b01
PP
93 {
94 bt_field_path_get_ref(libObjPtr);
95 }
96
c677c492 97 static void put(const bt_field_path * const libObjPtr) noexcept
40ed8b01
PP
98 {
99 bt_field_path_put_ref(libObjPtr);
100 }
101};
102
b5f55e9f 103} /* namespace internal */
40ed8b01 104
0d218157 105class ConstFieldPath final : public BorrowedObject<const bt_field_path>
40ed8b01
PP
106{
107public:
7f5cdaf0 108 using Shared = SharedObject<ConstFieldPath, const bt_field_path, internal::FieldPathRefFuncs>;
56862ee2 109 using Iterator = BorrowedObjectIterator<ConstFieldPath>;
b3a04931 110
40ed8b01
PP
111 enum class Scope
112 {
113 PACKET_CONTEXT = BT_FIELD_PATH_SCOPE_PACKET_CONTEXT,
114 EVENT_COMMON_CONTEXT = BT_FIELD_PATH_SCOPE_EVENT_COMMON_CONTEXT,
115 EVENT_SPECIFIC_CONTEXT = BT_FIELD_PATH_SCOPE_EVENT_SPECIFIC_CONTEXT,
116 EVENT_PAYLOAD = BT_FIELD_PATH_SCOPE_EVENT_PAYLOAD,
117 };
118
d246c457 119 explicit ConstFieldPath(const LibObjPtr libObjPtr) noexcept : _ThisBorrowedObject {libObjPtr}
40ed8b01
PP
120 {
121 }
122
40ed8b01
PP
123 Scope rootScope() const noexcept
124 {
341a67c4 125 return static_cast<Scope>(bt_field_path_get_root_scope(this->libObjPtr()));
40ed8b01
PP
126 }
127
c0b73c63 128 std::uint64_t length() const noexcept
40ed8b01 129 {
341a67c4 130 return bt_field_path_get_item_count(this->libObjPtr());
40ed8b01
PP
131 }
132
133 ConstFieldPathItem operator[](const std::uint64_t index) const noexcept
134 {
135 return ConstFieldPathItem {
341a67c4 136 bt_field_path_borrow_item_by_index_const(this->libObjPtr(), index)};
40ed8b01
PP
137 }
138
b3a04931
FD
139 Iterator begin() const noexcept
140 {
141 return Iterator {*this, 0};
142 }
143
144 Iterator end() const noexcept
145 {
c0b73c63 146 return Iterator {*this, this->length()};
b3a04931
FD
147 }
148
40ed8b01
PP
149 Shared shared() const noexcept
150 {
c9c0b6e2 151 return Shared::createWithRef(*this);
40ed8b01
PP
152 }
153};
154
b5f55e9f 155} /* namespace bt2 */
40ed8b01 156
b5f55e9f 157#endif /* BABELTRACE_CPP_COMMON_BT2_FIELD_PATH_HPP */
This page took 0.044417 seconds and 4 git commands to generate.