65816-llvm-mos/runtime/include/c++/etl/u32string.h
2026-05-30 19:40:29 -05:00

751 lines
27 KiB
C++

///\file
/******************************************************************************
The MIT License(MIT)
Embedded Template Library.
https://github.com/ETLCPP/etl
https://www.etlcpp.com
Copyright(c) 2016 John Wellbelove
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files(the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and / or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions :
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
******************************************************************************/
#ifndef ETL_U32STRING_INCLUDED
#define ETL_U32STRING_INCLUDED
#include "platform.h"
#include "basic_string.h"
#include "hash.h"
#include "initializer_list.h"
#include "string_view.h"
#include "private/minmax_push.h"
namespace etl
{
#if ETL_USING_CPP11
inline namespace literals
{
inline namespace string_literals
{
inline constexpr etl::u32string_view operator""_sv(const char32_t* str, size_t length) ETL_NOEXCEPT
{
return etl::u32string_view{str, length};
}
} // namespace string_literals
} // namespace literals
#endif
typedef ibasic_string<char32_t> iu32string;
//***************************************************************************
/// A u32string implementation that uses a fixed size buffer.
///\tparam MAX_SIZE_ The maximum number of elements that can be stored.
///\ingroup u32string
//***************************************************************************
template <size_t MAX_SIZE_>
class u32string : public iu32string
{
public:
typedef iu32string base_type;
typedef iu32string interface_type;
typedef iu32string::value_type value_type;
static const size_t MAX_SIZE = MAX_SIZE_;
//*************************************************************************
/// Constructor.
//*************************************************************************
u32string()
: iu32string(reinterpret_cast<value_type*>(&buffer), MAX_SIZE)
{
this->initialise();
}
//*************************************************************************
/// Copy constructor.
///\param other The other string.
//*************************************************************************
u32string(const etl::u32string<MAX_SIZE_>& other)
: iu32string(reinterpret_cast<value_type*>(&buffer), MAX_SIZE)
{
this->assign(other);
}
//*************************************************************************
/// From other iu32string.
///\param other The other iu32string.
//*************************************************************************
u32string(const etl::iu32string& other)
: iu32string(reinterpret_cast<value_type*>(&buffer), MAX_SIZE)
{
this->assign(other);
}
//*************************************************************************
/// From other string, position, length.
///\param other The other string.
///\param position The position of the first character.
///\param length The number of characters. Default = npos.
//*************************************************************************
u32string(const etl::iu32string& other, size_type position, size_type length = npos)
: iu32string(reinterpret_cast<value_type*>(&buffer), MAX_SIZE)
{
ETL_ASSERT(position < other.size(), ETL_ERROR(string_out_of_bounds));
this->assign(other, position, length);
}
//*************************************************************************
/// Constructor, from null terminated text.
///\param text The initial text of the u32string.
//*************************************************************************
ETL_EXPLICIT_STRING_FROM_CHAR u32string(const value_type* text)
: iu32string(reinterpret_cast<value_type*>(&buffer), MAX_SIZE)
{
this->assign(text);
}
//*************************************************************************
/// Constructor, from null terminated text and count.
///\param text The initial text of the u32string.
///\param count The number of characters to copy.
//*************************************************************************
u32string(const value_type* text, size_type count)
: iu32string(reinterpret_cast<value_type*>(&buffer), MAX_SIZE)
{
this->assign(text, text + count);
}
//*************************************************************************
/// Constructor, from initial size and value.
///\param initialSize The initial size of the u32string.
///\param value The value to fill the u32string with.
//*************************************************************************
u32string(size_type count, value_type c)
: iu32string(reinterpret_cast<value_type*>(&buffer), MAX_SIZE)
{
this->initialise();
this->resize(count, c);
}
//*************************************************************************
/// Constructor, from an iterator range.
///\tparam TIterator The iterator type.
///\param first The iterator to the first element.
///\param last The iterator to the last element + 1.
//*************************************************************************
template <typename TIterator>
u32string(TIterator first, TIterator last, typename etl::enable_if<!etl::is_integral<TIterator>::value, int>::type = 0)
: iu32string(reinterpret_cast<value_type*>(&buffer), MAX_SIZE)
{
this->assign(first, last);
}
#if ETL_HAS_INITIALIZER_LIST
//*************************************************************************
/// Construct from initializer_list.
//*************************************************************************
u32string(std::initializer_list<value_type> init)
: iu32string(reinterpret_cast<value_type*>(&buffer), MAX_SIZE)
{
this->assign(init.begin(), init.end());
}
#endif
//*************************************************************************
/// From string_view.
///\param view The string_view.
//*************************************************************************
explicit u32string(const etl::u32string_view& view)
: iu32string(reinterpret_cast<value_type*>(&buffer), MAX_SIZE)
{
this->assign(view.begin(), view.end());
}
//*************************************************************************
/// Returns a sub-string.
///\param position The position of the first character. Default = 0.
///\param length The number of characters. Default = npos.
//*************************************************************************
etl::u32string<MAX_SIZE_> substr(size_type position = 0, size_type length_ = npos) const
{
etl::u32string<MAX_SIZE_> new_string;
if (position != size())
{
ETL_ASSERT(position < size(), ETL_ERROR(string_out_of_bounds));
length_ = etl::min(length_, size() - position);
new_string.assign(buffer + position, buffer + position + length_);
}
return new_string;
}
//*************************************************************************
/// Assignment operator.
//*************************************************************************
u32string& operator=(const u32string& rhs)
{
if (&rhs != this)
{
this->assign(rhs);
}
return *this;
}
//*************************************************************************
/// Assignment operator.
//*************************************************************************
u32string& operator=(const value_type* text)
{
this->assign(text);
return *this;
}
//*************************************************************************
/// Assignment operator.
//*************************************************************************
u32string& operator=(const etl::u32string_view& view)
{
this->assign(view);
return *this;
}
//*************************************************************************
/// Fix the internal pointers after a low level memory copy.
//*************************************************************************
#if ETL_HAS_ISTRING_REPAIR
virtual void repair() ETL_OVERRIDE
#else
void repair()
#endif
{
etl::iu32string::repair_buffer(buffer);
}
private:
value_type buffer[MAX_SIZE + 1];
};
//***************************************************************************
/// A string implementation that uses a fixed size external buffer.
///\ingroup string
//***************************************************************************
class u32string_ext : public iu32string
{
public:
typedef iu32string base_type;
typedef iu32string interface_type;
typedef iu32string::value_type value_type;
typedef iu32string::size_type size_type;
//*************************************************************************
/// Constructor.
//*************************************************************************
u32string_ext(value_type* buffer, size_type buffer_size)
: iu32string(buffer, buffer_size - 1U)
{
this->initialise();
}
//*************************************************************************
/// Constructor, from array buffer.
///\param buffer The array buffer.
//*************************************************************************
template <size_t Size>
u32string_ext(value_type (&buffer)[Size])
: iu32string(buffer, Size - 1U)
{
this->initialise();
}
//*************************************************************************
/// Copy constructor.
///\param other The other u32string_ext.
//*************************************************************************
u32string_ext(const etl::u32string_ext& other, value_type* buffer, size_type buffer_size)
: iu32string(buffer, buffer_size - 1U)
{
if (this->is_within_buffer(other.data()))
{
this->current_size = other.size();
}
else
{
this->assign(other);
}
}
//*************************************************************************
/// From other iu32string.
///\param other The other iu32string.
//*************************************************************************
u32string_ext(const etl::iu32string& other, value_type* buffer, size_type buffer_size)
: iu32string(buffer, buffer_size - 1U)
{
if (this->is_within_buffer(other.data()))
{
this->current_size = other.size();
}
else
{
this->assign(other);
}
}
//*************************************************************************
/// From other iu32string, from array buffer.
///\param other The other iu32string.
///\param buffer The array buffer.
//*************************************************************************
template <size_t BufferSize>
u32string_ext(const etl::iu32string& other, value_type (&buffer)[BufferSize])
: iu32string(buffer, BufferSize - 1U)
{
if (this->is_within_buffer(other.data()))
{
this->current_size = other.size();
}
else
{
this->assign(other);
}
}
//*************************************************************************
/// From other u32string_ext, position, length.
///\param other The other u32string_ext.
///\param position The position of the first character.
///\param length The number of characters. Default = npos.
//*************************************************************************
u32string_ext(const etl::iu32string& other, value_type* buffer, size_type buffer_size, size_type position, size_type length = npos)
: iu32string(buffer, buffer_size - 1U)
{
ETL_ASSERT(position < other.size(), ETL_ERROR(string_out_of_bounds));
if (this->is_within_buffer(other.data()))
{
this->current_size = other.size();
}
else
{
this->assign(other, position, length);
}
}
//*************************************************************************
/// From other u32string_ext, position, length, from array buffer.
///\param other The other u32string_ext.
///\param buffer The array buffer.
///\param position The position of the first character.
///\param length The number of characters. Default = npos.
//*************************************************************************
template <size_t BufferSize>
u32string_ext(const etl::iu32string& other, value_type (&buffer)[BufferSize], size_type position, size_type length = npos)
: iu32string(buffer, BufferSize - 1U)
{
ETL_ASSERT(position < other.size(), ETL_ERROR(string_out_of_bounds));
if (this->is_within_buffer(other.data()))
{
this->current_size = other.size();
}
else
{
this->assign(other, position, length);
}
}
//*************************************************************************
/// Constructor, from null terminated text.
///\param text The initial text of the u32string_ext.
//*************************************************************************
template <typename TPointer>
u32string_ext(TPointer text, value_type* buffer, size_type buffer_size,
typename etl::enable_if<etl::is_same<const value_type*, TPointer>::value, int>::type* = ETL_NULLPTR)
: iu32string(buffer, buffer_size - 1U)
{
if (this->is_within_buffer(text))
{
this->current_size = etl::strlen(buffer);
}
else
{
this->assign(text);
}
}
//*************************************************************************
/// Constructor, from null terminated text, from array buffer.
///\param text The initial text of the u32string_ext.
///\param buffer The array buffer.
//*************************************************************************
template <typename TPointer, size_t BufferSize>
u32string_ext(TPointer text, value_type (&buffer)[BufferSize],
typename etl::enable_if<etl::is_same<const value_type*, TPointer>::value, int>::type* = ETL_NULLPTR)
: iu32string(buffer, BufferSize - 1U)
{
if (this->is_within_buffer(text))
{
this->current_size = etl::strlen(buffer);
}
else
{
this->assign(text);
}
}
//*************************************************************************
/// Constructor, from null terminated literal text.
///\param text The initial text of the u32string_ext.
//*************************************************************************
template <size_t Size>
u32string_ext(const value_type (&literal)[Size], value_type* buffer, size_type buffer_size)
: iu32string(buffer, buffer_size - 1U)
{
if (this->is_within_buffer(literal))
{
this->current_size = etl::strlen(literal);
}
else
{
this->assign(literal);
}
}
//*************************************************************************
/// Constructor, from null terminated literal text, from array buffer.
///\param literal The initial text of the u32string_ext.
///\param buffer The array buffer.
//*************************************************************************
template <size_t LiteralSize, size_t BufferSize>
u32string_ext(const value_type (&literal)[LiteralSize], value_type (&buffer)[BufferSize])
: iu32string(buffer, BufferSize - 1U)
{
if (this->is_within_buffer(literal))
{
this->current_size = etl::strlen(literal);
}
else
{
this->assign(literal);
}
}
//*************************************************************************
/// Constructor, from null terminated text and count.
///\param text The initial text of the u32string_ext.
///\param count The number of characters to copy.
//*************************************************************************
u32string_ext(const value_type* text, size_type count, value_type* buffer, size_type buffer_size)
: iu32string(buffer, buffer_size - 1U)
{
if (this->is_within_buffer(text))
{
this->current_size = count;
}
else
{
this->assign(text, text + count);
}
}
//*************************************************************************
/// Constructor, from null terminated text and count, from array buffer.
///\param text The initial text of the u32string_ext.
///\param count The number of characters to copy.
///\param buffer The array buffer.
//*************************************************************************
template <size_t BufferSize>
u32string_ext(const value_type* text, size_type count, value_type (&buffer)[BufferSize])
: iu32string(buffer, BufferSize - 1U)
{
if (this->is_within_buffer(text))
{
this->current_size = count;
}
else
{
this->assign(text, text + count);
}
}
//*************************************************************************
/// Constructor, from initial size and value.
///\param initialSize The initial size of the u32string_ext.
///\param value The value to fill the u32string_ext with.
//*************************************************************************
u32string_ext(size_type count, value_type c, value_type* buffer, size_type buffer_size)
: iu32string(buffer, buffer_size - 1U)
{
this->initialise();
this->resize(count, c);
}
//*************************************************************************
/// Constructor, from initial size and value, from array buffer.
///\param count The initial size of the u32string_ext.
///\param c The value to fill the u32string_ext with.
///\param buffer The array buffer.
//*************************************************************************
template <size_t BufferSize>
u32string_ext(size_type count, value_type c, value_type (&buffer)[BufferSize])
: iu32string(buffer, BufferSize - 1U)
{
this->initialise();
this->resize(count, c);
}
//*************************************************************************
/// From u32string_view.
///\param view The u32string_view.
//*************************************************************************
explicit u32string_ext(const etl::u32string_view& view, value_type* buffer, size_type buffer_size)
: iu32string(buffer, buffer_size - 1U)
{
if (this->is_within_buffer(view.data()))
{
this->current_size = view.size();
}
else
{
this->assign(view.begin(), view.end());
}
}
//*************************************************************************
/// From u32string_view, from array buffer.
///\param view The u32string_view.
///\param buffer The array buffer.
//*************************************************************************
template <size_t BufferSize>
explicit u32string_ext(const etl::u32string_view& view, value_type (&buffer)[BufferSize])
: iu32string(buffer, BufferSize - 1U)
{
if (this->is_within_buffer(view.data()))
{
this->current_size = view.size();
}
else
{
this->assign(view.begin(), view.end());
}
}
//*************************************************************************
/// Constructor, from an iterator range.
///\tparam TIterator The iterator type.
///\param first The iterator to the first element.
///\param last The iterator to the last element + 1.
//*************************************************************************
template <typename TIterator>
u32string_ext(TIterator first, TIterator last, value_type* buffer, size_type buffer_size,
typename etl::enable_if<!etl::is_integral<TIterator>::value, int>::type = 0)
: iu32string(buffer, buffer_size - 1U)
{
if (this->is_within_buffer(reinterpret_cast<const_iterator>(etl::addressof(*first))))
{
this->current_size = static_cast<size_type>(etl::distance(first, last));
}
else
{
this->assign(first, last);
}
}
//*************************************************************************
/// Constructor, from an iterator range, from array buffer.
///\tparam TIterator The iterator type.
///\param first The iterator to the first element.
///\param last The iterator to the last element + 1.
///\param buffer The array buffer.
//*************************************************************************
template <typename TIterator, size_t BufferSize>
u32string_ext(TIterator first, TIterator last, value_type (&buffer)[BufferSize],
typename etl::enable_if<!etl::is_integral<TIterator>::value, int>::type = 0)
: iu32string(buffer, BufferSize - 1U)
{
if (this->is_within_buffer(reinterpret_cast<const_iterator>(etl::addressof(*first))))
{
this->current_size = static_cast<size_type>(etl::distance(first, last));
}
else
{
this->assign(first, last);
}
}
#if ETL_HAS_INITIALIZER_LIST
//*************************************************************************
/// Construct from initializer_list.
//*************************************************************************
u32string_ext(std::initializer_list<value_type> init, value_type* buffer, size_type buffer_size)
: iu32string(buffer, buffer_size - 1U)
{
this->assign(init.begin(), init.end());
}
//*************************************************************************
/// Construct from initializer_list, from array buffer.
///\param init The initializer_list.
///\param buffer The array buffer.
//*************************************************************************
template <size_t BufferSize>
u32string_ext(std::initializer_list<value_type> init, value_type (&buffer)[BufferSize])
: iu32string(buffer, BufferSize - 1U)
{
this->assign(init.begin(), init.end());
}
#endif
//*************************************************************************
/// Assignment operator.
//*************************************************************************
u32string_ext& operator=(const u32string_ext& rhs)
{
if (&rhs != this)
{
this->assign(rhs);
}
return *this;
}
//*************************************************************************
/// Assignment operator.
//*************************************************************************
u32string_ext& operator=(const iu32string& rhs)
{
if (&rhs != this)
{
this->assign(rhs);
}
return *this;
}
//*************************************************************************
/// Assignment operator.
//*************************************************************************
u32string_ext& operator=(const value_type* text)
{
this->assign(text);
return *this;
}
//*************************************************************************
/// Assignment operator.
//*************************************************************************
u32string_ext& operator=(const etl::u32string_view& view)
{
this->assign(view);
return *this;
}
//*************************************************************************
/// Fix the internal pointers after a low level memory copy.
//*************************************************************************
#if ETL_HAS_ISTRING_REPAIR
virtual void repair() ETL_OVERRIDE
#else
void repair()
#endif
{
}
private:
//*************************************************************************
/// Deleted.
//*************************************************************************
u32string_ext(const u32string_ext& other) ETL_DELETE;
};
//*************************************************************************
/// Hash function.
//*************************************************************************
#if ETL_USING_8BIT_TYPES
template <>
struct hash<etl::iu32string>
{
size_t operator()(const etl::iu32string& text) const
{
return etl::private_hash::generic_hash<size_t>(reinterpret_cast<const uint8_t*>(text.data()),
reinterpret_cast<const uint8_t*>(text.data() + text.size()));
}
};
template <size_t SIZE>
struct hash<etl::u32string<SIZE> >
{
size_t operator()(const etl::u32string<SIZE>& text) const
{
return etl::private_hash::generic_hash<size_t>(reinterpret_cast<const uint8_t*>(text.data()),
reinterpret_cast<const uint8_t*>(text.data() + text.size()));
}
};
template <>
struct hash<etl::u32string_ext >
{
size_t operator()(const etl::u32string_ext& text) const
{
return etl::private_hash::generic_hash<size_t>(reinterpret_cast<const uint8_t*>(text.data()),
reinterpret_cast<const uint8_t*>(text.data() + text.size()));
}
};
#endif
//***************************************************************************
/// Make string from string literal or array
//***************************************************************************
template <size_t Array_Size>
etl::u32string<Array_Size - 1U> make_string(const char32_t (&text)[Array_Size])
{
return etl::u32string<Array_Size - 1U>(text, etl::strlen(text, Array_Size - 1U));
}
//***************************************************************************
/// Make string with max capacity from string literal or array
//***************************************************************************
template <size_t MAX_SIZE, size_t SIZE>
etl::u32string<MAX_SIZE> make_string_with_capacity(const char32_t (&text)[SIZE])
{
return etl::u32string<MAX_SIZE>(text, etl::strlen(text, SIZE));
}
} // namespace etl
#include "private/minmax_pop.h"
#endif