| 
									
										
										
										
											2015-05-24 06:55:12 +02:00
										 |  |  | // Copyright 2008 Dolphin Emulator Project
 | 
					
						
							| 
									
										
										
										
											2015-05-18 01:08:10 +02:00
										 |  |  | // Licensed under GPLv2+
 | 
					
						
							| 
									
										
										
										
											2013-04-17 23:09:55 -04:00
										 |  |  | // Refer to the license.txt file included.
 | 
					
						
							| 
									
										
										
										
											2008-12-08 04:46:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-10 13:54:46 -05:00
										 |  |  | #pragma once
 | 
					
						
							| 
									
										
										
										
											2008-12-08 04:46:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-17 05:18:15 -05:00
										 |  |  | #include <cstdarg>
 | 
					
						
							| 
									
										
										
										
											2014-02-20 04:11:52 +01:00
										 |  |  | #include <cstddef>
 | 
					
						
							| 
									
										
										
										
											2010-11-10 04:12:31 +00:00
										 |  |  | #include <iomanip>
 | 
					
						
							| 
									
										
										
										
											2014-02-17 05:18:15 -05:00
										 |  |  | #include <sstream>
 | 
					
						
							|  |  |  | #include <string>
 | 
					
						
							|  |  |  | #include <vector>
 | 
					
						
							| 
									
										
										
										
											2008-12-08 04:46:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-26 17:13:07 -04:00
										 |  |  | #include "Common/CommonTypes.h"
 | 
					
						
							| 
									
										
										
										
											2008-12-08 04:46:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-29 01:09:07 +01:00
										 |  |  | std::string StringFromFormatV(const char* format, va_list args); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-07 01:10:04 +13:00
										 |  |  | std::string StringFromFormat(const char* format, ...) | 
					
						
							|  |  |  | #if !defined _WIN32
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02: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-07 01:10:04 +13:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |     ; | 
					
						
							| 
									
										
										
										
											2014-02-07 01:10:04 +13: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 10:43:46 +02: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 10:43:46 +02: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 21:16:51 +01: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 21:27:56 +01:00
										 |  |  | std::string StripSpaces(const std::string& s); | 
					
						
							|  |  |  | std::string StripQuotes(const std::string& s); | 
					
						
							| 
									
										
										
										
											2010-11-10 04:12:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-03 20:00:09 +00:00
										 |  |  | // Thousand separator. Turns 12345678 into 12,345,678
 | 
					
						
							| 
									
										
										
										
											2010-11-10 04:12:31 +00:00
										 |  |  | template <typename I> | 
					
						
							|  |  |  | std::string ThousandSeparate(I value, int spaces = 0) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   std::ostringstream oss; | 
					
						
							| 
									
										
										
										
											2011-02-19 22:06:29 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | // std::locale("") seems to be broken on many platforms
 | 
					
						
							|  |  |  | #if defined _WIN32 || (defined __linux__ && !defined __clang__)
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   oss.imbue(std::locale("")); | 
					
						
							| 
									
										
										
										
											2011-01-22 03:57:03 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   oss << std::setw(spaces) << value; | 
					
						
							| 
									
										
										
										
											2010-11-10 04:12:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   return oss.str(); | 
					
						
							| 
									
										
										
										
											2010-11-10 04:12:31 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2008-12-08 04:46:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-07 00:26:33 +01:00
										 |  |  | std::string StringFromInt(int value); | 
					
						
							| 
									
										
										
										
											2008-12-08 04:46:09 +00:00
										 |  |  | std::string StringFromBool(bool value); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-21 21:27:56 +01:00
										 |  |  | bool TryParse(const std::string& str, bool* output); | 
					
						
							|  |  |  | bool TryParse(const std::string& str, u32* output); | 
					
						
							| 
									
										
										
										
											2008-12-08 04:46:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-10 04:12:31 +00:00
										 |  |  | template <typename N> | 
					
						
							| 
									
										
										
										
											2016-01-21 21:27:56 +01:00
										 |  |  | static bool TryParse(const std::string& str, N* const output) | 
					
						
							| 
									
										
										
										
											2010-11-10 04:12:31 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02: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-10 04:12:31 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2008-12-08 04:46:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-29 11:34:57 -05:00
										 |  |  | template <typename N> | 
					
						
							|  |  |  | bool TryParseVector(const std::string& str, std::vector<N>* output, const char delimiter = ',') | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02: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 11:34:57 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-17 02:08:12 +02: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 15:33:41 -04:00
										 |  |  | bool AsciiToHex(const std::string& _szValue, u32& result); | 
					
						
							| 
									
										
										
										
											2008-12-08 04:46:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-21 21:27:56 +01:00
										 |  |  | std::string TabsToSpaces(int tab_size, const std::string& in); | 
					
						
							| 
									
										
										
										
											2009-06-21 08:39:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-10 04:12:31 +00:00
										 |  |  | void SplitString(const std::string& str, char delim, std::vector<std::string>& output); | 
					
						
							| 
									
										
										
										
											2016-11-26 15:39:00 +01: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 10:43:46 +02: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 10:43:46 +02: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); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-02 22:57:49 -06:00
										 |  |  | std::string CP1252ToUTF8(const std::string& str); | 
					
						
							| 
									
										
										
										
											2013-03-02 19:46:55 -06:00
										 |  |  | std::string SHIFTJISToUTF8(const std::string& str); | 
					
						
							|  |  |  | std::string UTF16ToUTF8(const std::wstring& str); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-27 18:00:42 -06:00
										 |  |  | #ifdef _WIN32
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | std::wstring UTF8ToUTF16(const std::string& str); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-27 18:51:02 -06:00
										 |  |  | #ifdef _UNICODE
 | 
					
						
							|  |  |  | inline std::string TStrToUTF8(const std::wstring& str) | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  | { | 
					
						
							|  |  |  |   return UTF16ToUTF8(str); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2013-02-27 18:51:02 -06:00
										 |  |  | 
 | 
					
						
							|  |  |  | inline std::wstring UTF8ToTStr(const std::string& str) | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  | { | 
					
						
							|  |  |  |   return UTF8ToUTF16(str); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2013-02-27 18:51:02 -06:00
										 |  |  | #else
 | 
					
						
							|  |  |  | inline std::string TStrToUTF8(const std::string& str) | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  | { | 
					
						
							|  |  |  |   return str; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2013-02-27 18:51:02 -06:00
										 |  |  | 
 | 
					
						
							|  |  |  | inline std::string UTF8ToTStr(const std::string& str) | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  | { | 
					
						
							|  |  |  |   return str; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2013-02-27 18:51:02 -06:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-27 18:00:42 -06:00
										 |  |  | #endif
 |