| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-17 05:18:15 -05:00
										 |  |  | #include "Common/Common.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
 | 
					
						
							|  |  |  | // On compilers that support function attributes, this gives StringFromFormat
 | 
					
						
							|  |  |  | // the same errors and warnings that printf would give.
 | 
					
						
							|  |  |  |  __attribute__ ((__format__(printf, 1, 2))) | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | ; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-08 04:46:09 +00:00
										 |  |  | // Cheap!
 | 
					
						
							|  |  |  | bool CharArrayFromFormatV(char* out, int outsize, const char* format, va_list args); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template<size_t Count> | 
					
						
							|  |  |  | inline void CharArrayFromFormat(char (& out)[Count], const char* format, ...) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	va_list args; | 
					
						
							|  |  |  | 	va_start(args, format); | 
					
						
							|  |  |  | 	CharArrayFromFormatV(out, Count, format, args); | 
					
						
							|  |  |  | 	va_end(args); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-10 04:12:31 +00:00
										 |  |  | // Good
 | 
					
						
							|  |  |  | std::string ArrayToString(const u8 *data, u32 size, int line_len = 20, bool spaces = true); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-08 04:46:09 +00: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) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	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__)
 | 
					
						
							| 
									
										
										
										
											2011-01-22 03:57:03 +00:00
										 |  |  | 	oss.imbue(std::locale("")); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2010-11-10 04:12:31 +00:00
										 |  |  | 	oss << std::setw(spaces) << value; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return oss.str(); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											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); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-10 04:12:31 +00: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> | 
					
						
							| 
									
										
										
										
											2011-02-05 16:06:05 +00:00
										 |  |  | static bool TryParse(const std::string &str, N *const output) | 
					
						
							| 
									
										
										
										
											2010-11-10 04:12:31 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	std::istringstream iss(str); | 
					
						
							| 
									
										
										
										
											2014-12-31 10:24:14 -08:00
										 |  |  | 	// is this right? not doing this breaks reading floats on locales that use different decimal separators
 | 
					
						
							| 
									
										
										
										
											2015-01-11 00:15:57 -08:00
										 |  |  | 	iss.imbue(std::locale("C")); | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-10 04:12:31 +00:00
										 |  |  | 	N tmp = 0; | 
					
						
							|  |  |  | 	if (iss >> tmp) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		*output = tmp; | 
					
						
							|  |  |  | 		return true; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											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 = ',') | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	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; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-21 08:39:21 +00:00
										 |  |  | std::string TabsToSpaces(int tab_size, const std::string &in); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-10 04:12:31 +00:00
										 |  |  | void SplitString(const std::string& str, char delim, std::vector<std::string>& output); | 
					
						
							| 
									
										
										
										
											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"
 | 
					
						
							| 
									
										
										
										
											2008-12-08 04:46:09 +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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-08 04:46:09 +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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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) | 
					
						
							|  |  |  | { return UTF16ToUTF8(str); } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | inline std::wstring UTF8ToTStr(const std::string& str) | 
					
						
							|  |  |  | { return UTF8ToUTF16(str); } | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | inline std::string TStrToUTF8(const std::string& str) | 
					
						
							|  |  |  | { return str; } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | inline std::string UTF8ToTStr(const std::string& str) | 
					
						
							|  |  |  | { return str; } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-27 18:00:42 -06:00
										 |  |  | #endif
 |