forked from qt-creator/qt-creator
Since we also license under GPL-3.0 WITH Qt-GPL-exception-1.0,
this applies only to a hypothetical newer version of GPL, that doesn't
exist yet. If such a version emerges, we can still decide to relicense...
While at it, replace (deprecated) GPL-3.0 with more explicit GPL-3.0-only
Change was done by running
find . -type f -exec perl -pi -e "s/LicenseRef-Qt-Commercial OR GPL-3.0\+ OR GPL-3.0 WITH Qt-GPL-exception-1.0/LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0/g" {} \;
Change-Id: I5097e6ce8d10233993ee30d7e25120e2659eb10b
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
120 lines
2.8 KiB
C++
120 lines
2.8 KiB
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#pragma once
|
|
|
|
#include <algorithm>
|
|
#include <array>
|
|
#include <cstdint>
|
|
#include <ostream>
|
|
#include <iterator>
|
|
|
|
namespace Utils {
|
|
|
|
template <typename T, std::uint8_t MaxSize>
|
|
class SizedArray : public std::array<T, MaxSize>
|
|
{
|
|
public:
|
|
using size_type = std::uint8_t;
|
|
using reference = typename std::array<T, MaxSize>::reference;
|
|
using const_reference = typename std::array<T, MaxSize>::const_reference;
|
|
using iterator = typename std::array<T, MaxSize>::iterator;
|
|
using const_iterator = typename std::array<T, MaxSize>::const_iterator;
|
|
using reverse_iterator = typename std::array<T, MaxSize>::reverse_iterator;
|
|
using const_reverse_iterator = typename std::array<T, MaxSize>::const_reverse_iterator;
|
|
using value_type = typename std::array<T, MaxSize>::value_type;
|
|
using pointer = typename std::array<T, MaxSize>::pointer;
|
|
using difference_type = typename std::array<T, MaxSize>::difference_type;
|
|
|
|
using std::array<T, MaxSize>::operator[];
|
|
using std::array<T, MaxSize>::begin;
|
|
using std::array<T, MaxSize>::cbegin;
|
|
using std::array<T, MaxSize>::rend;
|
|
using std::array<T, MaxSize>::crend;
|
|
|
|
constexpr SizedArray() : std::array<T, MaxSize>() {}
|
|
SizedArray(std::initializer_list<T> list)
|
|
: m_size(std::uint8_t(list.size()))
|
|
{
|
|
std::copy(list.begin(), list.end(), begin());
|
|
}
|
|
|
|
constexpr size_type size() const
|
|
{
|
|
return m_size;
|
|
}
|
|
|
|
void push_back(const T &value)
|
|
{
|
|
operator[](m_size) = value;
|
|
|
|
++m_size;
|
|
}
|
|
|
|
constexpr const_reference back() const
|
|
{
|
|
return operator[](m_size - 1);
|
|
}
|
|
|
|
iterator end()
|
|
{
|
|
return std::next(begin(), m_size);
|
|
}
|
|
|
|
const_iterator end() const
|
|
{
|
|
return std::next(begin(), m_size);
|
|
}
|
|
|
|
const_iterator cend() const
|
|
{
|
|
return std::next(cbegin(), m_size);
|
|
}
|
|
|
|
reverse_iterator rbegin()
|
|
{
|
|
return std::prev(rend(), m_size);
|
|
}
|
|
|
|
const_reverse_iterator rbegin() const
|
|
{
|
|
return std::prev(rend(), m_size);
|
|
}
|
|
|
|
const_reverse_iterator crbegin() const
|
|
{
|
|
return std::prev(crend(), m_size);
|
|
}
|
|
|
|
bool empty() const
|
|
{
|
|
return m_size == 0;
|
|
}
|
|
|
|
void initializeElements()
|
|
{
|
|
std::array<T, MaxSize>::fill(T{});
|
|
}
|
|
|
|
bool contains(const T &item) const
|
|
{
|
|
return std::any_of(begin(), end(), [&item](const T ¤t) {
|
|
return item == current;
|
|
});
|
|
}
|
|
|
|
friend std::ostream &operator<<(std::ostream &out, SizedArray array)
|
|
{
|
|
out << "[";
|
|
copy(array.cbegin(), array.cend(), std::ostream_iterator<T>(out, ", "));
|
|
out << "]";
|
|
|
|
return out;
|
|
}
|
|
|
|
private:
|
|
std::uint8_t m_size = 0;
|
|
};
|
|
|
|
} // namespace Utils
|