1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293
|
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#ifndef SUPPORT_PUSH_RANGE_CONTAINER_ADAPTORS_H
#define SUPPORT_PUSH_RANGE_CONTAINER_ADAPTORS_H
#include <algorithm>
#include <cassert>
#include <concepts>
#include <cstddef>
#include <initializer_list>
#include <ranges>
#include <type_traits>
#include <vector>
#include "../exception_safety_helpers.h"
#include "../from_range_helpers.h"
#include "../insert_range_helpers.h"
#include "MoveOnly.h"
#include "almost_satisfies_types.h"
#include "count_new.h"
#include "min_allocator.h"
#include "test_allocator.h"
#include "test_iterators.h"
#include "test_macros.h"
#include "type_algorithms.h"
#include "unwrap_container_adaptor.h"
template <class Container, class Range>
concept HasPushRange = requires (Container& c, Range&& range) {
c.push_range(range);
};
template <template <class...> class Container, class T, class U>
constexpr bool test_constraints_push_range() {
// Input range with the same value type.
static_assert(HasPushRange<Container<T>, InputRange<T>>);
// Input range with a convertible value type.
static_assert(HasPushRange<Container<T>, InputRange<U>>);
// Input range with a non-convertible value type.
static_assert(!HasPushRange<Container<T>, InputRange<Empty>>);
// Not an input range.
static_assert(!HasPushRange<Container<T>, InputRangeNotDerivedFrom>);
static_assert(!HasPushRange<Container<T>, InputRangeNotIndirectlyReadable>);
static_assert(!HasPushRange<Container<T>, InputRangeNotInputOrOutputIterator>);
return true;
}
// Empty container.
template <class T>
TestCase<T> constexpr EmptyContainer_EmptyRange {
.initial = {}, .input = {}, .expected = {}
};
template <class T> constexpr TestCase<T> EmptyContainer_OneElementRange {
.initial = {}, .input = {5}, .expected = {5}
};
template <class T> constexpr TestCase<T> EmptyContainer_MidRange {
.initial = {}, .input = {5, 3, 1, 7, 9}, .expected = {5, 3, 1, 7, 9}
};
// One-element container.
template <class T> constexpr TestCase<T> OneElementContainer_EmptyRange {
.initial = {3}, .input = {}, .expected = {3}
};
template <class T> constexpr TestCase<T> OneElementContainer_OneElementRange {
.initial = {3}, .input = {-5}, .expected = {3, -5}
};
template <class T> constexpr TestCase<T> OneElementContainer_MidRange {
.initial = {3}, .input = {-5, -3, -1, -7, -9}, .expected = {3, -5, -3, -1, -7, -9}
};
// Full container.
template <class T> constexpr TestCase<T> FullContainer_EmptyRange {
.initial = {11, 29, 35, 14, 84}, .input = {}, .expected = {11, 29, 35, 14, 84}
};
template <class T> constexpr TestCase<T> FullContainer_OneElementRange {
.initial = {11, 29, 35, 14, 84}, .input = {-5}, .expected = {11, 29, 35, 14, 84, -5}
};
template <class T> constexpr TestCase<T> FullContainer_MidRange {
.initial = {11, 29, 35, 14, 84},
.input = {-5, -3, -1, -7, -9},
.expected = {11, 29, 35, 14, 84, -5, -3, -1, -7, -9}
};
template <class T> constexpr TestCase<T> FullContainer_LongRange {
.initial = {11, 29, 35, 14, 84},
.input = {-5, -3, -1, -7, -9, -19, -48, -56, -13, -14, -29, -88, -17, -1, -5, -11, -89, -21, -33, -48},
.expected = {
11, 29, 35, 14, 84, -5, -3, -1, -7, -9, -19, -48, -56, -13, -14, -29, -88, -17, -1, -5, -11, -89, -21, -33, -48
}
};
// Container adaptors tests.
template <class Adaptor, class Iter, class Sent>
constexpr void test_push_range(bool is_result_heapified = false) {
using T = typename Adaptor::value_type;
auto test = [&](auto& test_case) {
Adaptor adaptor(test_case.initial.begin(), test_case.initial.end());
auto in = wrap_input<Iter, Sent>(test_case.input);
adaptor.push_range(in);
UnwrapAdaptor<Adaptor> unwrap_adaptor(std::move(adaptor));
auto& c = unwrap_adaptor.get_container();
if (is_result_heapified) {
assert(std::ranges::is_heap(c));
return std::ranges::is_permutation(c, test_case.expected);
} else {
return std::ranges::equal(c, test_case.expected);
}
};
{ // Empty container.
// empty_c.push_range(empty_range)
assert(test(EmptyContainer_EmptyRange<T>));
// empty_c.push_range(one_element_range)
assert(test(EmptyContainer_OneElementRange<T>));
// empty_c.push_range(mid_range)
assert(test(EmptyContainer_MidRange<T>));
}
{ // One-element container.
// one_element_c.push_range(empty_range)
assert(test(OneElementContainer_EmptyRange<T>));
// one_element_c.push_range(one_element_range)
assert(test(OneElementContainer_OneElementRange<T>));
// one_element_c.push_range(mid_range)
assert(test(OneElementContainer_MidRange<T>));
}
{ // Full container.
// full_container.push_range(empty_range)
assert(test(FullContainer_EmptyRange<T>));
// full_container.push_range(one_element_range)
assert(test(FullContainer_OneElementRange<T>));
// full_container.push_range(mid_range)
assert(test(FullContainer_MidRange<T>));
// full_container.push_range(long_range)
assert(test(FullContainer_LongRange<T>));
}
}
// Move-only types.
template <template <class ...> class Container>
constexpr void test_push_range_move_only() {
MoveOnly input[5];
std::ranges::subrange in(std::move_iterator{input}, std::move_iterator{input + 5});
Container<MoveOnly> c;
c.push_range(in);
}
// Check that `append_range` is preferred if available and `push_back` is used as a fallback.
enum class InserterChoice {
Invalid,
PushBack,
AppendRange
};
template <class T, InserterChoice Inserter>
struct Container {
InserterChoice inserter_choice = InserterChoice::Invalid;
using value_type = T;
using iterator = T*;
using reference = T&;
using const_reference = const T&;
using size_type = std::size_t;
static constexpr int Capacity = 8;
int size_ = 0;
value_type buffer_[Capacity] = {};
iterator begin() { return buffer_; }
iterator end() { return buffer_ + size_; }
size_type size() const { return size_; }
template <class U>
void push_back(U val)
requires (Inserter >= InserterChoice::PushBack) {
inserter_choice = InserterChoice::PushBack;
buffer_[size_] = val;
++size_;
}
template <std::ranges::input_range Range>
void append_range(Range&& range)
requires (Inserter >= InserterChoice::AppendRange) {
assert(size() + std::ranges::distance(range) <= Capacity);
inserter_choice = InserterChoice::AppendRange;
for (auto&& e : range) {
buffer_[size_] = e;
++size_;
}
}
friend bool operator==(const Container&, const Container&) = default;
};
template <template <class ...> class AdaptorT, class T>
void test_push_range_inserter_choice(bool is_result_heapified = false) {
{ // `append_range` is preferred if available.
using BaseContainer = Container<T, InserterChoice::AppendRange>;
using Adaptor = AdaptorT<T, BaseContainer>;
T in[] = {1, 2, 3, 4, 5};
Adaptor adaptor;
adaptor.push_range(in);
UnwrapAdaptor<Adaptor> unwrap_adaptor(std::move(adaptor));
auto& c = unwrap_adaptor.get_container();
assert(c.inserter_choice == InserterChoice::AppendRange);
if (is_result_heapified) {
assert(std::ranges::is_heap(c));
assert(std::ranges::is_permutation(c, in));
} else {
assert(std::ranges::equal(c, in));
}
}
{ // `push_back` is used as a fallback (via `back_inserter`).
using BaseContainer = Container<T, InserterChoice::PushBack>;
using Adaptor = AdaptorT<T, BaseContainer>;
T in[] = {1, 2, 3, 4, 5};
Adaptor adaptor;
adaptor.push_range(in);
UnwrapAdaptor<Adaptor> unwrap_adaptor(std::move(adaptor));
auto& c = unwrap_adaptor.get_container();
assert(c.inserter_choice == InserterChoice::PushBack);
if (is_result_heapified) {
assert(std::ranges::is_heap(c));
assert(std::ranges::is_permutation(c, in));
} else {
assert(std::ranges::equal(c, in));
}
}
}
// Exception safety.
template <template <class ...> class Container>
void test_push_range_exception_safety_throwing_copy() {
#if !defined(TEST_HAS_NO_EXCEPTIONS)
constexpr int ThrowOn = 3;
using T = ThrowingCopy<ThrowOn>;
test_exception_safety_throwing_copy<ThrowOn, /*Size=*/5>([](auto* from, auto* to) {
Container<T> c;
c.push_range(std::ranges::subrange(from, to));
});
#endif
}
template <template <class ...> class Adaptor, template <class ...> class BaseContainer, class T>
void test_push_range_exception_safety_throwing_allocator() {
#if !defined(TEST_HAS_NO_EXCEPTIONS)
T in[] = {0, 1};
try {
globalMemCounter.reset();
Adaptor<T, BaseContainer<T, ThrowingAllocator<T>>> c;
c.push_range(in);
assert(false); // The function call above should throw.
} catch (int) {
assert(globalMemCounter.new_called == globalMemCounter.delete_called);
}
#endif
}
#endif // SUPPORT_PUSH_RANGE_CONTAINER_ADAPTORS_H
|