2013-04-18 03:09:55 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include <algorithm>
|
2014-02-20 03:11:52 +00:00
|
|
|
#include <cstddef>
|
|
|
|
#include <cstdio>
|
|
|
|
#include <cstring>
|
2014-02-19 00:54:11 +00:00
|
|
|
#include <fcntl.h>
|
2014-02-20 03:11:52 +00:00
|
|
|
#include <limits.h>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2014-02-17 10:18:15 +00:00
|
|
|
#include <sys/stat.h>
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Common/CommonPaths.h"
|
2014-09-08 01:06:58 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Common/FileUtil.h"
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
2013-10-19 22:58:02 +00:00
|
|
|
#include <commdlg.h> // for GetSaveFileName
|
|
|
|
#include <direct.h> // getcwd
|
2014-02-19 00:54:11 +00:00
|
|
|
#include <io.h>
|
|
|
|
#include <shellapi.h>
|
|
|
|
#include <shlobj.h> // for SHGetFolderPath
|
|
|
|
#include <windows.h>
|
2008-12-08 05:30:24 +00:00
|
|
|
#else
|
|
|
|
#include <dirent.h>
|
|
|
|
#include <errno.h>
|
2013-10-15 06:52:06 +00:00
|
|
|
#include <libgen.h>
|
2014-02-19 00:54:11 +00:00
|
|
|
#include <stdlib.h>
|
2014-02-20 03:11:52 +00: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 00:54:11 +00: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 03:11:52 +00: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
|
|
|
|
2010-07-23 23:51:34 +00:00
|
|
|
#ifdef BSD4_4
|
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-08-01 02:18:45 +00: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-28 02:55:19 +00:00
|
|
|
#ifdef _WIN32
|
2013-02-28 01:43:29 +00:00
|
|
|
int result = _tstat64(UTF8ToTStr(copy).c_str(), &file_info);
|
2013-02-28 02:55:19 +00:00
|
|
|
#else
|
2011-02-28 20:40:15 +00:00
|
|
|
int result = stat64(copy.c_str(), &file_info);
|
2013-02-28 02:55:19 +00: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-28 02:55:19 +00:00
|
|
|
#ifdef _WIN32
|
2013-02-28 01:43:29 +00:00
|
|
|
int result = _tstat64(UTF8ToTStr(copy).c_str(), &file_info);
|
2013-02-28 02:55:19 +00:00
|
|
|
#else
|
2011-02-28 20:40:15 +00:00
|
|
|
int result = stat64(copy.c_str(), &file_info);
|
2013-02-28 02:55:19 +00:00
|
|
|
#endif
|
2009-02-28 01:26:56 +00:00
|
|
|
|
2014-08-30 20:14:56 +00:00
|
|
|
if (result < 0)
|
|
|
|
{
|
2013-10-29 05:23:17 +00:00
|
|
|
WARN_LOG(COMMON, "IsDirectory: stat failed on %s: %s",
|
2011-03-01 03:06:14 +00:00
|
|
|
filename.c_str(), GetLastErrorMsg());
|
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 05:23:17 +00: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 04:10:54 +00: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-28 00:51:02 +00:00
|
|
|
if (!DeleteFile(UTF8ToTStr(filename).c_str()))
|
2011-03-01 03:06:14 +00:00
|
|
|
{
|
2013-10-29 05:23:17 +00:00
|
|
|
WARN_LOG(COMMON, "Delete: DeleteFile failed on %s: %s",
|
2011-03-01 03:06:14 +00:00
|
|
|
filename.c_str(), GetLastErrorMsg());
|
2009-02-28 01:26:56 +00:00
|
|
|
return false;
|
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
#else
|
2014-08-30 20:14:56 +00:00
|
|
|
if (unlink(filename.c_str()) == -1)
|
|
|
|
{
|
2013-10-29 05:23:17 +00:00
|
|
|
WARN_LOG(COMMON, "Delete: unlink failed on %s: %s",
|
2011-03-01 03:06:14 +00:00
|
|
|
filename.c_str(), GetLastErrorMsg());
|
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 20:14:26 +00: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-20 01:51:12 +00: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-20 01:51:12 +00:00
|
|
|
|
2013-02-17 07:33:22 +00: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 04:10:54 +00: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-28 00:51:02 +00: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
|
2011-03-01 03:06:14 +00:00
|
|
|
ERROR_LOG(COMMON, "DeleteDir: %s: %s", filename.c_str(), GetLastErrorMsg());
|
2009-02-28 01:26:56 +00:00
|
|
|
|
|
|
|
return false;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
2013-10-29 05:23:17 +00: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 05:23:17 +00:00
|
|
|
INFO_LOG(COMMON, "Rename: %s --> %s",
|
2011-03-01 03:06:14 +00:00
|
|
|
srcFilename.c_str(), destFilename.c_str());
|
2013-10-09 19:33:21 +00:00
|
|
|
#ifdef _WIN32
|
2013-10-15 21:20:00 +00:00
|
|
|
auto sf = UTF8ToTStr(srcFilename);
|
|
|
|
auto df = UTF8ToTStr(destFilename);
|
2013-10-15 06:52:06 +00:00
|
|
|
// The Internet seems torn about whether ReplaceFile is atomic or not.
|
|
|
|
// Hopefully it's atomic enough...
|
2014-03-09 20:14:26 +00:00
|
|
|
if (ReplaceFile(df.c_str(), sf.c_str(), nullptr, REPLACEFILE_IGNORE_MERGE_ERRORS, nullptr, nullptr))
|
2013-10-15 06:52:06 +00:00
|
|
|
return true;
|
|
|
|
// Might have failed because the destination doesn't exist.
|
|
|
|
if (GetLastError() == ERROR_FILE_NOT_FOUND)
|
|
|
|
{
|
2013-10-15 21:20:00 +00:00
|
|
|
if (MoveFile(sf.c_str(), df.c_str()))
|
2013-10-15 06:52:06 +00:00
|
|
|
return true;
|
|
|
|
}
|
2013-10-09 19:33:21 +00: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 06:52:06 +00:00
|
|
|
#endif
|
2013-10-29 05:23:17 +00:00
|
|
|
ERROR_LOG(COMMON, "Rename: failed %s --> %s: %s",
|
2011-03-01 03:06:14 +00:00
|
|
|
srcFilename.c_str(), destFilename.c_str(), GetLastErrorMsg());
|
2009-02-28 01:26:56 +00:00
|
|
|
return false;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
2013-10-15 06:52:06 +00: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 05:23:17 +00: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 05:23:17 +00: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-28 00:51:02 +00: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 05:23:17 +00:00
|
|
|
ERROR_LOG(COMMON, "Copy: failed %s --> %s: %s",
|
2011-03-01 03:06:14 +00:00
|
|
|
srcFilename.c_str(), destFilename.c_str(), GetLastErrorMsg());
|
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
|
2011-03-01 03:06:14 +00:00
|
|
|
FILE *input = fopen(srcFilename.c_str(), "rb");
|
2009-02-28 01:26:56 +00:00
|
|
|
if (!input)
|
|
|
|
{
|
2013-10-29 05:23:17 +00:00
|
|
|
ERROR_LOG(COMMON, "Copy: input failed %s --> %s: %s",
|
2011-03-01 03:06:14 +00:00
|
|
|
srcFilename.c_str(), destFilename.c_str(), GetLastErrorMsg());
|
2008-12-08 05:30:24 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-02-28 01:26:56 +00:00
|
|
|
// open output file
|
2011-03-01 03:06:14 +00:00
|
|
|
FILE *output = fopen(destFilename.c_str(), "wb");
|
2009-02-28 01:26:56 +00:00
|
|
|
if (!output)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2009-02-28 01:26:56 +00:00
|
|
|
fclose(input);
|
2013-10-29 05:23:17 +00:00
|
|
|
ERROR_LOG(COMMON, "Copy: output failed %s --> %s: %s",
|
2011-03-01 03:06:14 +00:00
|
|
|
srcFilename.c_str(), destFilename.c_str(), GetLastErrorMsg());
|
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
|
|
|
|
while (!feof(input))
|
|
|
|
{
|
|
|
|
// read input
|
|
|
|
int rnum = fread(buffer, sizeof(char), BSIZE, input);
|
|
|
|
if (rnum != BSIZE)
|
|
|
|
{
|
2011-03-01 03:06:14 +00:00
|
|
|
if (ferror(input) != 0)
|
|
|
|
{
|
2013-10-29 05:23:17 +00:00
|
|
|
ERROR_LOG(COMMON,
|
|
|
|
"Copy: failed reading from source, %s --> %s: %s",
|
2011-03-01 03:06:14 +00:00
|
|
|
srcFilename.c_str(), destFilename.c_str(), GetLastErrorMsg());
|
2012-12-19 05:35:28 +00:00
|
|
|
goto bail;
|
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
|
2009-02-28 08:38:37 +00:00
|
|
|
int wnum = fwrite(buffer, sizeof(char), rnum, output);
|
2009-02-28 01:26:56 +00:00
|
|
|
if (wnum != rnum)
|
|
|
|
{
|
2013-10-29 05:23:17 +00:00
|
|
|
ERROR_LOG(COMMON,
|
|
|
|
"Copy: failed writing to output, %s --> %s: %s",
|
2011-03-01 03:06:14 +00:00
|
|
|
srcFilename.c_str(), destFilename.c_str(), GetLastErrorMsg());
|
2012-12-19 05:35:28 +00:00
|
|
|
goto bail;
|
2009-02-28 01:26:56 +00:00
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
2013-04-01 04:10:54 +00:00
|
|
|
// close files
|
2009-02-28 01:26:56 +00:00
|
|
|
fclose(input);
|
|
|
|
fclose(output);
|
|
|
|
return true;
|
2012-12-19 05:35:28 +00:00
|
|
|
bail:
|
|
|
|
if (input)
|
|
|
|
fclose(input);
|
|
|
|
if (output)
|
|
|
|
fclose(output);
|
|
|
|
return false;
|
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 05:23:17 +00:00
|
|
|
|
2009-02-28 01:26:56 +00:00
|
|
|
struct stat64 buf;
|
2013-02-28 02:55:19 +00:00
|
|
|
#ifdef _WIN32
|
2013-02-28 01:43:29 +00:00
|
|
|
if (_tstat64(UTF8ToTStr(filename).c_str(), &buf) == 0)
|
2013-02-28 02:55:19 +00:00
|
|
|
#else
|
2011-03-01 03:06:14 +00:00
|
|
|
if (stat64(filename.c_str(), &buf) == 0)
|
2013-02-28 02:55:19 +00: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",
|
2011-03-01 03:06:14 +00:00
|
|
|
filename.c_str(), GetLastErrorMsg());
|
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 20:14:56 +00:00
|
|
|
if (fstat64(fd, &buf) != 0)
|
|
|
|
{
|
2010-12-03 12:42:01 +00:00
|
|
|
ERROR_LOG(COMMON, "GetSize: stat failed %i: %s",
|
|
|
|
fd, GetLastErrorMsg());
|
|
|
|
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 20:14:56 +00:00
|
|
|
if (fseeko(f, 0, SEEK_END) != 0)
|
|
|
|
{
|
2010-12-21 18:03:44 +00:00
|
|
|
ERROR_LOG(COMMON, "GetSize: seek failed %p: %s",
|
|
|
|
f, GetLastErrorMsg());
|
|
|
|
return 0;
|
|
|
|
}
|
2014-08-30 20:14:56 +00:00
|
|
|
|
2010-12-31 10:40:49 +00:00
|
|
|
u64 size = ftello(f);
|
2014-08-30 20:14:56 +00: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",
|
|
|
|
f, GetLastErrorMsg());
|
|
|
|
return 0;
|
|
|
|
}
|
2014-08-30 20:14:56 +00:00
|
|
|
|
2010-12-21 18:03:44 +00:00
|
|
|
return size;
|
2010-12-03 12:42:01 +00:00
|
|
|
}
|
|
|
|
|
2013-10-29 05:23:17 +00: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 05:23:17 +00:00
|
|
|
INFO_LOG(COMMON, "CreateEmptyFile: %s", filename.c_str());
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2013-02-28 01:43:29 +00:00
|
|
|
if (!File::IOFile(filename, "wb"))
|
|
|
|
{
|
2009-02-28 01:26:56 +00:00
|
|
|
ERROR_LOG(COMMON, "CreateEmptyFile: failed %s: %s",
|
2011-03-01 03:06:14 +00:00
|
|
|
filename.c_str(), GetLastErrorMsg());
|
2009-02-28 01:26:56 +00:00
|
|
|
return false;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
2013-02-28 01:43:29 +00: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
|
2011-03-01 05:16:32 +00:00
|
|
|
u32 ScanDirectoryTree(const std::string &directory, FSTEntry& parentEntry)
|
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
|
2008-12-29 02:11:56 +00:00
|
|
|
u32 foundEntries = 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-28 00:51:02 +00: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);
|
|
|
|
return foundEntries;
|
|
|
|
}
|
|
|
|
// windows loop
|
2011-03-01 03:06:14 +00:00
|
|
|
do
|
|
|
|
{
|
2009-02-28 01:26:56 +00:00
|
|
|
FSTEntry entry;
|
2013-02-28 00:51:02 +00:00
|
|
|
const std::string virtualName(TStrToUTF8(ffd.cFileName));
|
2009-02-28 01:26:56 +00:00
|
|
|
#else
|
2014-03-09 20:14:26 +00: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 0;
|
2009-01-15 06:48:15 +00:00
|
|
|
|
2009-02-28 01:26:56 +00:00
|
|
|
// non windows loop
|
2011-03-01 03:06:14 +00:00
|
|
|
while (!readdir_r(dirp, &dirent, &result) && result)
|
|
|
|
{
|
2008-12-29 02:11:56 +00:00
|
|
|
FSTEntry entry;
|
2011-03-01 03:06:14 +00:00
|
|
|
const std::string virtualName(result->d_name);
|
2009-02-28 01:26:56 +00:00
|
|
|
#endif
|
|
|
|
// check for "." and ".."
|
|
|
|
if (((virtualName[0] == '.') && (virtualName[1] == '\0')) ||
|
2013-10-29 05:23:17 +00:00
|
|
|
((virtualName[0] == '.') && (virtualName[1] == '.') &&
|
2011-03-01 03:06:14 +00:00
|
|
|
(virtualName[2] == '\0')))
|
2009-02-28 01:26:56 +00:00
|
|
|
continue;
|
|
|
|
entry.virtualName = virtualName;
|
|
|
|
entry.physicalName = directory;
|
|
|
|
entry.physicalName += DIR_SEP + entry.virtualName;
|
2011-03-01 03:06:14 +00:00
|
|
|
|
2014-02-04 02:31:12 +00:00
|
|
|
if (IsDirectory(entry.physicalName))
|
2011-03-01 03:06:14 +00:00
|
|
|
{
|
2008-12-29 02:11:56 +00:00
|
|
|
entry.isDirectory = true;
|
2009-02-28 01:26:56 +00:00
|
|
|
// is a directory, lets go inside
|
2011-03-01 03:06:14 +00:00
|
|
|
entry.size = ScanDirectoryTree(entry.physicalName, entry);
|
2009-02-28 01:26:56 +00:00
|
|
|
foundEntries += (u32)entry.size;
|
2011-03-01 03:06:14 +00:00
|
|
|
}
|
|
|
|
else
|
2013-10-29 05:23:17 +00:00
|
|
|
{ // is a file
|
2008-12-29 02:11:56 +00:00
|
|
|
entry.isDirectory = false;
|
|
|
|
entry.size = GetSize(entry.physicalName.c_str());
|
|
|
|
}
|
|
|
|
++foundEntries;
|
2009-02-28 01:26:56 +00:00
|
|
|
// Push into the tree
|
2013-10-29 05:23:17 +00:00
|
|
|
parentEntry.children.push_back(entry);
|
|
|
|
#ifdef _WIN32
|
2009-02-28 01:26:56 +00:00
|
|
|
} while (FindNextFile(hFind, &ffd) != 0);
|
|
|
|
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.
|
|
|
|
return foundEntries;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
2013-03-20 01:51:12 +00: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-28 00:51:02 +00: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-20 01:51:12 +00:00
|
|
|
|
2009-02-28 01:26:56 +00:00
|
|
|
// windows loop
|
2011-03-01 03:06:14 +00:00
|
|
|
do
|
|
|
|
{
|
2013-02-28 00:51:02 +00:00
|
|
|
const std::string virtualName(TStrToUTF8(ffd.cFileName));
|
2009-02-28 01:26:56 +00:00
|
|
|
#else
|
2014-03-09 20:14:26 +00: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
|
|
|
|
2009-02-28 01:26:56 +00: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 05:23:17 +00: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 13:21:08 +00:00
|
|
|
{
|
|
|
|
#ifndef _WIN32
|
|
|
|
closedir(dirp);
|
|
|
|
#endif
|
2013-03-20 01:51:12 +00:00
|
|
|
|
2009-02-28 01:26:56 +00:00
|
|
|
return false;
|
2013-01-24 13:21:08 +00: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 13:21:08 +00:00
|
|
|
{
|
|
|
|
#ifndef _WIN32
|
|
|
|
closedir(dirp);
|
|
|
|
#endif
|
2013-03-20 01:51:12 +00:00
|
|
|
|
2009-02-28 01:26:56 +00:00
|
|
|
return false;
|
2013-01-24 13:21:08 +00: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 05:23:17 +00: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 01:53:36 +00: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 20:14:26 +00: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 01:53:36 +00:00
|
|
|
#endif
|
2010-04-06 15:02:09 +00:00
|
|
|
// check for "." and ".."
|
2013-09-11 01:53:36 +00:00
|
|
|
if (virtualName == "." || virtualName == "..")
|
2010-04-06 15:02:09 +00:00
|
|
|
continue;
|
|
|
|
|
2011-03-01 03:06:14 +00:00
|
|
|
std::string source, dest;
|
|
|
|
source = source_path + virtualName;
|
|
|
|
dest = dest_path + virtualName;
|
2010-04-06 15:02:09 +00:00
|
|
|
if (IsDirectory(source))
|
|
|
|
{
|
2011-03-01 03:06:14 +00:00
|
|
|
source += '/';
|
|
|
|
dest += '/';
|
2010-04-06 15:02:09 +00:00
|
|
|
if (!File::Exists(dest)) File::CreateFullPath(dest);
|
|
|
|
CopyDir(source, dest);
|
|
|
|
}
|
|
|
|
else if (!File::Exists(dest)) File::Copy(source, dest);
|
2013-09-11 01:53:36 +00: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 05:23:17 +00:00
|
|
|
// Get the current working directory (getcwd uses malloc)
|
2014-08-30 20:14:56 +00:00
|
|
|
if (!(dir = __getcwd(nullptr, 0)))
|
|
|
|
{
|
2009-02-28 01:26:56 +00:00
|
|
|
ERROR_LOG(COMMON, "GetCurrentDirectory failed: %s",
|
2013-03-20 01:51:12 +00:00
|
|
|
GetLastErrorMsg());
|
2014-03-09 20:14:26 +00: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
|
|
|
}
|
|
|
|
|
2013-10-15 06:52:06 +00:00
|
|
|
std::string GetTempFilenameForAtomicWrite(const std::string &path)
|
|
|
|
{
|
|
|
|
std::string abs = path;
|
|
|
|
#ifdef _WIN32
|
|
|
|
TCHAR absbuf[MAX_PATH];
|
2014-03-09 20:14:26 +00:00
|
|
|
if (_tfullpath(absbuf, UTF8ToTStr(path).c_str(), MAX_PATH) != nullptr)
|
2013-10-15 06:52:06 +00:00
|
|
|
abs = TStrToUTF8(absbuf);
|
|
|
|
#else
|
|
|
|
char absbuf[PATH_MAX];
|
2014-03-09 20:14:26 +00:00
|
|
|
if (realpath(path.c_str(), absbuf) != nullptr)
|
2013-10-15 06:52:06 +00:00
|
|
|
abs = absbuf;
|
|
|
|
#endif
|
|
|
|
return abs + ".xxx";
|
|
|
|
}
|
|
|
|
|
2009-02-28 23:21:51 +00:00
|
|
|
#if defined(__APPLE__)
|
2013-10-29 05:23:17 +00: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-28 01:43:29 +00:00
|
|
|
std::string& GetExeDirectory()
|
2011-06-11 20:45:09 +00:00
|
|
|
{
|
|
|
|
static std::string DolphinPath;
|
|
|
|
if (DolphinPath.empty())
|
|
|
|
{
|
2013-02-28 01:43:29 +00:00
|
|
|
TCHAR Dolphin_exe_Path[2048];
|
2014-03-09 20:14:26 +00:00
|
|
|
GetModuleFileName(nullptr, Dolphin_exe_Path, 2048);
|
2013-02-28 01:43:29 +00:00
|
|
|
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 01:53:36 +00: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
|
|
|
|
2011-03-01 03:06:14 +00:00
|
|
|
// Returns a string with a Dolphin data dir or file in the user's home
|
2009-02-28 23:21:51 +00:00
|
|
|
// directory. To be used in "multi-user" mode (that is, installed).
|
2013-04-02 04:17:15 +00:00
|
|
|
const std::string& GetUserPath(const unsigned int DirIDX, const std::string &newPath)
|
2009-02-28 23:21:51 +00:00
|
|
|
{
|
2011-03-01 03:06:14 +00:00
|
|
|
static std::string paths[NUM_PATH_INDICES];
|
2010-02-02 21:56:29 +00:00
|
|
|
|
|
|
|
// Set up all paths and files on the first run
|
2011-03-01 03:06:14 +00:00
|
|
|
if (paths[D_USER_IDX].empty())
|
2010-02-02 21:56:29 +00:00
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
2013-09-16 03:46:07 +00:00
|
|
|
// Detect where the User directory is. There are five different cases (on top of the
|
2013-08-25 18:31:11 +00:00
|
|
|
// command line flag, which overrides all this):
|
2013-09-16 03:46:07 +00:00
|
|
|
// 1. GetExeDirectory()\portable.txt exists
|
2013-08-25 18:31:11 +00:00
|
|
|
// -> Use GetExeDirectory()\User
|
2013-09-16 03:46:07 +00:00
|
|
|
// 2. HKCU\Software\Dolphin Emulator\LocalUserConfig exists and is true
|
|
|
|
// -> Use GetExeDirectory()\User
|
|
|
|
// 3. HKCU\Software\Dolphin Emulator\UserConfigPath exists
|
2013-08-25 18:31:11 +00:00
|
|
|
// -> Use this as the user directory path
|
2013-09-16 03:46:07 +00:00
|
|
|
// 4. My Documents exists
|
2013-08-25 18:31:11 +00:00
|
|
|
// -> Use My Documents\Dolphin Emulator as the User directory path
|
2013-09-16 03:46:07 +00:00
|
|
|
// 5. Default
|
2013-08-25 18:31:11 +00:00
|
|
|
// -> Use GetExeDirectory()\User
|
|
|
|
|
|
|
|
// Check our registry keys
|
|
|
|
HKEY hkey;
|
|
|
|
DWORD local = 0;
|
|
|
|
TCHAR configPath[MAX_PATH] = {0};
|
2014-03-09 20:14:26 +00:00
|
|
|
if (RegOpenKeyEx(HKEY_CURRENT_USER, TEXT("Software\\Dolphin Emulator"), 0, KEY_QUERY_VALUE, &hkey) == ERROR_SUCCESS)
|
2013-08-25 18:31:11 +00:00
|
|
|
{
|
|
|
|
DWORD size = 4;
|
2014-03-09 20:14:26 +00:00
|
|
|
if (RegQueryValueEx(hkey, TEXT("LocalUserConfig"), nullptr, nullptr, reinterpret_cast<LPBYTE>(&local), &size) != ERROR_SUCCESS)
|
2013-08-25 18:31:11 +00:00
|
|
|
local = 0;
|
|
|
|
|
|
|
|
size = MAX_PATH;
|
2014-03-09 20:14:26 +00:00
|
|
|
if (RegQueryValueEx(hkey, TEXT("UserConfigPath"), nullptr, nullptr, (LPBYTE)configPath, &size) != ERROR_SUCCESS)
|
2013-08-25 18:31:11 +00:00
|
|
|
configPath[0] = 0;
|
|
|
|
RegCloseKey(hkey);
|
|
|
|
}
|
|
|
|
|
2013-09-16 03:46:07 +00:00
|
|
|
local = local || File::Exists(GetExeDirectory() + DIR_SEP "portable.txt");
|
|
|
|
|
2013-08-25 18:31:11 +00:00
|
|
|
// Get Program Files path in case we need it.
|
|
|
|
TCHAR my_documents[MAX_PATH];
|
2014-03-09 20:14:26 +00:00
|
|
|
bool my_documents_found = SUCCEEDED(SHGetFolderPath(nullptr, CSIDL_MYDOCUMENTS, nullptr, SHGFP_TYPE_CURRENT, my_documents));
|
2013-08-25 18:31:11 +00:00
|
|
|
|
2013-09-16 03:46:07 +00:00
|
|
|
if (local) // Case 1-2
|
2013-08-25 18:31:11 +00:00
|
|
|
paths[D_USER_IDX] = GetExeDirectory() + DIR_SEP USERDATA_DIR DIR_SEP;
|
2013-09-16 03:46:07 +00:00
|
|
|
else if (configPath[0]) // Case 3
|
2013-08-25 18:31:11 +00:00
|
|
|
paths[D_USER_IDX] = TStrToUTF8(configPath);
|
2013-09-16 03:46:07 +00:00
|
|
|
else if (my_documents_found) // Case 4
|
2013-08-25 18:31:11 +00:00
|
|
|
paths[D_USER_IDX] = TStrToUTF8(my_documents) + DIR_SEP "Dolphin Emulator" DIR_SEP;
|
2013-09-16 03:46:07 +00:00
|
|
|
else // Case 5
|
2013-08-25 18:31:11 +00:00
|
|
|
paths[D_USER_IDX] = GetExeDirectory() + DIR_SEP USERDATA_DIR DIR_SEP;
|
|
|
|
|
|
|
|
// Prettify the path: it will be displayed in some places, we don't want a mix of \ and /.
|
|
|
|
paths[D_USER_IDX] = ReplaceAll(paths[D_USER_IDX], "\\", DIR_SEP);
|
|
|
|
|
|
|
|
// Make sure it ends in DIR_SEP.
|
|
|
|
if (*paths[D_USER_IDX].rbegin() != DIR_SEP_CHR)
|
|
|
|
paths[D_USER_IDX] += DIR_SEP;
|
2010-07-22 07:55:35 +00:00
|
|
|
#else
|
2010-06-13 14:52:11 +00:00
|
|
|
if (File::Exists(ROOT_DIR DIR_SEP USERDATA_DIR))
|
2011-03-01 03:06:14 +00:00
|
|
|
paths[D_USER_IDX] = ROOT_DIR DIR_SEP USERDATA_DIR DIR_SEP;
|
2010-06-13 14:52:11 +00:00
|
|
|
else
|
2013-10-29 05:23:17 +00:00
|
|
|
paths[D_USER_IDX] = std::string(getenv("HOME") ?
|
|
|
|
getenv("HOME") : getenv("PWD") ?
|
2013-02-26 19:49:00 +00:00
|
|
|
getenv("PWD") : "") + DIR_SEP DOLPHIN_DATA_DIR DIR_SEP;
|
2009-02-28 23:21:51 +00:00
|
|
|
#endif
|
2011-03-01 03:06:14 +00:00
|
|
|
|
2014-02-17 04:51:41 +00:00
|
|
|
paths[D_GCUSER_IDX] = paths[D_USER_IDX] + GC_USER_DIR DIR_SEP;
|
|
|
|
paths[D_WIIROOT_IDX] = paths[D_USER_IDX] + WII_USER_DIR;
|
|
|
|
paths[D_WIIUSER_IDX] = paths[D_WIIROOT_IDX] + DIR_SEP;
|
|
|
|
paths[D_CONFIG_IDX] = paths[D_USER_IDX] + CONFIG_DIR DIR_SEP;
|
|
|
|
paths[D_GAMESETTINGS_IDX] = paths[D_USER_IDX] + GAMESETTINGS_DIR DIR_SEP;
|
|
|
|
paths[D_MAPS_IDX] = paths[D_USER_IDX] + MAPS_DIR DIR_SEP;
|
|
|
|
paths[D_CACHE_IDX] = paths[D_USER_IDX] + CACHE_DIR DIR_SEP;
|
|
|
|
paths[D_SHADERCACHE_IDX] = paths[D_USER_IDX] + SHADERCACHE_DIR DIR_SEP;
|
|
|
|
paths[D_SHADERS_IDX] = paths[D_USER_IDX] + SHADERS_DIR DIR_SEP;
|
|
|
|
paths[D_STATESAVES_IDX] = paths[D_USER_IDX] + STATESAVES_DIR DIR_SEP;
|
|
|
|
paths[D_SCREENSHOTS_IDX] = paths[D_USER_IDX] + SCREENSHOTS_DIR DIR_SEP;
|
|
|
|
paths[D_HIRESTEXTURES_IDX] = paths[D_USER_IDX] + HIRES_TEXTURES_DIR DIR_SEP;
|
|
|
|
paths[D_DUMP_IDX] = paths[D_USER_IDX] + DUMP_DIR DIR_SEP;
|
|
|
|
paths[D_DUMPFRAMES_IDX] = paths[D_DUMP_IDX] + DUMP_FRAMES_DIR DIR_SEP;
|
|
|
|
paths[D_DUMPAUDIO_IDX] = paths[D_DUMP_IDX] + DUMP_AUDIO_DIR DIR_SEP;
|
|
|
|
paths[D_DUMPTEXTURES_IDX] = paths[D_DUMP_IDX] + DUMP_TEXTURES_DIR DIR_SEP;
|
|
|
|
paths[D_DUMPDSP_IDX] = paths[D_DUMP_IDX] + DUMP_DSP_DIR DIR_SEP;
|
|
|
|
paths[D_LOGS_IDX] = paths[D_USER_IDX] + LOGS_DIR DIR_SEP;
|
|
|
|
paths[D_MAILLOGS_IDX] = paths[D_LOGS_IDX] + MAIL_LOGS_DIR DIR_SEP;
|
|
|
|
paths[D_WIISYSCONF_IDX] = paths[D_WIIUSER_IDX] + WII_SYSCONF_DIR DIR_SEP;
|
|
|
|
paths[D_WIIWC24_IDX] = paths[D_WIIUSER_IDX] + WII_WC24CONF_DIR DIR_SEP;
|
|
|
|
paths[D_THEMES_IDX] = paths[D_USER_IDX] + THEMES_DIR DIR_SEP;
|
|
|
|
paths[F_DOLPHINCONFIG_IDX] = paths[D_CONFIG_IDX] + DOLPHIN_CONFIG;
|
|
|
|
paths[F_DEBUGGERCONFIG_IDX] = paths[D_CONFIG_IDX] + DEBUGGER_CONFIG;
|
|
|
|
paths[F_LOGGERCONFIG_IDX] = paths[D_CONFIG_IDX] + LOGGER_CONFIG;
|
|
|
|
paths[F_MAINLOG_IDX] = paths[D_LOGS_IDX] + MAIN_LOG;
|
|
|
|
paths[F_WIISYSCONF_IDX] = paths[D_WIISYSCONF_IDX] + WII_SYSCONF;
|
|
|
|
paths[F_RAMDUMP_IDX] = paths[D_DUMP_IDX] + RAM_DUMP;
|
|
|
|
paths[F_ARAMDUMP_IDX] = paths[D_DUMP_IDX] + ARAM_DUMP;
|
|
|
|
paths[F_FAKEVMEMDUMP_IDX] = paths[D_DUMP_IDX] + FAKEVMEM_DUMP;
|
|
|
|
paths[F_GCSRAM_IDX] = paths[D_GCUSER_IDX] + GC_SRAM;
|
2010-02-02 21:56:29 +00:00
|
|
|
}
|
2011-05-24 19:12:18 +00:00
|
|
|
|
|
|
|
if (!newPath.empty())
|
|
|
|
{
|
|
|
|
if (!File::IsDirectory(newPath))
|
|
|
|
{
|
2013-08-25 03:15:55 +00:00
|
|
|
WARN_LOG(COMMON, "Invalid path specified %s", newPath.c_str());
|
|
|
|
return paths[DirIDX];
|
2011-05-24 19:12:18 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-08-25 03:15:55 +00:00
|
|
|
paths[DirIDX] = newPath;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (DirIDX)
|
|
|
|
{
|
|
|
|
case D_WIIROOT_IDX:
|
2014-02-17 04:51:41 +00:00
|
|
|
paths[D_WIIUSER_IDX] = paths[D_WIIROOT_IDX] + DIR_SEP;
|
|
|
|
paths[D_WIISYSCONF_IDX] = paths[D_WIIUSER_IDX] + WII_SYSCONF_DIR + DIR_SEP;
|
|
|
|
paths[F_WIISYSCONF_IDX] = paths[D_WIISYSCONF_IDX] + WII_SYSCONF;
|
2013-08-25 03:15:55 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case D_USER_IDX:
|
2014-02-17 04:51:41 +00:00
|
|
|
paths[D_GCUSER_IDX] = paths[D_USER_IDX] + GC_USER_DIR DIR_SEP;
|
|
|
|
paths[D_WIIROOT_IDX] = paths[D_USER_IDX] + WII_USER_DIR;
|
|
|
|
paths[D_WIIUSER_IDX] = paths[D_WIIROOT_IDX] + DIR_SEP;
|
|
|
|
paths[D_CONFIG_IDX] = paths[D_USER_IDX] + CONFIG_DIR DIR_SEP;
|
|
|
|
paths[D_GAMESETTINGS_IDX] = paths[D_USER_IDX] + GAMESETTINGS_DIR DIR_SEP;
|
|
|
|
paths[D_MAPS_IDX] = paths[D_USER_IDX] + MAPS_DIR DIR_SEP;
|
|
|
|
paths[D_CACHE_IDX] = paths[D_USER_IDX] + CACHE_DIR DIR_SEP;
|
|
|
|
paths[D_SHADERCACHE_IDX] = paths[D_USER_IDX] + SHADERCACHE_DIR DIR_SEP;
|
|
|
|
paths[D_SHADERS_IDX] = paths[D_USER_IDX] + SHADERS_DIR DIR_SEP;
|
|
|
|
paths[D_STATESAVES_IDX] = paths[D_USER_IDX] + STATESAVES_DIR DIR_SEP;
|
|
|
|
paths[D_SCREENSHOTS_IDX] = paths[D_USER_IDX] + SCREENSHOTS_DIR DIR_SEP;
|
|
|
|
paths[D_HIRESTEXTURES_IDX] = paths[D_USER_IDX] + HIRES_TEXTURES_DIR DIR_SEP;
|
|
|
|
paths[D_DUMP_IDX] = paths[D_USER_IDX] + DUMP_DIR DIR_SEP;
|
|
|
|
paths[D_DUMPFRAMES_IDX] = paths[D_DUMP_IDX] + DUMP_FRAMES_DIR DIR_SEP;
|
|
|
|
paths[D_DUMPAUDIO_IDX] = paths[D_DUMP_IDX] + DUMP_AUDIO_DIR DIR_SEP;
|
|
|
|
paths[D_DUMPTEXTURES_IDX] = paths[D_DUMP_IDX] + DUMP_TEXTURES_DIR DIR_SEP;
|
|
|
|
paths[D_DUMPDSP_IDX] = paths[D_DUMP_IDX] + DUMP_DSP_DIR DIR_SEP;
|
|
|
|
paths[D_LOGS_IDX] = paths[D_USER_IDX] + LOGS_DIR DIR_SEP;
|
|
|
|
paths[D_MAILLOGS_IDX] = paths[D_LOGS_IDX] + MAIL_LOGS_DIR DIR_SEP;
|
|
|
|
paths[D_WIISYSCONF_IDX] = paths[D_WIIUSER_IDX] + WII_SYSCONF_DIR DIR_SEP;
|
|
|
|
paths[D_THEMES_IDX] = paths[D_USER_IDX] + THEMES_DIR DIR_SEP;
|
|
|
|
paths[F_DOLPHINCONFIG_IDX] = paths[D_CONFIG_IDX] + DOLPHIN_CONFIG;
|
|
|
|
paths[F_DEBUGGERCONFIG_IDX] = paths[D_CONFIG_IDX] + DEBUGGER_CONFIG;
|
|
|
|
paths[F_LOGGERCONFIG_IDX] = paths[D_CONFIG_IDX] + LOGGER_CONFIG;
|
|
|
|
paths[F_MAINLOG_IDX] = paths[D_LOGS_IDX] + MAIN_LOG;
|
|
|
|
paths[F_WIISYSCONF_IDX] = paths[D_WIISYSCONF_IDX] + WII_SYSCONF;
|
|
|
|
paths[F_RAMDUMP_IDX] = paths[D_DUMP_IDX] + RAM_DUMP;
|
|
|
|
paths[F_ARAMDUMP_IDX] = paths[D_DUMP_IDX] + ARAM_DUMP;
|
|
|
|
paths[F_FAKEVMEMDUMP_IDX] = paths[D_DUMP_IDX] + FAKEVMEM_DUMP;
|
|
|
|
paths[F_GCSRAM_IDX] = paths[D_GCUSER_IDX] + GC_SRAM;
|
2013-08-25 03:15:55 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case D_CONFIG_IDX:
|
2014-02-17 04:51:41 +00:00
|
|
|
paths[F_DOLPHINCONFIG_IDX] = paths[D_CONFIG_IDX] + DOLPHIN_CONFIG;
|
|
|
|
paths[F_DEBUGGERCONFIG_IDX] = paths[D_CONFIG_IDX] + DEBUGGER_CONFIG;
|
|
|
|
paths[F_LOGGERCONFIG_IDX] = paths[D_CONFIG_IDX] + LOGGER_CONFIG;
|
2013-08-25 03:15:55 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case D_GCUSER_IDX:
|
2014-02-17 04:51:41 +00:00
|
|
|
paths[F_GCSRAM_IDX] = paths[D_GCUSER_IDX] + GC_SRAM;
|
2013-08-25 03:15:55 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case D_DUMP_IDX:
|
2014-02-17 04:51:41 +00:00
|
|
|
paths[D_DUMPFRAMES_IDX] = paths[D_DUMP_IDX] + DUMP_FRAMES_DIR DIR_SEP;
|
|
|
|
paths[D_DUMPAUDIO_IDX] = paths[D_DUMP_IDX] + DUMP_AUDIO_DIR DIR_SEP;
|
|
|
|
paths[D_DUMPTEXTURES_IDX] = paths[D_DUMP_IDX] + DUMP_TEXTURES_DIR DIR_SEP;
|
|
|
|
paths[D_DUMPDSP_IDX] = paths[D_DUMP_IDX] + DUMP_DSP_DIR DIR_SEP;
|
|
|
|
paths[F_RAMDUMP_IDX] = paths[D_DUMP_IDX] + RAM_DUMP;
|
|
|
|
paths[F_ARAMDUMP_IDX] = paths[D_DUMP_IDX] + ARAM_DUMP;
|
|
|
|
paths[F_FAKEVMEMDUMP_IDX] = paths[D_DUMP_IDX] + FAKEVMEM_DUMP;
|
2013-08-25 03:15:55 +00:00
|
|
|
break;
|
|
|
|
case D_LOGS_IDX:
|
2014-02-17 04:51:41 +00:00
|
|
|
paths[D_MAILLOGS_IDX] = paths[D_LOGS_IDX] + MAIL_LOGS_DIR DIR_SEP;
|
|
|
|
paths[F_MAINLOG_IDX] = paths[D_LOGS_IDX] + MAIN_LOG;
|
2011-05-24 19:12:18 +00:00
|
|
|
}
|
|
|
|
|
2014-02-17 04:51:41 +00:00
|
|
|
paths[D_WIIUSER_IDX] = paths[D_WIIROOT_IDX] + DIR_SEP;
|
|
|
|
paths[D_WIIWC24_IDX] = paths[D_WIIUSER_IDX] + WII_WC24CONF_DIR DIR_SEP;
|
|
|
|
paths[D_WIISYSCONF_IDX] = paths[D_WIIUSER_IDX] + WII_SYSCONF_DIR + DIR_SEP;
|
|
|
|
paths[F_WIISYSCONF_IDX] = paths[D_WIISYSCONF_IDX] + WII_SYSCONF;
|
2011-05-24 19:12:18 +00:00
|
|
|
}
|
2013-08-25 05:35:32 +00:00
|
|
|
|
2011-03-01 03:06:14 +00:00
|
|
|
return paths[DirIDX];
|
2009-02-28 23:21:51 +00:00
|
|
|
}
|
|
|
|
|
2013-04-02 18:04:40 +00:00
|
|
|
std::string GetThemeDir(const std::string& theme_name)
|
2013-04-02 04:17:15 +00:00
|
|
|
{
|
2013-04-02 18:04:40 +00:00
|
|
|
std::string dir = File::GetUserPath(D_THEMES_IDX) + theme_name + "/";
|
2013-04-02 04:17:15 +00:00
|
|
|
|
|
|
|
// If theme does not exist in user's dir load from shared directory
|
|
|
|
if (!File::Exists(dir))
|
2013-09-12 01:55:16 +00:00
|
|
|
dir = GetSysDirectory() + THEMES_DIR "/" + theme_name + "/";
|
|
|
|
|
2013-04-02 04:17:15 +00:00
|
|
|
return dir;
|
|
|
|
}
|
|
|
|
|
2014-03-12 19:33:41 +00:00
|
|
|
bool WriteStringToFile(const std::string &str, const std::string& filename)
|
2009-04-12 10:21:40 +00:00
|
|
|
{
|
2013-11-04 11:33:41 +00:00
|
|
|
return File::IOFile(filename, "wb").WriteBytes(str.data(), str.size());
|
2009-04-12 10:21:40 +00:00
|
|
|
}
|
|
|
|
|
2014-03-12 19:33:41 +00:00
|
|
|
bool ReadFileToString(const std::string& filename, std::string &str)
|
2009-04-12 10:21:40 +00:00
|
|
|
{
|
2013-11-04 11:33:41 +00:00
|
|
|
File::IOFile file(filename, "rb");
|
2013-02-28 01:43:29 +00:00
|
|
|
auto const f = file.GetHandle();
|
|
|
|
|
2009-04-12 10:21:40 +00:00
|
|
|
if (!f)
|
|
|
|
return false;
|
2013-02-28 01:43:29 +00:00
|
|
|
|
2013-09-16 04:56:49 +00:00
|
|
|
size_t read_size;
|
2013-02-28 01:43:29 +00:00
|
|
|
str.resize(GetSize(f));
|
2013-09-16 04:56:49 +00: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 20:14:26 +00: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 20:14:26 +00:00
|
|
|
: m_file(nullptr), m_good(true)
|
2011-03-11 10:21:46 +00:00
|
|
|
{
|
|
|
|
Open(filename, openmode);
|
|
|
|
}
|
|
|
|
|
|
|
|
IOFile::~IOFile()
|
|
|
|
{
|
|
|
|
Close();
|
|
|
|
}
|
|
|
|
|
2013-02-17 19:30:04 +00:00
|
|
|
IOFile::IOFile(IOFile&& other)
|
2014-03-09 20:14:26 +00:00
|
|
|
: m_file(nullptr), m_good(true)
|
2013-02-17 19:30:04 +00:00
|
|
|
{
|
|
|
|
Swap(other);
|
|
|
|
}
|
|
|
|
|
2013-02-20 23:30:34 +00:00
|
|
|
IOFile& IOFile::operator=(IOFile&& other)
|
2013-02-17 19:30:04 +00:00
|
|
|
{
|
2013-09-01 03:44:26 +00:00
|
|
|
Swap(other);
|
2013-02-17 19:30:04 +00: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-28 01:43:29 +00: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 20:14:26 +00: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 20:14:26 +00: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;
|
|
|
|
}
|
|
|
|
|
|
|
|
u64 IOFile::Tell()
|
2013-03-20 01:51:12 +00: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
|