mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-31 01:51:00 +00:00
keeping the alt 87514151c4 (diff-73a8dc1ce58605f6c5ea53548454c3bae516ec5132a29c9d7ff7edf9730c75be)
464 lines
18 KiB
C++
464 lines
18 KiB
C++
#ifndef AL_SPAN_H
|
|
#define AL_SPAN_H
|
|
|
|
#include <cassert>
|
|
#include <cstddef>
|
|
#include <iterator>
|
|
#include <stdexcept>
|
|
#include <tuple>
|
|
#include <type_traits>
|
|
#include <utility>
|
|
|
|
#include "alassert.h"
|
|
#include "almalloc.h"
|
|
#include "altraits.h"
|
|
|
|
namespace al {
|
|
|
|
/* This is here primarily to help ensure proper behavior for span's iterators,
|
|
* being an actual object with member functions instead of a raw pointer (which
|
|
* has requirements like + and - working with ptrdiff_t). This also helps
|
|
* silence clang-tidy's pointer arithmetic warnings for span and FlexArray
|
|
* iterators. It otherwise behaves like a plain pointer and should optimize
|
|
* accordingly.
|
|
*
|
|
* Shouldn't be needed once we use std::span in C++20.
|
|
*/
|
|
template<typename T>
|
|
class ptr_wrapper {
|
|
static_assert(std::is_pointer_v<T>);
|
|
T mPointer{};
|
|
|
|
public:
|
|
using value_type = std::remove_pointer_t<T>;
|
|
using size_type = std::size_t;
|
|
using difference_type = std::ptrdiff_t;
|
|
using pointer = value_type*;
|
|
using reference = value_type&;
|
|
using iterator_category = std::random_access_iterator_tag;
|
|
|
|
explicit constexpr ptr_wrapper(T ptr) : mPointer{ptr} { }
|
|
|
|
/* NOLINTBEGIN(cppcoreguidelines-pro-bounds-pointer-arithmetic) */
|
|
constexpr auto operator++() noexcept -> ptr_wrapper& { ++mPointer; return *this; }
|
|
constexpr auto operator--() noexcept -> ptr_wrapper& { --mPointer; return *this; }
|
|
constexpr auto operator++(int) noexcept -> ptr_wrapper
|
|
{
|
|
auto temp = *this;
|
|
++*this;
|
|
return temp;
|
|
}
|
|
constexpr auto operator--(int) noexcept -> ptr_wrapper
|
|
{
|
|
auto temp = *this;
|
|
--*this;
|
|
return temp;
|
|
}
|
|
|
|
constexpr
|
|
auto operator+=(std::ptrdiff_t n) noexcept -> ptr_wrapper& { mPointer += n; return *this; }
|
|
constexpr
|
|
auto operator-=(std::ptrdiff_t n) noexcept -> ptr_wrapper& { mPointer -= n; return *this; }
|
|
|
|
[[nodiscard]] constexpr auto operator*() const noexcept -> value_type& { return *mPointer; }
|
|
[[nodiscard]] constexpr auto operator->() const noexcept -> value_type* { return mPointer; }
|
|
[[nodiscard]] constexpr
|
|
auto operator[](std::size_t idx) const noexcept -> value_type& {return mPointer[idx];}
|
|
|
|
[[nodiscard]] friend constexpr
|
|
auto operator+(const ptr_wrapper &lhs, std::ptrdiff_t n) noexcept -> ptr_wrapper
|
|
{ return ptr_wrapper{lhs.mPointer + n}; }
|
|
[[nodiscard]] friend constexpr
|
|
auto operator+(std::ptrdiff_t n, const ptr_wrapper &rhs) noexcept -> ptr_wrapper
|
|
{ return ptr_wrapper{n + rhs.mPointer}; }
|
|
[[nodiscard]] friend constexpr
|
|
auto operator-(const ptr_wrapper &lhs, std::ptrdiff_t n) noexcept -> ptr_wrapper
|
|
{ return ptr_wrapper{lhs.mPointer - n}; }
|
|
|
|
[[nodiscard]] friend constexpr
|
|
auto operator-(const ptr_wrapper &lhs, const ptr_wrapper &rhs)noexcept->std::ptrdiff_t
|
|
{ return lhs.mPointer - rhs.mPointer; }
|
|
|
|
[[nodiscard]] friend constexpr
|
|
auto operator==(const ptr_wrapper &lhs, const ptr_wrapper &rhs) noexcept -> bool
|
|
{ return lhs.mPointer == rhs.mPointer; }
|
|
[[nodiscard]] friend constexpr
|
|
auto operator!=(const ptr_wrapper &lhs, const ptr_wrapper &rhs) noexcept -> bool
|
|
{ return lhs.mPointer != rhs.mPointer; }
|
|
[[nodiscard]] friend constexpr
|
|
auto operator<=(const ptr_wrapper &lhs, const ptr_wrapper &rhs) noexcept -> bool
|
|
{ return lhs.mPointer <= rhs.mPointer; }
|
|
[[nodiscard]] friend constexpr
|
|
auto operator>=(const ptr_wrapper &lhs, const ptr_wrapper &rhs) noexcept -> bool
|
|
{ return lhs.mPointer >= rhs.mPointer; }
|
|
[[nodiscard]] friend constexpr
|
|
auto operator<(const ptr_wrapper &lhs, const ptr_wrapper &rhs) noexcept -> bool
|
|
{ return lhs.mPointer < rhs.mPointer; }
|
|
[[nodiscard]] friend constexpr
|
|
auto operator>(const ptr_wrapper &lhs, const ptr_wrapper &rhs) noexcept -> bool
|
|
{ return lhs.mPointer > rhs.mPointer; }
|
|
/* NOLINTEND(cppcoreguidelines-pro-bounds-pointer-arithmetic) */
|
|
};
|
|
|
|
|
|
inline constexpr std::size_t dynamic_extent{static_cast<std::size_t>(-1)};
|
|
|
|
template<typename T, std::size_t E=dynamic_extent>
|
|
class span;
|
|
|
|
namespace detail_ {
|
|
template<typename T>
|
|
struct is_span_ : std::false_type { };
|
|
template<typename T, std::size_t E>
|
|
struct is_span_<span<T,E>> : std::true_type { };
|
|
template<typename T>
|
|
inline constexpr bool is_span_v = is_span_<std::remove_cv_t<T>>::value;
|
|
|
|
template<typename T>
|
|
struct is_std_array_ : std::false_type { };
|
|
template<typename T, std::size_t N>
|
|
struct is_std_array_<std::array<T,N>> : std::true_type { };
|
|
template<typename T>
|
|
inline constexpr bool is_std_array_v = is_std_array_<std::remove_cv_t<T>>::value;
|
|
|
|
template<typename T, typename = void>
|
|
inline constexpr bool has_size_and_data = false;
|
|
template<typename T>
|
|
inline constexpr bool has_size_and_data<T,
|
|
std::void_t<decltype(std::size(std::declval<T>())),decltype(std::data(std::declval<T>()))>>
|
|
= true;
|
|
|
|
template<typename C>
|
|
inline constexpr bool is_valid_container_type = !is_span_v<C> && !is_std_array_v<C>
|
|
&& !std::is_array<C>::value && has_size_and_data<C>;
|
|
|
|
template<typename T, typename U>
|
|
inline constexpr bool is_array_compatible = std::is_convertible<T(*)[],U(*)[]>::value; /* NOLINT(*-avoid-c-arrays) */
|
|
|
|
template<typename C, typename T>
|
|
inline constexpr bool is_valid_container = is_valid_container_type<C>
|
|
&& is_array_compatible<std::remove_pointer_t<decltype(std::data(std::declval<C&>()))>,T>;
|
|
} // namespace detail_
|
|
|
|
#define REQUIRES(...) std::enable_if_t<(__VA_ARGS__),bool> = true
|
|
|
|
/* NOLINTBEGIN(google-explicit-constructor) This largely follows std::span's
|
|
* constructor behavior, and should be replaced once C++20 is used.
|
|
*/
|
|
template<typename T, std::size_t E>
|
|
class span {
|
|
public:
|
|
using element_type = T;
|
|
using value_type = std::remove_cv_t<T>;
|
|
using size_type = std::size_t;
|
|
using difference_type = std::ptrdiff_t;
|
|
|
|
using pointer = T*;
|
|
using const_pointer = const T*;
|
|
using reference = T&;
|
|
using const_reference = const T&;
|
|
|
|
using iterator = ptr_wrapper<pointer>;
|
|
using const_iterator = ptr_wrapper<const_pointer>;
|
|
using reverse_iterator = std::reverse_iterator<iterator>;
|
|
using const_reverse_iterator = std::reverse_iterator<const_iterator>;
|
|
|
|
static constexpr std::size_t extent{E};
|
|
|
|
template<bool is0=(extent == 0), REQUIRES(is0)>
|
|
constexpr span() noexcept { }
|
|
template<typename U>
|
|
constexpr explicit span(U iter, size_type size_) : mData{::al::to_address(iter)}
|
|
{ alassert(size_ == extent); }
|
|
template<typename U, typename V, REQUIRES(!std::is_convertible<V,std::size_t>::value)>
|
|
constexpr explicit span(U first, V last) : mData{::al::to_address(first)}
|
|
{ alassert(static_cast<std::size_t>(last-first) == extent); }
|
|
|
|
template<std::size_t N>
|
|
constexpr span(type_identity_t<element_type> (&arr)[N]) noexcept /* NOLINT(*-avoid-c-arrays) */
|
|
: mData{std::data(arr)}
|
|
{ static_assert(N == extent); }
|
|
template<std::size_t N>
|
|
constexpr span(std::array<value_type,N> &arr) noexcept : mData{std::data(arr)}
|
|
{ static_assert(N == extent); }
|
|
template<typename U=T, std::size_t N, REQUIRES(std::is_const<U>::value)>
|
|
constexpr span(const std::array<value_type,N> &arr) noexcept : mData{std::data(arr)}
|
|
{ static_assert(N == extent); }
|
|
|
|
template<typename U, REQUIRES(detail_::is_valid_container<U, element_type>)>
|
|
constexpr explicit span(U&& cont) : span{std::data(cont), std::size(cont)} { }
|
|
|
|
template<typename U, std::size_t N, REQUIRES(!std::is_same<element_type,U>::value
|
|
&& detail_::is_array_compatible<U,element_type> && N == dynamic_extent)>
|
|
constexpr explicit span(const span<U,N> &span_) noexcept : mData{std::data(span_)}
|
|
{ alassert(std::size(span_) == extent); }
|
|
template<typename U, std::size_t N, REQUIRES(!std::is_same<element_type,U>::value
|
|
&& detail_::is_array_compatible<U,element_type> && N == extent)>
|
|
constexpr span(const span<U,N> &span_) noexcept : mData{std::data(span_)} { }
|
|
constexpr span(const span&) noexcept = default;
|
|
|
|
constexpr span& operator=(const span &rhs) noexcept = default;
|
|
|
|
[[nodiscard]] constexpr auto front() const -> reference { return mData[0]; }
|
|
[[nodiscard]] constexpr auto back() const -> reference { return mData[E-1]; }
|
|
[[nodiscard]] constexpr auto operator[](size_type idx) const -> reference { return mData[idx]; }
|
|
[[nodiscard]] constexpr auto data() const noexcept -> pointer { return mData; }
|
|
|
|
[[nodiscard]] constexpr auto size() const noexcept -> size_type { return E; }
|
|
[[nodiscard]] constexpr auto size_bytes() const noexcept -> size_type { return E * sizeof(value_type); }
|
|
[[nodiscard]] constexpr auto empty() const noexcept -> bool { return E == 0; }
|
|
|
|
[[nodiscard]] constexpr auto begin() const noexcept -> iterator { return iterator{mData}; }
|
|
[[nodiscard]] constexpr auto end() const noexcept -> iterator { return iterator{mData+E}; }
|
|
[[nodiscard]] constexpr
|
|
auto cbegin() const noexcept -> const_iterator { return const_iterator{mData}; }
|
|
[[nodiscard]] constexpr
|
|
auto cend() const noexcept -> const_iterator { return const_iterator{mData+E}; }
|
|
|
|
[[nodiscard]] constexpr
|
|
auto rbegin() const noexcept -> reverse_iterator { return reverse_iterator{end()}; }
|
|
[[nodiscard]] constexpr
|
|
auto rend() const noexcept -> reverse_iterator { return reverse_iterator{begin()}; }
|
|
[[nodiscard]] constexpr
|
|
auto crbegin() const noexcept -> const_reverse_iterator { return cend(); }
|
|
[[nodiscard]] constexpr
|
|
auto crend() const noexcept -> const_reverse_iterator { return cbegin(); }
|
|
|
|
template<std::size_t C>
|
|
[[nodiscard]] constexpr auto first() const noexcept -> span<element_type,C>
|
|
{
|
|
static_assert(E >= C, "New size exceeds original capacity");
|
|
return span<element_type,C>{mData, C};
|
|
}
|
|
|
|
template<std::size_t C>
|
|
[[nodiscard]] constexpr auto last() const noexcept -> span<element_type,C>
|
|
{
|
|
static_assert(E >= C, "New size exceeds original capacity");
|
|
return span<element_type,C>{mData+(E-C), C};
|
|
}
|
|
|
|
template<std::size_t O, std::size_t C>
|
|
[[nodiscard]] constexpr
|
|
auto subspan() const noexcept -> std::enable_if_t<C!=dynamic_extent,span<element_type,C>>
|
|
{
|
|
static_assert(E >= O, "Offset exceeds extent");
|
|
static_assert(E-O >= C, "New size exceeds original capacity");
|
|
return span<element_type,C>{mData+O, C};
|
|
}
|
|
|
|
template<std::size_t O, std::size_t C=dynamic_extent>
|
|
[[nodiscard]] constexpr
|
|
auto subspan() const noexcept -> std::enable_if_t<C==dynamic_extent,span<element_type,E-O>>
|
|
{
|
|
static_assert(E >= O, "Offset exceeds extent");
|
|
return span<element_type,E-O>{mData+O, E-O};
|
|
}
|
|
|
|
/* NOTE: Can't declare objects of a specialized template class prior to
|
|
* defining the specialization. As a result, these methods need to be
|
|
* defined later.
|
|
*/
|
|
[[nodiscard]] constexpr
|
|
auto first(std::size_t count) const noexcept -> span<element_type,dynamic_extent>;
|
|
[[nodiscard]] constexpr
|
|
auto last(std::size_t count) const noexcept -> span<element_type,dynamic_extent>;
|
|
[[nodiscard]] constexpr
|
|
auto subspan(std::size_t offset, std::size_t count=dynamic_extent) const noexcept
|
|
-> span<element_type,dynamic_extent>;
|
|
|
|
private:
|
|
pointer mData{nullptr};
|
|
};
|
|
|
|
template<typename T>
|
|
class span<T,dynamic_extent> {
|
|
public:
|
|
using element_type = T;
|
|
using value_type = std::remove_cv_t<T>;
|
|
using size_type = std::size_t;
|
|
using difference_type = ptrdiff_t;
|
|
|
|
using pointer = T*;
|
|
using const_pointer = const T*;
|
|
using reference = T&;
|
|
using const_reference = const T&;
|
|
|
|
using iterator = ptr_wrapper<pointer>;
|
|
using const_iterator = ptr_wrapper<const_pointer>;
|
|
using reverse_iterator = std::reverse_iterator<iterator>;
|
|
using const_reverse_iterator = std::reverse_iterator<const_iterator>;
|
|
|
|
static constexpr std::size_t extent{dynamic_extent};
|
|
|
|
constexpr span() noexcept = default;
|
|
template<typename U>
|
|
constexpr span(U iter, size_type count) : mData{::al::to_address(iter)}, mDataLength{count}
|
|
{ }
|
|
template<typename U, typename V, REQUIRES(!std::is_convertible<V,std::size_t>::value)>
|
|
constexpr span(U first, V last)
|
|
: span{::al::to_address(first), static_cast<std::size_t>(last-first)}
|
|
{ }
|
|
|
|
template<std::size_t N>
|
|
constexpr span(type_identity_t<element_type> (&arr)[N]) noexcept /* NOLINT(*-avoid-c-arrays) */
|
|
: mData{std::data(arr)}, mDataLength{std::size(arr)}
|
|
{ }
|
|
template<std::size_t N>
|
|
constexpr span(std::array<value_type,N> &arr) noexcept
|
|
: mData{std::data(arr)}, mDataLength{std::size(arr)}
|
|
{ }
|
|
template<std::size_t N, typename U=T, REQUIRES(std::is_const<U>::value)>
|
|
constexpr span(const std::array<value_type,N> &arr) noexcept
|
|
: mData{std::data(arr)}, mDataLength{std::size(arr)}
|
|
{ }
|
|
|
|
template<typename U, REQUIRES(detail_::is_valid_container<U, element_type>)>
|
|
constexpr span(U&& cont) : span{std::data(cont), std::size(cont)} { }
|
|
|
|
template<typename U, std::size_t N, REQUIRES(detail_::is_array_compatible<U,element_type>
|
|
&& (!std::is_same<element_type,U>::value || extent != N))>
|
|
constexpr span(const span<U,N> &span_) noexcept : span{std::data(span_), std::size(span_)} { }
|
|
constexpr span(const span&) noexcept = default;
|
|
|
|
constexpr span& operator=(const span &rhs) noexcept = default;
|
|
|
|
[[nodiscard]] constexpr auto front() const -> reference { return mData[0]; }
|
|
[[nodiscard]] constexpr auto back() const -> reference { return mData[mDataLength-1]; }
|
|
[[nodiscard]] constexpr auto operator[](size_type idx) const -> reference {return mData[idx];}
|
|
[[nodiscard]] constexpr auto data() const noexcept -> pointer { return mData; }
|
|
|
|
[[nodiscard]] constexpr auto size() const noexcept -> size_type { return mDataLength; }
|
|
[[nodiscard]] constexpr
|
|
auto size_bytes() const noexcept -> size_type { return mDataLength * sizeof(value_type); }
|
|
[[nodiscard]] constexpr auto empty() const noexcept -> bool { return mDataLength == 0; }
|
|
|
|
[[nodiscard]] constexpr auto begin() const noexcept -> iterator { return iterator{mData}; }
|
|
[[nodiscard]] constexpr
|
|
auto end() const noexcept -> iterator { return iterator{mData+mDataLength}; }
|
|
[[nodiscard]] constexpr
|
|
auto cbegin() const noexcept -> const_iterator { return const_iterator{mData}; }
|
|
[[nodiscard]] constexpr
|
|
auto cend() const noexcept -> const_iterator { return const_iterator{mData+mDataLength}; }
|
|
|
|
[[nodiscard]] constexpr
|
|
auto rbegin() const noexcept -> reverse_iterator { return reverse_iterator{end()}; }
|
|
[[nodiscard]] constexpr
|
|
auto rend() const noexcept -> reverse_iterator { return reverse_iterator{begin()}; }
|
|
[[nodiscard]] constexpr
|
|
auto crbegin() const noexcept -> const_reverse_iterator { return cend(); }
|
|
[[nodiscard]] constexpr
|
|
auto crend() const noexcept -> const_reverse_iterator { return cbegin(); }
|
|
|
|
template<std::size_t C>
|
|
[[nodiscard]] constexpr auto first() const noexcept -> span<element_type,C>
|
|
{
|
|
assert(C <= mDataLength);
|
|
return span<element_type,C>{mData, C};
|
|
}
|
|
|
|
[[nodiscard]] constexpr auto first(std::size_t count) const noexcept -> span
|
|
{
|
|
assert(count <= mDataLength);
|
|
return span{mData, count};
|
|
}
|
|
|
|
template<std::size_t C>
|
|
[[nodiscard]] constexpr auto last() const noexcept -> span<element_type,C>
|
|
{
|
|
assert(C <= mDataLength);
|
|
return span<element_type,C>{mData+mDataLength-C, C};
|
|
}
|
|
|
|
[[nodiscard]] constexpr auto last(std::size_t count) const noexcept -> span
|
|
{
|
|
assert(count <= mDataLength);
|
|
return span{mData+mDataLength-count, count};
|
|
}
|
|
|
|
template<std::size_t O, std::size_t C>
|
|
[[nodiscard]] constexpr
|
|
auto subspan() const noexcept -> std::enable_if_t<C!=dynamic_extent,span<element_type,C>>
|
|
{
|
|
assert(O <= mDataLength);
|
|
assert(C <= mDataLength-O);
|
|
return span<element_type,C>{mData+O, C};
|
|
}
|
|
|
|
template<std::size_t O, std::size_t C=dynamic_extent>
|
|
[[nodiscard]] constexpr
|
|
auto subspan() const noexcept -> std::enable_if_t<C==dynamic_extent,span<element_type,C>>
|
|
{
|
|
assert(O <= mDataLength);
|
|
return span<element_type,C>{mData+O, mDataLength-O};
|
|
}
|
|
|
|
[[nodiscard]] constexpr
|
|
auto subspan(std::size_t offset, std::size_t count=dynamic_extent) const noexcept -> span
|
|
{
|
|
assert(offset <= mDataLength);
|
|
if(count != dynamic_extent)
|
|
{
|
|
assert(count <= mDataLength-offset);
|
|
return span{mData+offset, count};
|
|
}
|
|
return span{mData+offset, mDataLength-offset};
|
|
}
|
|
|
|
private:
|
|
pointer mData{nullptr};
|
|
size_type mDataLength{0};
|
|
};
|
|
|
|
template<typename T, std::size_t E>
|
|
[[nodiscard]] constexpr
|
|
auto span<T,E>::first(std::size_t count) const noexcept -> span<element_type,dynamic_extent>
|
|
{
|
|
assert(count <= size());
|
|
return span<element_type>{mData, count};
|
|
}
|
|
|
|
template<typename T, std::size_t E>
|
|
[[nodiscard]] constexpr
|
|
auto span<T,E>::last(std::size_t count) const noexcept -> span<element_type,dynamic_extent>
|
|
{
|
|
assert(count <= size());
|
|
return span<element_type>{mData+size()-count, count};
|
|
}
|
|
|
|
template<typename T, std::size_t E>
|
|
[[nodiscard]] constexpr
|
|
auto span<T,E>::subspan(std::size_t offset, std::size_t count) const noexcept
|
|
-> span<element_type,dynamic_extent>
|
|
{
|
|
assert(offset <= size());
|
|
if(count != dynamic_extent)
|
|
{
|
|
assert(count <= size()-offset);
|
|
return span<element_type>{mData+offset, count};
|
|
}
|
|
return span<element_type>{mData+offset, size()-offset};
|
|
}
|
|
/* NOLINTEND(google-explicit-constructor) */
|
|
|
|
template<typename T, typename EndOrSize>
|
|
span(T, EndOrSize) -> span<std::remove_reference_t<decltype(*std::declval<T&>())>>;
|
|
|
|
template<typename T, std::size_t N>
|
|
span(T (&)[N]) -> span<T, N>; /* NOLINT(*-avoid-c-arrays) */
|
|
|
|
template<typename T, std::size_t N>
|
|
span(std::array<T, N>&) -> span<T, N>;
|
|
|
|
template<typename T, std::size_t N>
|
|
span(const std::array<T, N>&) -> span<const T, N>;
|
|
|
|
template<typename C, REQUIRES(detail_::is_valid_container_type<C>)>
|
|
span(C&&) -> span<std::remove_pointer_t<decltype(std::data(std::declval<C&>()))>>;
|
|
|
|
#undef REQUIRES
|
|
|
|
} // namespace al
|
|
|
|
#endif /* AL_SPAN_H */
|