2020-07-25 14:00:26 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AK/Assertions.h>
|
2020-09-06 19:14:08 +00:00
|
|
|
#include <AK/Iterator.h>
|
2020-09-09 11:44:51 +00:00
|
|
|
#include <AK/TypedTransfer.h>
|
2020-07-25 14:00:26 +00:00
|
|
|
#include <AK/Types.h>
|
|
|
|
|
|
|
|
namespace AK {
|
|
|
|
|
2020-07-27 11:51:12 +00:00
|
|
|
namespace Detail {
|
|
|
|
|
2020-07-25 14:00:26 +00:00
|
|
|
template<typename T>
|
|
|
|
class Span {
|
|
|
|
public:
|
2020-10-13 22:27:00 +00:00
|
|
|
ALWAYS_INLINE constexpr Span() = default;
|
2020-07-25 14:00:26 +00:00
|
|
|
|
2020-10-13 22:27:00 +00:00
|
|
|
ALWAYS_INLINE constexpr Span(T* values, size_t size)
|
2020-07-27 11:51:12 +00:00
|
|
|
: m_values(values)
|
|
|
|
, m_size(size)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
T* m_values { nullptr };
|
|
|
|
size_t m_size { 0 };
|
|
|
|
};
|
2020-07-25 14:00:26 +00:00
|
|
|
|
2020-07-27 11:51:12 +00:00
|
|
|
template<>
|
|
|
|
class Span<u8> {
|
|
|
|
public:
|
2020-10-13 22:27:00 +00:00
|
|
|
ALWAYS_INLINE constexpr Span() = default;
|
2020-07-27 11:51:12 +00:00
|
|
|
|
2020-10-13 22:27:00 +00:00
|
|
|
ALWAYS_INLINE constexpr Span(u8* values, size_t size)
|
2020-07-25 14:00:26 +00:00
|
|
|
: m_values(values)
|
|
|
|
, m_size(size)
|
|
|
|
{
|
|
|
|
}
|
2020-07-27 11:51:12 +00:00
|
|
|
ALWAYS_INLINE Span(void* values, size_t size)
|
|
|
|
: m_values(reinterpret_cast<u8*>(values))
|
|
|
|
, m_size(size)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
u8* m_values { nullptr };
|
|
|
|
size_t m_size { 0 };
|
|
|
|
};
|
|
|
|
|
|
|
|
template<>
|
|
|
|
class Span<const u8> {
|
|
|
|
public:
|
2020-10-13 22:27:00 +00:00
|
|
|
ALWAYS_INLINE constexpr Span() = default;
|
2020-07-27 11:51:12 +00:00
|
|
|
|
2020-10-13 22:27:00 +00:00
|
|
|
ALWAYS_INLINE constexpr Span(const u8* values, size_t size)
|
2020-07-27 11:51:12 +00:00
|
|
|
: m_values(values)
|
|
|
|
, m_size(size)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
ALWAYS_INLINE Span(const void* values, size_t size)
|
|
|
|
: m_values(reinterpret_cast<const u8*>(values))
|
|
|
|
, m_size(size)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
ALWAYS_INLINE Span(const char* values, size_t size)
|
|
|
|
: m_values(reinterpret_cast<const u8*>(values))
|
|
|
|
, m_size(size)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
const u8* m_values { nullptr };
|
|
|
|
size_t m_size { 0 };
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
class Span : public Detail::Span<T> {
|
|
|
|
public:
|
|
|
|
using Detail::Span<T>::Span;
|
|
|
|
|
2020-10-13 22:27:00 +00:00
|
|
|
ALWAYS_INLINE constexpr Span(std::nullptr_t)
|
2020-07-27 12:16:04 +00:00
|
|
|
: Span()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-10-13 22:27:00 +00:00
|
|
|
ALWAYS_INLINE constexpr Span(const Span& other)
|
2020-07-27 11:51:12 +00:00
|
|
|
: Span(other.m_values, other.m_size)
|
2020-07-25 14:00:26 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-10-13 22:27:00 +00:00
|
|
|
ALWAYS_INLINE constexpr const T* data() const { return this->m_values; }
|
|
|
|
ALWAYS_INLINE constexpr T* data() { return this->m_values; }
|
2020-07-25 14:00:26 +00:00
|
|
|
|
2020-12-19 14:07:09 +00:00
|
|
|
ALWAYS_INLINE constexpr const T* offset_pointer(size_t offset) const { return this->m_values + offset; }
|
|
|
|
ALWAYS_INLINE constexpr T* offset_pointer(size_t offset) { return this->m_values + offset; }
|
|
|
|
|
2020-09-06 19:14:08 +00:00
|
|
|
using ConstIterator = SimpleIterator<const Span, const T>;
|
|
|
|
using Iterator = SimpleIterator<Span, T>;
|
2020-07-25 14:00:26 +00:00
|
|
|
|
2020-09-06 19:14:08 +00:00
|
|
|
constexpr ConstIterator begin() const { return ConstIterator::begin(*this); }
|
|
|
|
constexpr Iterator begin() { return Iterator::begin(*this); }
|
|
|
|
|
|
|
|
constexpr ConstIterator end() const { return ConstIterator::end(*this); }
|
|
|
|
constexpr Iterator end() { return Iterator::end(*this); }
|
2020-07-25 14:00:26 +00:00
|
|
|
|
2020-10-13 22:27:00 +00:00
|
|
|
ALWAYS_INLINE constexpr size_t size() const { return this->m_size; }
|
2020-12-19 14:07:09 +00:00
|
|
|
ALWAYS_INLINE constexpr bool is_null() const { return this->m_values == nullptr; }
|
2020-10-13 22:27:00 +00:00
|
|
|
ALWAYS_INLINE constexpr bool is_empty() const { return this->m_size == 0; }
|
2020-07-25 14:00:26 +00:00
|
|
|
|
2020-12-19 17:13:36 +00:00
|
|
|
[[nodiscard]] ALWAYS_INLINE constexpr Span slice(size_t start, size_t length) const
|
2020-07-25 14:00:26 +00:00
|
|
|
{
|
2020-08-18 16:02:04 +00:00
|
|
|
ASSERT(start + length <= size());
|
|
|
|
return { this->m_values + start, length };
|
2020-07-25 14:00:26 +00:00
|
|
|
}
|
2020-12-19 17:13:36 +00:00
|
|
|
[[nodiscard]] ALWAYS_INLINE constexpr Span slice(size_t start) const
|
2020-08-14 10:19:39 +00:00
|
|
|
{
|
2020-08-18 16:02:04 +00:00
|
|
|
ASSERT(start <= size());
|
|
|
|
return { this->m_values + start, size() - start };
|
|
|
|
}
|
|
|
|
|
2020-12-19 17:13:36 +00:00
|
|
|
[[nodiscard]] ALWAYS_INLINE constexpr Span trim(size_t length) const
|
2020-08-18 16:02:04 +00:00
|
|
|
{
|
|
|
|
return { this->m_values, min(size(), length) };
|
2020-08-14 10:19:39 +00:00
|
|
|
}
|
|
|
|
|
2020-10-13 22:27:00 +00:00
|
|
|
ALWAYS_INLINE constexpr T* offset(size_t start) const
|
2020-07-27 13:19:29 +00:00
|
|
|
{
|
|
|
|
ASSERT(start < this->m_size);
|
|
|
|
return this->m_values + start;
|
|
|
|
}
|
|
|
|
|
2020-12-19 14:56:15 +00:00
|
|
|
ALWAYS_INLINE constexpr void overwrite(size_t offset, const void* data, size_t data_size)
|
|
|
|
{
|
|
|
|
// make sure we're not told to write past the end
|
|
|
|
ASSERT(offset + data_size <= size());
|
|
|
|
__builtin_memcpy(this->data() + offset, data, data_size);
|
|
|
|
}
|
|
|
|
|
2020-10-13 22:27:00 +00:00
|
|
|
ALWAYS_INLINE constexpr size_t copy_to(Span<typename RemoveConst<T>::Type> other) const
|
2020-08-12 09:44:20 +00:00
|
|
|
{
|
|
|
|
ASSERT(other.size() >= size());
|
2020-09-09 11:44:51 +00:00
|
|
|
return TypedTransfer<typename RemoveConst<T>::Type>::copy(other.data(), data(), size());
|
2020-08-12 09:44:20 +00:00
|
|
|
}
|
|
|
|
|
2020-10-13 22:27:00 +00:00
|
|
|
ALWAYS_INLINE constexpr size_t copy_trimmed_to(Span<typename RemoveConst<T>::Type> other) const
|
2020-08-12 09:44:20 +00:00
|
|
|
{
|
2020-09-09 11:44:51 +00:00
|
|
|
const auto count = min(size(), other.size());
|
|
|
|
return TypedTransfer<typename RemoveConst<T>::Type>::copy(other.data(), data(), count);
|
2020-08-12 09:44:20 +00:00
|
|
|
}
|
|
|
|
|
2020-10-13 22:27:00 +00:00
|
|
|
ALWAYS_INLINE constexpr size_t fill(const T& value)
|
2020-08-14 10:16:17 +00:00
|
|
|
{
|
2020-09-15 10:18:31 +00:00
|
|
|
for (size_t idx = 0; idx < size(); ++idx)
|
2020-08-14 10:16:17 +00:00
|
|
|
data()[idx] = value;
|
2020-09-15 10:18:31 +00:00
|
|
|
|
|
|
|
return size();
|
2020-08-14 10:16:17 +00:00
|
|
|
}
|
|
|
|
|
2020-10-13 22:27:00 +00:00
|
|
|
bool constexpr contains_slow(const T& value) const
|
2020-09-07 09:53:54 +00:00
|
|
|
{
|
|
|
|
for (size_t i = 0; i < size(); ++i) {
|
|
|
|
if (at(i) == value)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-10-13 22:27:00 +00:00
|
|
|
ALWAYS_INLINE constexpr const T& at(size_t index) const
|
2020-07-25 14:00:26 +00:00
|
|
|
{
|
2020-07-27 11:51:12 +00:00
|
|
|
ASSERT(index < this->m_size);
|
|
|
|
return this->m_values[index];
|
2020-07-25 14:00:26 +00:00
|
|
|
}
|
2020-10-13 22:27:00 +00:00
|
|
|
ALWAYS_INLINE constexpr T& at(size_t index)
|
2020-07-25 14:00:26 +00:00
|
|
|
{
|
2020-07-27 11:51:12 +00:00
|
|
|
ASSERT(index < this->m_size);
|
|
|
|
return this->m_values[index];
|
2020-07-25 14:00:26 +00:00
|
|
|
}
|
|
|
|
|
2020-10-13 22:27:00 +00:00
|
|
|
ALWAYS_INLINE constexpr T& operator[](size_t index) const
|
2020-07-25 14:00:26 +00:00
|
|
|
{
|
2020-07-27 11:51:12 +00:00
|
|
|
return this->m_values[index];
|
2020-07-25 14:00:26 +00:00
|
|
|
}
|
2020-10-13 22:27:00 +00:00
|
|
|
ALWAYS_INLINE constexpr T& operator[](size_t index)
|
2020-07-25 14:00:26 +00:00
|
|
|
{
|
2020-07-27 11:51:12 +00:00
|
|
|
return this->m_values[index];
|
2020-07-25 14:00:26 +00:00
|
|
|
}
|
|
|
|
|
2020-10-13 22:27:00 +00:00
|
|
|
ALWAYS_INLINE constexpr Span& operator=(const Span<T>& other)
|
2020-07-25 14:00:26 +00:00
|
|
|
{
|
2020-07-27 11:51:12 +00:00
|
|
|
this->m_size = other.m_size;
|
|
|
|
this->m_values = other.m_values;
|
2020-08-11 16:54:29 +00:00
|
|
|
return *this;
|
2020-07-25 14:00:26 +00:00
|
|
|
}
|
|
|
|
|
2020-10-13 22:27:00 +00:00
|
|
|
constexpr bool operator==(Span<const T> other) const
|
2020-09-09 11:44:51 +00:00
|
|
|
{
|
|
|
|
if (size() != other.size())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return TypedTransfer<T>::compare(data(), other.data(), size());
|
|
|
|
}
|
|
|
|
|
2020-10-13 22:27:00 +00:00
|
|
|
ALWAYS_INLINE constexpr operator Span<const T>() const
|
2020-07-26 16:08:40 +00:00
|
|
|
{
|
|
|
|
return { data(), size() };
|
|
|
|
}
|
2020-07-25 14:00:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
using ReadonlyBytes = Span<const u8>;
|
|
|
|
using Bytes = Span<u8>;
|
2020-09-06 19:14:08 +00:00
|
|
|
|
2020-07-25 14:00:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
using AK::Bytes;
|
|
|
|
using AK::ReadonlyBytes;
|
|
|
|
using AK::Span;
|