| 
									
										
										
										
											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 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-17 05:18:15 -05:00
										 |  |  | #include <algorithm>
 | 
					
						
							| 
									
										
										
										
											2014-02-20 04:11:52 +01:00
										 |  |  | #include <cstddef>
 | 
					
						
							|  |  |  | #include <cstdio>
 | 
					
						
							|  |  |  | #include <cstring>
 | 
					
						
							| 
									
										
										
										
											2014-02-19 01:54:11 +01:00
										 |  |  | #include <fcntl.h>
 | 
					
						
							| 
									
										
										
										
											2014-02-20 04:11:52 +01:00
										 |  |  | #include <limits.h>
 | 
					
						
							|  |  |  | #include <string>
 | 
					
						
							|  |  |  | #include <vector>
 | 
					
						
							| 
									
										
										
										
											2014-02-17 05:18:15 -05:00
										 |  |  | #include <sys/stat.h>
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-17 05:18:15 -05:00
										 |  |  | #include "Common/CommonPaths.h"
 | 
					
						
							| 
									
										
										
										
											2014-09-07 20:06:58 -05:00
										 |  |  | #include "Common/CommonTypes.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-17 05:18:15 -05:00
										 |  |  | #include "Common/FileUtil.h"
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifdef _WIN32
 | 
					
						
							| 
									
										
										
										
											2013-10-19 18:58:02 -04:00
										 |  |  | #include <commdlg.h>   // for GetSaveFileName
 | 
					
						
							|  |  |  | #include <direct.h>    // getcwd
 | 
					
						
							| 
									
										
										
										
											2014-02-19 01:54:11 +01:00
										 |  |  | #include <io.h>
 | 
					
						
							| 
									
										
										
										
											2014-11-17 20:59:14 -05:00
										 |  |  | #include <objbase.h>   // guid stuff
 | 
					
						
							| 
									
										
										
										
											2014-02-19 01:54:11 +01:00
										 |  |  | #include <shellapi.h>
 | 
					
						
							|  |  |  | #include <windows.h>
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | #else
 | 
					
						
							|  |  |  | #include <dirent.h>
 | 
					
						
							|  |  |  | #include <errno.h>
 | 
					
						
							| 
									
										
										
										
											2013-10-15 02:52:06 -04:00
										 |  |  | #include <libgen.h>
 | 
					
						
							| 
									
										
										
										
											2014-02-19 01:54:11 +01:00
										 |  |  | #include <stdlib.h>
 | 
					
						
							| 
									
										
										
										
											2014-02-20 04:11:52 +01:00
										 |  |  | #include <unistd.h>
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-28 23:21:51 +00:00
										 |  |  | #if defined(__APPLE__)
 | 
					
						
							| 
									
										
										
										
											2014-02-19 01:54:11 +01:00
										 |  |  | #include <CoreFoundation/CFBundle.h>
 | 
					
						
							| 
									
										
										
										
											2009-02-28 23:21:51 +00:00
										 |  |  | #include <CoreFoundation/CFString.h>
 | 
					
						
							| 
									
										
										
										
											2010-05-06 10:06:15 +00:00
										 |  |  | #include <CoreFoundation/CFURL.h>
 | 
					
						
							| 
									
										
										
										
											2014-02-20 04:11:52 +01:00
										 |  |  | #include <sys/param.h>
 | 
					
						
							| 
									
										
										
										
											2009-02-28 23:21:51 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | #ifndef S_ISDIR
 | 
					
						
							|  |  |  | #define S_ISDIR(m)  (((m)&S_IFMT) == S_IFDIR)
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2009-03-28 08:57:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-10 22:15:11 -07:00
										 |  |  | #if defined BSD4_4 || defined __FreeBSD__
 | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | #define stat64 stat
 | 
					
						
							|  |  |  | #define fstat64 fstat
 | 
					
						
							| 
									
										
										
										
											2010-07-22 03:29:35 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-28 08:57:34 +00:00
										 |  |  | // This namespace has various generic functions related to files and paths.
 | 
					
						
							|  |  |  | // The code still needs a ton of cleanup.
 | 
					
						
							|  |  |  | // REMEMBER: strdup considered harmful!
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | namespace File | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Remove any ending forward slashes from directory paths
 | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | // Modifies argument.
 | 
					
						
							| 
									
										
										
										
											2011-02-28 20:40:15 +00:00
										 |  |  | static void StripTailDirSlashes(std::string &fname) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-02-28 20:40:15 +00:00
										 |  |  | 	if (fname.length() > 1) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2014-07-31 22:18:45 -04:00
										 |  |  | 		while (fname.back() == DIR_SEP_CHR) | 
					
						
							|  |  |  | 			fname.pop_back(); | 
					
						
							| 
									
										
										
										
											2011-02-28 20:40:15 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | // Returns true if file filename exists
 | 
					
						
							| 
									
										
										
										
											2011-03-01 05:16:32 +00:00
										 |  |  | bool Exists(const std::string &filename) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-02-01 18:22:58 +00:00
										 |  |  | 	struct stat64 file_info; | 
					
						
							| 
									
										
										
										
											2011-02-28 20:40:15 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	std::string copy(filename); | 
					
						
							|  |  |  | 	StripTailDirSlashes(copy); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-27 20:55:19 -06:00
										 |  |  | #ifdef _WIN32
 | 
					
						
							| 
									
										
										
										
											2013-02-27 19:43:29 -06:00
										 |  |  | 	int result = _tstat64(UTF8ToTStr(copy).c_str(), &file_info); | 
					
						
							| 
									
										
										
										
											2013-02-27 20:55:19 -06:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2011-02-28 20:40:15 +00:00
										 |  |  | 	int result = stat64(copy.c_str(), &file_info); | 
					
						
							| 
									
										
										
										
											2013-02-27 20:55:19 -06:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return (result == 0); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | // Returns true if filename is a directory
 | 
					
						
							| 
									
										
										
										
											2011-03-01 05:16:32 +00:00
										 |  |  | bool IsDirectory(const std::string &filename) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-02-08 09:57:52 +00:00
										 |  |  | 	struct stat64 file_info; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-28 20:40:15 +00:00
										 |  |  | 	std::string copy(filename); | 
					
						
							|  |  |  | 	StripTailDirSlashes(copy); | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-27 20:55:19 -06:00
										 |  |  | #ifdef _WIN32
 | 
					
						
							| 
									
										
										
										
											2013-02-27 19:43:29 -06:00
										 |  |  | 	int result = _tstat64(UTF8ToTStr(copy).c_str(), &file_info); | 
					
						
							| 
									
										
										
										
											2013-02-27 20:55:19 -06:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2011-02-28 20:40:15 +00:00
										 |  |  | 	int result = stat64(copy.c_str(), &file_info); | 
					
						
							| 
									
										
										
										
											2013-02-27 20:55:19 -06:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-30 16:14:56 -04:00
										 |  |  | 	if (result < 0) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 		WARN_LOG(COMMON, "IsDirectory: stat failed on %s: %s", | 
					
						
							| 
									
										
										
										
											2015-04-07 22:15:21 +02:00
										 |  |  | 				 filename.c_str(), GetLastErrorMsg().c_str()); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 		return false; | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return S_ISDIR(file_info.st_mode); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | // Deletes a given filename, return true on success
 | 
					
						
							|  |  |  | // Doesn't supports deleting a directory
 | 
					
						
							| 
									
										
										
										
											2011-03-01 05:16:32 +00:00
										 |  |  | bool Delete(const std::string &filename) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | 	INFO_LOG(COMMON, "Delete: file %s", filename.c_str()); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 	// Return true because we care about the file no
 | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 	// being there, not the actual delete.
 | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | 	if (!Exists(filename)) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2013-04-01 00:10:54 -04:00
										 |  |  | 		WARN_LOG(COMMON, "Delete: %s does not exist", filename.c_str()); | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 		return true; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// We can't delete a directory
 | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | 	if (IsDirectory(filename)) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2011-05-07 03:48:27 +00:00
										 |  |  | 		WARN_LOG(COMMON, "Delete failed: %s is a directory", filename.c_str()); | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 		return false; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifdef _WIN32
 | 
					
						
							| 
									
										
										
										
											2013-02-27 18:51:02 -06:00
										 |  |  | 	if (!DeleteFile(UTF8ToTStr(filename).c_str())) | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 		WARN_LOG(COMMON, "Delete: DeleteFile failed on %s: %s", | 
					
						
							| 
									
										
										
										
											2015-04-07 22:15:21 +02:00
										 |  |  | 				 filename.c_str(), GetLastErrorMsg().c_str()); | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 		return false; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2014-08-30 16:14:56 -04:00
										 |  |  | 	if (unlink(filename.c_str()) == -1) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 		WARN_LOG(COMMON, "Delete: unlink failed on %s: %s", | 
					
						
							| 
									
										
										
										
											2015-04-07 22:15:21 +02:00
										 |  |  | 				 filename.c_str(), GetLastErrorMsg().c_str()); | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 		return false; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return true; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Returns true if successful, or path already exists.
 | 
					
						
							| 
									
										
										
										
											2011-03-01 05:16:32 +00:00
										 |  |  | bool CreateDir(const std::string &path) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | 	INFO_LOG(COMMON, "CreateDir: directory %s", path.c_str()); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | #ifdef _WIN32
 | 
					
						
							| 
									
										
										
										
											2014-03-09 21:14:26 +01:00
										 |  |  | 	if (::CreateDirectory(UTF8ToTStr(path).c_str(), nullptr)) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 		return true; | 
					
						
							|  |  |  | 	DWORD error = GetLastError(); | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | 	if (error == ERROR_ALREADY_EXISTS) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		WARN_LOG(COMMON, "CreateDir: CreateDirectory failed on %s: already exists", path.c_str()); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 		return true; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | 	ERROR_LOG(COMMON, "CreateDir: CreateDirectory failed on %s: %i", path.c_str(), error); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 	return false; | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | 	if (mkdir(path.c_str(), 0755) == 0) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 		return true; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	int err = errno; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | 	if (err == EEXIST) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		WARN_LOG(COMMON, "CreateDir: mkdir failed on %s: already exists", path.c_str()); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 		return true; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | 	ERROR_LOG(COMMON, "CreateDir: mkdir failed on %s: %s", path.c_str(), strerror(err)); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 	return false; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | // Creates the full path of fullPath returns true on success
 | 
					
						
							| 
									
										
										
										
											2011-03-01 05:16:32 +00:00
										 |  |  | bool CreateFullPath(const std::string &fullPath) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 	int panicCounter = 100; | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | 	INFO_LOG(COMMON, "CreateFullPath: path %s", fullPath.c_str()); | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | 	if (File::Exists(fullPath)) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		INFO_LOG(COMMON, "CreateFullPath: path exists %s", fullPath.c_str()); | 
					
						
							| 
									
										
										
										
											2009-03-03 00:21:08 +00:00
										 |  |  | 		return true; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | 	size_t position = 0; | 
					
						
							|  |  |  | 	while (true) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2009-04-16 17:24:06 +00:00
										 |  |  | 		// Find next sub path
 | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | 		position = fullPath.find(DIR_SEP_CHR, position); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 		// we're done, yay!
 | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | 		if (position == fullPath.npos) | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 			return true; | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-17 01:33:22 -06:00
										 |  |  | 		// Include the '/' so the first call is CreateDir("/") rather than CreateDir("")
 | 
					
						
							|  |  |  | 		std::string const subPath(fullPath.substr(0, position + 1)); | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | 		if (!File::IsDirectory(subPath)) | 
					
						
							|  |  |  | 			File::CreateDir(subPath); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// A safety check
 | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 		panicCounter--; | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | 		if (panicCounter <= 0) | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2013-04-01 00:10:54 -04:00
										 |  |  | 			ERROR_LOG(COMMON, "CreateFullPath: directory structure is too deep"); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 			return false; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | 		position++; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | // Deletes a directory filename, returns true on success
 | 
					
						
							| 
									
										
										
										
											2011-03-01 05:16:32 +00:00
										 |  |  | bool DeleteDir(const std::string &filename) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | 	INFO_LOG(COMMON, "DeleteDir: directory %s", filename.c_str()); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 	// check if a directory
 | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | 	if (!File::IsDirectory(filename)) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		ERROR_LOG(COMMON, "DeleteDir: Not a directory %s", filename.c_str()); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 		return false; | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | #ifdef _WIN32
 | 
					
						
							| 
									
										
										
										
											2013-02-27 18:51:02 -06:00
										 |  |  | 	if (::RemoveDirectory(UTF8ToTStr(filename).c_str())) | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 		return true; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | 	if (rmdir(filename.c_str()) == 0) | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 		return true; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2015-04-07 22:15:21 +02:00
										 |  |  | 	ERROR_LOG(COMMON, "DeleteDir: %s: %s", filename.c_str(), GetLastErrorMsg().c_str()); | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return false; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | // renames file srcFilename to destFilename, returns true on success
 | 
					
						
							| 
									
										
										
										
											2011-03-01 05:16:32 +00:00
										 |  |  | bool Rename(const std::string &srcFilename, const std::string &destFilename) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 	INFO_LOG(COMMON, "Rename: %s --> %s", | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | 			srcFilename.c_str(), destFilename.c_str()); | 
					
						
							| 
									
										
										
										
											2013-10-09 15:33:21 -04:00
										 |  |  | #ifdef _WIN32
 | 
					
						
							| 
									
										
										
										
											2013-10-15 17:20:00 -04:00
										 |  |  | 	auto sf = UTF8ToTStr(srcFilename); | 
					
						
							|  |  |  | 	auto df = UTF8ToTStr(destFilename); | 
					
						
							| 
									
										
										
										
											2013-10-15 02:52:06 -04:00
										 |  |  | 	// The Internet seems torn about whether ReplaceFile is atomic or not.
 | 
					
						
							|  |  |  | 	// Hopefully it's atomic enough...
 | 
					
						
							| 
									
										
										
										
											2014-03-09 21:14:26 +01:00
										 |  |  | 	if (ReplaceFile(df.c_str(), sf.c_str(), nullptr, REPLACEFILE_IGNORE_MERGE_ERRORS, nullptr, nullptr)) | 
					
						
							| 
									
										
										
										
											2013-10-15 02:52:06 -04:00
										 |  |  | 		return true; | 
					
						
							|  |  |  | 	// Might have failed because the destination doesn't exist.
 | 
					
						
							|  |  |  | 	if (GetLastError() == ERROR_FILE_NOT_FOUND) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2013-10-15 17:20:00 -04:00
										 |  |  | 		if (MoveFile(sf.c_str(), df.c_str())) | 
					
						
							| 
									
										
										
										
											2013-10-15 02:52:06 -04:00
										 |  |  | 			return true; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-10-09 15:33:21 -04:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | 	if (rename(srcFilename.c_str(), destFilename.c_str()) == 0) | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 		return true; | 
					
						
							| 
									
										
										
										
											2013-10-15 02:52:06 -04:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 	ERROR_LOG(COMMON, "Rename: failed %s --> %s: %s", | 
					
						
							| 
									
										
										
										
											2015-04-07 22:15:21 +02:00
										 |  |  | 			  srcFilename.c_str(), destFilename.c_str(), GetLastErrorMsg().c_str()); | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 	return false; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 02:52:06 -04:00
										 |  |  | #ifndef _WIN32
 | 
					
						
							|  |  |  | static void FSyncPath(const char *path) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int fd = open(path, O_RDONLY); | 
					
						
							|  |  |  | 	if (fd != -1) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		fsync(fd); | 
					
						
							|  |  |  | 		close(fd); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool RenameSync(const std::string &srcFilename, const std::string &destFilename) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (!Rename(srcFilename, destFilename)) | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | #ifdef _WIN32
 | 
					
						
							|  |  |  | 	int fd = _topen(UTF8ToTStr(srcFilename).c_str(), _O_RDONLY); | 
					
						
							|  |  |  | 	if (fd != -1) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		_commit(fd); | 
					
						
							|  |  |  | 		close(fd); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 	char *path = strdup(srcFilename.c_str()); | 
					
						
							|  |  |  | 	FSyncPath(path); | 
					
						
							|  |  |  | 	FSyncPath(dirname(path)); | 
					
						
							|  |  |  | 	free(path); | 
					
						
							|  |  |  | 	path = strdup(destFilename.c_str()); | 
					
						
							|  |  |  | 	FSyncPath(dirname(path)); | 
					
						
							|  |  |  | 	free(path); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 	return true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | // copies file srcFilename to destFilename, returns true on success
 | 
					
						
							| 
									
										
										
										
											2011-03-01 05:16:32 +00:00
										 |  |  | bool Copy(const std::string &srcFilename, const std::string &destFilename) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 	INFO_LOG(COMMON, "Copy: %s --> %s", | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | 			srcFilename.c_str(), destFilename.c_str()); | 
					
						
							| 
									
										
										
										
											2009-01-15 06:48:15 +00:00
										 |  |  | #ifdef _WIN32
 | 
					
						
							| 
									
										
										
										
											2013-02-27 18:51:02 -06:00
										 |  |  | 	if (CopyFile(UTF8ToTStr(srcFilename).c_str(), UTF8ToTStr(destFilename).c_str(), FALSE)) | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 		return true; | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 	ERROR_LOG(COMMON, "Copy: failed %s --> %s: %s", | 
					
						
							| 
									
										
										
										
											2015-04-07 22:15:21 +02:00
										 |  |  | 			srcFilename.c_str(), destFilename.c_str(), GetLastErrorMsg().c_str()); | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 	return false; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | #else
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 	// buffer size
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | #define BSIZE 1024
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 	char buffer[BSIZE]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Open input file
 | 
					
						
							| 
									
										
										
										
											2014-11-03 14:38:01 -05:00
										 |  |  | 	std::ifstream input; | 
					
						
							|  |  |  | 	OpenFStream(input, srcFilename, std::ifstream::in | std::ifstream::binary); | 
					
						
							|  |  |  | 	if (!input.is_open()) | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 		ERROR_LOG(COMMON, "Copy: input failed %s --> %s: %s", | 
					
						
							| 
									
										
										
										
											2015-04-07 22:15:21 +02:00
										 |  |  | 				srcFilename.c_str(), destFilename.c_str(), GetLastErrorMsg().c_str()); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 		return false; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 	// open output file
 | 
					
						
							| 
									
										
										
										
											2014-11-03 14:38:01 -05:00
										 |  |  | 	File::IOFile output(destFilename, "wb"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!output.IsOpen()) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 		ERROR_LOG(COMMON, "Copy: output failed %s --> %s: %s", | 
					
						
							| 
									
										
										
										
											2015-04-07 22:15:21 +02:00
										 |  |  | 				srcFilename.c_str(), destFilename.c_str(), GetLastErrorMsg().c_str()); | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 		return false; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-12-09 05:37:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 	// copy loop
 | 
					
						
							| 
									
										
										
										
											2014-11-03 14:38:01 -05:00
										 |  |  | 	while (!input.eof()) | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		// read input
 | 
					
						
							| 
									
										
										
										
											2014-11-03 14:38:01 -05:00
										 |  |  | 		input.read(buffer, BSIZE); | 
					
						
							|  |  |  | 		if (!input) | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2014-11-03 14:38:01 -05:00
										 |  |  | 			ERROR_LOG(COMMON, | 
					
						
							|  |  |  | 					"Copy: failed reading from source, %s --> %s: %s", | 
					
						
							| 
									
										
										
										
											2015-04-07 22:15:21 +02:00
										 |  |  | 					srcFilename.c_str(), destFilename.c_str(), GetLastErrorMsg().c_str()); | 
					
						
							| 
									
										
										
										
											2014-11-03 14:38:01 -05:00
										 |  |  | 			return false; | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2010-04-06 15:02:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 		// write output
 | 
					
						
							| 
									
										
										
										
											2014-11-03 14:38:01 -05:00
										 |  |  | 		if (!output.WriteBytes(buffer, BSIZE)) | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 			ERROR_LOG(COMMON, | 
					
						
							|  |  |  | 					"Copy: failed writing to output, %s --> %s: %s", | 
					
						
							| 
									
										
										
										
											2015-04-07 22:15:21 +02:00
										 |  |  | 					srcFilename.c_str(), destFilename.c_str(), GetLastErrorMsg().c_str()); | 
					
						
							| 
									
										
										
										
											2014-11-03 14:38:01 -05:00
										 |  |  | 			return false; | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-11-03 14:38:01 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 	return true; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | // Returns the size of filename (64bit)
 | 
					
						
							| 
									
										
										
										
											2011-03-01 05:16:32 +00:00
										 |  |  | u64 GetSize(const std::string &filename) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | 	if (!Exists(filename)) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		WARN_LOG(COMMON, "GetSize: failed %s: No such file", filename.c_str()); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 		return 0; | 
					
						
							| 
									
										
										
										
											2008-12-09 22:54:57 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | 	if (IsDirectory(filename)) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		WARN_LOG(COMMON, "GetSize: failed %s: is a directory", filename.c_str()); | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 		return 0; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 	struct stat64 buf; | 
					
						
							| 
									
										
										
										
											2013-02-27 20:55:19 -06:00
										 |  |  | #ifdef _WIN32
 | 
					
						
							| 
									
										
										
										
											2013-02-27 19:43:29 -06:00
										 |  |  | 	if (_tstat64(UTF8ToTStr(filename).c_str(), &buf) == 0) | 
					
						
							| 
									
										
										
										
											2013-02-27 20:55:19 -06:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | 	if (stat64(filename.c_str(), &buf) == 0) | 
					
						
							| 
									
										
										
										
											2013-02-27 20:55:19 -06:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-12-05 15:59:11 +00:00
										 |  |  | 		DEBUG_LOG(COMMON, "GetSize: %s: %lld", | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | 				filename.c_str(), (long long)buf.st_size); | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 		return buf.st_size; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 	ERROR_LOG(COMMON, "GetSize: Stat failed %s: %s", | 
					
						
							| 
									
										
										
										
											2015-04-07 22:15:21 +02:00
										 |  |  | 			filename.c_str(), GetLastErrorMsg().c_str()); | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-03 12:42:01 +00:00
										 |  |  | // Overloaded GetSize, accepts file descriptor
 | 
					
						
							|  |  |  | u64 GetSize(const int fd) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct stat64 buf; | 
					
						
							| 
									
										
										
										
											2014-08-30 16:14:56 -04:00
										 |  |  | 	if (fstat64(fd, &buf) != 0) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-12-03 12:42:01 +00:00
										 |  |  | 		ERROR_LOG(COMMON, "GetSize: stat failed %i: %s", | 
					
						
							| 
									
										
										
										
											2015-04-07 22:15:21 +02:00
										 |  |  | 			fd, GetLastErrorMsg().c_str()); | 
					
						
							| 
									
										
										
										
											2010-12-03 12:42:01 +00:00
										 |  |  | 		return 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return buf.st_size; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Overloaded GetSize, accepts FILE*
 | 
					
						
							|  |  |  | u64 GetSize(FILE *f) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-12-31 10:40:49 +00:00
										 |  |  | 	// can't use off_t here because it can be 32-bit
 | 
					
						
							|  |  |  | 	u64 pos = ftello(f); | 
					
						
							| 
									
										
										
										
											2014-08-30 16:14:56 -04:00
										 |  |  | 	if (fseeko(f, 0, SEEK_END) != 0) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-12-21 18:03:44 +00:00
										 |  |  | 		ERROR_LOG(COMMON, "GetSize: seek failed %p: %s", | 
					
						
							| 
									
										
										
										
											2015-04-07 22:15:21 +02:00
										 |  |  | 			  f, GetLastErrorMsg().c_str()); | 
					
						
							| 
									
										
										
										
											2010-12-21 18:03:44 +00:00
										 |  |  | 		return 0; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-08-30 16:14:56 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-31 10:40:49 +00:00
										 |  |  | 	u64 size = ftello(f); | 
					
						
							| 
									
										
										
										
											2014-08-30 16:14:56 -04:00
										 |  |  | 	if ((size != pos) && (fseeko(f, pos, SEEK_SET) != 0)) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-12-21 18:03:44 +00:00
										 |  |  | 		ERROR_LOG(COMMON, "GetSize: seek failed %p: %s", | 
					
						
							| 
									
										
										
										
											2015-04-07 22:15:21 +02:00
										 |  |  | 			  f, GetLastErrorMsg().c_str()); | 
					
						
							| 
									
										
										
										
											2010-12-21 18:03:44 +00:00
										 |  |  | 		return 0; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-08-30 16:14:56 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-21 18:03:44 +00:00
										 |  |  | 	return size; | 
					
						
							| 
									
										
										
										
											2010-12-03 12:42:01 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | // creates an empty file filename, returns true on success
 | 
					
						
							| 
									
										
										
										
											2011-03-01 05:16:32 +00:00
										 |  |  | bool CreateEmptyFile(const std::string &filename) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 	INFO_LOG(COMMON, "CreateEmptyFile: %s", filename.c_str()); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-27 19:43:29 -06:00
										 |  |  | 	if (!File::IOFile(filename, "wb")) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 		ERROR_LOG(COMMON, "CreateEmptyFile: failed %s: %s", | 
					
						
							| 
									
										
										
										
											2015-04-07 22:15:21 +02:00
										 |  |  | 				  filename.c_str(), GetLastErrorMsg().c_str()); | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 		return false; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-02-27 19:43:29 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 	return true; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | // Scans the directory tree gets, starting from _Directory and adds the
 | 
					
						
							|  |  |  | // results into parentEntry. Returns the number of files+directories found
 | 
					
						
							| 
									
										
										
										
											2014-11-15 15:46:40 -05:00
										 |  |  | FSTEntry ScanDirectoryTree(const std::string &directory, bool recursive) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | 	INFO_LOG(COMMON, "ScanDirectoryTree: directory %s", directory.c_str()); | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 	// How many files + directories we found
 | 
					
						
							| 
									
										
										
										
											2014-11-15 15:46:40 -05:00
										 |  |  | 	FSTEntry parent_entry; | 
					
						
							|  |  |  | 	parent_entry.physicalName = directory; | 
					
						
							|  |  |  | 	parent_entry.isDirectory = true; | 
					
						
							|  |  |  | 	parent_entry.size = 0; | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | #ifdef _WIN32
 | 
					
						
							| 
									
										
										
										
											2008-12-29 02:11:56 +00:00
										 |  |  | 	// Find the first file in the directory.
 | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 	WIN32_FIND_DATA ffd; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-27 18:51:02 -06:00
										 |  |  | 	HANDLE hFind = FindFirstFile(UTF8ToTStr(directory + "\\*").c_str(), &ffd); | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | 	if (hFind == INVALID_HANDLE_VALUE) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 		FindClose(hFind); | 
					
						
							| 
									
										
										
										
											2014-11-15 15:46:40 -05:00
										 |  |  | 		return parent_entry; | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-01-11 00:17:29 -05:00
										 |  |  | 	// Windows loop
 | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | 	do | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2014-11-15 15:46:40 -05:00
										 |  |  | 		const std::string virtual_name(TStrToUTF8(ffd.cFileName)); | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2014-03-09 21:14:26 +01:00
										 |  |  | 	struct dirent dirent, *result = nullptr; | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	DIR *dirp = opendir(directory.c_str()); | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 	if (!dirp) | 
					
						
							| 
									
										
										
										
											2014-11-15 15:46:40 -05:00
										 |  |  | 			return parent_entry; | 
					
						
							| 
									
										
										
										
											2009-01-15 06:48:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-15 15:46:40 -05:00
										 |  |  | 		// non Windows loop
 | 
					
						
							|  |  |  | 		while (!readdir_r(dirp, &dirent, &result) && result) | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2014-11-15 15:46:40 -05:00
										 |  |  | 			const std::string virtual_name(result->d_name); | 
					
						
							|  |  |  | 	#endif
 | 
					
						
							|  |  |  | 			if (virtual_name == "." || virtual_name == "..") | 
					
						
							|  |  |  | 				continue; | 
					
						
							|  |  |  | 			auto physical_name = directory + DIR_SEP + virtual_name; | 
					
						
							|  |  |  | 			FSTEntry entry; | 
					
						
							|  |  |  | 			entry.isDirectory = IsDirectory(physical_name); | 
					
						
							|  |  |  | 			if (entry.isDirectory) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				if (recursive) | 
					
						
							|  |  |  | 					entry = ScanDirectoryTree(physical_name, true); | 
					
						
							|  |  |  | 				else | 
					
						
							|  |  |  | 					entry.size = 0; | 
					
						
							| 
									
										
										
										
											2015-08-26 19:21:09 +02:00
										 |  |  | 				parent_entry.size += entry.size; | 
					
						
							| 
									
										
										
										
											2014-11-15 15:46:40 -05:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			else | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				entry.size = GetSize(physical_name); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			entry.virtualName = virtual_name; | 
					
						
							|  |  |  | 			entry.physicalName = physical_name; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			++parent_entry.size; | 
					
						
							|  |  |  | 			// Push into the tree
 | 
					
						
							|  |  |  | 			parent_entry.children.push_back(entry); | 
					
						
							|  |  |  | 	#ifdef _WIN32
 | 
					
						
							|  |  |  | 		} while (FindNextFile(hFind, &ffd) != 0); | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 	FindClose(hFind); | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2008-12-29 02:11:56 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	closedir(dirp); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 	// Return number of entries found.
 | 
					
						
							| 
									
										
										
										
											2014-11-15 15:46:40 -05:00
										 |  |  | 	return parent_entry; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | // Deletes the given directory and anything under it. Returns true on success.
 | 
					
						
							| 
									
										
										
										
											2011-03-01 05:16:32 +00:00
										 |  |  | bool DeleteDirRecursively(const std::string &directory) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | 	INFO_LOG(COMMON, "DeleteDirRecursively: %s", directory.c_str()); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | #ifdef _WIN32
 | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 	// Find the first file in the directory.
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 	WIN32_FIND_DATA ffd; | 
					
						
							| 
									
										
										
										
											2013-02-27 18:51:02 -06:00
										 |  |  | 	HANDLE hFind = FindFirstFile(UTF8ToTStr(directory + "\\*").c_str(), &ffd); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | 	if (hFind == INVALID_HANDLE_VALUE) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 		FindClose(hFind); | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-11 00:17:29 -05:00
										 |  |  | 	// Windows loop
 | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | 	do | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2013-02-27 18:51:02 -06:00
										 |  |  | 		const std::string virtualName(TStrToUTF8(ffd.cFileName)); | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2014-03-09 21:14:26 +01:00
										 |  |  | 	struct dirent dirent, *result = nullptr; | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | 	DIR *dirp = opendir(directory.c_str()); | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 	if (!dirp) | 
					
						
							|  |  |  | 		return false; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-11 00:17:29 -05:00
										 |  |  | 	// non Windows loop
 | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | 	while (!readdir_r(dirp, &dirent, &result) && result) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		const std::string virtualName = result->d_name; | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 		// check for "." and ".."
 | 
					
						
							|  |  |  | 		if (((virtualName[0] == '.') && (virtualName[1] == '\0')) || | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 			((virtualName[0] == '.') && (virtualName[1] == '.') && | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 			 (virtualName[2] == '\0'))) | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | 		std::string newPath = directory + DIR_SEP_CHR + virtualName; | 
					
						
							|  |  |  | 		if (IsDirectory(newPath)) | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 			if (!DeleteDirRecursively(newPath)) | 
					
						
							| 
									
										
										
										
											2013-01-24 08:21:08 -05:00
										 |  |  | 			{ | 
					
						
							|  |  |  | 				#ifndef _WIN32
 | 
					
						
							|  |  |  | 				closedir(dirp); | 
					
						
							|  |  |  | 				#endif
 | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 				return false; | 
					
						
							| 
									
										
										
										
											2013-01-24 08:21:08 -05:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 			if (!File::Delete(newPath)) | 
					
						
							| 
									
										
										
										
											2013-01-24 08:21:08 -05:00
										 |  |  | 			{ | 
					
						
							|  |  |  | 				#ifndef _WIN32
 | 
					
						
							|  |  |  | 				closedir(dirp); | 
					
						
							|  |  |  | 				#endif
 | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 				return false; | 
					
						
							| 
									
										
										
										
											2013-01-24 08:21:08 -05:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | #ifdef _WIN32
 | 
					
						
							|  |  |  | 	} while (FindNextFile(hFind, &ffd) != 0); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 	FindClose(hFind); | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-02-03 20:29:49 +00:00
										 |  |  | 	closedir(dirp); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 	File::DeleteDir(directory); | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 	return true; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | // Create directory and copy contents (does not overwrite existing files)
 | 
					
						
							| 
									
										
										
										
											2011-03-01 05:16:32 +00:00
										 |  |  | void CopyDir(const std::string &source_path, const std::string &dest_path) | 
					
						
							| 
									
										
										
										
											2010-02-02 21:56:29 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | 	if (source_path == dest_path) return; | 
					
						
							| 
									
										
										
										
											2010-04-06 15:02:09 +00:00
										 |  |  | 	if (!File::Exists(source_path)) return; | 
					
						
							|  |  |  | 	if (!File::Exists(dest_path)) File::CreateFullPath(dest_path); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-11 03:53:36 +02:00
										 |  |  | #ifdef _WIN32
 | 
					
						
							|  |  |  | 	WIN32_FIND_DATA ffd; | 
					
						
							|  |  |  | 	HANDLE hFind = FindFirstFile(UTF8ToTStr(source_path + "\\*").c_str(), &ffd); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (hFind == INVALID_HANDLE_VALUE) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		FindClose(hFind); | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	do | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		const std::string virtualName(TStrToUTF8(ffd.cFileName)); | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2014-03-09 21:14:26 +01:00
										 |  |  | 	struct dirent dirent, *result = nullptr; | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | 	DIR *dirp = opendir(source_path.c_str()); | 
					
						
							| 
									
										
										
										
											2010-04-06 15:02:09 +00:00
										 |  |  | 	if (!dirp) return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	while (!readdir_r(dirp, &dirent, &result) && result) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | 		const std::string virtualName(result->d_name); | 
					
						
							| 
									
										
										
										
											2013-09-11 03:53:36 +02:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2010-04-06 15:02:09 +00:00
										 |  |  | 		// check for "." and ".."
 | 
					
						
							| 
									
										
										
										
											2013-09-11 03:53:36 +02:00
										 |  |  | 		if (virtualName == "." || virtualName == "..") | 
					
						
							| 
									
										
										
										
											2010-04-06 15:02:09 +00:00
										 |  |  | 			continue; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-16 13:54:41 -05:00
										 |  |  | 		std::string source = source_path + DIR_SEP + virtualName; | 
					
						
							|  |  |  | 		std::string dest = dest_path + DIR_SEP + virtualName; | 
					
						
							| 
									
										
										
										
											2010-04-06 15:02:09 +00:00
										 |  |  | 		if (IsDirectory(source)) | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2014-11-16 13:54:41 -05:00
										 |  |  | 			if (!File::Exists(dest)) File::CreateFullPath(dest + DIR_SEP); | 
					
						
							| 
									
										
										
										
											2010-04-06 15:02:09 +00:00
										 |  |  | 			CopyDir(source, dest); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else if (!File::Exists(dest)) File::Copy(source, dest); | 
					
						
							| 
									
										
										
										
											2013-09-11 03:53:36 +02:00
										 |  |  | #ifdef _WIN32
 | 
					
						
							|  |  |  | 	} while (FindNextFile(hFind, &ffd) != 0); | 
					
						
							|  |  |  | 	FindClose(hFind); | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2010-04-06 15:02:09 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	closedir(dirp); | 
					
						
							| 
									
										
										
										
											2010-02-02 21:56:29 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2010-05-12 04:26:32 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2010-02-02 21:56:29 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-06 06:18:22 +00:00
										 |  |  | // Returns the current directory
 | 
					
						
							|  |  |  | std::string GetCurrentDir() | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-08-06 06:18:22 +00:00
										 |  |  | 	char *dir; | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 	// Get the current working directory (getcwd uses malloc)
 | 
					
						
							| 
									
										
										
										
											2014-08-30 16:14:56 -04:00
										 |  |  | 	if (!(dir = __getcwd(nullptr, 0))) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 		ERROR_LOG(COMMON, "GetCurrentDirectory failed: %s", | 
					
						
							| 
									
										
										
										
											2015-04-07 22:15:21 +02:00
										 |  |  | 				GetLastErrorMsg().c_str()); | 
					
						
							| 
									
										
										
										
											2014-03-09 21:14:26 +01:00
										 |  |  | 		return nullptr; | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-08-06 06:18:22 +00:00
										 |  |  | 	std::string strDir = dir; | 
					
						
							|  |  |  | 	free(dir); | 
					
						
							|  |  |  | 	return strDir; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | // Sets the current directory to the given directory
 | 
					
						
							| 
									
										
										
										
											2011-03-01 05:16:32 +00:00
										 |  |  | bool SetCurrentDir(const std::string &directory) | 
					
						
							| 
									
										
										
										
											2009-02-24 07:18:08 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | 	return __chdir(directory.c_str()) == 0; | 
					
						
							| 
									
										
										
										
											2009-02-24 07:18:08 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-17 20:59:14 -05:00
										 |  |  | std::string CreateTempDir() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | #ifdef _WIN32
 | 
					
						
							|  |  |  | 	TCHAR temp[MAX_PATH]; | 
					
						
							|  |  |  | 	if (!GetTempPath(MAX_PATH, temp)) | 
					
						
							|  |  |  | 		return ""; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	GUID guid; | 
					
						
							|  |  |  | 	CoCreateGuid(&guid); | 
					
						
							|  |  |  | 	TCHAR tguid[40]; | 
					
						
							|  |  |  | 	StringFromGUID2(guid, tguid, 39); | 
					
						
							|  |  |  | 	tguid[39] = 0; | 
					
						
							|  |  |  | 	std::string dir = TStrToUTF8(temp) + "/" + TStrToUTF8(tguid); | 
					
						
							|  |  |  | 	if (!CreateDir(dir)) | 
					
						
							|  |  |  | 		return ""; | 
					
						
							|  |  |  | 	dir = ReplaceAll(dir, "\\", DIR_SEP); | 
					
						
							|  |  |  | 	return dir; | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 	const char* base = getenv("TMPDIR") ?: "/tmp"; | 
					
						
							|  |  |  | 	std::string path = std::string(base) + "/DolphinWii.XXXXXX"; | 
					
						
							|  |  |  | 	if (!mkdtemp(&path[0])) | 
					
						
							|  |  |  | 		return ""; | 
					
						
							|  |  |  | 	return path; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 02:52:06 -04:00
										 |  |  | std::string GetTempFilenameForAtomicWrite(const std::string &path) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	std::string abs = path; | 
					
						
							|  |  |  | #ifdef _WIN32
 | 
					
						
							|  |  |  | 	TCHAR absbuf[MAX_PATH]; | 
					
						
							| 
									
										
										
										
											2014-03-09 21:14:26 +01:00
										 |  |  | 	if (_tfullpath(absbuf, UTF8ToTStr(path).c_str(), MAX_PATH) != nullptr) | 
					
						
							| 
									
										
										
										
											2013-10-15 02:52:06 -04:00
										 |  |  | 		abs = TStrToUTF8(absbuf); | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 	char absbuf[PATH_MAX]; | 
					
						
							| 
									
										
										
										
											2014-03-09 21:14:26 +01:00
										 |  |  | 	if (realpath(path.c_str(), absbuf) != nullptr) | 
					
						
							| 
									
										
										
										
											2013-10-15 02:52:06 -04:00
										 |  |  | 		abs = absbuf; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 	return abs + ".xxx"; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-28 23:21:51 +00:00
										 |  |  | #if defined(__APPLE__)
 | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | std::string GetBundleDirectory() | 
					
						
							| 
									
										
										
										
											2009-02-28 23:21:51 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	CFURLRef BundleRef; | 
					
						
							|  |  |  | 	char AppBundlePath[MAXPATHLEN]; | 
					
						
							|  |  |  | 	// Get the main bundle for the app
 | 
					
						
							|  |  |  | 	BundleRef = CFBundleCopyBundleURL(CFBundleGetMainBundle()); | 
					
						
							|  |  |  | 	CFStringRef BundlePath = CFURLCopyFileSystemPath(BundleRef, kCFURLPOSIXPathStyle); | 
					
						
							|  |  |  | 	CFStringGetFileSystemRepresentation(BundlePath, AppBundlePath, sizeof(AppBundlePath)); | 
					
						
							|  |  |  | 	CFRelease(BundleRef); | 
					
						
							|  |  |  | 	CFRelease(BundlePath); | 
					
						
							| 
									
										
										
										
											2011-01-15 10:33:07 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-28 23:21:51 +00:00
										 |  |  | 	return AppBundlePath; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-11 20:45:09 +00:00
										 |  |  | #ifdef _WIN32
 | 
					
						
							| 
									
										
										
										
											2013-02-27 19:43:29 -06:00
										 |  |  | std::string& GetExeDirectory() | 
					
						
							| 
									
										
										
										
											2011-06-11 20:45:09 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	static std::string DolphinPath; | 
					
						
							|  |  |  | 	if (DolphinPath.empty()) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2013-02-27 19:43:29 -06:00
										 |  |  | 		TCHAR Dolphin_exe_Path[2048]; | 
					
						
							| 
									
										
										
										
											2015-06-26 23:43:45 +02:00
										 |  |  | 		TCHAR Dolphin_exe_Clean_Path[MAX_PATH]; | 
					
						
							| 
									
										
										
										
											2014-03-09 21:14:26 +01:00
										 |  |  | 		GetModuleFileName(nullptr, Dolphin_exe_Path, 2048); | 
					
						
							| 
									
										
										
										
											2015-06-26 23:43:45 +02:00
										 |  |  | 		if (_tfullpath(Dolphin_exe_Clean_Path, Dolphin_exe_Path, MAX_PATH) != nullptr) | 
					
						
							|  |  |  | 			DolphinPath = TStrToUTF8(Dolphin_exe_Clean_Path); | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			DolphinPath = TStrToUTF8(Dolphin_exe_Path); | 
					
						
							| 
									
										
										
										
											2011-06-11 20:45:09 +00:00
										 |  |  | 		DolphinPath = DolphinPath.substr(0, DolphinPath.find_last_of('\\')); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return DolphinPath; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-28 23:21:51 +00:00
										 |  |  | std::string GetSysDirectory() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	std::string sysDir; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined (__APPLE__)
 | 
					
						
							| 
									
										
										
										
											2013-09-11 03:53:36 +02:00
										 |  |  | 	sysDir = GetBundleDirectory() + DIR_SEP + SYSDATA_DIR; | 
					
						
							|  |  |  | #elif defined (_WIN32)
 | 
					
						
							|  |  |  | 	sysDir = GetExeDirectory() + DIR_SEP + SYSDATA_DIR; | 
					
						
							| 
									
										
										
										
											2009-02-28 23:21:51 +00:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2010-06-05 18:52:56 +00:00
										 |  |  | 	sysDir = SYSDATA_DIR; | 
					
						
							| 
									
										
										
										
											2009-02-28 23:21:51 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2009-08-06 12:32:07 +00:00
										 |  |  | 	sysDir += DIR_SEP; | 
					
						
							| 
									
										
										
										
											2010-06-05 18:52:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-28 23:21:51 +00:00
										 |  |  | 	INFO_LOG(COMMON, "GetSysDirectory: Setting to %s:", sysDir.c_str()); | 
					
						
							|  |  |  | 	return sysDir; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-04-18 11:31:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-15 08:51:13 -05:00
										 |  |  | static std::string s_user_paths[NUM_PATH_INDICES]; | 
					
						
							|  |  |  | static void RebuildUserDirectories(unsigned int dir_index) | 
					
						
							| 
									
										
										
										
											2009-02-28 23:21:51 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-03-15 08:51:13 -05:00
										 |  |  | 	switch (dir_index) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 	case D_USER_IDX: | 
					
						
							|  |  |  | 		s_user_paths[D_GCUSER_IDX]         = s_user_paths[D_USER_IDX] + GC_USER_DIR DIR_SEP; | 
					
						
							|  |  |  | 		s_user_paths[D_WIIROOT_IDX]        = s_user_paths[D_USER_IDX] + WII_USER_DIR; | 
					
						
							|  |  |  | 		s_user_paths[D_CONFIG_IDX]         = s_user_paths[D_USER_IDX] + CONFIG_DIR DIR_SEP; | 
					
						
							|  |  |  | 		s_user_paths[D_GAMESETTINGS_IDX]   = s_user_paths[D_USER_IDX] + GAMESETTINGS_DIR DIR_SEP; | 
					
						
							|  |  |  | 		s_user_paths[D_MAPS_IDX]           = s_user_paths[D_USER_IDX] + MAPS_DIR DIR_SEP; | 
					
						
							|  |  |  | 		s_user_paths[D_CACHE_IDX]          = s_user_paths[D_USER_IDX] + CACHE_DIR DIR_SEP; | 
					
						
							|  |  |  | 		s_user_paths[D_SHADERCACHE_IDX]    = s_user_paths[D_USER_IDX] + SHADERCACHE_DIR DIR_SEP; | 
					
						
							|  |  |  | 		s_user_paths[D_SHADERS_IDX]        = s_user_paths[D_USER_IDX] + SHADERS_DIR DIR_SEP; | 
					
						
							|  |  |  | 		s_user_paths[D_STATESAVES_IDX]     = s_user_paths[D_USER_IDX] + STATESAVES_DIR DIR_SEP; | 
					
						
							|  |  |  | 		s_user_paths[D_SCREENSHOTS_IDX]    = s_user_paths[D_USER_IDX] + SCREENSHOTS_DIR DIR_SEP; | 
					
						
							|  |  |  | 		s_user_paths[D_LOAD_IDX]           = s_user_paths[D_USER_IDX] + LOAD_DIR DIR_SEP; | 
					
						
							|  |  |  | 		s_user_paths[D_HIRESTEXTURES_IDX]  = s_user_paths[D_LOAD_IDX] + HIRES_TEXTURES_DIR DIR_SEP; | 
					
						
							|  |  |  | 		s_user_paths[D_DUMP_IDX]           = s_user_paths[D_USER_IDX] + DUMP_DIR DIR_SEP; | 
					
						
							|  |  |  | 		s_user_paths[D_DUMPFRAMES_IDX]     = s_user_paths[D_DUMP_IDX] + DUMP_FRAMES_DIR DIR_SEP; | 
					
						
							|  |  |  | 		s_user_paths[D_DUMPAUDIO_IDX]      = s_user_paths[D_DUMP_IDX] + DUMP_AUDIO_DIR DIR_SEP; | 
					
						
							|  |  |  | 		s_user_paths[D_DUMPTEXTURES_IDX]   = s_user_paths[D_DUMP_IDX] + DUMP_TEXTURES_DIR DIR_SEP; | 
					
						
							|  |  |  | 		s_user_paths[D_DUMPDSP_IDX]        = s_user_paths[D_DUMP_IDX] + DUMP_DSP_DIR DIR_SEP; | 
					
						
							|  |  |  | 		s_user_paths[D_LOGS_IDX]           = s_user_paths[D_USER_IDX] + LOGS_DIR DIR_SEP; | 
					
						
							|  |  |  | 		s_user_paths[D_MAILLOGS_IDX]       = s_user_paths[D_LOGS_IDX] + MAIL_LOGS_DIR DIR_SEP; | 
					
						
							|  |  |  | 		s_user_paths[D_THEMES_IDX]         = s_user_paths[D_USER_IDX] + THEMES_DIR DIR_SEP; | 
					
						
							|  |  |  | 		s_user_paths[F_DOLPHINCONFIG_IDX]  = s_user_paths[D_CONFIG_IDX] + DOLPHIN_CONFIG; | 
					
						
							|  |  |  | 		s_user_paths[F_DEBUGGERCONFIG_IDX] = s_user_paths[D_CONFIG_IDX] + DEBUGGER_CONFIG; | 
					
						
							|  |  |  | 		s_user_paths[F_LOGGERCONFIG_IDX]   = s_user_paths[D_CONFIG_IDX] + LOGGER_CONFIG; | 
					
						
							|  |  |  | 		s_user_paths[F_MAINLOG_IDX]        = s_user_paths[D_LOGS_IDX] + MAIN_LOG; | 
					
						
							|  |  |  | 		s_user_paths[F_RAMDUMP_IDX]        = s_user_paths[D_DUMP_IDX] + RAM_DUMP; | 
					
						
							|  |  |  | 		s_user_paths[F_ARAMDUMP_IDX]       = s_user_paths[D_DUMP_IDX] + ARAM_DUMP; | 
					
						
							|  |  |  | 		s_user_paths[F_FAKEVMEMDUMP_IDX]   = s_user_paths[D_DUMP_IDX] + FAKEVMEM_DUMP; | 
					
						
							|  |  |  | 		s_user_paths[F_GCSRAM_IDX]         = s_user_paths[D_GCUSER_IDX] + GC_SRAM; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	case D_CONFIG_IDX: | 
					
						
							|  |  |  | 		s_user_paths[F_DOLPHINCONFIG_IDX]  = s_user_paths[D_CONFIG_IDX] + DOLPHIN_CONFIG; | 
					
						
							|  |  |  | 		s_user_paths[F_DEBUGGERCONFIG_IDX] = s_user_paths[D_CONFIG_IDX] + DEBUGGER_CONFIG; | 
					
						
							|  |  |  | 		s_user_paths[F_LOGGERCONFIG_IDX]   = s_user_paths[D_CONFIG_IDX] + LOGGER_CONFIG; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	case D_GCUSER_IDX: | 
					
						
							|  |  |  | 		s_user_paths[F_GCSRAM_IDX]         = s_user_paths[D_GCUSER_IDX] + GC_SRAM; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	case D_DUMP_IDX: | 
					
						
							|  |  |  | 		s_user_paths[D_DUMPFRAMES_IDX]     = s_user_paths[D_DUMP_IDX] + DUMP_FRAMES_DIR DIR_SEP; | 
					
						
							|  |  |  | 		s_user_paths[D_DUMPAUDIO_IDX]      = s_user_paths[D_DUMP_IDX] + DUMP_AUDIO_DIR DIR_SEP; | 
					
						
							|  |  |  | 		s_user_paths[D_DUMPTEXTURES_IDX]   = s_user_paths[D_DUMP_IDX] + DUMP_TEXTURES_DIR DIR_SEP; | 
					
						
							|  |  |  | 		s_user_paths[D_DUMPDSP_IDX]        = s_user_paths[D_DUMP_IDX] + DUMP_DSP_DIR DIR_SEP; | 
					
						
							|  |  |  | 		s_user_paths[F_RAMDUMP_IDX]        = s_user_paths[D_DUMP_IDX] + RAM_DUMP; | 
					
						
							|  |  |  | 		s_user_paths[F_ARAMDUMP_IDX]       = s_user_paths[D_DUMP_IDX] + ARAM_DUMP; | 
					
						
							|  |  |  | 		s_user_paths[F_FAKEVMEMDUMP_IDX]   = s_user_paths[D_DUMP_IDX] + FAKEVMEM_DUMP; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	case D_LOGS_IDX: | 
					
						
							|  |  |  | 		s_user_paths[D_MAILLOGS_IDX]       = s_user_paths[D_LOGS_IDX] + MAIL_LOGS_DIR DIR_SEP; | 
					
						
							|  |  |  | 		s_user_paths[F_MAINLOG_IDX]        = s_user_paths[D_LOGS_IDX] + MAIN_LOG; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	case D_LOAD_IDX: | 
					
						
							|  |  |  | 		s_user_paths[D_HIRESTEXTURES_IDX]  = s_user_paths[D_LOAD_IDX] + HIRES_TEXTURES_DIR DIR_SEP; | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2011-05-24 19:12:18 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-03-15 08:51:13 -05:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2013-08-25 01:35:32 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-15 08:51:13 -05:00
										 |  |  | // Gets a set user directory path
 | 
					
						
							|  |  |  | // Don't call prior to setting the base user directory
 | 
					
						
							|  |  |  | const std::string& GetUserPath(unsigned int dir_index) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return s_user_paths[dir_index]; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Sets a user directory path
 | 
					
						
							|  |  |  | // Rebuilds internal directory structure to compensate for the new directory
 | 
					
						
							|  |  |  | void SetUserPath(unsigned int dir_index, const std::string& path) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2015-03-17 21:27:40 -05:00
										 |  |  | 	if (path.empty()) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-15 08:51:13 -05:00
										 |  |  | 	s_user_paths[dir_index] = path; | 
					
						
							|  |  |  | 	RebuildUserDirectories(dir_index); | 
					
						
							| 
									
										
										
										
											2009-02-28 23:21:51 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-02 13:04:40 -05:00
										 |  |  | std::string GetThemeDir(const std::string& theme_name) | 
					
						
							| 
									
										
										
										
											2013-04-01 23:17:15 -05:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-04-02 13:04:40 -05:00
										 |  |  | 	std::string dir = File::GetUserPath(D_THEMES_IDX) + theme_name + "/"; | 
					
						
							| 
									
										
										
										
											2013-04-01 23:17:15 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// If theme does not exist in user's dir load from shared directory
 | 
					
						
							|  |  |  | 	if (!File::Exists(dir)) | 
					
						
							| 
									
										
										
										
											2013-09-12 03:55:16 +02:00
										 |  |  | 		dir = GetSysDirectory() + THEMES_DIR "/" + theme_name + "/"; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-01 23:17:15 -05:00
										 |  |  | 	return dir; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-12 15:33:41 -04:00
										 |  |  | bool WriteStringToFile(const std::string &str, const std::string& filename) | 
					
						
							| 
									
										
										
										
											2009-04-12 10:21:40 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-11-05 00:33:41 +13:00
										 |  |  | 	return File::IOFile(filename, "wb").WriteBytes(str.data(), str.size()); | 
					
						
							| 
									
										
										
										
											2009-04-12 10:21:40 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-12 15:33:41 -04:00
										 |  |  | bool ReadFileToString(const std::string& filename, std::string &str) | 
					
						
							| 
									
										
										
										
											2009-04-12 10:21:40 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-11-05 00:33:41 +13:00
										 |  |  | 	File::IOFile file(filename, "rb"); | 
					
						
							| 
									
										
										
										
											2013-02-27 19:43:29 -06:00
										 |  |  | 	auto const f = file.GetHandle(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-12 10:21:40 +00:00
										 |  |  | 	if (!f) | 
					
						
							|  |  |  | 		return false; | 
					
						
							| 
									
										
										
										
											2013-02-27 19:43:29 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-16 06:56:49 +02:00
										 |  |  | 	size_t read_size; | 
					
						
							| 
									
										
										
										
											2013-02-27 19:43:29 -06:00
										 |  |  | 	str.resize(GetSize(f)); | 
					
						
							| 
									
										
										
										
											2013-09-16 06:56:49 +02:00
										 |  |  | 	bool retval = file.ReadArray(&str[0], str.size(), &read_size); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return retval; | 
					
						
							| 
									
										
										
										
											2009-04-12 10:21:40 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-11 10:21:46 +00:00
										 |  |  | IOFile::IOFile() | 
					
						
							| 
									
										
										
										
											2014-03-09 21:14:26 +01:00
										 |  |  | 	: m_file(nullptr), m_good(true) | 
					
						
							| 
									
										
										
										
											2011-03-11 10:21:46 +00:00
										 |  |  | {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | IOFile::IOFile(std::FILE* file) | 
					
						
							|  |  |  | 	: m_file(file), m_good(true) | 
					
						
							|  |  |  | {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | IOFile::IOFile(const std::string& filename, const char openmode[]) | 
					
						
							| 
									
										
										
										
											2014-03-09 21:14:26 +01:00
										 |  |  | 	: m_file(nullptr), m_good(true) | 
					
						
							| 
									
										
										
										
											2011-03-11 10:21:46 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	Open(filename, openmode); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | IOFile::~IOFile() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	Close(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-17 13:30:04 -06:00
										 |  |  | IOFile::IOFile(IOFile&& other) | 
					
						
							| 
									
										
										
										
											2014-03-09 21:14:26 +01:00
										 |  |  | 	: m_file(nullptr), m_good(true) | 
					
						
							| 
									
										
										
										
											2013-02-17 13:30:04 -06:00
										 |  |  | { | 
					
						
							|  |  |  | 	Swap(other); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-20 17:30:34 -06:00
										 |  |  | IOFile& IOFile::operator=(IOFile&& other) | 
					
						
							| 
									
										
										
										
											2013-02-17 13:30:04 -06:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-08-31 23:44:26 -04:00
										 |  |  | 	Swap(other); | 
					
						
							| 
									
										
										
										
											2013-02-17 13:30:04 -06:00
										 |  |  | 	return *this; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void IOFile::Swap(IOFile& other) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	std::swap(m_file, other.m_file); | 
					
						
							|  |  |  | 	std::swap(m_good, other.m_good); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-11 10:21:46 +00:00
										 |  |  | bool IOFile::Open(const std::string& filename, const char openmode[]) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	Close(); | 
					
						
							|  |  |  | #ifdef _WIN32
 | 
					
						
							| 
									
										
										
										
											2013-02-27 19:43:29 -06:00
										 |  |  | 	_tfopen_s(&m_file, UTF8ToTStr(filename).c_str(), UTF8ToTStr(openmode).c_str()); | 
					
						
							| 
									
										
										
										
											2011-03-11 10:21:46 +00:00
										 |  |  | #else
 | 
					
						
							|  |  |  | 	m_file = fopen(filename.c_str(), openmode); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	m_good = IsOpen(); | 
					
						
							|  |  |  | 	return m_good; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool IOFile::Close() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (!IsOpen() || 0 != std::fclose(m_file)) | 
					
						
							|  |  |  | 		m_good = false; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-09 21:14:26 +01:00
										 |  |  | 	m_file = nullptr; | 
					
						
							| 
									
										
										
										
											2011-03-11 10:21:46 +00:00
										 |  |  | 	return m_good; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | std::FILE* IOFile::ReleaseHandle() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	std::FILE* const ret = m_file; | 
					
						
							| 
									
										
										
										
											2014-03-09 21:14:26 +01:00
										 |  |  | 	m_file = nullptr; | 
					
						
							| 
									
										
										
										
											2011-03-11 10:21:46 +00:00
										 |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void IOFile::SetHandle(std::FILE* file) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	Close(); | 
					
						
							|  |  |  | 	Clear(); | 
					
						
							|  |  |  | 	m_file = file; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | u64 IOFile::GetSize() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (IsOpen()) | 
					
						
							|  |  |  | 		return File::GetSize(m_file); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool IOFile::Seek(s64 off, int origin) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (!IsOpen() || 0 != fseeko(m_file, off, origin)) | 
					
						
							|  |  |  | 		m_good = false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return m_good; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-15 00:38:21 -04:00
										 |  |  | u64 IOFile::Tell() const | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-03-11 10:21:46 +00:00
										 |  |  | 	if (IsOpen()) | 
					
						
							|  |  |  | 		return ftello(m_file); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool IOFile::Flush() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (!IsOpen() || 0 != std::fflush(m_file)) | 
					
						
							|  |  |  | 		m_good = false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return m_good; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool IOFile::Resize(u64 size) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (!IsOpen() || 0 != | 
					
						
							|  |  |  | #ifdef _WIN32
 | 
					
						
							|  |  |  | 		// ector: _chsize sucks, not 64-bit safe
 | 
					
						
							|  |  |  | 		// F|RES: changed to _chsize_s. i think it is 64-bit safe
 | 
					
						
							|  |  |  | 		_chsize_s(_fileno(m_file), size) | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 		// TODO: handle 64bit and growing
 | 
					
						
							|  |  |  | 		ftruncate(fileno(m_file), size) | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 	) | 
					
						
							|  |  |  | 		m_good = false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return m_good; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | } // namespace
 |