rpcs3/Utilities/StrFmt.cpp

520 lines
11 KiB
C++
Raw Normal View History

#include "StrFmt.h"
2016-02-01 21:55:43 +00:00
#include "BEType.h"
#include "StrUtil.h"
#include "cfmt.h"
#include "util/logs.hpp"
2016-05-13 14:01:48 +00:00
#include <algorithm>
#include <string_view>
#include "Thread.h"
2016-08-14 00:22:19 +00:00
#ifdef _WIN32
#include <Windows.h>
#else
#include <errno.h>
#endif
2020-03-26 20:48:56 +00:00
#ifdef _WIN32
std::string wchar_to_utf8(wchar_t *src)
{
std::string utf8_string;
2020-04-05 08:26:57 +00:00
const auto tmp_size = WideCharToMultiByte(CP_UTF8, 0, src, -1, nullptr, 0, nullptr, nullptr);
2020-03-26 20:48:56 +00:00
utf8_string.resize(tmp_size);
WideCharToMultiByte(CP_UTF8, 0, src, -1, utf8_string.data(), tmp_size, nullptr, nullptr);
return utf8_string;
}
std::string wchar_path_to_ansi_path(const std::wstring& src)
{
std::wstring buf_short;
std::string buf_final;
// Get the short path from the wide char path(short path should only contain ansi characters)
auto tmp_size = GetShortPathNameW(src.data(), nullptr, 0);
buf_short.resize(tmp_size);
GetShortPathNameW(src.data(), buf_short.data(), tmp_size);
// Convert wide char to ansi
tmp_size = WideCharToMultiByte(CP_ACP, 0, buf_short.data(), -1, nullptr, 0, nullptr, nullptr);
buf_final.resize(tmp_size);
WideCharToMultiByte(CP_ACP, 0, buf_short.data(), -1, buf_final.data(), tmp_size, nullptr, nullptr);
return buf_final;
}
std::string utf8_path_to_ansi_path(const std::string& src)
{
std::wstring buf_wide;
// Converts the utf-8 path to wide char
2020-04-05 08:26:57 +00:00
const auto tmp_size = MultiByteToWideChar(CP_UTF8, 0, src.c_str(), -1, nullptr, 0);
2020-03-26 20:48:56 +00:00
buf_wide.resize(tmp_size);
MultiByteToWideChar(CP_UTF8, 0, src.c_str(), -1, buf_wide.data(), tmp_size);
return wchar_path_to_ansi_path(buf_wide);
}
#endif
2017-02-02 17:47:25 +00:00
template <>
void fmt_class_string<std::pair<const fmt_type_info*, u64>>::format(std::string& out, u64 arg)
{
// Dynamic format arg
const auto& pair = get_object(arg);
if (pair.first)
{
pair.first->fmt_string(out, pair.second);
}
}
2018-03-22 19:48:38 +00:00
template <>
void fmt_class_string<fmt::base57>::format(std::string& out, u64 arg)
{
const auto& _arg = get_object(arg);
if (_arg.data && _arg.size)
{
// Precomputed tail sizes if input data is not multiple of 8
static constexpr u8 s_tail[8] = {0, 2, 3, 5, 6, 7, 9, 10};
// Get full output size
const std::size_t out_size = _arg.size / 8 * 11 + s_tail[_arg.size % 8];
out.resize(out.size() + out_size);
const auto ptr = &out.front() + (out.size() - out_size);
// Each 8 bytes of input data produce 11 bytes of base57 output
for (std::size_t i = 0, p = 0; i < _arg.size; i += 8, p += 11)
{
// Load up to 8 bytes
be_t<u64> be_value;
if (_arg.size - i < sizeof(be_value))
{
std::memset(&be_value, 0, sizeof(be_value));
std::memcpy(&be_value, _arg.data + i, _arg.size - i);
}
else
{
std::memcpy(&be_value, _arg.data + i, sizeof(be_value));
}
u64 value = be_value;
for (int j = 10; j >= 0; j--)
{
if (p + j < out_size)
{
ptr[p + j] = "0123456789ACEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz"[value % 57];
}
value /= 57;
}
}
}
}
void fmt_class_string<const void*>::format(std::string& out, u64 arg)
2015-01-12 20:37:29 +00:00
{
fmt::append(out, "%p", arg);
2015-01-12 20:37:29 +00:00
}
void fmt_class_string<const char*>::format(std::string& out, u64 arg)
2015-01-12 20:37:29 +00:00
{
2016-08-15 13:57:51 +00:00
if (arg)
{
out += reinterpret_cast<const char*>(arg);
2016-08-15 13:57:51 +00:00
}
else
{
out += "(NULLSTR)";
2016-08-15 13:57:51 +00:00
}
2015-01-12 20:37:29 +00:00
}
2016-08-13 13:36:04 +00:00
template <>
void fmt_class_string<std::string>::format(std::string& out, u64 arg)
{
out += get_object(arg);
}
template <>
void fmt_class_string<std::string_view>::format(std::string& out, u64 arg)
{
out += get_object(arg);
}
2016-08-13 13:36:04 +00:00
template <>
void fmt_class_string<std::vector<char>>::format(std::string& out, u64 arg)
{
const std::vector<char>& obj = get_object(arg);
out.append(obj.cbegin(), obj.cend());
}
2016-08-13 13:36:04 +00:00
template <>
void fmt_class_string<char>::format(std::string& out, u64 arg)
{
2016-08-06 10:25:05 +00:00
fmt::append(out, "%#hhx", static_cast<char>(arg));
}
2016-08-13 13:36:04 +00:00
template <>
void fmt_class_string<uchar>::format(std::string& out, u64 arg)
{
2016-08-06 10:25:05 +00:00
fmt::append(out, "%#hhx", static_cast<uchar>(arg));
}
2016-08-13 13:36:04 +00:00
template <>
void fmt_class_string<schar>::format(std::string& out, u64 arg)
{
2016-08-06 10:25:05 +00:00
fmt::append(out, "%#hhx", static_cast<schar>(arg));
}
2016-08-13 13:36:04 +00:00
template <>
void fmt_class_string<short>::format(std::string& out, u64 arg)
{
2016-08-06 10:25:05 +00:00
fmt::append(out, "%#hx", static_cast<short>(arg));
}
2016-08-13 13:36:04 +00:00
template <>
void fmt_class_string<ushort>::format(std::string& out, u64 arg)
{
2016-08-06 10:25:05 +00:00
fmt::append(out, "%#hx", static_cast<ushort>(arg));
}
2016-08-13 13:36:04 +00:00
template <>
void fmt_class_string<int>::format(std::string& out, u64 arg)
{
2016-08-06 10:25:05 +00:00
fmt::append(out, "%#x", static_cast<int>(arg));
}
2016-08-13 13:36:04 +00:00
template <>
void fmt_class_string<uint>::format(std::string& out, u64 arg)
{
2016-08-06 10:25:05 +00:00
fmt::append(out, "%#x", static_cast<uint>(arg));
}
2016-08-13 13:36:04 +00:00
template <>
void fmt_class_string<long>::format(std::string& out, u64 arg)
{
2016-08-06 10:25:05 +00:00
fmt::append(out, "%#lx", static_cast<long>(arg));
}
2016-08-13 13:36:04 +00:00
template <>
void fmt_class_string<ulong>::format(std::string& out, u64 arg)
{
2016-08-06 10:25:05 +00:00
fmt::append(out, "%#lx", static_cast<ulong>(arg));
}
2016-08-13 13:36:04 +00:00
template <>
void fmt_class_string<llong>::format(std::string& out, u64 arg)
{
2016-08-06 10:25:05 +00:00
fmt::append(out, "%#llx", static_cast<llong>(arg));
}
2016-08-13 13:36:04 +00:00
template <>
void fmt_class_string<ullong>::format(std::string& out, u64 arg)
{
2016-08-06 10:25:05 +00:00
fmt::append(out, "%#llx", static_cast<ullong>(arg));
}
2016-08-13 13:36:04 +00:00
template <>
void fmt_class_string<float>::format(std::string& out, u64 arg)
{
fmt::append(out, "%gf", static_cast<float>(std::bit_cast<f64>(arg)));
}
2016-08-13 13:36:04 +00:00
template <>
void fmt_class_string<double>::format(std::string& out, u64 arg)
{
fmt::append(out, "%g", std::bit_cast<f64>(arg));
}
2016-08-13 13:36:04 +00:00
template <>
void fmt_class_string<bool>::format(std::string& out, u64 arg)
{
2016-08-06 10:25:05 +00:00
out += arg ? "true" : "false";
}
2016-08-13 13:36:04 +00:00
template <>
void fmt_class_string<v128>::format(std::string& out, u64 arg)
{
const v128& vec = get_object(arg);
fmt::append(out, "0x%016llx%016llx", vec._u64[1], vec._u64[0]);
}
namespace fmt
{
void raw_error(const char* msg)
{
thread_ctrl::emergency_exit(msg);
2016-08-13 13:36:04 +00:00
}
void raw_verify_error(const src_loc& loc)
2016-08-13 13:36:04 +00:00
{
std::string out{"Verification failed"};
2016-08-14 00:22:19 +00:00
// Print error code (may be irrelevant)
#ifdef _WIN32
if (DWORD error = GetLastError())
{
fmt::append(out, " (e=%#x):", error);
2016-08-14 00:22:19 +00:00
}
#else
if (int error = errno)
{
fmt::append(out, " (e=%d):", error);
2016-08-14 00:22:19 +00:00
}
#endif
if (loc.col != umax)
2016-08-13 13:36:04 +00:00
{
fmt::append(out, "\n(in file %s:%s[:%s]", loc.file, loc.line, loc.col);
}
else
{
fmt::append(out, "\n(in file %s:%s", loc.file, loc.line);
2016-08-13 13:36:04 +00:00
}
if (loc.func && *loc.func)
2016-08-15 10:18:47 +00:00
{
fmt::append(out, ", in function %s)", loc.func);
}
else
{
out += ')';
2016-08-15 10:18:47 +00:00
}
2016-08-13 13:36:04 +00:00
thread_ctrl::emergency_exit(out);
}
void raw_narrow_error(const src_loc& loc, const fmt_type_info* sup, u64 arg)
{
2016-08-13 13:36:04 +00:00
std::string out{"Narrow error"};
2016-08-15 10:18:47 +00:00
if (sup)
{
out += " (";
sup->fmt_string(out, arg); // Print value
out += ")";
}
if (loc.col != umax)
{
fmt::append(out, "\n(in file %s:%s[:%s]", loc.file, loc.line, loc.col);
}
else
{
fmt::append(out, "\n(in file %s:%s", loc.file, loc.line);
}
if (loc.func && *loc.func)
{
fmt::append(out, ", in function %s)", loc.func);
}
else
{
out += ')';
}
thread_ctrl::emergency_exit(out);
}
void raw_throw_exception(const char* fmt, const fmt_type_info* sup, const u64* args)
{
std::string out;
raw_append(out, fmt, sup, args);
thread_ctrl::emergency_exit(out);
}
struct cfmt_src;
}
// Temporary implementation
struct fmt::cfmt_src
{
2016-08-05 16:49:45 +00:00
const fmt_type_info* sup;
const u64* args;
2016-08-05 16:49:45 +00:00
bool test(std::size_t index) const
{
2016-08-05 16:49:45 +00:00
if (!sup[index].fmt_string)
{
2016-08-05 16:49:45 +00:00
return false;
}
return true;
}
2016-08-13 13:36:04 +00:00
template <typename T>
2016-08-05 16:49:45 +00:00
T get(std::size_t index) const
{
2017-03-05 18:42:54 +00:00
return *reinterpret_cast<const T*>(reinterpret_cast<const u8*>(args + index));
}
void skip(std::size_t extra)
{
sup += extra + 1;
args += extra + 1;
}
2016-08-05 16:49:45 +00:00
std::size_t fmt_string(std::string& out, std::size_t extra) const
{
const std::size_t start = out.size();
2016-08-05 16:49:45 +00:00
sup[extra].fmt_string(out, args[extra]);
return out.size() - start;
}
2016-08-05 16:49:45 +00:00
2016-08-06 10:25:05 +00:00
// Returns type size (0 if unknown, pointer, unsigned, assumed max)
2016-08-05 16:49:45 +00:00
std::size_t type(std::size_t extra) const
{
2016-08-13 13:36:04 +00:00
// Hack: use known function pointers to determine type
#define TYPE(type) \
if (sup[extra].fmt_string == &fmt_class_string<type>::format) return sizeof(type);
2016-08-05 16:49:45 +00:00
2016-08-06 10:25:05 +00:00
TYPE(int);
TYPE(llong);
2016-08-05 16:49:45 +00:00
TYPE(schar);
TYPE(short);
2016-08-06 10:25:05 +00:00
if (std::is_signed<char>::value) TYPE(char);
2016-08-05 16:49:45 +00:00
TYPE(long);
#undef TYPE
return 0;
}
2017-05-16 11:29:07 +00:00
static constexpr std::size_t size_char = 1;
static constexpr std::size_t size_short = 2;
static constexpr std::size_t size_int = 0;
static constexpr std::size_t size_long = sizeof(ulong);
static constexpr std::size_t size_llong = sizeof(ullong);
static constexpr std::size_t size_size = sizeof(std::size_t);
static constexpr std::size_t size_max = sizeof(std::uintmax_t);
static constexpr std::size_t size_diff = sizeof(std::ptrdiff_t);
};
2016-08-05 16:49:45 +00:00
void fmt::raw_append(std::string& out, const char* fmt, const fmt_type_info* sup, const u64* args) noexcept
{
cfmt_append(out, fmt, cfmt_src{sup, args});
}
std::string fmt::replace_first(const std::string& src, const std::string& from, const std::string& to)
{
auto pos = src.find(from);
2020-03-05 11:05:23 +00:00
if (pos == umax)
{
return src;
}
return (pos ? src.substr(0, pos) + to : to) + std::string(src.c_str() + pos + from.length());
}
2016-08-13 13:36:04 +00:00
std::string fmt::replace_all(const std::string& src, const std::string& from, const std::string& to)
{
std::string target = src;
2020-03-05 11:05:23 +00:00
for (auto pos = target.find(from); pos != umax; pos = target.find(from, pos + 1))
{
target = (pos ? target.substr(0, pos) + to : to) + std::string(target.c_str() + pos + from.length());
pos += to.length();
}
return target;
}
2014-11-29 13:16:53 +00:00
std::vector<std::string> fmt::split(const std::string& source, std::initializer_list<std::string> separators, bool is_skip_empty)
{
std::vector<std::string> result;
size_t cursor_begin = 0;
for (size_t cursor_end = 0; cursor_end < source.length(); ++cursor_end)
{
2016-08-13 13:36:04 +00:00
for (auto& separator : separators)
2014-11-29 13:16:53 +00:00
{
if (strncmp(source.c_str() + cursor_end, separator.c_str(), separator.length()) == 0)
{
std::string candidate = source.substr(cursor_begin, cursor_end - cursor_begin);
if (!is_skip_empty || !candidate.empty())
result.push_back(candidate);
cursor_begin = cursor_end + separator.length();
2016-08-13 13:36:04 +00:00
cursor_end = cursor_begin - 1;
2014-11-29 13:16:53 +00:00
break;
}
}
}
if (cursor_begin != source.length())
{
result.push_back(source.substr(cursor_begin));
}
return result;
}
std::string fmt::trim(const std::string& source, const std::string& values)
{
std::size_t begin = source.find_first_not_of(values);
if (begin == source.npos)
2016-08-13 13:36:04 +00:00
return {};
return source.substr(begin, source.find_last_not_of(values) + 1);
}
std::string fmt::to_upper(const std::string& string)
2016-02-01 21:55:43 +00:00
{
std::string result;
result.resize(string.size());
std::transform(string.begin(), string.end(), result.begin(), ::toupper);
2016-02-01 21:55:43 +00:00
return result;
}
std::string fmt::to_lower(const std::string& string)
{
std::string result;
result.resize(string.size());
std::transform(string.begin(), string.end(), result.begin(), ::tolower);
return result;
}
2016-08-13 13:36:04 +00:00
bool fmt::match(const std::string& source, const std::string& mask)
{
std::size_t source_position = 0, mask_position = 0;
for (; source_position < source.size() && mask_position < mask.size(); ++mask_position, ++source_position)
{
switch (mask[mask_position])
{
case '?': break;
case '*':
for (std::size_t test_source_position = source_position; test_source_position < source.size(); ++test_source_position)
{
if (match(source.substr(test_source_position), mask.substr(mask_position + 1)))
{
return true;
}
}
return false;
default:
if (source[source_position] != mask[mask_position])
{
return false;
}
break;
}
}
if (source_position != source.size())
return false;
if (mask_position != mask.size())
return false;
return true;
}