cpp-common/bt2: specify default constructor for `UnknownObject`
[babeltrace.git] / src / cpp-common / bt2 / integer-range-set.hpp
CommitLineData
64ded3fb
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_INTEGER_RANGE_SET_HPP
8#define BABELTRACE_CPP_COMMON_BT2_INTEGER_RANGE_SET_HPP
9
10#include <cstdint>
11#include <type_traits>
c802cacb 12
64ded3fb
PP
13#include <babeltrace2/babeltrace.h>
14
56862ee2 15#include "borrowed-object-iterator.hpp"
0d218157 16#include "borrowed-object.hpp"
c802cacb
SM
17#include "exc.hpp"
18#include "integer-range.hpp"
64ded3fb 19#include "internal/utils.hpp"
7f5cdaf0 20#include "shared-object.hpp"
64ded3fb
PP
21
22namespace bt2 {
64ded3fb
PP
23namespace internal {
24
25template <typename LibObjT>
26struct IntegerRangeSetRefFuncs;
27
28template <>
29struct IntegerRangeSetRefFuncs<const bt_integer_range_set_unsigned> final
30{
c677c492 31 static void get(const bt_integer_range_set_unsigned * const libObjPtr) noexcept
64ded3fb
PP
32 {
33 bt_integer_range_set_unsigned_get_ref(libObjPtr);
34 }
35
c677c492 36 static void put(const bt_integer_range_set_unsigned * const libObjPtr) noexcept
64ded3fb 37 {
1796d135 38 bt_integer_range_set_unsigned_put_ref(libObjPtr);
64ded3fb
PP
39 }
40};
41
42template <>
43struct IntegerRangeSetRefFuncs<const bt_integer_range_set_signed> final
44{
c677c492 45 static void get(const bt_integer_range_set_signed * const libObjPtr) noexcept
64ded3fb
PP
46 {
47 bt_integer_range_set_signed_get_ref(libObjPtr);
48 }
49
c677c492 50 static void put(const bt_integer_range_set_signed * const libObjPtr) noexcept
64ded3fb 51 {
1796d135 52 bt_integer_range_set_signed_put_ref(libObjPtr);
64ded3fb
PP
53 }
54};
55
56template <typename LibObjT>
57struct CommonIntegerRangeSetSpec;
58
b5f55e9f 59/* Functions specific to unsigned integer range sets */
64ded3fb
PP
60template <>
61struct CommonIntegerRangeSetSpec<const bt_integer_range_set_unsigned> final
62{
c0b73c63 63 static std::uint64_t length(const bt_integer_range_set_unsigned * const libRangePtr) noexcept
64ded3fb
PP
64 {
65 return bt_integer_range_set_get_range_count(
66 bt_integer_range_set_unsigned_as_range_set_const(libRangePtr));
67 }
68
69 static const bt_integer_range_unsigned *
70 rangeByIndex(const bt_integer_range_set_unsigned * const libRangePtr,
71 const std::uint64_t index) noexcept
72 {
73 return bt_integer_range_set_unsigned_borrow_range_by_index_const(libRangePtr, index);
74 }
75
76 static bool isEqual(const bt_integer_range_set_unsigned * const libRangePtrA,
77 const bt_integer_range_set_unsigned * const libRangePtrB) noexcept
78 {
79 return static_cast<bool>(
80 bt_integer_range_set_unsigned_is_equal(libRangePtrA, libRangePtrB));
81 }
82
83 static bt_integer_range_set_add_range_status
84 addRange(bt_integer_range_set_unsigned * const libRangePtr, const std::uint64_t lower,
85 const std::uint64_t upper) noexcept
86 {
87 return bt_integer_range_set_unsigned_add_range(libRangePtr, lower, upper);
88 }
89
90 static bt_integer_range_set_unsigned *create() noexcept
91 {
92 return bt_integer_range_set_unsigned_create();
93 }
94};
95
b5f55e9f 96/* Functions specific to signed integer range sets */
64ded3fb
PP
97template <>
98struct CommonIntegerRangeSetSpec<const bt_integer_range_set_signed> final
99{
c0b73c63 100 static std::uint64_t length(const bt_integer_range_set_signed * const libRangePtr) noexcept
64ded3fb
PP
101 {
102 return bt_integer_range_set_get_range_count(
103 bt_integer_range_set_signed_as_range_set_const(libRangePtr));
104 }
105
106 static const bt_integer_range_signed *
107 rangeByIndex(const bt_integer_range_set_signed * const libRangePtr,
108 const std::uint64_t index) noexcept
109 {
110 return bt_integer_range_set_signed_borrow_range_by_index_const(libRangePtr, index);
111 }
112
113 static bool isEqual(const bt_integer_range_set_signed * const libRangePtrA,
114 const bt_integer_range_set_signed * const libRangePtrB) noexcept
115 {
116 return static_cast<bool>(bt_integer_range_set_signed_is_equal(libRangePtrA, libRangePtrB));
117 }
118
119 static bt_integer_range_set_add_range_status
120 addRange(bt_integer_range_set_signed * const libRangePtr, const std::int64_t lower,
121 const std::int64_t upper) noexcept
122 {
123 return bt_integer_range_set_signed_add_range(libRangePtr, lower, upper);
124 }
125
126 static bt_integer_range_set_signed *create() noexcept
127 {
128 return bt_integer_range_set_signed_create();
129 }
130};
131
b5f55e9f 132} /* namespace internal */
64ded3fb
PP
133
134template <typename LibObjT>
0d218157 135class CommonIntegerRangeSet final : public BorrowedObject<LibObjT>
64ded3fb 136{
64ded3fb 137private:
0d218157 138 using typename BorrowedObject<LibObjT>::_ThisBorrowedObject;
64ded3fb 139 using _ConstLibObjT = typename std::add_const<LibObjT>::type;
64ded3fb 140 using _Spec = internal::CommonIntegerRangeSetSpec<_ConstLibObjT>;
64ded3fb
PP
141
142public:
d246c457
PP
143 using typename BorrowedObject<LibObjT>::LibObjPtr;
144
ac19444e
PP
145 using Shared = SharedObject<CommonIntegerRangeSet, LibObjT,
146 internal::IntegerRangeSetRefFuncs<_ConstLibObjT>>;
64ded3fb
PP
147
148 using Range = typename std::conditional<
149 std::is_same<_ConstLibObjT, const bt_integer_range_set_unsigned>::value,
150 ConstUnsignedIntegerRange, ConstSignedIntegerRange>::type;
151
152 using Value = typename Range::Value;
56862ee2 153 using Iterator = BorrowedObjectIterator<CommonIntegerRangeSet>;
64ded3fb 154
d246c457 155 explicit CommonIntegerRangeSet(const LibObjPtr libObjPtr) noexcept :
0d218157 156 _ThisBorrowedObject {libObjPtr}
64ded3fb
PP
157 {
158 }
159
160 static Shared create()
161 {
162 const auto libObjPtr = _Spec::create();
163
164 internal::validateCreatedObjPtr(libObjPtr);
c9c0b6e2 165 return CommonIntegerRangeSet::Shared::createWithoutRef(libObjPtr);
64ded3fb
PP
166 }
167
168 template <typename OtherLibObjT>
100fa861 169 CommonIntegerRangeSet(const CommonIntegerRangeSet<OtherLibObjT> rangeSet) noexcept :
0d218157 170 _ThisBorrowedObject {rangeSet}
64ded3fb
PP
171 {
172 }
173
174 template <typename OtherLibObjT>
ac30a470 175 CommonIntegerRangeSet operator=(const CommonIntegerRangeSet<OtherLibObjT> rangeSet) noexcept
64ded3fb 176 {
0d218157 177 _ThisBorrowedObject::operator=(rangeSet);
64ded3fb
PP
178 return *this;
179 }
180
328a274a
PP
181 _ConstLibObjT asConst() const noexcept
182 {
183 return _ConstLibObjT {*this};
184 }
185
64ded3fb 186 template <typename OtherLibObjT>
100fa861 187 bool operator==(const CommonIntegerRangeSet<OtherLibObjT> other) const noexcept
64ded3fb 188 {
341a67c4 189 return _Spec::isEqual(this->libObjPtr(), other.libObjPtr());
64ded3fb
PP
190 }
191
192 template <typename OtherLibObjT>
100fa861 193 bool operator!=(const CommonIntegerRangeSet<OtherLibObjT> other) const noexcept
64ded3fb
PP
194 {
195 return !(*this == other);
196 }
197
dcb8ae9b 198 void addRange(const Value lower, const Value upper) const
64ded3fb 199 {
5c895f64
PP
200 static_assert(
201 !std::is_const<LibObjT>::value,
202 "Not available with `bt2::ConstUnsignedIntegerRangeSet` or `bt2::ConstSignedIntegerRangeSet`.");
64ded3fb 203
341a67c4 204 const auto status = _Spec::addRange(this->libObjPtr(), lower, upper);
64ded3fb
PP
205
206 if (status == BT_INTEGER_RANGE_SET_ADD_RANGE_STATUS_MEMORY_ERROR) {
39278ebc 207 throw MemoryError {};
64ded3fb
PP
208 }
209 }
210
c0b73c63 211 std::uint64_t length() const noexcept
64ded3fb 212 {
c0b73c63 213 return _Spec::length(this->libObjPtr());
64ded3fb
PP
214 }
215
216 Range operator[](const std::uint64_t index) const noexcept
217 {
341a67c4 218 return Range {_Spec::rangeByIndex(this->libObjPtr(), index)};
64ded3fb
PP
219 }
220
70cfba94
FD
221 Iterator begin() const noexcept
222 {
223 return Iterator {*this, 0};
224 }
225
226 Iterator end() const noexcept
227 {
c0b73c63 228 return Iterator {*this, this->length()};
70cfba94
FD
229 }
230
64ded3fb
PP
231 Shared shared() const noexcept
232 {
c9c0b6e2 233 return Shared::createWithRef(*this);
64ded3fb
PP
234 }
235};
236
237using UnsignedIntegerRangeSet = CommonIntegerRangeSet<bt_integer_range_set_unsigned>;
238using ConstUnsignedIntegerRangeSet = CommonIntegerRangeSet<const bt_integer_range_set_unsigned>;
239using SignedIntegerRangeSet = CommonIntegerRangeSet<bt_integer_range_set_signed>;
240using ConstSignedIntegerRangeSet = CommonIntegerRangeSet<const bt_integer_range_set_signed>;
241
4927bae7
PP
242namespace internal {
243
244struct UnsignedIntegerRangeSetTypeDescr
245{
246 using Const = ConstUnsignedIntegerRangeSet;
247 using NonConst = UnsignedIntegerRangeSet;
248};
249
250template <>
251struct TypeDescr<UnsignedIntegerRangeSet> : public UnsignedIntegerRangeSetTypeDescr
252{
253};
254
255template <>
256struct TypeDescr<ConstUnsignedIntegerRangeSet> : public UnsignedIntegerRangeSetTypeDescr
257{
258};
259
260struct SignedIntegerRangeSetTypeDescr
261{
262 using Const = ConstSignedIntegerRangeSet;
263 using NonConst = SignedIntegerRangeSet;
264};
265
266template <>
267struct TypeDescr<SignedIntegerRangeSet> : public SignedIntegerRangeSetTypeDescr
268{
269};
270
271template <>
272struct TypeDescr<ConstSignedIntegerRangeSet> : public SignedIntegerRangeSetTypeDescr
273{
274};
275
276} /* namespace internal */
b5f55e9f 277} /* namespace bt2 */
64ded3fb 278
b5f55e9f 279#endif /* BABELTRACE_CPP_COMMON_BT2_INTEGER_RANGE_SET_HPP */
This page took 0.057253 seconds and 4 git commands to generate.