cpp-common/bt2: rename `bt2::BorrowedObj` -> `bt2::BorrowedObject`
[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
0d218157 16#include "borrowed-object.hpp"
b3a04931 17#include "common-iter.hpp"
80175950 18#include "internal/shared-obj.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:
0d218157
PP
34 explicit ConstFieldPathItem(const _LibObjPtr libObjPtr) noexcept :
35 _ThisBorrowedObject {libObjPtr}
40ed8b01
PP
36 {
37 }
38
0d218157 39 ConstFieldPathItem(const ConstFieldPathItem& fpItem) noexcept : _ThisBorrowedObject {fpItem}
40ed8b01
PP
40 {
41 }
42
43 ConstFieldPathItem& operator=(const ConstFieldPathItem& fpItem) noexcept
44 {
0d218157 45 _ThisBorrowedObject::operator=(fpItem);
40ed8b01
PP
46 return *this;
47 }
48
49 FieldPathItemType type() const noexcept
50 {
51 return static_cast<FieldPathItemType>(this->_libType());
52 }
53
54 bool isIndex() const noexcept
55 {
56 return this->_libType() == BT_FIELD_PATH_ITEM_TYPE_INDEX;
57 }
58
59 bool isCurrentArrayElement() const noexcept
60 {
61 return this->_libType() == BT_FIELD_PATH_ITEM_TYPE_CURRENT_ARRAY_ELEMENT;
62 }
63
64 bool isCurrentOptionContent() const noexcept
65 {
66 return this->_libType() == BT_FIELD_PATH_ITEM_TYPE_CURRENT_OPTION_CONTENT;
67 }
68
69 ConstIndexFieldPathItem asIndex() const noexcept;
70
71private:
72 bt_field_path_item_type _libType() const noexcept
73 {
341a67c4 74 return bt_field_path_item_get_type(this->libObjPtr());
40ed8b01
PP
75 }
76};
77
78class ConstIndexFieldPathItem final : public ConstFieldPathItem
79{
80public:
81 explicit ConstIndexFieldPathItem(const _LibObjPtr libObjPtr) noexcept :
82 ConstFieldPathItem {libObjPtr}
83 {
84 BT_ASSERT_DBG(this->isIndex());
85 }
86
87 ConstIndexFieldPathItem(const ConstIndexFieldPathItem& fpItem) noexcept :
88 ConstFieldPathItem {fpItem}
89 {
90 }
91
92 ConstIndexFieldPathItem& operator=(const ConstIndexFieldPathItem& fpItem) noexcept
93 {
94 ConstFieldPathItem::operator=(fpItem);
95 return *this;
96 }
97
98 std::uint64_t index() const noexcept
99 {
341a67c4 100 return bt_field_path_item_index_get_index(this->libObjPtr());
40ed8b01
PP
101 }
102};
103
104inline ConstIndexFieldPathItem ConstFieldPathItem::asIndex() const noexcept
105{
106 BT_ASSERT_DBG(this->isIndex());
341a67c4 107 return ConstIndexFieldPathItem {this->libObjPtr()};
40ed8b01
PP
108}
109
110namespace internal {
111
112struct FieldPathRefFuncs final
113{
114 static void get(const bt_field_path * const libObjPtr)
115 {
116 bt_field_path_get_ref(libObjPtr);
117 }
118
119 static void put(const bt_field_path * const libObjPtr)
120 {
121 bt_field_path_put_ref(libObjPtr);
122 }
123};
124
b5f55e9f 125} /* namespace internal */
40ed8b01 126
0d218157 127class ConstFieldPath final : public BorrowedObject<const bt_field_path>
40ed8b01
PP
128{
129public:
130 using Shared =
131 internal::SharedObj<ConstFieldPath, const bt_field_path, internal::FieldPathRefFuncs>;
132
b3a04931
FD
133 using Iterator = CommonIterator<ConstFieldPath, ConstFieldPathItem>;
134
40ed8b01
PP
135 enum class Scope
136 {
137 PACKET_CONTEXT = BT_FIELD_PATH_SCOPE_PACKET_CONTEXT,
138 EVENT_COMMON_CONTEXT = BT_FIELD_PATH_SCOPE_EVENT_COMMON_CONTEXT,
139 EVENT_SPECIFIC_CONTEXT = BT_FIELD_PATH_SCOPE_EVENT_SPECIFIC_CONTEXT,
140 EVENT_PAYLOAD = BT_FIELD_PATH_SCOPE_EVENT_PAYLOAD,
141 };
142
0d218157 143 explicit ConstFieldPath(const _LibObjPtr libObjPtr) noexcept : _ThisBorrowedObject {libObjPtr}
40ed8b01
PP
144 {
145 }
146
0d218157 147 ConstFieldPath(const ConstFieldPath& fieldPath) noexcept : _ThisBorrowedObject {fieldPath}
40ed8b01
PP
148 {
149 }
150
151c78ca 151 ConstFieldPath& operator=(const ConstFieldPath& fieldPath) noexcept
40ed8b01 152 {
0d218157 153 _ThisBorrowedObject::operator=(fieldPath);
40ed8b01
PP
154 return *this;
155 }
156
157 Scope rootScope() const noexcept
158 {
341a67c4 159 return static_cast<Scope>(bt_field_path_get_root_scope(this->libObjPtr()));
40ed8b01
PP
160 }
161
162 std::uint64_t size() const noexcept
163 {
341a67c4 164 return bt_field_path_get_item_count(this->libObjPtr());
40ed8b01
PP
165 }
166
167 ConstFieldPathItem operator[](const std::uint64_t index) const noexcept
168 {
169 return ConstFieldPathItem {
341a67c4 170 bt_field_path_borrow_item_by_index_const(this->libObjPtr(), index)};
40ed8b01
PP
171 }
172
b3a04931
FD
173 Iterator begin() const noexcept
174 {
175 return Iterator {*this, 0};
176 }
177
178 Iterator end() const noexcept
179 {
180 return Iterator {*this, this->size()};
181 }
182
40ed8b01
PP
183 Shared shared() const noexcept
184 {
c9c0b6e2 185 return Shared::createWithRef(*this);
40ed8b01
PP
186 }
187};
188
b5f55e9f 189} /* namespace bt2 */
40ed8b01 190
b5f55e9f 191#endif /* BABELTRACE_CPP_COMMON_BT2_FIELD_PATH_HPP */
This page took 0.040166 seconds and 4 git commands to generate.