/**************************************************************************** ** ** Copyright (C) 2018 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the QtCore module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 3 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL3 included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 3 requirements ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 2.0 or (at your option) the GNU General ** Public license version 3 or any later version approved by the KDE Free ** Qt Foundation. The licenses are as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 ** included in the packaging of this file. Please review the following ** information to ensure the GNU General Public License requirements will ** be met: https://www.gnu.org/licenses/gpl-2.0.html and ** https://www.gnu.org/licenses/gpl-3.0.html. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #ifndef QOFFSETSTRINGARRAY_P_H #define QOFFSETSTRINGARRAY_P_H // // W A R N I N G // ------------- // // This file is not part of the Qt API. It exists purely as an // implementation detail. This header file may change from version to // version without notice, or even be removed. // // We mean it. // #include "private/qglobal_p.h" #include #include QT_BEGIN_NAMESPACE namespace QtPrivate { template struct OffsetSequenceHelper : OffsetSequenceHelper { }; template struct OffsetSequenceHelper<1, Last, I, S, Idx...> : IndexesList { static const constexpr auto Length = Last + I; using Type = typename QConditional< Last <= std::numeric_limits::max(), quint8, typename QConditional< Last <= std::numeric_limits::max(), quint16, int>::Type >::Type; }; template struct OffsetSequence : OffsetSequenceHelper { }; template struct StaticString { const char data[N]; constexpr StaticString(const char (&literal)[N]) noexcept : StaticString(literal, makeIndexSequence {}) { } template constexpr StaticString(const char (&literal)[N], IndexesList) noexcept : data{literal[Idx]...} { } template constexpr StaticString(const T ... c) noexcept : data{c...} { } constexpr char operator[](int i) const noexcept { return data[i]; } template constexpr StaticString operator+(const StaticString &rs) const noexcept { return concatenate(rs, makeIndexSequence{}, makeIndexSequence{}); } template constexpr StaticString concatenate(const StaticString &rs, IndexesList, IndexesList) const noexcept { return StaticString(data[I1]..., rs[I2]...); } constexpr int size() const noexcept { return N; } }; template<> struct StaticString<0> { }; template constexpr StaticString<0> staticString() noexcept { return StaticString<0>{}; } template constexpr StaticString staticString(const char (&s)[I], const char (&...sx)[Ix]) noexcept { return StaticString(s) + staticString(sx...); } } // namespace QtPrivate template class QOffsetStringArray { public: using Type = T; template constexpr QOffsetStringArray(const QtPrivate::StaticString &str, QtPrivate::IndexesList, QtPrivate::IndexesList) noexcept : m_string{str[Cx]...}, m_offsets{Ox...} { } constexpr inline const char *operator[](const int index) const noexcept { return m_string + m_offsets[qBound(int(0), index, SizeOffsets - 1)]; } constexpr inline const char *at(const int index) const noexcept { return m_string + m_offsets[index]; } constexpr inline const char *str() const { return m_string; } constexpr inline const T *offsets() const { return m_offsets; } constexpr inline int count() const { return SizeOffsets; }; static constexpr const auto sizeString = SizeString; static constexpr const auto sizeOffsets = SizeOffsets; private: const char m_string[SizeString]; const T m_offsets[SizeOffsets]; }; template constexpr QOffsetStringArray qOffsetStringArray( const QtPrivate::StaticString &string, QtPrivate::IndexesList offsets) noexcept { return QOffsetStringArray( string, QtPrivate::makeIndexSequence {}, offsets); } template struct QOffsetStringArrayRet { using Offsets = QtPrivate::OffsetSequence; using Type = QOffsetStringArray; }; template constexpr auto qOffsetStringArray(const char (&...strings)[Nx]) noexcept -> typename QOffsetStringArrayRet::Type { using Offsets = QtPrivate::OffsetSequence; return qOffsetStringArray( QtPrivate::staticString(strings...), Offsets{}); } QT_END_NAMESPACE #endif // QOFFSETSTRINGARRAY_P_H