| 
									
										
										
										
											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>
 | 
					
						
							| 
									
										
										
										
											2014-02-17 05:18:15 -05:00
										 |  |  | #include <sys/stat.h>
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  | #include <vector>
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-28 10:57:16 -05:00
										 |  |  | #include "Common/Common.h"
 | 
					
						
							| 
									
										
										
										
											2015-09-26 17:13:07 -04:00
										 |  |  | #include "Common/CommonFuncs.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-17 05:18:15 -05:00
										 |  |  | #include "Common/CommonPaths.h"
 | 
					
						
							| 
									
										
										
										
											2014-09-07 20:06:58 -05:00
										 |  |  | #include "Common/CommonTypes.h"
 | 
					
						
							| 
									
										
										
										
											2017-01-15 21:46:32 +01:00
										 |  |  | #include "Common/File.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-17 05:18:15 -05:00
										 |  |  | #include "Common/FileUtil.h"
 | 
					
						
							| 
									
										
										
										
											2015-09-26 17:13:07 -04:00
										 |  |  | #include "Common/Logging/Log.h"
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifdef _WIN32
 | 
					
						
							| 
									
										
										
										
											2017-01-22 23:08:45 -08:00
										 |  |  | #include <windows.h>
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  | #include <commdlg.h>  // for GetSaveFileName
 | 
					
						
							|  |  |  | #include <direct.h>   // getcwd
 | 
					
						
							| 
									
										
										
										
											2014-02-19 01:54:11 +01:00
										 |  |  | #include <io.h>
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  | #include <objbase.h>  // guid stuff
 | 
					
						
							| 
									
										
										
										
											2014-02-19 01:54:11 +01:00
										 |  |  | #include <shellapi.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>
 | 
					
						
							| 
									
										
										
										
											2016-11-24 20:57:27 +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
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  | #define S_ISDIR(m) (((m)&S_IFMT) == S_IFDIR)
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +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 | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2017-06-29 11:20:38 +02:00
										 |  |  | #ifdef _WIN32
 | 
					
						
							|  |  |  | FileInfo::FileInfo(const std::string& path) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-06-29 11:20:38 +02:00
										 |  |  |   m_exists = _tstat64(UTF8ToTStr(path).c_str(), &m_stat) == 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2011-02-28 20:40:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-29 11:20:38 +02:00
										 |  |  | FileInfo::FileInfo(const char* path) : FileInfo(std::string(path)) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2013-02-27 20:55:19 -06:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2017-06-29 11:20:38 +02:00
										 |  |  | FileInfo::FileInfo(const std::string& path) : FileInfo(path.c_str()) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | FileInfo::FileInfo(const char* path) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |   m_exists = stat(path, &m_stat) == 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2013-02-27 20:55:19 -06:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-29 11:20:38 +02:00
										 |  |  | FileInfo::FileInfo(int fd) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |   m_exists = fstat(fd, &m_stat); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-29 11:20:38 +02:00
										 |  |  | bool FileInfo::Exists() const | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-06-29 11:20:38 +02:00
										 |  |  |   return m_exists; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-29 11:20:38 +02:00
										 |  |  | bool FileInfo::IsDirectory() const | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |   return m_exists ? S_ISDIR(m_stat.st_mode) : false; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-29 11:20:38 +02:00
										 |  |  | bool FileInfo::IsFile() const | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |   return m_exists ? !S_ISDIR(m_stat.st_mode) : false; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | u64 FileInfo::GetSize() const | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |   return IsFile() ? m_stat.st_size : 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-29 11:20:38 +02:00
										 |  |  | // Returns true if the path exists
 | 
					
						
							|  |  |  | bool Exists(const std::string& path) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |   return FileInfo(path).Exists(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Returns true if the path exists and is a directory
 | 
					
						
							|  |  |  | bool IsDirectory(const std::string& path) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |   return FileInfo(path).IsDirectory(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Returns true if the path exists and is a file
 | 
					
						
							|  |  |  | bool IsFile(const std::string& path) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |   return FileInfo(path).IsFile(); | 
					
						
							| 
									
										
										
										
											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
 | 
					
						
							| 
									
										
										
										
											2016-01-21 21:27:56 +01:00
										 |  |  | bool Delete(const std::string& filename) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   INFO_LOG(COMMON, "Delete: file %s", filename.c_str()); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-29 11:20:38 +02:00
										 |  |  |   const FileInfo file_info(filename); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   // Return true because we care about the file no
 | 
					
						
							|  |  |  |   // being there, not the actual delete.
 | 
					
						
							| 
									
										
										
										
											2017-06-29 11:20:38 +02:00
										 |  |  |   if (!file_info.Exists()) | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   { | 
					
						
							|  |  |  |     WARN_LOG(COMMON, "Delete: %s does not exist", filename.c_str()); | 
					
						
							|  |  |  |     return true; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   // We can't delete a directory
 | 
					
						
							| 
									
										
										
										
											2017-06-29 11:20:38 +02:00
										 |  |  |   if (file_info.IsDirectory()) | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   { | 
					
						
							|  |  |  |     WARN_LOG(COMMON, "Delete failed: %s is a directory", filename.c_str()); | 
					
						
							|  |  |  |     return false; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifdef _WIN32
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   if (!DeleteFile(UTF8ToTStr(filename).c_str())) | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     WARN_LOG(COMMON, "Delete: DeleteFile failed on %s: %s", filename.c_str(), | 
					
						
							| 
									
										
										
										
											2017-08-17 20:12:44 +01:00
										 |  |  |              GetLastErrorString().c_str()); | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |     return false; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   if (unlink(filename.c_str()) == -1) | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     WARN_LOG(COMMON, "Delete: unlink failed on %s: %s", filename.c_str(), | 
					
						
							| 
									
										
										
										
											2017-08-17 20:12:44 +01:00
										 |  |  |              LastStrerrorString().c_str()); | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |     return false; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   return true; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Returns true if successful, or path already exists.
 | 
					
						
							| 
									
										
										
										
											2016-01-21 21:27:56 +01:00
										 |  |  | bool CreateDir(const std::string& path) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   INFO_LOG(COMMON, "CreateDir: directory %s", path.c_str()); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | #ifdef _WIN32
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   if (::CreateDirectory(UTF8ToTStr(path).c_str(), nullptr)) | 
					
						
							|  |  |  |     return true; | 
					
						
							|  |  |  |   DWORD error = GetLastError(); | 
					
						
							|  |  |  |   if (error == ERROR_ALREADY_EXISTS) | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     WARN_LOG(COMMON, "CreateDir: CreateDirectory failed on %s: already exists", path.c_str()); | 
					
						
							|  |  |  |     return true; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   ERROR_LOG(COMMON, "CreateDir: CreateDirectory failed on %s: %i", path.c_str(), error); | 
					
						
							|  |  |  |   return false; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   if (mkdir(path.c_str(), 0755) == 0) | 
					
						
							|  |  |  |     return true; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   int err = errno; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   if (err == EEXIST) | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     WARN_LOG(COMMON, "CreateDir: mkdir failed on %s: already exists", path.c_str()); | 
					
						
							|  |  |  |     return true; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   ERROR_LOG(COMMON, "CreateDir: mkdir failed on %s: %s", path.c_str(), strerror(err)); | 
					
						
							|  |  |  |   return false; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | // Creates the full path of fullPath returns true on success
 | 
					
						
							| 
									
										
										
										
											2016-01-21 21:27:56 +01:00
										 |  |  | bool CreateFullPath(const std::string& fullPath) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   int panicCounter = 100; | 
					
						
							|  |  |  |   INFO_LOG(COMMON, "CreateFullPath: path %s", fullPath.c_str()); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-29 11:20:38 +02:00
										 |  |  |   if (Exists(fullPath)) | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   { | 
					
						
							|  |  |  |     INFO_LOG(COMMON, "CreateFullPath: path exists %s", fullPath.c_str()); | 
					
						
							|  |  |  |     return true; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   size_t position = 0; | 
					
						
							|  |  |  |   while (true) | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     // Find next sub path
 | 
					
						
							|  |  |  |     position = fullPath.find(DIR_SEP_CHR, position); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // we're done, yay!
 | 
					
						
							|  |  |  |     if (position == fullPath.npos) | 
					
						
							|  |  |  |       return true; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // Include the '/' so the first call is CreateDir("/") rather than CreateDir("")
 | 
					
						
							|  |  |  |     std::string const subPath(fullPath.substr(0, position + 1)); | 
					
						
							| 
									
										
										
										
											2017-06-29 11:20:38 +02:00
										 |  |  |     if (!IsDirectory(subPath)) | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |       File::CreateDir(subPath); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // A safety check
 | 
					
						
							|  |  |  |     panicCounter--; | 
					
						
							|  |  |  |     if (panicCounter <= 0) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |       ERROR_LOG(COMMON, "CreateFullPath: directory structure is too deep"); | 
					
						
							|  |  |  |       return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     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
 | 
					
						
							| 
									
										
										
										
											2016-01-21 21:27:56 +01:00
										 |  |  | bool DeleteDir(const std::string& filename) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   INFO_LOG(COMMON, "DeleteDir: directory %s", filename.c_str()); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   // check if a directory
 | 
					
						
							| 
									
										
										
										
											2017-06-29 11:20:38 +02:00
										 |  |  |   if (!IsDirectory(filename)) | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   { | 
					
						
							|  |  |  |     ERROR_LOG(COMMON, "DeleteDir: Not a directory %s", filename.c_str()); | 
					
						
							|  |  |  |     return false; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | #ifdef _WIN32
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   if (::RemoveDirectory(UTF8ToTStr(filename).c_str())) | 
					
						
							|  |  |  |     return true; | 
					
						
							| 
									
										
										
										
											2017-08-17 20:12:44 +01:00
										 |  |  |   ERROR_LOG(COMMON, "DeleteDir: RemoveDirectory failed on %s: %s", filename.c_str(), | 
					
						
							|  |  |  |             GetLastErrorString().c_str()); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   if (rmdir(filename.c_str()) == 0) | 
					
						
							|  |  |  |     return true; | 
					
						
							| 
									
										
										
										
											2017-08-17 20:12:44 +01:00
										 |  |  |   ERROR_LOG(COMMON, "DeleteDir: rmdir failed on %s: %s", filename.c_str(), | 
					
						
							|  |  |  |             LastStrerrorString().c_str()); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02: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
 | 
					
						
							| 
									
										
										
										
											2016-01-21 21:27:56 +01:00
										 |  |  | bool Rename(const std::string& srcFilename, const std::string& destFilename) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   INFO_LOG(COMMON, "Rename: %s --> %s", srcFilename.c_str(), destFilename.c_str()); | 
					
						
							| 
									
										
										
										
											2013-10-09 15:33:21 -04:00
										 |  |  | #ifdef _WIN32
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   auto sf = UTF8ToTStr(srcFilename); | 
					
						
							|  |  |  |   auto df = UTF8ToTStr(destFilename); | 
					
						
							|  |  |  |   // The Internet seems torn about whether ReplaceFile is atomic or not.
 | 
					
						
							|  |  |  |   // Hopefully it's atomic enough...
 | 
					
						
							|  |  |  |   if (ReplaceFile(df.c_str(), sf.c_str(), nullptr, REPLACEFILE_IGNORE_MERGE_ERRORS, nullptr, | 
					
						
							|  |  |  |                   nullptr)) | 
					
						
							|  |  |  |     return true; | 
					
						
							|  |  |  |   // Might have failed because the destination doesn't exist.
 | 
					
						
							|  |  |  |   if (GetLastError() == ERROR_FILE_NOT_FOUND) | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     if (MoveFile(sf.c_str(), df.c_str())) | 
					
						
							|  |  |  |       return true; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2017-08-17 20:12:44 +01:00
										 |  |  |   ERROR_LOG(COMMON, "Rename: MoveFile failed on %s --> %s: %s", srcFilename.c_str(), | 
					
						
							|  |  |  |             destFilename.c_str(), GetLastErrorString().c_str()); | 
					
						
							| 
									
										
										
										
											2013-10-09 15:33:21 -04:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   if (rename(srcFilename.c_str(), destFilename.c_str()) == 0) | 
					
						
							|  |  |  |     return true; | 
					
						
							| 
									
										
										
										
											2017-08-17 20:12:44 +01:00
										 |  |  |   ERROR_LOG(COMMON, "Rename: rename failed on %s --> %s: %s", srcFilename.c_str(), | 
					
						
							|  |  |  |             destFilename.c_str(), LastStrerrorString().c_str()); | 
					
						
							| 
									
										
										
										
											2013-10-15 02:52:06 -04:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   return false; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 02:52:06 -04:00
										 |  |  | #ifndef _WIN32
 | 
					
						
							| 
									
										
										
										
											2016-01-21 20:46:25 +01:00
										 |  |  | static void FSyncPath(const char* path) | 
					
						
							| 
									
										
										
										
											2013-10-15 02:52:06 -04:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   int fd = open(path, O_RDONLY); | 
					
						
							|  |  |  |   if (fd != -1) | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     fsync(fd); | 
					
						
							|  |  |  |     close(fd); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2013-10-15 02:52:06 -04:00
										 |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-21 21:27:56 +01:00
										 |  |  | bool RenameSync(const std::string& srcFilename, const std::string& destFilename) | 
					
						
							| 
									
										
										
										
											2013-10-15 02:52:06 -04:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   if (!Rename(srcFilename, destFilename)) | 
					
						
							|  |  |  |     return false; | 
					
						
							| 
									
										
										
										
											2013-10-15 02:52:06 -04:00
										 |  |  | #ifdef _WIN32
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   int fd = _topen(UTF8ToTStr(srcFilename).c_str(), _O_RDONLY); | 
					
						
							|  |  |  |   if (fd != -1) | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     _commit(fd); | 
					
						
							|  |  |  |     close(fd); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2013-10-15 02:52:06 -04:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   char* path = strdup(srcFilename.c_str()); | 
					
						
							|  |  |  |   FSyncPath(path); | 
					
						
							|  |  |  |   FSyncPath(dirname(path)); | 
					
						
							|  |  |  |   free(path); | 
					
						
							|  |  |  |   path = strdup(destFilename.c_str()); | 
					
						
							|  |  |  |   FSyncPath(dirname(path)); | 
					
						
							|  |  |  |   free(path); | 
					
						
							| 
									
										
										
										
											2013-10-15 02:52:06 -04:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   return true; | 
					
						
							| 
									
										
										
										
											2013-10-15 02:52:06 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | // copies file srcFilename to destFilename, returns true on success
 | 
					
						
							| 
									
										
										
										
											2016-01-21 21:27:56 +01:00
										 |  |  | bool Copy(const std::string& srcFilename, const std::string& destFilename) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   INFO_LOG(COMMON, "Copy: %s --> %s", srcFilename.c_str(), destFilename.c_str()); | 
					
						
							| 
									
										
										
										
											2009-01-15 06:48:15 +00:00
										 |  |  | #ifdef _WIN32
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   if (CopyFile(UTF8ToTStr(srcFilename).c_str(), UTF8ToTStr(destFilename).c_str(), FALSE)) | 
					
						
							|  |  |  |     return true; | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   ERROR_LOG(COMMON, "Copy: failed %s --> %s: %s", srcFilename.c_str(), destFilename.c_str(), | 
					
						
							| 
									
										
										
										
											2017-08-17 20:12:44 +01:00
										 |  |  |             GetLastErrorString().c_str()); | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   return false; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | #else
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  | // buffer size
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | #define BSIZE 1024
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   char buffer[BSIZE]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   // Open input file
 | 
					
						
							|  |  |  |   std::ifstream input; | 
					
						
							|  |  |  |   OpenFStream(input, srcFilename, std::ifstream::in | std::ifstream::binary); | 
					
						
							|  |  |  |   if (!input.is_open()) | 
					
						
							|  |  |  |   { | 
					
						
							| 
									
										
										
										
											2017-08-17 20:12:44 +01:00
										 |  |  |     ERROR_LOG(COMMON, "Copy: failed to open %s", srcFilename.c_str()); | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |     return false; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   // open output file
 | 
					
						
							|  |  |  |   File::IOFile output(destFilename, "wb"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   if (!output.IsOpen()) | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     ERROR_LOG(COMMON, "Copy: output failed %s --> %s: %s", srcFilename.c_str(), | 
					
						
							| 
									
										
										
										
											2017-08-17 20:12:44 +01:00
										 |  |  |               destFilename.c_str(), LastStrerrorString().c_str()); | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |     return false; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   // copy loop
 | 
					
						
							|  |  |  |   while (!input.eof()) | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     // read input
 | 
					
						
							| 
									
										
										
										
											2017-08-21 18:29:58 +02:00
										 |  |  |     input.read(buffer, BSIZE); | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |     if (!input) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2017-08-17 20:12:44 +01:00
										 |  |  |       ERROR_LOG(COMMON, "Copy: failed reading from source, %s --> %s", srcFilename.c_str(), | 
					
						
							|  |  |  |                 destFilename.c_str()); | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |       return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // write output
 | 
					
						
							| 
									
										
										
										
											2017-08-21 18:29:58 +02:00
										 |  |  |     if (!output.WriteBytes(buffer, BSIZE)) | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |     { | 
					
						
							|  |  |  |       ERROR_LOG(COMMON, "Copy: failed writing to output, %s --> %s: %s", srcFilename.c_str(), | 
					
						
							| 
									
										
										
										
											2017-08-17 20:12:44 +01:00
										 |  |  |                 destFilename.c_str(), LastStrerrorString().c_str()); | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |       return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   return true; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-29 11:20:38 +02:00
										 |  |  | // Returns the size of a file (or returns 0 if the path isn't a file that exists)
 | 
					
						
							|  |  |  | u64 GetSize(const std::string& path) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-06-29 11:20:38 +02:00
										 |  |  |   return FileInfo(path).GetSize(); | 
					
						
							| 
									
										
										
										
											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) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2017-06-29 11:20:38 +02:00
										 |  |  |   return FileInfo(fd).GetSize(); | 
					
						
							| 
									
										
										
										
											2010-12-03 12:42:01 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Overloaded GetSize, accepts FILE*
 | 
					
						
							| 
									
										
										
										
											2016-01-21 21:16:51 +01:00
										 |  |  | u64 GetSize(FILE* f) | 
					
						
							| 
									
										
										
										
											2010-12-03 12:42:01 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   // can't use off_t here because it can be 32-bit
 | 
					
						
							|  |  |  |   u64 pos = ftello(f); | 
					
						
							|  |  |  |   if (fseeko(f, 0, SEEK_END) != 0) | 
					
						
							|  |  |  |   { | 
					
						
							| 
									
										
										
										
											2017-08-17 20:12:44 +01:00
										 |  |  |     ERROR_LOG(COMMON, "GetSize: seek failed %p: %s", f, LastStrerrorString().c_str()); | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |     return 0; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   u64 size = ftello(f); | 
					
						
							|  |  |  |   if ((size != pos) && (fseeko(f, pos, SEEK_SET) != 0)) | 
					
						
							|  |  |  |   { | 
					
						
							| 
									
										
										
										
											2017-08-17 20:12:44 +01:00
										 |  |  |     ERROR_LOG(COMMON, "GetSize: seek failed %p: %s", f, LastStrerrorString().c_str()); | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |     return 0; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   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
 | 
					
						
							| 
									
										
										
										
											2016-01-21 21:27:56 +01:00
										 |  |  | bool CreateEmptyFile(const std::string& filename) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   INFO_LOG(COMMON, "CreateEmptyFile: %s", filename.c_str()); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   if (!File::IOFile(filename, "wb")) | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     ERROR_LOG(COMMON, "CreateEmptyFile: failed %s: %s", filename.c_str(), | 
					
						
							| 
									
										
										
										
											2017-08-17 20:12:44 +01:00
										 |  |  |               LastStrerrorString().c_str()); | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |     return false; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2013-02-27 19:43:29 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   return true; | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-25 21:57:33 +01:00
										 |  |  | // Recursive or non-recursive list of files and directories under directory.
 | 
					
						
							| 
									
										
										
										
											2016-01-21 21:27:56 +01:00
										 |  |  | FSTEntry ScanDirectoryTree(const std::string& directory, bool recursive) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   INFO_LOG(COMMON, "ScanDirectoryTree: directory %s", directory.c_str()); | 
					
						
							|  |  |  |   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
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   // Find the first file in the directory.
 | 
					
						
							|  |  |  |   WIN32_FIND_DATA ffd; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   HANDLE hFind = FindFirstFile(UTF8ToTStr(directory + "\\*").c_str(), &ffd); | 
					
						
							|  |  |  |   if (hFind == INVALID_HANDLE_VALUE) | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     FindClose(hFind); | 
					
						
							|  |  |  |     return parent_entry; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   // Windows loop
 | 
					
						
							|  |  |  |   do | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     const std::string virtual_name(TStrToUTF8(ffd.cFileName)); | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   DIR* dirp = opendir(directory.c_str()); | 
					
						
							|  |  |  |   if (!dirp) | 
					
						
							|  |  |  |     return parent_entry; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   // non Windows loop
 | 
					
						
							| 
									
										
										
										
											2016-12-24 16:03:17 +01:00
										 |  |  |   while (dirent* result = readdir(dirp)) | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02: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; | 
					
						
							| 
									
										
										
										
											2017-06-29 11:20:38 +02:00
										 |  |  |     const FileInfo file_info(physical_name); | 
					
						
							|  |  |  |     entry.isDirectory = file_info.IsDirectory(); | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |     if (entry.isDirectory) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |       if (recursive) | 
					
						
							|  |  |  |         entry = ScanDirectoryTree(physical_name, true); | 
					
						
							|  |  |  |       else | 
					
						
							|  |  |  |         entry.size = 0; | 
					
						
							|  |  |  |       parent_entry.size += entry.size; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2017-06-29 11:20:38 +02:00
										 |  |  |       entry.size = file_info.GetSize(); | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |     } | 
					
						
							|  |  |  |     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); | 
					
						
							|  |  |  |   FindClose(hFind); | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   } | 
					
						
							|  |  |  |   closedir(dirp); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2016-12-25 21:57:33 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   return parent_entry; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-01 03:06:14 +00:00
										 |  |  | // Deletes the given directory and anything under it. Returns true on success.
 | 
					
						
							| 
									
										
										
										
											2016-01-21 21:27:56 +01:00
										 |  |  | bool DeleteDirRecursively(const std::string& directory) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   INFO_LOG(COMMON, "DeleteDirRecursively: %s", directory.c_str()); | 
					
						
							|  |  |  |   bool success = true; | 
					
						
							| 
									
										
										
										
											2016-04-25 18:03:39 +12:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | #ifdef _WIN32
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   // Find the first file in the directory.
 | 
					
						
							|  |  |  |   WIN32_FIND_DATA ffd; | 
					
						
							|  |  |  |   HANDLE hFind = FindFirstFile(UTF8ToTStr(directory + "\\*").c_str(), &ffd); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   if (hFind == INVALID_HANDLE_VALUE) | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     FindClose(hFind); | 
					
						
							|  |  |  |     return false; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   // Windows loop
 | 
					
						
							|  |  |  |   do | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     const std::string virtualName(TStrToUTF8(ffd.cFileName)); | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   DIR* dirp = opendir(directory.c_str()); | 
					
						
							|  |  |  |   if (!dirp) | 
					
						
							|  |  |  |     return false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   // non Windows loop
 | 
					
						
							| 
									
										
										
										
											2016-12-24 16:03:17 +01:00
										 |  |  |   while (dirent* result = readdir(dirp)) | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   { | 
					
						
							|  |  |  |     const std::string virtualName = result->d_name; | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |     // check for "." and ".."
 | 
					
						
							|  |  |  |     if (((virtualName[0] == '.') && (virtualName[1] == '\0')) || | 
					
						
							|  |  |  |         ((virtualName[0] == '.') && (virtualName[1] == '.') && (virtualName[2] == '\0'))) | 
					
						
							|  |  |  |       continue; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     std::string newPath = directory + DIR_SEP_CHR + virtualName; | 
					
						
							|  |  |  |     if (IsDirectory(newPath)) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |       if (!DeleteDirRecursively(newPath)) | 
					
						
							|  |  |  |       { | 
					
						
							|  |  |  |         success = false; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |       if (!File::Delete(newPath)) | 
					
						
							|  |  |  |       { | 
					
						
							|  |  |  |         success = false; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | #ifdef _WIN32
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   } while (FindNextFile(hFind, &ffd) != 0); | 
					
						
							|  |  |  |   FindClose(hFind); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   } | 
					
						
							|  |  |  |   closedir(dirp); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   if (success) | 
					
						
							|  |  |  |     File::DeleteDir(directory); | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   return success; | 
					
						
							| 
									
										
										
										
											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)
 | 
					
						
							| 
									
										
										
										
											2016-01-21 21:27:56 +01:00
										 |  |  | void CopyDir(const std::string& source_path, const std::string& dest_path) | 
					
						
							| 
									
										
										
										
											2010-02-02 21:56:29 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   if (source_path == dest_path) | 
					
						
							|  |  |  |     return; | 
					
						
							| 
									
										
										
										
											2017-06-29 11:20:38 +02:00
										 |  |  |   if (!Exists(source_path)) | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |     return; | 
					
						
							| 
									
										
										
										
											2017-06-29 11:20:38 +02:00
										 |  |  |   if (!Exists(dest_path)) | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |     File::CreateFullPath(dest_path); | 
					
						
							| 
									
										
										
										
											2010-04-06 15:02:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-11 03:53:36 +02:00
										 |  |  | #ifdef _WIN32
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   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)); | 
					
						
							| 
									
										
										
										
											2013-09-11 03:53:36 +02:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   DIR* dirp = opendir(source_path.c_str()); | 
					
						
							|  |  |  |   if (!dirp) | 
					
						
							|  |  |  |     return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-24 16:03:17 +01:00
										 |  |  |   while (dirent* result = readdir(dirp)) | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   { | 
					
						
							|  |  |  |     const std::string virtualName(result->d_name); | 
					
						
							| 
									
										
										
										
											2013-09-11 03:53:36 +02:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |     // check for "." and ".."
 | 
					
						
							|  |  |  |     if (virtualName == "." || virtualName == "..") | 
					
						
							|  |  |  |       continue; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     std::string source = source_path + DIR_SEP + virtualName; | 
					
						
							|  |  |  |     std::string dest = dest_path + DIR_SEP + virtualName; | 
					
						
							|  |  |  |     if (IsDirectory(source)) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2017-06-29 11:20:38 +02:00
										 |  |  |       if (!Exists(dest)) | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |         File::CreateFullPath(dest + DIR_SEP); | 
					
						
							|  |  |  |       CopyDir(source, dest); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-06-29 11:20:38 +02:00
										 |  |  |     else if (!Exists(dest)) | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |       File::Copy(source, dest); | 
					
						
							| 
									
										
										
										
											2013-09-11 03:53:36 +02:00
										 |  |  | #ifdef _WIN32
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   } while (FindNextFile(hFind, &ffd) != 0); | 
					
						
							|  |  |  |   FindClose(hFind); | 
					
						
							| 
									
										
										
										
											2013-09-11 03:53:36 +02:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02: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
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   // Get the current working directory (getcwd uses malloc)
 | 
					
						
							| 
									
										
										
										
											2017-06-07 04:42:41 -07:00
										 |  |  |   char* dir = __getcwd(nullptr, 0); | 
					
						
							|  |  |  |   if (!dir) | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   { | 
					
						
							| 
									
										
										
										
											2017-08-17 20:12:44 +01:00
										 |  |  |     ERROR_LOG(COMMON, "GetCurrentDirectory failed: %s", LastStrerrorString().c_str()); | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |     return nullptr; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   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
 | 
					
						
							| 
									
										
										
										
											2016-01-21 21:27:56 +01:00
										 |  |  | bool SetCurrentDir(const std::string& directory) | 
					
						
							| 
									
										
										
										
											2009-02-24 07:18:08 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02: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
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   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; | 
					
						
							| 
									
										
										
										
											2014-11-17 20:59:14 -05:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   const char* base = getenv("TMPDIR") ?: "/tmp"; | 
					
						
							|  |  |  |   std::string path = std::string(base) + "/DolphinWii.XXXXXX"; | 
					
						
							|  |  |  |   if (!mkdtemp(&path[0])) | 
					
						
							|  |  |  |     return ""; | 
					
						
							|  |  |  |   return path; | 
					
						
							| 
									
										
										
										
											2014-11-17 20:59:14 -05:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-21 21:27:56 +01:00
										 |  |  | std::string GetTempFilenameForAtomicWrite(const std::string& path) | 
					
						
							| 
									
										
										
										
											2013-10-15 02:52:06 -04:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   std::string abs = path; | 
					
						
							| 
									
										
										
										
											2013-10-15 02:52:06 -04:00
										 |  |  | #ifdef _WIN32
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   TCHAR absbuf[MAX_PATH]; | 
					
						
							|  |  |  |   if (_tfullpath(absbuf, UTF8ToTStr(path).c_str(), MAX_PATH) != nullptr) | 
					
						
							|  |  |  |     abs = TStrToUTF8(absbuf); | 
					
						
							| 
									
										
										
										
											2013-10-15 02:52:06 -04:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   char absbuf[PATH_MAX]; | 
					
						
							|  |  |  |   if (realpath(path.c_str(), absbuf) != nullptr) | 
					
						
							|  |  |  |     abs = absbuf; | 
					
						
							| 
									
										
										
										
											2013-10-15 02:52:06 -04:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   return abs + ".xxx"; | 
					
						
							| 
									
										
										
										
											2013-10-15 02:52:06 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02: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); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   return AppBundlePath; | 
					
						
							| 
									
										
										
										
											2009-02-28 23:21:51 +00:00
										 |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-27 19:43:29 -06:00
										 |  |  | std::string& GetExeDirectory() | 
					
						
							| 
									
										
										
										
											2011-06-11 20:45:09 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   static std::string DolphinPath; | 
					
						
							|  |  |  |   if (DolphinPath.empty()) | 
					
						
							|  |  |  |   { | 
					
						
							| 
									
										
										
										
											2015-11-07 10:50:47 -08:00
										 |  |  | #ifdef _WIN32
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |     TCHAR Dolphin_exe_Path[2048]; | 
					
						
							|  |  |  |     TCHAR Dolphin_exe_Clean_Path[MAX_PATH]; | 
					
						
							|  |  |  |     GetModuleFileName(nullptr, Dolphin_exe_Path, 2048); | 
					
						
							|  |  |  |     if (_tfullpath(Dolphin_exe_Clean_Path, Dolphin_exe_Path, MAX_PATH) != nullptr) | 
					
						
							|  |  |  |       DolphinPath = TStrToUTF8(Dolphin_exe_Clean_Path); | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |       DolphinPath = TStrToUTF8(Dolphin_exe_Path); | 
					
						
							|  |  |  |     DolphinPath = DolphinPath.substr(0, DolphinPath.find_last_of('\\')); | 
					
						
							| 
									
										
										
										
											2015-11-07 10:50:47 -08:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |     char Dolphin_exe_Path[PATH_MAX]; | 
					
						
							|  |  |  |     ssize_t len = ::readlink("/proc/self/exe", Dolphin_exe_Path, sizeof(Dolphin_exe_Path)); | 
					
						
							|  |  |  |     if (len == -1 || len == sizeof(Dolphin_exe_Path)) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |       len = 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     Dolphin_exe_Path[len] = '\0'; | 
					
						
							|  |  |  |     DolphinPath = Dolphin_exe_Path; | 
					
						
							|  |  |  |     DolphinPath = DolphinPath.substr(0, DolphinPath.rfind('/')); | 
					
						
							| 
									
										
										
										
											2015-11-07 10:50:47 -08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   } | 
					
						
							|  |  |  |   return DolphinPath; | 
					
						
							| 
									
										
										
										
											2011-06-11 20:45:09 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-28 23:21:51 +00:00
										 |  |  | std::string GetSysDirectory() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   std::string sysDir; | 
					
						
							| 
									
										
										
										
											2009-02-28 23:21:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  | #if defined(__APPLE__)
 | 
					
						
							|  |  |  |   sysDir = GetBundleDirectory() + DIR_SEP + SYSDATA_DIR; | 
					
						
							|  |  |  | #elif defined(_WIN32) || defined(LINUX_LOCAL_DEV)
 | 
					
						
							|  |  |  |   sysDir = GetExeDirectory() + DIR_SEP + SYSDATA_DIR; | 
					
						
							| 
									
										
										
										
											2009-02-28 23:21:51 +00:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   sysDir = SYSDATA_DIR; | 
					
						
							| 
									
										
										
										
											2009-02-28 23:21:51 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   sysDir += DIR_SEP; | 
					
						
							| 
									
										
										
										
											2010-06-05 18:52:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   INFO_LOG(COMMON, "GetSysDirectory: Setting to %s:", sysDir.c_str()); | 
					
						
							|  |  |  |   return sysDir; | 
					
						
							| 
									
										
										
										
											2009-02-28 23:21:51 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											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
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02: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_CACHE_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; | 
					
						
							| 
									
										
										
										
											2015-07-11 10:31:03 +02:00
										 |  |  |     s_user_paths[D_DUMPSSL_IDX] = s_user_paths[D_DUMP_IDX] + DUMP_SSL_DIR DIR_SEP; | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |     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[D_PIPES_IDX] = s_user_paths[D_USER_IDX] + PIPES_DIR DIR_SEP; | 
					
						
							| 
									
										
										
										
											2017-01-03 03:31:45 +01:00
										 |  |  |     s_user_paths[D_WFSROOT_IDX] = s_user_paths[D_USER_IDX] + WFSROOT_DIR DIR_SEP; | 
					
						
							| 
									
										
										
										
											2016-12-23 20:37:23 -05:00
										 |  |  |     s_user_paths[D_BACKUP_IDX] = s_user_paths[D_USER_IDX] + BACKUP_DIR DIR_SEP; | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |     s_user_paths[F_DOLPHINCONFIG_IDX] = s_user_paths[D_CONFIG_IDX] + DOLPHIN_CONFIG; | 
					
						
							| 
									
										
										
										
											2016-01-14 16:37:33 -06:00
										 |  |  |     s_user_paths[F_GCPADCONFIG_IDX] = s_user_paths[D_CONFIG_IDX] + GCPAD_CONFIG; | 
					
						
							|  |  |  |     s_user_paths[F_WIIPADCONFIG_IDX] = s_user_paths[D_CONFIG_IDX] + WIIPAD_CONFIG; | 
					
						
							|  |  |  |     s_user_paths[F_GCKEYBOARDCONFIG_IDX] = s_user_paths[D_CONFIG_IDX] + GCKEYBOARD_CONFIG; | 
					
						
							|  |  |  |     s_user_paths[F_GFXCONFIG_IDX] = s_user_paths[D_CONFIG_IDX] + GFX_CONFIG; | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |     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; | 
					
						
							| 
									
										
										
										
											2016-01-14 16:37:33 -06:00
										 |  |  |     s_user_paths[F_UICONFIG_IDX] = s_user_paths[D_CONFIG_IDX] + UI_CONFIG; | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |     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; | 
					
						
							| 
									
										
										
										
											2016-07-16 21:40:19 +02:00
										 |  |  |     s_user_paths[F_WIISDCARD_IDX] = s_user_paths[D_WIIROOT_IDX] + DIR_SEP WII_SDCARD; | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     s_user_paths[D_MEMORYWATCHER_IDX] = s_user_paths[D_USER_IDX] + MEMORYWATCHER_DIR DIR_SEP; | 
					
						
							|  |  |  |     s_user_paths[F_MEMORYWATCHERLOCATIONS_IDX] = | 
					
						
							|  |  |  |         s_user_paths[D_MEMORYWATCHER_IDX] + MEMORYWATCHER_LOCATIONS; | 
					
						
							|  |  |  |     s_user_paths[F_MEMORYWATCHERSOCKET_IDX] = | 
					
						
							|  |  |  |         s_user_paths[D_MEMORYWATCHER_IDX] + MEMORYWATCHER_SOCKET; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // The shader cache has moved to the cache directory, so remove the old one.
 | 
					
						
							|  |  |  |     // TODO: remove that someday.
 | 
					
						
							|  |  |  |     File::DeleteDirRecursively(s_user_paths[D_USER_IDX] + SHADERCACHE_LEGACY_DIR DIR_SEP); | 
					
						
							|  |  |  |     break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   case D_CONFIG_IDX: | 
					
						
							|  |  |  |     s_user_paths[F_DOLPHINCONFIG_IDX] = s_user_paths[D_CONFIG_IDX] + DOLPHIN_CONFIG; | 
					
						
							| 
									
										
										
										
											2016-01-14 16:37:33 -06:00
										 |  |  |     s_user_paths[F_GCPADCONFIG_IDX] = s_user_paths[D_CONFIG_IDX] + GCPAD_CONFIG; | 
					
						
							|  |  |  |     s_user_paths[F_WIIPADCONFIG_IDX] = s_user_paths[D_CONFIG_IDX] + WIIPAD_CONFIG; | 
					
						
							|  |  |  |     s_user_paths[F_GFXCONFIG_IDX] = s_user_paths[D_CONFIG_IDX] + GFX_CONFIG; | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |     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; | 
					
						
							| 
									
										
										
										
											2016-01-14 16:37:33 -06:00
										 |  |  |     s_user_paths[F_UICONFIG_IDX] = s_user_paths[D_CONFIG_IDX] + UI_CONFIG; | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |     break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   case D_CACHE_IDX: | 
					
						
							|  |  |  |     s_user_paths[D_SHADERCACHE_IDX] = s_user_paths[D_CACHE_IDX] + SHADERCACHE_DIR DIR_SEP; | 
					
						
							|  |  |  |     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; | 
					
						
							| 
									
										
										
										
											2015-07-11 10:31:03 +02:00
										 |  |  |     s_user_paths[D_DUMPSSL_IDX] = s_user_paths[D_DUMP_IDX] + DUMP_SSL_DIR DIR_SEP; | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |     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; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											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) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   return s_user_paths[dir_index]; | 
					
						
							| 
									
										
										
										
											2015-03-15 08:51:13 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // 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) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   if (path.empty()) | 
					
						
							|  |  |  |     return; | 
					
						
							| 
									
										
										
										
											2015-03-17 21:27:40 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02: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
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   std::string dir = File::GetUserPath(D_THEMES_IDX) + theme_name + "/"; | 
					
						
							| 
									
										
										
										
											2017-06-29 11:20:38 +02:00
										 |  |  |   if (Exists(dir)) | 
					
						
							| 
									
										
										
										
											2016-06-30 10:58:50 +02:00
										 |  |  |     return dir; | 
					
						
							| 
									
										
										
										
											2013-04-01 23:17:15 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-30 10:58:50 +02:00
										 |  |  |   // If the theme doesn't exist in the user dir, load from shared directory
 | 
					
						
							|  |  |  |   dir = GetSysDirectory() + THEMES_DIR "/" + theme_name + "/"; | 
					
						
							| 
									
										
										
										
											2017-06-29 11:20:38 +02:00
										 |  |  |   if (Exists(dir)) | 
					
						
							| 
									
										
										
										
											2016-06-30 10:58:50 +02:00
										 |  |  |     return dir; | 
					
						
							| 
									
										
										
										
											2013-09-12 03:55:16 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-30 10:58:50 +02:00
										 |  |  |   // If the theme doesn't exist at all, load the default theme
 | 
					
						
							|  |  |  |   return GetSysDirectory() + THEMES_DIR "/" DEFAULT_THEME_DIR "/"; | 
					
						
							| 
									
										
										
										
											2013-04-01 23:17:15 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-21 21:27:56 +01:00
										 |  |  | bool WriteStringToFile(const std::string& str, const std::string& filename) | 
					
						
							| 
									
										
										
										
											2009-04-12 10:21:40 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   return File::IOFile(filename, "wb").WriteBytes(str.data(), str.size()); | 
					
						
							| 
									
										
										
										
											2009-04-12 10:21:40 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-21 21:27:56 +01:00
										 |  |  | bool ReadFileToString(const std::string& filename, std::string& str) | 
					
						
							| 
									
										
										
										
											2009-04-12 10:21:40 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   File::IOFile file(filename, "rb"); | 
					
						
							|  |  |  |   auto const f = file.GetHandle(); | 
					
						
							| 
									
										
										
										
											2013-02-27 19:43:29 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   if (!f) | 
					
						
							|  |  |  |     return false; | 
					
						
							| 
									
										
										
										
											2013-02-27 19:43:29 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   size_t read_size; | 
					
						
							|  |  |  |   str.resize(GetSize(f)); | 
					
						
							|  |  |  |   bool retval = file.ReadArray(&str[0], str.size(), &read_size); | 
					
						
							| 
									
										
										
										
											2013-09-16 06:56:49 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   return retval; | 
					
						
							| 
									
										
										
										
											2009-04-12 10:21:40 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  | }  // namespace
 |