2024-07-30 11:42:36 +00:00
|
|
|
// SPDX-FileCopyrightText: 2002-2024 PCSX2 Dev Team
|
|
|
|
// SPDX-License-Identifier: GPL-3.0+
|
2021-09-14 09:09:09 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#include "Pcsx2Types.h"
|
2023-07-09 07:41:21 +00:00
|
|
|
#include <algorithm>
|
2022-09-25 06:23:14 +00:00
|
|
|
#include <charconv>
|
2021-09-14 09:09:09 +00:00
|
|
|
#include <cstdarg>
|
|
|
|
#include <cstddef>
|
|
|
|
#include <cstring>
|
|
|
|
#include <iomanip>
|
|
|
|
#include <optional>
|
|
|
|
#include <string>
|
|
|
|
#include <string_view>
|
|
|
|
#include <vector>
|
|
|
|
|
2023-12-26 10:25:26 +00:00
|
|
|
// Work around us defining _M_ARM64 but fast_float thinking that it means MSVC.
|
|
|
|
#if defined(_M_ARM64) && !defined(_WIN32)
|
|
|
|
#define HAD_M_ARM64 _M_ARM64
|
|
|
|
#undef _M_ARM64
|
|
|
|
#endif
|
2022-09-25 06:23:14 +00:00
|
|
|
#include "fast_float/fast_float.h"
|
2023-12-26 10:25:26 +00:00
|
|
|
#if defined(HAD_M_ARM64) && !defined(_WIN32)
|
|
|
|
#define _M_ARM64 HAD_M_ARM64
|
|
|
|
#undef HAD_M_ARM64
|
|
|
|
#endif
|
2022-09-25 06:23:14 +00:00
|
|
|
|
|
|
|
// Older versions of libstdc++ are missing support for from_chars() with floats, and was only recently
|
|
|
|
// merged in libc++. So, just fall back to stringstream (yuck!) on everywhere except MSVC.
|
|
|
|
#if !defined(_MSC_VER)
|
|
|
|
#include <locale>
|
2021-09-14 09:09:09 +00:00
|
|
|
#include <sstream>
|
2022-09-25 06:23:14 +00:00
|
|
|
#ifdef __APPLE__
|
|
|
|
#include <Availability.h>
|
2021-09-14 09:09:09 +00:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
namespace StringUtil
|
|
|
|
{
|
|
|
|
/// Constructs a std::string from a format string.
|
|
|
|
#ifdef __GNUC__
|
|
|
|
std::string StdStringFromFormat(const char* format, ...) __attribute__((format(printf, 1, 2)));
|
|
|
|
#else
|
|
|
|
std::string StdStringFromFormat(const char* format, ...);
|
|
|
|
#endif
|
|
|
|
std::string StdStringFromFormatV(const char* format, std::va_list ap);
|
|
|
|
|
|
|
|
/// Checks if a wildcard matches a search string.
|
|
|
|
bool WildcardMatch(const char* subject, const char* mask, bool case_sensitive = true);
|
|
|
|
|
|
|
|
/// Safe version of strlcpy.
|
|
|
|
std::size_t Strlcpy(char* dst, const char* src, std::size_t size);
|
|
|
|
|
|
|
|
/// Strlcpy from string_view.
|
2024-05-14 23:42:40 +00:00
|
|
|
std::size_t Strlcpy(char* dst, const std::string_view src, std::size_t size);
|
2021-09-14 09:09:09 +00:00
|
|
|
|
|
|
|
/// Platform-independent strcasecmp
|
|
|
|
static inline int Strcasecmp(const char* s1, const char* s2)
|
|
|
|
{
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
return _stricmp(s1, s2);
|
|
|
|
#else
|
|
|
|
return strcasecmp(s1, s2);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Platform-independent strcasecmp
|
|
|
|
static inline int Strncasecmp(const char* s1, const char* s2, std::size_t n)
|
|
|
|
{
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
return _strnicmp(s1, s2, n);
|
|
|
|
#else
|
|
|
|
return strncasecmp(s1, s2, n);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2022-09-25 06:23:14 +00:00
|
|
|
/// Wrapper around std::from_chars
|
2021-09-14 09:09:09 +00:00
|
|
|
template <typename T, std::enable_if_t<std::is_integral<T>::value, bool> = true>
|
2024-05-14 23:42:40 +00:00
|
|
|
inline std::optional<T> FromChars(const std::string_view str, int base = 10)
|
2021-09-14 09:09:09 +00:00
|
|
|
{
|
|
|
|
T value;
|
|
|
|
|
|
|
|
const std::from_chars_result result = std::from_chars(str.data(), str.data() + str.length(), value, base);
|
|
|
|
if (result.ec != std::errc())
|
|
|
|
return std::nullopt;
|
|
|
|
|
|
|
|
return value;
|
|
|
|
}
|
2022-12-16 11:59:37 +00:00
|
|
|
template <typename T, std::enable_if_t<std::is_integral<T>::value, bool> = true>
|
2024-05-14 23:42:40 +00:00
|
|
|
inline std::optional<T> FromChars(const std::string_view str, int base, std::string_view* endptr)
|
2022-12-16 11:59:37 +00:00
|
|
|
{
|
|
|
|
T value;
|
|
|
|
|
|
|
|
const char* ptr = str.data();
|
|
|
|
const char* end = ptr + str.length();
|
|
|
|
const std::from_chars_result result = std::from_chars(ptr, end, value, base);
|
|
|
|
if (result.ec != std::errc())
|
|
|
|
return std::nullopt;
|
|
|
|
|
|
|
|
if (endptr)
|
2023-05-24 09:34:04 +00:00
|
|
|
*endptr = (result.ptr < end) ? std::string_view(result.ptr, end - result.ptr) : std::string_view();
|
2022-12-16 11:59:37 +00:00
|
|
|
|
|
|
|
return value;
|
|
|
|
}
|
2021-09-14 09:09:09 +00:00
|
|
|
|
|
|
|
template <typename T, std::enable_if_t<std::is_floating_point<T>::value, bool> = true>
|
2024-05-14 23:42:40 +00:00
|
|
|
inline std::optional<T> FromChars(const std::string_view str)
|
2021-09-14 09:09:09 +00:00
|
|
|
{
|
|
|
|
T value;
|
|
|
|
|
2022-09-25 06:23:14 +00:00
|
|
|
const fast_float::from_chars_result result = fast_float::from_chars(str.data(), str.data() + str.length(), value);
|
2021-09-14 09:09:09 +00:00
|
|
|
if (result.ec != std::errc())
|
|
|
|
return std::nullopt;
|
2022-09-25 06:23:14 +00:00
|
|
|
|
|
|
|
return value;
|
|
|
|
}
|
2022-12-16 11:59:37 +00:00
|
|
|
template <typename T, std::enable_if_t<std::is_floating_point<T>::value, bool> = true>
|
2024-05-14 23:42:40 +00:00
|
|
|
inline std::optional<T> FromChars(const std::string_view str, std::string_view* endptr)
|
2022-12-16 11:59:37 +00:00
|
|
|
{
|
|
|
|
T value;
|
|
|
|
|
|
|
|
const char* ptr = str.data();
|
|
|
|
const char* end = ptr + str.length();
|
|
|
|
const fast_float::from_chars_result result = fast_float::from_chars(ptr, end, value);
|
|
|
|
if (result.ec != std::errc())
|
|
|
|
return std::nullopt;
|
|
|
|
|
|
|
|
if (endptr)
|
2023-05-24 09:34:04 +00:00
|
|
|
*endptr = (result.ptr < end) ? std::string_view(result.ptr, end - result.ptr) : std::string_view();
|
2022-12-16 11:59:37 +00:00
|
|
|
|
|
|
|
return value;
|
|
|
|
}
|
2022-09-25 06:23:14 +00:00
|
|
|
|
|
|
|
/// Wrapper around std::to_chars
|
|
|
|
template <typename T, std::enable_if_t<std::is_integral<T>::value, bool> = true>
|
|
|
|
inline std::string ToChars(T value, int base = 10)
|
|
|
|
{
|
|
|
|
// to_chars() requires macOS 10.15+.
|
|
|
|
#if !defined(__APPLE__) || MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_15
|
|
|
|
constexpr size_t MAX_SIZE = 32;
|
|
|
|
char buf[MAX_SIZE];
|
|
|
|
std::string ret;
|
|
|
|
|
|
|
|
const std::to_chars_result result = std::to_chars(buf, buf + MAX_SIZE, value, base);
|
|
|
|
if (result.ec == std::errc())
|
|
|
|
ret.append(buf, result.ptr - buf);
|
|
|
|
|
|
|
|
return ret;
|
2021-09-14 09:09:09 +00:00
|
|
|
#else
|
2022-09-25 06:23:14 +00:00
|
|
|
std::ostringstream ss;
|
|
|
|
ss.imbue(std::locale::classic());
|
|
|
|
ss << std::setbase(base) << value;
|
|
|
|
return ss.str();
|
2021-09-14 09:09:09 +00:00
|
|
|
#endif
|
2022-09-25 06:23:14 +00:00
|
|
|
}
|
2021-09-14 09:09:09 +00:00
|
|
|
|
2022-09-25 06:23:14 +00:00
|
|
|
template <typename T, std::enable_if_t<std::is_floating_point<T>::value, bool> = true>
|
|
|
|
inline std::string ToChars(T value)
|
|
|
|
{
|
|
|
|
// No to_chars() in older versions of libstdc++/libc++.
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
constexpr size_t MAX_SIZE = 64;
|
|
|
|
char buf[MAX_SIZE];
|
|
|
|
std::string ret;
|
|
|
|
const std::to_chars_result result = std::to_chars(buf, buf + MAX_SIZE, value);
|
|
|
|
if (result.ec == std::errc())
|
|
|
|
ret.append(buf, result.ptr - buf);
|
|
|
|
return ret;
|
|
|
|
#else
|
|
|
|
std::ostringstream ss;
|
|
|
|
ss.imbue(std::locale::classic());
|
|
|
|
ss << value;
|
|
|
|
return ss.str();
|
|
|
|
#endif
|
2021-09-14 09:09:09 +00:00
|
|
|
}
|
|
|
|
|
2022-09-25 06:23:14 +00:00
|
|
|
|
2021-09-14 09:09:09 +00:00
|
|
|
/// Explicit override for booleans
|
|
|
|
template <>
|
2024-05-14 23:42:40 +00:00
|
|
|
inline std::optional<bool> FromChars(const std::string_view str, int base)
|
2021-09-14 09:09:09 +00:00
|
|
|
{
|
|
|
|
if (Strncasecmp("true", str.data(), str.length()) == 0 || Strncasecmp("yes", str.data(), str.length()) == 0 ||
|
|
|
|
Strncasecmp("on", str.data(), str.length()) == 0 || Strncasecmp("1", str.data(), str.length()) == 0 ||
|
|
|
|
Strncasecmp("enabled", str.data(), str.length()) == 0 || Strncasecmp("1", str.data(), str.length()) == 0)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Strncasecmp("false", str.data(), str.length()) == 0 || Strncasecmp("no", str.data(), str.length()) == 0 ||
|
|
|
|
Strncasecmp("off", str.data(), str.length()) == 0 || Strncasecmp("0", str.data(), str.length()) == 0 ||
|
|
|
|
Strncasecmp("disabled", str.data(), str.length()) == 0 || Strncasecmp("0", str.data(), str.length()) == 0)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return std::nullopt;
|
|
|
|
}
|
|
|
|
|
2022-09-25 06:23:14 +00:00
|
|
|
template <>
|
|
|
|
inline std::string ToChars(bool value, int base)
|
|
|
|
{
|
|
|
|
return std::string(value ? "true" : "false");
|
|
|
|
}
|
|
|
|
|
2021-09-14 09:09:09 +00:00
|
|
|
/// Encode/decode hexadecimal byte buffers
|
2024-05-14 23:42:40 +00:00
|
|
|
std::optional<std::vector<u8>> DecodeHex(const std::string_view str);
|
2021-09-14 09:09:09 +00:00
|
|
|
std::string EncodeHex(const u8* data, int length);
|
|
|
|
|
2022-03-12 13:56:58 +00:00
|
|
|
/// StartsWith/EndsWith variants which aren't case sensitive.
|
2024-05-14 23:42:40 +00:00
|
|
|
static inline bool StartsWithNoCase(const std::string_view str, const std::string_view prefix)
|
2022-03-12 13:56:58 +00:00
|
|
|
{
|
2022-05-19 14:46:33 +00:00
|
|
|
return (!str.empty() && Strncasecmp(str.data(), prefix.data(), prefix.length()) == 0);
|
2022-03-12 13:56:58 +00:00
|
|
|
}
|
2024-05-14 23:42:40 +00:00
|
|
|
static inline bool EndsWithNoCase(const std::string_view str, const std::string_view suffix)
|
2022-03-12 13:56:58 +00:00
|
|
|
{
|
2022-05-19 14:46:33 +00:00
|
|
|
const std::size_t suffix_length = suffix.length();
|
|
|
|
return (str.length() >= suffix_length && Strncasecmp(str.data() + (str.length() - suffix_length), suffix.data(), suffix_length) == 0);
|
2022-03-12 13:56:58 +00:00
|
|
|
}
|
|
|
|
|
2021-12-25 11:02:40 +00:00
|
|
|
/// Strip whitespace from the start/end of the string.
|
2024-05-14 23:42:40 +00:00
|
|
|
std::string_view StripWhitespace(const std::string_view str);
|
2022-04-11 13:52:05 +00:00
|
|
|
void StripWhitespace(std::string* str);
|
2021-12-25 11:02:40 +00:00
|
|
|
|
2022-03-22 13:20:52 +00:00
|
|
|
/// Splits a string based on a single character delimiter.
|
2024-05-14 23:42:40 +00:00
|
|
|
std::vector<std::string_view> SplitString(const std::string_view str, char delimiter, bool skip_empty = true);
|
2022-03-22 13:20:52 +00:00
|
|
|
|
2022-05-19 14:46:33 +00:00
|
|
|
/// Joins a string together using the specified delimiter.
|
2022-09-17 07:44:27 +00:00
|
|
|
template <typename T>
|
2022-05-19 14:46:33 +00:00
|
|
|
static inline std::string JoinString(const T& start, const T& end, char delimiter)
|
|
|
|
{
|
|
|
|
std::string ret;
|
|
|
|
for (auto it = start; it != end; ++it)
|
|
|
|
{
|
|
|
|
if (it != start)
|
|
|
|
ret += delimiter;
|
|
|
|
ret.append(*it);
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
template <typename T>
|
2024-05-14 23:42:40 +00:00
|
|
|
static inline std::string JoinString(const T& start, const T& end, const std::string_view delimiter)
|
2022-05-19 14:46:33 +00:00
|
|
|
{
|
|
|
|
std::string ret;
|
|
|
|
for (auto it = start; it != end; ++it)
|
|
|
|
{
|
|
|
|
if (it != start)
|
|
|
|
ret.append(delimiter);
|
|
|
|
ret.append(*it);
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Replaces all instances of search in subject with replacement.
|
2024-05-14 23:42:40 +00:00
|
|
|
std::string ReplaceAll(const std::string_view subject, const std::string_view search, const std::string_view replacement);
|
|
|
|
void ReplaceAll(std::string* subject, const std::string_view search, const std::string_view replacement);
|
2022-05-19 14:46:33 +00:00
|
|
|
|
2022-04-11 13:52:05 +00:00
|
|
|
/// Parses an assignment string (Key = Value) into its two components.
|
2024-05-14 23:42:40 +00:00
|
|
|
bool ParseAssignmentString(const std::string_view str, std::string_view* key, std::string_view* value);
|
2022-04-11 13:52:05 +00:00
|
|
|
|
2022-05-18 13:27:23 +00:00
|
|
|
/// Appends a UTF-16/UTF-32 codepoint to a UTF-8 string.
|
|
|
|
void AppendUTF16CharacterToUTF8(std::string& s, u16 ch);
|
|
|
|
|
2022-09-17 07:44:27 +00:00
|
|
|
/// Appends a UTF-16/UTF-32 codepoint to a UTF-8 string.
|
|
|
|
void EncodeAndAppendUTF8(std::string& s, char32_t ch);
|
|
|
|
|
|
|
|
/// Decodes UTF-8 to a single codepoint, updating the position parameter.
|
|
|
|
/// Returns the number of bytes the codepoint took in the original string.
|
|
|
|
size_t DecodeUTF8(const void* bytes, size_t length, char32_t* ch);
|
2024-05-14 23:42:40 +00:00
|
|
|
size_t DecodeUTF8(const std::string_view str, size_t offset, char32_t* ch);
|
2022-09-17 07:44:27 +00:00
|
|
|
size_t DecodeUTF8(const std::string& str, size_t offset, char32_t* ch);
|
|
|
|
|
2023-09-22 10:52:35 +00:00
|
|
|
// Replaces the end of a string with ellipsis if it exceeds the specified length.
|
2024-05-14 23:42:40 +00:00
|
|
|
std::string Ellipsise(const std::string_view str, u32 max_length, const char* ellipsis = "...");
|
2023-09-22 10:52:35 +00:00
|
|
|
void EllipsiseInPlace(std::string& str, u32 max_length, const char* ellipsis = "...");
|
|
|
|
|
2021-09-14 09:09:09 +00:00
|
|
|
/// Strided memcpy/memcmp.
|
|
|
|
static inline void StrideMemCpy(void* dst, std::size_t dst_stride, const void* src, std::size_t src_stride,
|
|
|
|
std::size_t copy_size, std::size_t count)
|
|
|
|
{
|
2022-03-19 12:16:27 +00:00
|
|
|
if (src_stride == dst_stride && src_stride == copy_size)
|
|
|
|
{
|
|
|
|
std::memcpy(dst, src, src_stride * count);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-09-14 09:09:09 +00:00
|
|
|
const u8* src_ptr = static_cast<const u8*>(src);
|
|
|
|
u8* dst_ptr = static_cast<u8*>(dst);
|
|
|
|
for (std::size_t i = 0; i < count; i++)
|
|
|
|
{
|
|
|
|
std::memcpy(dst_ptr, src_ptr, copy_size);
|
|
|
|
src_ptr += src_stride;
|
|
|
|
dst_ptr += dst_stride;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int StrideMemCmp(const void* p1, std::size_t p1_stride, const void* p2, std::size_t p2_stride,
|
|
|
|
std::size_t copy_size, std::size_t count)
|
|
|
|
{
|
2022-03-19 12:16:27 +00:00
|
|
|
if (p1_stride == p2_stride && p1_stride == copy_size)
|
|
|
|
return std::memcmp(p1, p2, p1_stride * count);
|
|
|
|
|
2021-09-14 09:09:09 +00:00
|
|
|
const u8* p1_ptr = static_cast<const u8*>(p1);
|
|
|
|
const u8* p2_ptr = static_cast<const u8*>(p2);
|
|
|
|
for (std::size_t i = 0; i < count; i++)
|
|
|
|
{
|
|
|
|
int result = std::memcmp(p1_ptr, p2_ptr, copy_size);
|
|
|
|
if (result != 0)
|
|
|
|
return result;
|
|
|
|
p2_ptr += p2_stride;
|
|
|
|
p1_ptr += p1_stride;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2024-05-14 23:42:40 +00:00
|
|
|
std::string toLower(const std::string_view str);
|
|
|
|
std::string toUpper(const std::string_view str);
|
|
|
|
bool compareNoCase(const std::string_view str1, const std::string_view str2);
|
2021-12-24 02:59:17 +00:00
|
|
|
std::vector<std::string> splitOnNewLine(const std::string& str);
|
|
|
|
|
2022-05-19 14:46:33 +00:00
|
|
|
#ifdef _WIN32
|
2021-09-14 09:09:09 +00:00
|
|
|
/// Converts the specified UTF-8 string to a wide string.
|
2024-05-14 23:42:40 +00:00
|
|
|
std::wstring UTF8StringToWideString(const std::string_view str);
|
|
|
|
bool UTF8StringToWideString(std::wstring& dest, const std::string_view str);
|
2021-09-14 09:09:09 +00:00
|
|
|
|
|
|
|
/// Converts the specified wide string to a UTF-8 string.
|
|
|
|
std::string WideStringToUTF8String(const std::wstring_view& str);
|
|
|
|
bool WideStringToUTF8String(std::string& dest, const std::wstring_view& str);
|
2022-05-19 14:46:33 +00:00
|
|
|
#endif
|
2022-05-18 13:27:23 +00:00
|
|
|
|
|
|
|
/// Converts unsigned 128-bit data to string.
|
|
|
|
std::string U128ToString(const u128& u);
|
|
|
|
std::string& AppendU128ToString(const u128& u, std::string& s);
|
2023-07-09 07:41:21 +00:00
|
|
|
|
|
|
|
template <typename ContainerType>
|
2024-05-14 23:42:40 +00:00
|
|
|
static inline bool ContainsSubString(const ContainerType& haystack, const std::string_view needle)
|
2023-07-09 07:41:21 +00:00
|
|
|
{
|
|
|
|
using ValueType = typename ContainerType::value_type;
|
|
|
|
if (needle.empty())
|
|
|
|
return std::empty(haystack);
|
|
|
|
|
|
|
|
return std::search(std::begin(haystack), std::end(haystack), reinterpret_cast<const ValueType*>(needle.data()),
|
|
|
|
reinterpret_cast<const ValueType*>(needle.data() + needle.length())) != std::end(haystack);
|
|
|
|
}
|
2021-09-14 09:09:09 +00:00
|
|
|
} // namespace StringUtil
|