2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2013-04-18 03:09:55 +00:00
|
|
|
// Refer to the license.txt file included.
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include <cstdarg>
|
2014-02-20 03:11:52 +00:00
|
|
|
#include <cstddef>
|
2010-11-10 04:12:31 +00:00
|
|
|
#include <iomanip>
|
2014-02-17 10:18:15 +00:00
|
|
|
#include <sstream>
|
|
|
|
#include <string>
|
2018-06-03 12:10:52 +00:00
|
|
|
#include <type_traits>
|
2014-02-17 10:18:15 +00:00
|
|
|
#include <vector>
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2015-09-26 21:13:07 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2019-06-21 16:07:59 +00:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#include <filesystem>
|
|
|
|
#define HAS_STD_FILESYSTEM
|
|
|
|
#endif
|
|
|
|
|
2014-12-29 00:09:07 +00:00
|
|
|
std::string StringFromFormatV(const char* format, va_list args);
|
|
|
|
|
2014-02-06 12:10:04 +00:00
|
|
|
std::string StringFromFormat(const char* format, ...)
|
|
|
|
#if !defined _WIN32
|
2016-06-24 08:43:46 +00:00
|
|
|
// On compilers that support function attributes, this gives StringFromFormat
|
|
|
|
// the same errors and warnings that printf would give.
|
|
|
|
__attribute__((__format__(printf, 1, 2)))
|
2014-02-06 12:10:04 +00:00
|
|
|
#endif
|
2016-06-24 08:43:46 +00:00
|
|
|
;
|
2014-02-06 12:10:04 +00:00
|
|
|
|
2008-12-08 04:46:09 +00:00
|
|
|
// Cheap!
|
|
|
|
bool CharArrayFromFormatV(char* out, int outsize, const char* format, va_list args);
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
template <size_t Count>
|
|
|
|
inline void CharArrayFromFormat(char (&out)[Count], const char* format, ...)
|
2008-12-08 04:46:09 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
va_list args;
|
|
|
|
va_start(args, format);
|
|
|
|
CharArrayFromFormatV(out, Count, format, args);
|
|
|
|
va_end(args);
|
2008-12-08 04:46:09 +00:00
|
|
|
}
|
|
|
|
|
2010-11-10 04:12:31 +00:00
|
|
|
// Good
|
2016-01-21 20:16:51 +00:00
|
|
|
std::string ArrayToString(const u8* data, u32 size, int line_len = 20, bool spaces = true);
|
2010-11-10 04:12:31 +00:00
|
|
|
|
2016-01-21 20:27:56 +00:00
|
|
|
std::string StripSpaces(const std::string& s);
|
|
|
|
std::string StripQuotes(const std::string& s);
|
2010-11-10 04:12:31 +00:00
|
|
|
|
2016-01-21 20:27:56 +00:00
|
|
|
bool TryParse(const std::string& str, bool* output);
|
2017-09-18 03:04:11 +00:00
|
|
|
bool TryParse(const std::string& str, u16* output);
|
2016-01-21 20:27:56 +00:00
|
|
|
bool TryParse(const std::string& str, u32* output);
|
2017-02-25 03:56:33 +00:00
|
|
|
bool TryParse(const std::string& str, u64* output);
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2010-11-10 04:12:31 +00:00
|
|
|
template <typename N>
|
2016-01-21 20:27:56 +00:00
|
|
|
static bool TryParse(const std::string& str, N* const output)
|
2010-11-10 04:12:31 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
std::istringstream iss(str);
|
|
|
|
// is this right? not doing this breaks reading floats on locales that use different decimal
|
|
|
|
// separators
|
|
|
|
iss.imbue(std::locale("C"));
|
|
|
|
|
2018-06-15 12:11:18 +00:00
|
|
|
N tmp;
|
2016-06-24 08:43:46 +00:00
|
|
|
if (iss >> tmp)
|
|
|
|
{
|
|
|
|
*output = tmp;
|
|
|
|
return true;
|
|
|
|
}
|
2018-06-15 12:11:18 +00:00
|
|
|
|
|
|
|
return false;
|
2010-11-10 04:12:31 +00:00
|
|
|
}
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-07-29 16:34:57 +00:00
|
|
|
template <typename N>
|
|
|
|
bool TryParseVector(const std::string& str, std::vector<N>* output, const char delimiter = ',')
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
output->clear();
|
|
|
|
std::istringstream buffer(str);
|
|
|
|
std::string variable;
|
|
|
|
|
|
|
|
while (std::getline(buffer, variable, delimiter))
|
|
|
|
{
|
|
|
|
N tmp = 0;
|
|
|
|
if (!TryParse(variable, &tmp))
|
|
|
|
return false;
|
|
|
|
output->push_back(tmp);
|
|
|
|
}
|
|
|
|
return true;
|
2014-07-29 16:34:57 +00:00
|
|
|
}
|
|
|
|
|
2018-06-03 12:10:52 +00:00
|
|
|
std::string ValueToString(u16 value);
|
|
|
|
std::string ValueToString(u32 value);
|
|
|
|
std::string ValueToString(u64 value);
|
|
|
|
std::string ValueToString(float value);
|
|
|
|
std::string ValueToString(double value);
|
|
|
|
std::string ValueToString(int value);
|
|
|
|
std::string ValueToString(s64 value);
|
|
|
|
std::string ValueToString(bool value);
|
|
|
|
template <typename T, std::enable_if_t<std::is_enum<T>::value>* = nullptr>
|
|
|
|
std::string ValueToString(T value)
|
|
|
|
{
|
|
|
|
return ValueToString(static_cast<std::underlying_type_t<T>>(value));
|
|
|
|
}
|
|
|
|
|
2016-06-17 00:08:12 +00:00
|
|
|
// Generates an hexdump-like representation of a binary data blob.
|
|
|
|
std::string HexDump(const u8* data, size_t size);
|
|
|
|
|
2008-12-08 04:46:09 +00:00
|
|
|
// TODO: kill this
|
2014-03-12 19:33:41 +00:00
|
|
|
bool AsciiToHex(const std::string& _szValue, u32& result);
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2016-01-21 20:27:56 +00:00
|
|
|
std::string TabsToSpaces(int tab_size, const std::string& in);
|
2009-06-21 08:39:21 +00:00
|
|
|
|
2017-06-11 14:33:10 +00:00
|
|
|
std::vector<std::string> SplitString(const std::string& str, char delim);
|
2016-11-26 14:39:00 +00:00
|
|
|
std::string JoinStrings(const std::vector<std::string>& strings, const std::string& delimiter);
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2010-11-10 04:12:31 +00:00
|
|
|
// "C:/Windows/winhelp.exe" to "C:/Windows/", "winhelp", ".exe"
|
2016-06-24 08:43:46 +00:00
|
|
|
bool SplitPath(const std::string& full_path, std::string* _pPath, std::string* _pFilename,
|
|
|
|
std::string* _pExtension);
|
2009-09-04 11:48:49 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
void BuildCompleteFilename(std::string& _CompleteFilename, const std::string& _Path,
|
|
|
|
const std::string& _Filename);
|
2011-02-25 23:33:11 +00:00
|
|
|
std::string ReplaceAll(std::string result, const std::string& src, const std::string& dest);
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2016-12-06 15:43:41 +00:00
|
|
|
bool StringBeginsWith(const std::string& str, const std::string& begin);
|
|
|
|
bool StringEndsWith(const std::string& str, const std::string& end);
|
2017-06-06 04:08:51 +00:00
|
|
|
void StringPopBackIf(std::string* s, char c);
|
2016-12-06 15:43:41 +00:00
|
|
|
|
2013-03-03 04:57:49 +00:00
|
|
|
std::string CP1252ToUTF8(const std::string& str);
|
2013-03-03 01:46:55 +00:00
|
|
|
std::string SHIFTJISToUTF8(const std::string& str);
|
2017-05-01 12:08:47 +00:00
|
|
|
std::string UTF8ToSHIFTJIS(const std::string& str);
|
2013-03-03 01:46:55 +00:00
|
|
|
std::string UTF16ToUTF8(const std::wstring& str);
|
2017-11-02 16:05:45 +00:00
|
|
|
std::string UTF16BEToUTF8(const char16_t* str, size_t max_size); // Stops at \0
|
2013-03-03 01:46:55 +00:00
|
|
|
|
2013-02-28 00:00:42 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
|
|
|
|
std::wstring UTF8ToUTF16(const std::string& str);
|
|
|
|
|
2013-02-28 00:51:02 +00:00
|
|
|
#ifdef _UNICODE
|
|
|
|
inline std::string TStrToUTF8(const std::wstring& str)
|
2016-06-24 08:43:46 +00:00
|
|
|
{
|
|
|
|
return UTF16ToUTF8(str);
|
|
|
|
}
|
2013-02-28 00:51:02 +00:00
|
|
|
|
|
|
|
inline std::wstring UTF8ToTStr(const std::string& str)
|
2016-06-24 08:43:46 +00:00
|
|
|
{
|
|
|
|
return UTF8ToUTF16(str);
|
|
|
|
}
|
2013-02-28 00:51:02 +00:00
|
|
|
#else
|
|
|
|
inline std::string TStrToUTF8(const std::string& str)
|
2016-06-24 08:43:46 +00:00
|
|
|
{
|
|
|
|
return str;
|
|
|
|
}
|
2013-02-28 00:51:02 +00:00
|
|
|
|
|
|
|
inline std::string UTF8ToTStr(const std::string& str)
|
2016-06-24 08:43:46 +00:00
|
|
|
{
|
|
|
|
return str;
|
|
|
|
}
|
2013-02-28 00:51:02 +00:00
|
|
|
#endif
|
|
|
|
|
2013-02-28 00:00:42 +00:00
|
|
|
#endif
|
2018-05-08 11:55:07 +00:00
|
|
|
|
2019-06-21 16:07:59 +00:00
|
|
|
#ifdef HAS_STD_FILESYSTEM
|
|
|
|
std::filesystem::path StringToPath(std::string_view path);
|
|
|
|
std::string PathToString(const std::filesystem::path& path);
|
|
|
|
#endif
|
|
|
|
|
2018-05-08 11:55:07 +00:00
|
|
|
// Thousand separator. Turns 12345678 into 12,345,678
|
|
|
|
template <typename I>
|
|
|
|
std::string ThousandSeparate(I value, int spaces = 0)
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
std::wostringstream stream;
|
|
|
|
#else
|
|
|
|
std::ostringstream stream;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
stream << std::setw(spaces) << value;
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
return UTF16ToUTF8(stream.str());
|
|
|
|
#else
|
|
|
|
return stream.str();
|
|
|
|
#endif
|
|
|
|
}
|