-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[libc++] [ranges] Implement std::ranges::distance
This includes an experimental workaround for LWG3664 "LWG3392 broke std::ranges::distance(a, a+3)", but the workaround may be incomplete, I'm not sure. This should be re-audited when LWG3664 is actually adopted, to see if we need to change anything about our implementation. See also microsoft/STL#2500 Differential Revision: https://reviews.llvm.org/D117940
- Loading branch information
1 parent
d12d95d
commit a62cf98
Showing
7 changed files
with
478 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
236 changes: 236 additions & 0 deletions
236
...ors/iterator.primitives/range.iter.ops/range.iter.ops.distance/iterator_sentinel.pass.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,236 @@ | ||
//===----------------------------------------------------------------------===// | ||
// | ||
// 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 | ||
// UNSUPPORTED: libcpp-no-concepts | ||
|
||
// template<class I, sentinel_for<I> S> | ||
// requires (!sized_sentinel_for<S, I>) | ||
// constexpr iter_difference_t<I> ranges::distance(I first, S last); | ||
// | ||
// template<class I, sized_sentinel_for<decay_t<I>> S> | ||
// constexpr iter_difference_t<I> ranges::distance(I&& first, S last); // TODO: update when LWG3664 is resolved | ||
|
||
#include <iterator> | ||
#include <cassert> | ||
|
||
#include "test_iterators.h" | ||
#include "test_macros.h" | ||
|
||
template<class It, class Sent> | ||
constexpr void test_unsized() { | ||
static_assert(std::sentinel_for<Sent, It> && !std::sized_sentinel_for<Sent, It>); | ||
int a[3] = {1,2,3}; | ||
{ | ||
It first = It(a); | ||
auto last = Sent(It(a)); | ||
assert(std::ranges::distance(first, last) == 0); | ||
assert(std::ranges::distance(It(a), last) == 0); | ||
assert(std::ranges::distance(first, Sent(It(a))) == 0); | ||
assert(std::ranges::distance(It(a), Sent(It(a))) == 0); | ||
ASSERT_SAME_TYPE(decltype(std::ranges::distance(It(a), Sent(It(a)))), std::iter_difference_t<It>); | ||
} | ||
{ | ||
It first = It(a); | ||
auto last = Sent(It(a + 3)); | ||
assert(std::ranges::distance(first, last) == 3); | ||
|
||
// Test all const/ref-qualifications of both operands. | ||
assert(std::ranges::distance(static_cast<It&>(first), static_cast<Sent&>(last)) == 3); | ||
assert(std::ranges::distance(static_cast<It&>(first), static_cast<Sent&&>(last)) == 3); | ||
assert(std::ranges::distance(static_cast<It&>(first), static_cast<const Sent&>(last)) == 3); | ||
assert(std::ranges::distance(static_cast<It&>(first), static_cast<const Sent&&>(last)) == 3); | ||
assert(std::ranges::distance(static_cast<It&&>(first), static_cast<Sent&>(last)) == 3); | ||
assert(std::ranges::distance(static_cast<It&&>(first), static_cast<Sent&&>(last)) == 3); | ||
assert(std::ranges::distance(static_cast<It&&>(first), static_cast<const Sent&>(last)) == 3); | ||
assert(std::ranges::distance(static_cast<It&&>(first), static_cast<const Sent&&>(last)) == 3); | ||
assert(std::ranges::distance(static_cast<const It&>(first), static_cast<Sent&>(last)) == 3); | ||
assert(std::ranges::distance(static_cast<const It&>(first), static_cast<Sent&&>(last)) == 3); | ||
assert(std::ranges::distance(static_cast<const It&>(first), static_cast<const Sent&>(last)) == 3); | ||
assert(std::ranges::distance(static_cast<const It&>(first), static_cast<const Sent&&>(last)) == 3); | ||
assert(std::ranges::distance(static_cast<const It&&>(first), static_cast<Sent&>(last)) == 3); | ||
assert(std::ranges::distance(static_cast<const It&&>(first), static_cast<Sent&&>(last)) == 3); | ||
assert(std::ranges::distance(static_cast<const It&&>(first), static_cast<const Sent&>(last)) == 3); | ||
assert(std::ranges::distance(static_cast<const It&&>(first), static_cast<const Sent&&>(last)) == 3); | ||
} | ||
} | ||
|
||
template<class It, class Sent> | ||
constexpr void test_sized() { | ||
static_assert(std::sized_sentinel_for<Sent, It>); | ||
int a[] = {1,2,3}; | ||
{ | ||
It first = It(a + 3); | ||
auto last = Sent(It(a)); | ||
assert(std::ranges::distance(first, last) == -3); | ||
|
||
// Test all const/ref-qualifications of both operands. | ||
assert(std::ranges::distance(static_cast<It&>(first), static_cast<Sent&>(last)) == -3); | ||
assert(std::ranges::distance(static_cast<It&>(first), static_cast<Sent&&>(last)) == -3); | ||
assert(std::ranges::distance(static_cast<It&>(first), static_cast<const Sent&>(last)) == -3); | ||
assert(std::ranges::distance(static_cast<It&>(first), static_cast<const Sent&&>(last)) == -3); | ||
assert(std::ranges::distance(static_cast<It&&>(first), static_cast<Sent&>(last)) == -3); | ||
assert(std::ranges::distance(static_cast<It&&>(first), static_cast<Sent&&>(last)) == -3); | ||
assert(std::ranges::distance(static_cast<It&&>(first), static_cast<const Sent&>(last)) == -3); | ||
assert(std::ranges::distance(static_cast<It&&>(first), static_cast<const Sent&&>(last)) == -3); | ||
assert(std::ranges::distance(static_cast<const It&>(first), static_cast<Sent&>(last)) == -3); | ||
assert(std::ranges::distance(static_cast<const It&>(first), static_cast<Sent&&>(last)) == -3); | ||
assert(std::ranges::distance(static_cast<const It&>(first), static_cast<const Sent&>(last)) == -3); | ||
assert(std::ranges::distance(static_cast<const It&>(first), static_cast<const Sent&&>(last)) == -3); | ||
assert(std::ranges::distance(static_cast<const It&&>(first), static_cast<Sent&>(last)) == -3); | ||
assert(std::ranges::distance(static_cast<const It&&>(first), static_cast<Sent&&>(last)) == -3); | ||
assert(std::ranges::distance(static_cast<const It&&>(first), static_cast<const Sent&>(last)) == -3); | ||
assert(std::ranges::distance(static_cast<const It&&>(first), static_cast<const Sent&&>(last)) == -3); | ||
} | ||
{ | ||
It first = It(a); | ||
auto last = Sent(It(a)); | ||
assert(std::ranges::distance(first, last) == 0); | ||
assert(std::ranges::distance(It(a), last) == 0); | ||
assert(std::ranges::distance(first, Sent(It(a))) == 0); | ||
assert(std::ranges::distance(It(a), Sent(It(a))) == 0); | ||
ASSERT_SAME_TYPE(decltype(std::ranges::distance(It(a), Sent(It(a)))), std::iter_difference_t<It>); | ||
} | ||
{ | ||
It first = It(a); | ||
auto last = Sent(It(a + 3)); | ||
assert(std::ranges::distance(first, last) == 3); | ||
assert(std::ranges::distance(It(a), last) == 3); | ||
assert(std::ranges::distance(first, Sent(It(a + 3))) == 3); | ||
assert(std::ranges::distance(It(a), Sent(It(a + 3))) == 3); | ||
} | ||
} | ||
|
||
struct StrideCounter { | ||
int *it_; | ||
int *inc_; | ||
using value_type = int; | ||
using difference_type = int; | ||
explicit StrideCounter(); | ||
constexpr explicit StrideCounter(int *it, int *inc) : it_(it), inc_(inc) {} | ||
constexpr auto& operator++() { ++it_; *inc_ += 1; return *this; } | ||
StrideCounter operator++(int); | ||
int& operator*() const; | ||
bool operator==(StrideCounter) const; | ||
}; | ||
static_assert(std::forward_iterator<StrideCounter>); | ||
static_assert(!std::sized_sentinel_for<StrideCounter, StrideCounter>); | ||
|
||
struct SizedStrideCounter { | ||
int *it_; | ||
int *minus_; | ||
using value_type = int; | ||
explicit SizedStrideCounter(); | ||
constexpr explicit SizedStrideCounter(int *it, int *minus) : it_(it), minus_(minus) {} | ||
SizedStrideCounter& operator++(); | ||
SizedStrideCounter operator++(int); | ||
int& operator*() const; | ||
bool operator==(SizedStrideCounter) const; | ||
constexpr int operator-(SizedStrideCounter rhs) const { *minus_ += 1; return it_ - rhs.it_; } | ||
}; | ||
static_assert(std::forward_iterator<SizedStrideCounter>); | ||
static_assert(std::sized_sentinel_for<SizedStrideCounter, SizedStrideCounter>); | ||
|
||
constexpr void test_stride_counting() { | ||
{ | ||
int a[] = {1, 2, 3}; | ||
int inc = 0; | ||
StrideCounter first(a, &inc); | ||
StrideCounter last(a+3, nullptr); | ||
std::same_as<int> auto result = std::ranges::distance(first, last); | ||
assert(result == 3); | ||
assert(inc == 3); | ||
} | ||
{ | ||
int a[] = {1, 2, 3}; | ||
int minus = 0; | ||
SizedStrideCounter first(a, &minus); | ||
SizedStrideCounter last(a+3, nullptr); | ||
std::same_as<int> auto result = std::ranges::distance(first, last); | ||
assert(result == 3); | ||
assert(minus == 1); | ||
} | ||
} | ||
|
||
constexpr bool test() { | ||
{ | ||
int a[] = {1, 2, 3}; | ||
assert(std::ranges::distance(a, a + 3) == 3); | ||
assert(std::ranges::distance(a, a) == 0); | ||
assert(std::ranges::distance(a + 3, a) == -3); | ||
} | ||
|
||
test_unsized<cpp17_input_iterator<int*>, sentinel_wrapper<cpp17_input_iterator<int*>>>(); | ||
test_unsized<output_iterator<int*>, sentinel_wrapper<output_iterator<int*>>>(); | ||
test_unsized<forward_iterator<int*>, sentinel_wrapper<forward_iterator<int*>>>(); | ||
test_unsized<bidirectional_iterator<int*>, sentinel_wrapper<bidirectional_iterator<int*>>>(); | ||
test_unsized<random_access_iterator<int*>, sentinel_wrapper<random_access_iterator<int*>>>(); | ||
test_unsized<contiguous_iterator<int*>, sentinel_wrapper<contiguous_iterator<int*>>>(); | ||
test_unsized<int*, sentinel_wrapper<int*>>(); | ||
test_unsized<const int*, sentinel_wrapper<const int*>>(); | ||
test_unsized<forward_iterator<int*>, forward_iterator<int*>>(); | ||
test_unsized<bidirectional_iterator<int*>, bidirectional_iterator<int*>>(); | ||
|
||
test_sized<cpp17_input_iterator<int*>, sized_sentinel<cpp17_input_iterator<int*>>>(); | ||
test_sized<cpp20_input_iterator<int*>, sized_sentinel<cpp20_input_iterator<int*>>>(); | ||
test_sized<output_iterator<int*>, sized_sentinel<output_iterator<int*>>>(); | ||
test_sized<forward_iterator<int*>, sized_sentinel<forward_iterator<int*>>>(); | ||
test_sized<bidirectional_iterator<int*>, sized_sentinel<bidirectional_iterator<int*>>>(); | ||
test_sized<random_access_iterator<int*>, sized_sentinel<random_access_iterator<int*>>>(); | ||
test_sized<contiguous_iterator<int*>, sized_sentinel<contiguous_iterator<int*>>>(); | ||
test_sized<int*, sized_sentinel<int*>>(); | ||
test_sized<const int*, sized_sentinel<const int*>>(); | ||
test_sized<int*, int*>(); | ||
test_sized<int*, const int*>(); | ||
test_sized<random_access_iterator<int*>, random_access_iterator<int*>>(); | ||
test_sized<contiguous_iterator<int*>, contiguous_iterator<int*>>(); | ||
|
||
{ | ||
using It = cpp20_input_iterator<int*>; // non-copyable, thus not a sentinel for itself | ||
static_assert(!std::is_copy_constructible_v<It>); | ||
static_assert(!std::sentinel_for<It, It>); | ||
static_assert(!std::is_invocable_v<decltype(std::ranges::distance), It&, It&>); | ||
static_assert(!std::is_invocable_v<decltype(std::ranges::distance), It&, It&&>); | ||
static_assert(!std::is_invocable_v<decltype(std::ranges::distance), It&&, It&>); | ||
static_assert(!std::is_invocable_v<decltype(std::ranges::distance), It&&, It&&>); | ||
} | ||
{ | ||
using It = cpp20_input_iterator<int*>; // non-copyable | ||
using Sent = sentinel_wrapper<It>; // not a sized sentinel | ||
static_assert(std::sentinel_for<Sent, It> && !std::sized_sentinel_for<Sent, It>); | ||
int a[] = {1,2,3}; | ||
Sent last = Sent(It(a + 3)); | ||
static_assert(!std::is_invocable_v<decltype(std::ranges::distance), It&, Sent&>); | ||
static_assert(!std::is_invocable_v<decltype(std::ranges::distance), It&, Sent&&>); | ||
assert(std::ranges::distance(It(a), last) == 3); | ||
assert(std::ranges::distance(It(a), Sent(It(a + 3))) == 3); | ||
} | ||
{ | ||
using It = cpp17_input_iterator<int*>; // not a sentinel for itself | ||
static_assert(!std::sentinel_for<It, It>); | ||
static_assert(!std::is_invocable_v<decltype(std::ranges::distance), It&, It&>); | ||
static_assert(!std::is_invocable_v<decltype(std::ranges::distance), It&, It&&>); | ||
static_assert(!std::is_invocable_v<decltype(std::ranges::distance), It&&, It&>); | ||
static_assert(!std::is_invocable_v<decltype(std::ranges::distance), It&&, It&&>); | ||
} | ||
|
||
// Calling it on a non-iterator or non-sentinel isn't allowed. | ||
static_assert(!std::is_invocable_v<decltype(std::ranges::distance), int, int>); | ||
static_assert(!std::is_invocable_v<decltype(std::ranges::distance), int*, int>); | ||
static_assert(!std::is_invocable_v<decltype(std::ranges::distance), int, int*>); | ||
static_assert(!std::is_invocable_v<decltype(std::ranges::distance), int*, char*>); | ||
|
||
return true; | ||
} | ||
|
||
int main(int, char**) { | ||
test(); | ||
static_assert(test()); | ||
|
||
return 0; | ||
} |
72 changes: 72 additions & 0 deletions
72
...std/iterators/iterator.primitives/range.iter.ops/range.iter.ops.distance/lwg3664.pass.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
//===----------------------------------------------------------------------===// | ||
// | ||
// 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 | ||
// UNSUPPORTED: libcpp-no-concepts | ||
|
||
// template<class I, sentinel_for<I> S> | ||
// requires (!sized_sentinel_for<S, I>) | ||
// constexpr iter_difference_t<I> ranges::distance(I first, S last); | ||
// | ||
// template<class I, sized_sentinel_for<decay_t<I>> S> | ||
// constexpr iter_difference_t<I> ranges::distance(const I& first, S last); | ||
|
||
#include <iterator> | ||
#include <cassert> | ||
|
||
#include "test_iterators.h" | ||
|
||
template<class It> | ||
struct EvilSentinel { | ||
It p_; | ||
friend constexpr bool operator==(EvilSentinel s, It p) { return s.p_ == p; } | ||
friend constexpr auto operator-(EvilSentinel s, It p) { return s.p_ - p; } | ||
friend constexpr auto operator-(It p, EvilSentinel s) { return p - s.p_; } | ||
friend constexpr void operator-(EvilSentinel s, int(&)[3]) = delete; | ||
friend constexpr void operator-(EvilSentinel s, int(&&)[3]) = delete; | ||
friend constexpr void operator-(EvilSentinel s, const int(&)[3]) = delete; | ||
friend constexpr void operator-(EvilSentinel s, const int(&&)[3]) = delete; | ||
}; | ||
static_assert( std::sized_sentinel_for<EvilSentinel<int*>, int*>); | ||
static_assert(!std::sized_sentinel_for<EvilSentinel<int*>, const int*>); | ||
static_assert( std::sized_sentinel_for<EvilSentinel<const int*>, int*>); | ||
static_assert( std::sized_sentinel_for<EvilSentinel<const int*>, const int*>); | ||
|
||
constexpr bool test() { | ||
{ | ||
int a[] = {1, 2, 3}; | ||
assert(std::ranges::distance(a, a + 3) == 3); | ||
assert(std::ranges::distance(a, a) == 0); | ||
assert(std::ranges::distance(a + 3, a) == -3); | ||
} | ||
{ | ||
int a[] = {1, 2, 3}; | ||
assert(std::ranges::distance(a, EvilSentinel<int*>{a+3}) == 3); | ||
assert(std::ranges::distance(a, EvilSentinel<int*>{a}) == 0); | ||
assert(std::ranges::distance(a+3, EvilSentinel<int*>{a}) == -3); | ||
assert(std::ranges::distance(std::move(a), EvilSentinel<int*>{a+3}) == 3); | ||
} | ||
{ | ||
const int a[] = {1, 2, 3}; | ||
assert(std::ranges::distance(a, EvilSentinel<const int*>{a+3}) == 3); | ||
assert(std::ranges::distance(a, EvilSentinel<const int*>{a}) == 0); | ||
assert(std::ranges::distance(a+3, EvilSentinel<const int*>{a}) == -3); | ||
assert(std::ranges::distance(std::move(a), EvilSentinel<const int*>{a+3}) == 3); | ||
static_assert(!std::is_invocable_v<decltype(std::ranges::distance), const int(&)[3], EvilSentinel<int*>>); | ||
static_assert(!std::is_invocable_v<decltype(std::ranges::distance), const int(&&)[3], EvilSentinel<int*>>); | ||
} | ||
|
||
return true; | ||
} | ||
|
||
int main(int, char**) { | ||
test(); | ||
static_assert(test()); | ||
|
||
return 0; | ||
} |
Oops, something went wrong.