cpp-common/bt2: rename `common-iter.hpp` to `common-iterator.hpp`
[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"
8aee46a3 17#include "common-iterator.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:
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:
7f5cdaf0 130 using Shared = SharedObject<ConstFieldPath, const bt_field_path, internal::FieldPathRefFuncs>;
40ed8b01 131
b3a04931
FD
132 using Iterator = CommonIterator<ConstFieldPath, ConstFieldPathItem>;
133
40ed8b01
PP
134 enum class Scope
135 {
136 PACKET_CONTEXT = BT_FIELD_PATH_SCOPE_PACKET_CONTEXT,
137 EVENT_COMMON_CONTEXT = BT_FIELD_PATH_SCOPE_EVENT_COMMON_CONTEXT,
138 EVENT_SPECIFIC_CONTEXT = BT_FIELD_PATH_SCOPE_EVENT_SPECIFIC_CONTEXT,
139 EVENT_PAYLOAD = BT_FIELD_PATH_SCOPE_EVENT_PAYLOAD,
140 };
141
0d218157 142 explicit ConstFieldPath(const _LibObjPtr libObjPtr) noexcept : _ThisBorrowedObject {libObjPtr}
40ed8b01
PP
143 {
144 }
145
0d218157 146 ConstFieldPath(const ConstFieldPath& fieldPath) noexcept : _ThisBorrowedObject {fieldPath}
40ed8b01
PP
147 {
148 }
149
151c78ca 150 ConstFieldPath& operator=(const ConstFieldPath& fieldPath) noexcept
40ed8b01 151 {
0d218157 152 _ThisBorrowedObject::operator=(fieldPath);
40ed8b01
PP
153 return *this;
154 }
155
156 Scope rootScope() const noexcept
157 {
341a67c4 158 return static_cast<Scope>(bt_field_path_get_root_scope(this->libObjPtr()));
40ed8b01
PP
159 }
160
161 std::uint64_t size() const noexcept
162 {
341a67c4 163 return bt_field_path_get_item_count(this->libObjPtr());
40ed8b01
PP
164 }
165
166 ConstFieldPathItem operator[](const std::uint64_t index) const noexcept
167 {
168 return ConstFieldPathItem {
341a67c4 169 bt_field_path_borrow_item_by_index_const(this->libObjPtr(), index)};
40ed8b01
PP
170 }
171
b3a04931
FD
172 Iterator begin() const noexcept
173 {
174 return Iterator {*this, 0};
175 }
176
177 Iterator end() const noexcept
178 {
179 return Iterator {*this, this->size()};
180 }
181
40ed8b01
PP
182 Shared shared() const noexcept
183 {
c9c0b6e2 184 return Shared::createWithRef(*this);
40ed8b01
PP
185 }
186};
187
b5f55e9f 188} /* namespace bt2 */
40ed8b01 189
b5f55e9f 190#endif /* BABELTRACE_CPP_COMMON_BT2_FIELD_PATH_HPP */
This page took 0.03955 seconds and 4 git commands to generate.