| // -*- C++ -*- |
| //===----------------------------------------------------------------------===// |
| // |
| // 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 _LIBCPP___RANGES_STRIDE_VIEW_H |
| #define _LIBCPP___RANGES_STRIDE_VIEW_H |
| |
| #include <__assert> |
| #include <__compare/three_way_comparable.h> |
| #include <__concepts/constructible.h> |
| #include <__concepts/convertible_to.h> |
| #include <__concepts/derived_from.h> |
| #include <__concepts/equality_comparable.h> |
| #include <__config> |
| #include <__functional/bind_back.h> |
| #include <__iterator/advance.h> |
| #include <__iterator/concepts.h> |
| #include <__iterator/default_sentinel.h> |
| #include <__iterator/distance.h> |
| #include <__iterator/iter_move.h> |
| #include <__iterator/iter_swap.h> |
| #include <__iterator/iterator_traits.h> |
| #include <__ranges/access.h> |
| #include <__ranges/all.h> |
| #include <__ranges/concepts.h> |
| #include <__ranges/enable_borrowed_range.h> |
| #include <__ranges/range_adaptor.h> |
| #include <__ranges/view_interface.h> |
| #include <__type_traits/make_unsigned.h> |
| |
| #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) |
| # pragma GCC system_header |
| #endif |
| |
| _LIBCPP_PUSH_MACROS |
| #include <__undef_macros> |
| |
| _LIBCPP_BEGIN_NAMESPACE_STD |
| |
| #if _LIBCPP_STD_VER >= 23 |
| |
| namespace ranges { |
| |
| template <class _Value> |
| _LIBCPP_HIDE_FROM_ABI constexpr _Value __div_ceil(_Value __left, _Value __right) { |
| _Value __r = __left / __right; |
| if (__left % __right) { |
| ++__r; |
| } |
| return __r; |
| } |
| |
| template <input_range _View> |
| requires view<_View> |
| class stride_view : public view_interface<stride_view<_View>> { |
| _LIBCPP_NO_UNIQUE_ADDRESS _View __base_ = _View(); |
| range_difference_t<_View> __stride_ = 0; |
| |
| template <bool _Const> |
| class __iterator; |
| |
| public: |
| _LIBCPP_HIDE_FROM_ABI constexpr explicit stride_view(_View __base, range_difference_t<_View> __stride) |
| : __base_(std::move(__base)), __stride_(__stride) { |
| _LIBCPP_ASSERT_ARGUMENT_WITHIN_DOMAIN(__stride > 0, "The value of stride must be greater than 0"); |
| } |
| |
| [[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr _View base() const& |
| requires copy_constructible<_View> |
| { |
| return __base_; |
| } |
| |
| [[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr _View base() && { return std::move(__base_); } |
| |
| [[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr range_difference_t<_View> stride() const noexcept { return __stride_; } |
| |
| [[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr auto begin() |
| requires(!__simple_view<_View>) |
| { |
| return __iterator</*_Const=*/false>(this, ranges::begin(__base_), 0); |
| } |
| |
| [[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr auto begin() const |
| requires range<const _View> |
| { |
| return __iterator</*_Const=*/true>(this, ranges::begin(__base_), 0); |
| } |
| |
| [[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr auto end() |
| requires(!__simple_view<_View>) |
| { |
| if constexpr (common_range<_View> && sized_range<_View> && forward_range<_View>) { |
| auto __missing = (__stride_ - ranges::distance(__base_) % __stride_) % __stride_; |
| return __iterator</*_Const=*/false>(this, ranges::end(__base_), __missing); |
| } else if constexpr (common_range<_View> && !bidirectional_range<_View>) { |
| return __iterator</*_Const=*/false>(this, ranges::end(__base_), 0); |
| } else { |
| return default_sentinel; |
| } |
| } |
| |
| [[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr auto end() const |
| requires(range<const _View>) |
| { |
| if constexpr (common_range<const _View> && sized_range<const _View> && forward_range<const _View>) { |
| auto __missing = (__stride_ - ranges::distance(__base_) % __stride_) % __stride_; |
| return __iterator</*_Const=*/true>(this, ranges::end(__base_), __missing); |
| } else if constexpr (common_range<const _View> && !bidirectional_range<const _View>) { |
| return __iterator</*_Const=*/true>(this, ranges::end(__base_), 0); |
| } else { |
| return default_sentinel; |
| } |
| } |
| |
| [[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr auto size() |
| requires sized_range<_View> |
| { |
| return std::__to_unsigned_like(ranges::__div_ceil(ranges::distance(__base_), __stride_)); |
| } |
| |
| [[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr auto size() const |
| requires sized_range<const _View> |
| { |
| return std::__to_unsigned_like(ranges::__div_ceil(ranges::distance(__base_), __stride_)); |
| } |
| }; // class stride_view |
| |
| template <class _Range> |
| stride_view(_Range&&, range_difference_t<_Range>) -> stride_view<views::all_t<_Range>>; |
| |
| template <class _View> |
| struct __stride_iterator_category {}; |
| |
| template <forward_range _View> |
| struct __stride_iterator_category<_View> { |
| using _Cat _LIBCPP_NODEBUG = typename iterator_traits<iterator_t<_View>>::iterator_category; |
| using iterator_category = |
| _If<derived_from<_Cat, random_access_iterator_tag>, |
| /* then */ random_access_iterator_tag, |
| /* else */ _Cat >; |
| }; |
| |
| template <input_range _View> |
| requires view<_View> |
| template <bool _Const> |
| class stride_view<_View>::__iterator : public __stride_iterator_category<__maybe_const<_Const, _View>> { |
| using _Parent _LIBCPP_NODEBUG = __maybe_const<_Const, stride_view<_View>>; |
| using _Base _LIBCPP_NODEBUG = __maybe_const<_Const, _View>; |
| |
| _LIBCPP_NO_UNIQUE_ADDRESS iterator_t<_Base> __current_ = iterator_t<_Base>(); |
| _LIBCPP_NO_UNIQUE_ADDRESS ranges::sentinel_t<_Base> __end_ = ranges::sentinel_t<_Base>(); |
| range_difference_t<_Base> __stride_ = 0; |
| range_difference_t<_Base> __missing_ = 0; |
| |
| friend stride_view; |
| |
| _LIBCPP_HIDE_FROM_ABI constexpr __iterator( |
| _Parent* __parent, ranges::iterator_t<_Base> __current, range_difference_t<_Base> __missing) |
| : __current_(std::move(__current)), |
| __end_(ranges::end(__parent->__base_)), |
| __stride_(__parent->__stride_), |
| __missing_(__missing) {} |
| |
| static consteval auto __get_stride_view_iterator_concept() { |
| if constexpr (random_access_range<_Base>) { |
| return random_access_iterator_tag{}; |
| } else if constexpr (bidirectional_range<_Base>) { |
| return bidirectional_iterator_tag{}; |
| } else if constexpr (forward_range<_Base>) { |
| return forward_iterator_tag{}; |
| } else { |
| return input_iterator_tag{}; |
| } |
| } |
| |
| public: |
| using difference_type = range_difference_t<_Base>; |
| using value_type = range_value_t<_Base>; |
| using iterator_concept = decltype(__get_stride_view_iterator_concept()); |
| // using iterator_category = inherited; |
| |
| _LIBCPP_HIDE_FROM_ABI __iterator() |
| requires default_initializable<iterator_t<_Base>> |
| = default; |
| |
| _LIBCPP_HIDE_FROM_ABI constexpr __iterator(__iterator<!_Const> __i) |
| requires _Const && convertible_to<ranges::iterator_t<_View>, iterator_t<_Base>> && |
| convertible_to<sentinel_t<_View>, sentinel_t<_Base>> |
| : __current_(std::move(__i.__current_)), |
| __end_(std::move(__i.__end_)), |
| __stride_(__i.__stride_), |
| __missing_(__i.__missing_) {} |
| |
| [[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr iterator_t<_Base> const& base() const& noexcept { return __current_; } |
| [[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr iterator_t<_Base> base() && { return std::move(__current_); } |
| |
| [[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr decltype(auto) operator*() const { |
| _LIBCPP_ASSERT_VALID_ELEMENT_ACCESS(__current_ != __end_, "Cannot dereference an iterator at the end."); |
| return *__current_; |
| } |
| |
| _LIBCPP_HIDE_FROM_ABI constexpr __iterator& operator++() { |
| _LIBCPP_ASSERT_VALID_ELEMENT_ACCESS(__current_ != __end_, "Cannot increment an iterator already at the end."); |
| __missing_ = ranges::advance(__current_, __stride_, __end_); |
| return *this; |
| } |
| |
| _LIBCPP_HIDE_FROM_ABI constexpr void operator++(int) { |
| _LIBCPP_ASSERT_VALID_ELEMENT_ACCESS(__current_ != __end_, "Cannot increment an iterator already at the end."); |
| ++*this; |
| } |
| _LIBCPP_HIDE_FROM_ABI constexpr __iterator operator++(int) |
| requires forward_range<_Base> |
| { |
| _LIBCPP_ASSERT_VALID_ELEMENT_ACCESS(__current_ != __end_, "Cannot increment an iterator already at the end."); |
| auto __tmp = *this; |
| ++*this; |
| return __tmp; |
| } |
| |
| _LIBCPP_HIDE_FROM_ABI constexpr __iterator& operator--() |
| requires bidirectional_range<_Base> |
| { |
| ranges::advance(__current_, __missing_ - __stride_); |
| __missing_ = 0; |
| return *this; |
| } |
| _LIBCPP_HIDE_FROM_ABI constexpr __iterator operator--(int) |
| requires bidirectional_range<_Base> |
| { |
| auto __tmp = *this; |
| --*this; |
| return __tmp; |
| } |
| |
| _LIBCPP_HIDE_FROM_ABI constexpr __iterator& operator+=(difference_type __n) |
| requires random_access_range<_Base> |
| { |
| if (__n > 0) { |
| _LIBCPP_ASSERT_VALID_ELEMENT_ACCESS(ranges::distance(__current_, __end_) > __stride_ * (__n - 1), |
| "Advancing the iterator beyond the end is not allowed."); |
| ranges::advance(__current_, __stride_ * (__n - 1)); |
| __missing_ = ranges::advance(__current_, __stride_, __end_); |
| |
| } else if (__n < 0) { |
| ranges::advance(__current_, __stride_ * __n + __missing_); |
| __missing_ = 0; |
| } |
| return *this; |
| } |
| |
| _LIBCPP_HIDE_FROM_ABI constexpr __iterator& operator-=(difference_type __n) |
| requires random_access_range<_Base> |
| { |
| return *this += -__n; |
| } |
| |
| [[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr decltype(auto) operator[](difference_type __n) const |
| requires random_access_range<_Base> |
| { |
| return *(*this + __n); |
| } |
| |
| _LIBCPP_HIDE_FROM_ABI friend constexpr bool operator==(__iterator const& __x, default_sentinel_t) { |
| return __x.__current_ == __x.__end_; |
| } |
| |
| _LIBCPP_HIDE_FROM_ABI friend constexpr bool operator==(__iterator const& __x, __iterator const& __y) |
| requires equality_comparable<iterator_t<_Base>> |
| { |
| return __x.__current_ == __y.__current_; |
| } |
| |
| _LIBCPP_HIDE_FROM_ABI friend constexpr bool operator<(__iterator const& __x, __iterator const& __y) |
| requires random_access_range<_Base> |
| { |
| return __x.__current_ < __y.__current_; |
| } |
| |
| _LIBCPP_HIDE_FROM_ABI friend constexpr bool operator>(__iterator const& __x, __iterator const& __y) |
| requires random_access_range<_Base> |
| { |
| return __y < __x; |
| } |
| |
| _LIBCPP_HIDE_FROM_ABI friend constexpr bool operator<=(__iterator const& __x, __iterator const& __y) |
| requires random_access_range<_Base> |
| { |
| return !(__y < __x); |
| } |
| |
| _LIBCPP_HIDE_FROM_ABI friend constexpr bool operator>=(__iterator const& __x, __iterator const& __y) |
| requires random_access_range<_Base> |
| { |
| return !(__x < __y); |
| } |
| |
| _LIBCPP_HIDE_FROM_ABI friend constexpr auto operator<=>(__iterator const& __x, __iterator const& __y) |
| requires random_access_range<_Base> && three_way_comparable<iterator_t<_Base>> |
| { |
| return __x.__current_ <=> __y.__current_; |
| } |
| |
| [[nodiscard]] _LIBCPP_HIDE_FROM_ABI friend constexpr __iterator operator+(__iterator const& __i, difference_type __s) |
| requires random_access_range<_Base> |
| { |
| auto __r = __i; |
| __r += __s; |
| return __r; |
| } |
| [[nodiscard]] _LIBCPP_HIDE_FROM_ABI friend constexpr __iterator operator+(difference_type __s, __iterator const& __i) |
| requires random_access_range<_Base> |
| { |
| auto __r = __i; |
| __r += __s; |
| return __r; |
| } |
| |
| [[nodiscard]] _LIBCPP_HIDE_FROM_ABI friend constexpr __iterator operator-(__iterator const& __i, difference_type __s) |
| requires random_access_range<_Base> |
| { |
| auto __r = __i; |
| __r -= __s; |
| return __r; |
| } |
| |
| [[nodiscard]] _LIBCPP_HIDE_FROM_ABI friend constexpr difference_type |
| operator-(__iterator const& __x, __iterator const& __y) |
| requires sized_sentinel_for<iterator_t<_Base>, iterator_t<_Base>> |
| { |
| if constexpr (forward_range<_Base>) { |
| auto __n = __x.__current_ - __y.__current_; |
| return (__n + __x.__missing_ - __y.__missing_) / __x.__stride_; |
| } |
| auto __n = __x.__current_ - __y.__current_; |
| if (__n < 0) { |
| return -ranges::__div_ceil(-__n, __x.__stride_); |
| } |
| return ranges::__div_ceil(__n, __x.__stride_); |
| } |
| |
| [[nodiscard]] _LIBCPP_HIDE_FROM_ABI friend constexpr difference_type |
| operator-(default_sentinel_t, __iterator const& __x) |
| requires sized_sentinel_for<sentinel_t<_Base>, iterator_t<_Base>> |
| { |
| return ranges::__div_ceil(__x.__end_ - __x.__current_, __x.__stride_); |
| } |
| [[nodiscard]] _LIBCPP_HIDE_FROM_ABI friend constexpr difference_type |
| operator-(__iterator const& __x, default_sentinel_t __y) |
| requires sized_sentinel_for<sentinel_t<_Base>, iterator_t<_Base>> |
| { |
| return -(__y - __x); |
| } |
| |
| [[nodiscard]] _LIBCPP_HIDE_FROM_ABI friend constexpr range_rvalue_reference_t<_Base> |
| iter_move(__iterator const& __it) noexcept(noexcept(ranges::iter_move(__it.__current_))) { |
| return ranges::iter_move(__it.__current_); |
| } |
| |
| _LIBCPP_HIDE_FROM_ABI friend constexpr void |
| iter_swap(__iterator const& __x, |
| __iterator const& __y) noexcept(noexcept(ranges::iter_swap(__x.__current_, __y.__current_))) |
| requires indirectly_swappable<iterator_t<_Base>> |
| { |
| return ranges::iter_swap(__x.__current_, __y.__current_); |
| } |
| }; // class stride_view::__iterator |
| |
| template <class _Tp> |
| inline constexpr bool enable_borrowed_range<stride_view<_Tp>> = enable_borrowed_range<_Tp>; |
| |
| namespace views { |
| namespace __stride_view { |
| struct __fn { |
| // clang-format off |
| template <viewable_range _Range> |
| [[nodiscard]] _LIBCPP_HIDE_FROM_ABI |
| constexpr auto operator()(_Range&& __range, range_difference_t<_Range> __n) const |
| noexcept(noexcept(stride_view{std::forward<_Range>(__range), __n})) |
| -> decltype( stride_view{std::forward<_Range>(__range), __n}) |
| { return stride_view(std::forward<_Range>(__range), __n); } |
| // clang-format on |
| |
| template <class _Np> |
| [[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr auto operator()(_Np&& __n) const { |
| return __pipeable(std::__bind_back(*this, std::forward<_Np>(__n))); |
| } |
| }; |
| } // namespace __stride_view |
| |
| inline namespace __cpo { |
| inline constexpr auto stride = __stride_view::__fn{}; |
| } // namespace __cpo |
| } // namespace views |
| |
| } // namespace ranges |
| |
| #endif // _LIBCPP_STD_VER >= 23 |
| |
| _LIBCPP_END_NAMESPACE_STD |
| |
| _LIBCPP_POP_MACROS |
| |
| #endif // _LIBCPP___RANGES_STRIDE_VIEW_H |