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
|
//===----------------------------------------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
// UNSUPPORTED: c++03, c++11, c++14, c++17, c++20
// <ranges>
// constexpr iterator begin();
#include <ranges>
#include <cassert>
#include <utility>
#include "test_iterators.h"
#include "types.h"
struct Range : std::ranges::view_base {
using Iterator = forward_iterator<int*>;
using Sentinel = sentinel_wrapper<Iterator>;
constexpr explicit Range(int* b, int* e) : begin_(b), end_(e) {}
constexpr Iterator begin() const { return Iterator(begin_); }
constexpr Sentinel end() const { return Sentinel(Iterator(end_)); }
private:
int* begin_;
int* end_;
};
struct TrackingPred : TrackInitialization {
using TrackInitialization::TrackInitialization;
constexpr bool operator()(int x, int y) { return x != -y; }
};
template <class T>
concept HasBegin = requires(T t) { t.begin(); };
static_assert(HasBegin<std::ranges::chunk_by_view<Range, TrackingPred>>);
static_assert(!HasBegin<const std::ranges::chunk_by_view<Range, TrackingPred>>);
constexpr bool test() {
int buff[] = {-4, -3, -2, -1, 1, 2, 3, 4};
// Check the return type of `begin()`
{
Range range(buff, buff + 1);
auto pred = [](int, int) { return true; };
std::ranges::chunk_by_view view(range, pred);
using ChunkByIterator = std::ranges::iterator_t<decltype(view)>;
ASSERT_SAME_TYPE(ChunkByIterator, decltype(view.begin()));
}
// begin() over an empty range
{
Range range(buff, buff);
auto pred = [](int, int) { return true; };
std::ranges::chunk_by_view view(range, pred);
auto it = view.begin();
assert(it == view.begin());
assert(it == view.end());
}
// begin() over a 1-element range
{
Range range(buff, buff + 1);
auto pred = [](int x, int y) { return x == y; };
std::ranges::chunk_by_view view(range, pred);
auto it = view.begin();
assert(base((*it).begin()) == buff);
assert(base((*it).end()) == buff + 1);
}
// begin() over a 2-element range
{
Range range(buff, buff + 2);
auto pred = [](int x, int y) { return x == y; };
std::ranges::chunk_by_view view(range, pred);
auto it = view.begin();
assert(base((*it).begin()) == buff);
assert(base((*it).end()) == buff + 1);
assert(base((*++it).begin()) == buff + 1);
assert(base((*it).end()) == buff + 2);
}
// begin() over a longer range
{
Range range(buff, buff + 8);
auto pred = [](int x, int y) { return x != -y; };
std::ranges::chunk_by_view view(range, pred);
auto it = view.begin();
assert(base((*it).end()) == buff + 4);
}
// Make sure we do not make a copy of the predicate when we call begin()
// (we should be passing it to ranges::adjacent_find using std::ref)
{
bool moved = false, copied = false;
Range range(buff, buff + 2);
std::ranges::chunk_by_view view(range, TrackingPred(&moved, &copied));
std::exchange(moved, false);
[[maybe_unused]] auto it = view.begin();
assert(!moved);
assert(!copied);
}
// Test with a non-const predicate
{
Range range(buff, buff + 8);
auto pred = [](int x, int y) mutable { return x != -y; };
std::ranges::chunk_by_view view(range, pred);
auto it = view.begin();
assert(base((*it).end()) == buff + 4);
}
// Test with a predicate that takes by non-const reference
{
Range range(buff, buff + 8);
auto pred = [](int& x, int& y) { return x != -y; };
std::ranges::chunk_by_view view(range, pred);
auto it = view.begin();
assert(base((*it).end()) == buff + 4);
}
// Test caching
{
// Make sure that we cache the result of begin() on subsequent calls
Range range(buff, buff + 8);
int called = 0;
auto pred = [&](int x, int y) {
++called;
return x != -y;
};
std::ranges::chunk_by_view view(range, pred);
assert(called == 0);
for (int k = 0; k != 3; ++k) {
auto it = view.begin();
assert(base((*it).end()) == buff + 4);
assert(called == 4); // 4, because the cached iterator is 'buff + 4' (end of the first chunk)
}
}
return true;
}
int main(int, char**) {
test();
static_assert(test());
return 0;
}
|