2015-05-23 22:55:12 -06:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-17 17:08:10 -06:00
|
|
|
// Licensed under GPLv2+
|
2013-04-17 21:09:55 -06:00
|
|
|
// Refer to the license.txt file included.
|
2008-12-07 21:46:09 -07:00
|
|
|
|
2014-02-10 11:54:46 -07:00
|
|
|
#pragma once
|
2008-12-07 21:46:09 -07:00
|
|
|
|
2014-02-17 03:18:15 -07:00
|
|
|
#include <cstdarg>
|
2014-02-19 20:11:52 -07:00
|
|
|
#include <cstddef>
|
2010-11-09 21:12:31 -07:00
|
|
|
#include <iomanip>
|
2014-02-17 03:18:15 -07:00
|
|
|
#include <sstream>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2008-12-07 21:46:09 -07:00
|
|
|
|
2015-09-26 15:13:07 -06:00
|
|
|
#include "Common/CommonTypes.h"
|
2008-12-07 21:46:09 -07:00
|
|
|
|
2014-12-28 17:09:07 -07:00
|
|
|
std::string StringFromFormatV(const char* format, va_list args);
|
|
|
|
|
2014-02-06 05:10:04 -07:00
|
|
|
std::string StringFromFormat(const char* format, ...)
|
|
|
|
#if !defined _WIN32
|
2016-06-24 02:43:46 -06: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 05:10:04 -07:00
|
|
|
#endif
|
2016-06-24 02:43:46 -06:00
|
|
|
;
|
2014-02-06 05:10:04 -07:00
|
|
|
|
2008-12-07 21:46:09 -07:00
|
|
|
// Cheap!
|
|
|
|
bool CharArrayFromFormatV(char* out, int outsize, const char* format, va_list args);
|
|
|
|
|
2016-06-24 02:43:46 -06:00
|
|
|
template <size_t Count>
|
|
|
|
inline void CharArrayFromFormat(char (&out)[Count], const char* format, ...)
|
2008-12-07 21:46:09 -07:00
|
|
|
{
|
2016-06-24 02:43:46 -06:00
|
|
|
va_list args;
|
|
|
|
va_start(args, format);
|
|
|
|
CharArrayFromFormatV(out, Count, format, args);
|
|
|
|
va_end(args);
|
2008-12-07 21:46:09 -07:00
|
|
|
}
|
|
|
|
|
2010-11-09 21:12:31 -07:00
|
|
|
// Good
|
2016-01-21 13:16:51 -07:00
|
|
|
std::string ArrayToString(const u8* data, u32 size, int line_len = 20, bool spaces = true);
|
2010-11-09 21:12:31 -07:00
|
|
|
|
2016-01-21 13:27:56 -07:00
|
|
|
std::string StripSpaces(const std::string& s);
|
|
|
|
std::string StripQuotes(const std::string& s);
|
2010-11-09 21:12:31 -07:00
|
|
|
|
2008-12-07 21:46:09 -07:00
|
|
|
std::string StringFromBool(bool value);
|
|
|
|
|
2016-01-21 13:27:56 -07:00
|
|
|
bool TryParse(const std::string& str, bool* output);
|
2017-09-17 21:04:11 -06:00
|
|
|
bool TryParse(const std::string& str, u16* output);
|
2016-01-21 13:27:56 -07:00
|
|
|
bool TryParse(const std::string& str, u32* output);
|
2017-02-24 20:56:33 -07:00
|
|
|
bool TryParse(const std::string& str, u64* output);
|
2008-12-07 21:46:09 -07:00
|
|
|
|
2010-11-09 21:12:31 -07:00
|
|
|
template <typename N>
|
2016-01-21 13:27:56 -07:00
|
|
|
static bool TryParse(const std::string& str, N* const output)
|
2010-11-09 21:12:31 -07:00
|
|
|
{
|
2016-06-24 02:43:46 -06: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"));
|
|
|
|
|
|
|
|
N tmp = 0;
|
|
|
|
if (iss >> tmp)
|
|
|
|
{
|
|
|
|
*output = tmp;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return false;
|
2010-11-09 21:12:31 -07:00
|
|
|
}
|
2008-12-07 21:46:09 -07:00
|
|
|
|
2014-07-29 10:34:57 -06:00
|
|
|
template <typename N>
|
|
|
|
bool TryParseVector(const std::string& str, std::vector<N>* output, const char delimiter = ',')
|
|
|
|
{
|
2016-06-24 02:43:46 -06: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 10:34:57 -06:00
|
|
|
}
|
|
|
|
|
2016-06-16 18:08:12 -06:00
|
|
|
// Generates an hexdump-like representation of a binary data blob.
|
|
|
|
std::string HexDump(const u8* data, size_t size);
|
|
|
|
|
2008-12-07 21:46:09 -07:00
|
|
|
// TODO: kill this
|
2014-03-12 13:33:41 -06:00
|
|
|
bool AsciiToHex(const std::string& _szValue, u32& result);
|
2008-12-07 21:46:09 -07:00
|
|
|
|
2016-01-21 13:27:56 -07:00
|
|
|
std::string TabsToSpaces(int tab_size, const std::string& in);
|
2009-06-21 02:39:21 -06:00
|
|
|
|
2017-06-11 08:33:10 -06:00
|
|
|
std::vector<std::string> SplitString(const std::string& str, char delim);
|
2016-11-26 07:39:00 -07:00
|
|
|
std::string JoinStrings(const std::vector<std::string>& strings, const std::string& delimiter);
|
2008-12-07 21:46:09 -07:00
|
|
|
|
2010-11-09 21:12:31 -07:00
|
|
|
// "C:/Windows/winhelp.exe" to "C:/Windows/", "winhelp", ".exe"
|
2016-06-24 02:43:46 -06:00
|
|
|
bool SplitPath(const std::string& full_path, std::string* _pPath, std::string* _pFilename,
|
|
|
|
std::string* _pExtension);
|
2009-09-04 05:48:49 -06:00
|
|
|
|
2016-06-24 02:43:46 -06:00
|
|
|
void BuildCompleteFilename(std::string& _CompleteFilename, const std::string& _Path,
|
|
|
|
const std::string& _Filename);
|
2011-02-25 16:33:11 -07:00
|
|
|
std::string ReplaceAll(std::string result, const std::string& src, const std::string& dest);
|
2008-12-07 21:46:09 -07:00
|
|
|
|
2016-12-06 08:43:41 -07:00
|
|
|
bool StringBeginsWith(const std::string& str, const std::string& begin);
|
|
|
|
bool StringEndsWith(const std::string& str, const std::string& end);
|
2017-06-05 22:08:51 -06:00
|
|
|
void StringPopBackIf(std::string* s, char c);
|
2016-12-06 08:43:41 -07:00
|
|
|
|
2013-03-02 21:57:49 -07:00
|
|
|
std::string CP1252ToUTF8(const std::string& str);
|
2013-03-02 18:46:55 -07:00
|
|
|
std::string SHIFTJISToUTF8(const std::string& str);
|
2017-05-01 06:08:47 -06:00
|
|
|
std::string UTF8ToSHIFTJIS(const std::string& str);
|
2013-03-02 18:46:55 -07:00
|
|
|
std::string UTF16ToUTF8(const std::wstring& str);
|
2017-11-02 10:05:45 -06:00
|
|
|
std::string UTF16BEToUTF8(const char16_t* str, size_t max_size); // Stops at \0
|
2013-03-02 18:46:55 -07:00
|
|
|
|
2013-02-27 17:00:42 -07:00
|
|
|
#ifdef _WIN32
|
|
|
|
|
|
|
|
std::wstring UTF8ToUTF16(const std::string& str);
|
|
|
|
|
2013-02-27 17:51:02 -07:00
|
|
|
#ifdef _UNICODE
|
|
|
|
inline std::string TStrToUTF8(const std::wstring& str)
|
2016-06-24 02:43:46 -06:00
|
|
|
{
|
|
|
|
return UTF16ToUTF8(str);
|
|
|
|
}
|
2013-02-27 17:51:02 -07:00
|
|
|
|
|
|
|
inline std::wstring UTF8ToTStr(const std::string& str)
|
2016-06-24 02:43:46 -06:00
|
|
|
{
|
|
|
|
return UTF8ToUTF16(str);
|
|
|
|
}
|
2013-02-27 17:51:02 -07:00
|
|
|
#else
|
|
|
|
inline std::string TStrToUTF8(const std::string& str)
|
2016-06-24 02:43:46 -06:00
|
|
|
{
|
|
|
|
return str;
|
|
|
|
}
|
2013-02-27 17:51:02 -07:00
|
|
|
|
|
|
|
inline std::string UTF8ToTStr(const std::string& str)
|
2016-06-24 02:43:46 -06:00
|
|
|
{
|
|
|
|
return str;
|
|
|
|
}
|
2013-02-27 17:51:02 -07:00
|
|
|
#endif
|
|
|
|
|
2013-02-27 17:00:42 -07:00
|
|
|
#endif
|
2018-05-08 05:55:07 -06: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
|
|
|
|
}
|