Files
qt-creator/src/libs/utils/smallstringview.h
Marco Bubke a4f8cf709e Utils: Add more conversion operators to SmallString
An explicit operator for QLatin1StringView. That is dangerous if the
string is not ASCII and one for QUtf8StringView.

Change-Id: I2d0a0ca3854b47595563a19263aacd7f8825d026
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
Reviewed-by: Qt CI Patch Build Bot <ci_patchbuild_bot@qt.io>
Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
2023-09-07 14:56:53 +00:00

153 lines
4.6 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.h"
#include "smallstringfwd.h"
#include "smallstringiterator.h"
#include <QString>
#include <cstring>
#include <string>
#include <string_view>
#if __cpp_lib_constexpr_string >= 201907L
#define constexpr_string constexpr
#else
#define constexpr_string
#endif
namespace Utils {
template <typename String>
using enable_if_has_char_data_pointer = typename std::enable_if_t<
std::is_same<
std::remove_const_t<
std::remove_pointer_t<
decltype(std::declval<const String>().data())
>
>, char>::value
, int>;
class SmallStringView : public std::string_view
{
public:
using std::string_view::string_view;
constexpr SmallStringView(const_iterator begin, const_iterator end) noexcept
: std::string_view{std::addressof(*begin), static_cast<std::size_t>(std::distance(begin, end))}
{}
#ifdef Q_CC_MSVC
constexpr SmallStringView(const char *const begin, const char *const end) noexcept
: std::string_view{begin, static_cast<std::size_t>(std::distance(begin, end))}
{}
#endif
template<typename String, typename Utils::enable_if_has_char_data_pointer<String> = 0>
constexpr SmallStringView(const String &string) noexcept
: std::string_view{string.data(), static_cast<std::size_t>(string.size())}
{}
static constexpr SmallStringView fromUtf8(const char *const characterPointer)
{
return SmallStringView(characterPointer);
}
constexpr size_type isEmpty() const noexcept { return empty(); }
constexpr
SmallStringView mid(size_type position) const noexcept
{
return SmallStringView(data() + position, size() - position);
}
constexpr
SmallStringView mid(size_type position, size_type length) const noexcept
{
return SmallStringView(data() + position, length);
}
constexpr_string operator std::string() const { return std::string(data(), size()); }
explicit operator QString() const
{
return QString::fromUtf8(data(), int(size()));
}
explicit operator QByteArray() const { return QByteArray(data(), int(size())); }
explicit operator QLatin1StringView() const noexcept
{
return QLatin1StringView(data(), Utils::ssize(*this));
}
operator QUtf8StringView() const noexcept
{
return QUtf8StringView(data(), Utils::ssize(*this));
}
constexpr bool startsWith(SmallStringView subStringToSearch) const noexcept
{
if (size() >= subStringToSearch.size())
return !std::char_traits<char>::compare(data(),
subStringToSearch.data(),
subStringToSearch.size());
return false;
}
constexpr bool startsWith(char characterToSearch) const noexcept
{
return *begin() == characterToSearch;
}
constexpr bool endsWith(SmallStringView ending) const noexcept
{
return size() >= ending.size() && std::equal(ending.rbegin(), ending.rend(), rbegin());
}
};
constexpr bool operator!=(SmallStringView first, SmallStringView second) noexcept
{
return std::string_view{first} != std::string_view{second};
}
constexpr bool operator==(SmallStringView first, SmallStringView second) noexcept
{
return std::string_view{first} == std::string_view{second};
}
constexpr bool operator<(SmallStringView first, SmallStringView second) noexcept
{
return std::string_view{first} < std::string_view{second};
}
constexpr bool operator>(SmallStringView first, SmallStringView second) noexcept
{
return std::string_view{first} > std::string_view{second};
}
constexpr bool operator<=(SmallStringView first, SmallStringView second) noexcept
{
return std::string_view{first} <= std::string_view{second};
}
constexpr bool operator>=(SmallStringView first, SmallStringView second) noexcept
{
return std::string_view{first} >= std::string_view{second};
}
constexpr int compare(SmallStringView first, SmallStringView second) noexcept
{
return first.compare(second);
}
} // namespace Utils
constexpr Utils::SmallStringView operator""_sv(const char *const string, size_t size)
{
return Utils::SmallStringView(string, size);
}