2009-07-28 21:32:10 +00:00
|
|
|
// Copyright (C) 2003 Dolphin Project.
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, version 2.0.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official SVN repository and contact information can be found at
|
|
|
|
// http://code.google.com/p/dolphin-emu/
|
|
|
|
|
|
|
|
#include "Common.h"
|
|
|
|
#include "FileUtil.h"
|
2009-07-12 21:58:32 +00:00
|
|
|
#include "StringUtil.h"
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
2009-01-16 02:58:34 +00:00
|
|
|
#include <windows.h>
|
2008-12-08 05:30:24 +00:00
|
|
|
#include <shlobj.h> // for SHGetFolderPath
|
|
|
|
#include <shellapi.h>
|
|
|
|
#include <commdlg.h> // for GetSaveFileName
|
|
|
|
#include <io.h>
|
|
|
|
#include <direct.h> // getcwd
|
|
|
|
#else
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#endif
|
|
|
|
|
2009-02-28 23:21:51 +00:00
|
|
|
#if defined(__APPLE__)
|
|
|
|
#include <CoreFoundation/CFString.h>
|
2010-05-06 10:06:15 +00:00
|
|
|
#include <CoreFoundation/CFURL.h>
|
2009-02-28 23:21:51 +00:00
|
|
|
#include <CoreFoundation/CFBundle.h>
|
|
|
|
#include <sys/param.h>
|
|
|
|
#endif
|
|
|
|
|
2008-12-08 05:30:24 +00:00
|
|
|
#include <fstream>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
|
|
|
#ifndef S_ISDIR
|
|
|
|
#define S_ISDIR(m) (((m)&S_IFMT) == S_IFDIR)
|
|
|
|
#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.
|
2010-05-30 09:41:38 +00:00
|
|
|
static char *StripTailDirSlashes(char *fname)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2009-02-28 01:26:56 +00:00
|
|
|
int len = (int)strlen(fname);
|
|
|
|
int i = len - 1;
|
|
|
|
if (len > 1)
|
|
|
|
while (fname[i] == DIR_SEP_CHR)
|
|
|
|
fname[i--] = '\0';
|
|
|
|
return fname;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
2009-02-28 01:26:56 +00:00
|
|
|
// Returns true if file filename exists
|
2008-12-08 05:30:24 +00:00
|
|
|
bool Exists(const char *filename)
|
|
|
|
{
|
2010-02-01 18:22:58 +00:00
|
|
|
struct stat64 file_info;
|
2009-02-28 01:26:56 +00:00
|
|
|
|
2009-03-28 08:57:34 +00:00
|
|
|
char *copy = StripTailDirSlashes(__strdup(filename));
|
2010-02-01 18:22:58 +00:00
|
|
|
int result = stat64(copy, &file_info);
|
2009-02-28 01:26:56 +00:00
|
|
|
free(copy);
|
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
|
2008-12-08 05:30:24 +00:00
|
|
|
bool IsDirectory(const char *filename)
|
|
|
|
{
|
2010-02-08 09:57:52 +00:00
|
|
|
struct stat64 file_info;
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2009-03-28 08:57:34 +00:00
|
|
|
char *copy = StripTailDirSlashes(__strdup(filename));
|
2009-02-28 01:26:56 +00:00
|
|
|
|
2010-02-08 09:57:52 +00:00
|
|
|
int result = stat64(copy, &file_info);
|
2009-02-28 01:26:56 +00:00
|
|
|
free(copy);
|
|
|
|
|
|
|
|
if (result < 0) {
|
|
|
|
WARN_LOG(COMMON, "IsDirectory: stat failed on %s: %s",
|
|
|
|
filename, 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
|
2008-12-08 05:30:24 +00:00
|
|
|
bool Delete(const char *filename)
|
|
|
|
{
|
2009-10-31 09:17:37 +00:00
|
|
|
INFO_LOG(COMMON, "Delete: file %s", filename);
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2009-02-28 01:26:56 +00:00
|
|
|
// Return true because we care about the file no
|
|
|
|
// being there, not the actual delete.
|
|
|
|
if (!Exists(filename)) {
|
|
|
|
WARN_LOG(COMMON, "Delete: %s does not exists", filename);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// We can't delete a directory
|
|
|
|
if (IsDirectory(filename)) {
|
|
|
|
WARN_LOG(COMMON, "Delete: %s is a directory", filename);
|
|
|
|
return false;
|
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
2009-02-28 01:26:56 +00:00
|
|
|
if (!DeleteFile(filename)) {
|
|
|
|
WARN_LOG(COMMON, "Delete: DeleteFile failed on %s: %s",
|
|
|
|
filename, GetLastErrorMsg());
|
|
|
|
return false;
|
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
#else
|
2009-02-28 01:26:56 +00:00
|
|
|
if (unlink(filename) == -1) {
|
2010-04-08 16:59:35 +00:00
|
|
|
WARN_LOG(COMMON, "Delete: unlink failed on %s: %s",
|
2009-02-28 01:26:56 +00:00
|
|
|
filename, GetLastErrorMsg());
|
|
|
|
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.
|
|
|
|
bool CreateDir(const char *path)
|
|
|
|
{
|
2009-10-31 09:17:37 +00:00
|
|
|
INFO_LOG(COMMON, "CreateDir: directory %s", path);
|
2008-12-08 05:30:24 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
if (::CreateDirectory(path, NULL))
|
|
|
|
return true;
|
|
|
|
DWORD error = GetLastError();
|
2009-02-28 01:26:56 +00:00
|
|
|
if (error == ERROR_ALREADY_EXISTS) {
|
2010-04-06 15:02:09 +00:00
|
|
|
WARN_LOG(COMMON, "CreateDir: CreateDirectory failed on %s: already exists", path);
|
2008-12-08 05:30:24 +00:00
|
|
|
return true;
|
|
|
|
}
|
2009-02-28 01:26:56 +00:00
|
|
|
ERROR_LOG(COMMON, "CreateDir: CreateDirectory failed on %s: %i", path, error);
|
2008-12-08 05:30:24 +00:00
|
|
|
return false;
|
|
|
|
#else
|
|
|
|
if (mkdir(path, 0755) == 0)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
int err = errno;
|
|
|
|
|
2009-02-28 01:26:56 +00:00
|
|
|
if (err == EEXIST) {
|
2010-04-06 15:02:09 +00:00
|
|
|
WARN_LOG(COMMON, "CreateDir: mkdir failed on %s: already exists", path);
|
2008-12-08 05:30:24 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-02-28 01:26:56 +00:00
|
|
|
ERROR_LOG(COMMON, "CreateDir: mkdir failed on %s: %s", path, 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
|
|
|
|
bool CreateFullPath(const char *fullPath)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2009-02-28 01:26:56 +00:00
|
|
|
int panicCounter = 100;
|
2009-10-31 09:17:37 +00:00
|
|
|
INFO_LOG(COMMON, "CreateFullPath: path %s", fullPath);
|
2009-02-28 01:26:56 +00:00
|
|
|
|
2009-03-03 00:21:08 +00:00
|
|
|
if (File::Exists(fullPath)) {
|
2009-10-31 09:17:37 +00:00
|
|
|
INFO_LOG(COMMON, "CreateFullPath: path exists %s", fullPath);
|
2009-03-03 00:21:08 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-04-16 17:24:06 +00:00
|
|
|
// safety check to ensure we have good dir seperators
|
|
|
|
std::string strFullPath(fullPath);
|
|
|
|
NormalizeDirSep(&strFullPath);
|
|
|
|
|
|
|
|
const char *position = strFullPath.c_str();
|
2009-02-28 01:26:56 +00:00
|
|
|
while (true) {
|
2009-04-16 17:24:06 +00:00
|
|
|
// Find next sub path
|
2009-02-28 01:26:56 +00:00
|
|
|
position = strchr(position, DIR_SEP_CHR);
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2009-02-28 01:26:56 +00:00
|
|
|
// we're done, yay!
|
|
|
|
if (! position)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
position++;
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
// Create next sub path
|
2009-04-16 17:24:06 +00:00
|
|
|
int sLen = (int)(position - strFullPath.c_str());
|
2009-02-28 01:26:56 +00:00
|
|
|
if (sLen > 0) {
|
2009-04-16 17:24:06 +00:00
|
|
|
char *subPath = strndup(strFullPath.c_str(), sLen);
|
2009-02-28 01:26:56 +00:00
|
|
|
if (!File::IsDirectory(subPath)) {
|
|
|
|
File::CreateDir(subPath);
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
2009-02-28 01:26:56 +00:00
|
|
|
free(subPath);
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// A safety check
|
2009-02-28 01:26:56 +00:00
|
|
|
panicCounter--;
|
|
|
|
if (panicCounter <= 0) {
|
2009-04-16 17:24:06 +00:00
|
|
|
ERROR_LOG(COMMON, "CreateFullPath: directory structure too deep");
|
2008-12-08 05:30:24 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-02-28 01:26:56 +00:00
|
|
|
// Deletes a directory filename, returns true on success
|
2008-12-08 05:30:24 +00:00
|
|
|
bool DeleteDir(const char *filename)
|
|
|
|
{
|
2009-02-28 01:26:56 +00:00
|
|
|
INFO_LOG(COMMON, "DeleteDir: directory %s", filename);
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2009-02-28 01:26:56 +00:00
|
|
|
// check if a directory
|
|
|
|
if (!File::IsDirectory(filename)) {
|
|
|
|
ERROR_LOG(COMMON, "DeleteDir: Not a directory %s",
|
|
|
|
filename);
|
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
|
2009-02-28 01:26:56 +00:00
|
|
|
if (::RemoveDirectory(filename))
|
|
|
|
return true;
|
2008-12-08 05:30:24 +00:00
|
|
|
#else
|
2009-02-28 01:26:56 +00:00
|
|
|
if (rmdir(filename) == 0)
|
|
|
|
return true;
|
2008-12-08 05:30:24 +00:00
|
|
|
#endif
|
2009-02-28 01:26:56 +00:00
|
|
|
ERROR_LOG(COMMON, "DeleteDir: %s: %s",
|
|
|
|
filename, GetLastErrorMsg());
|
|
|
|
|
|
|
|
return false;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
2009-02-28 01:26:56 +00:00
|
|
|
// renames file srcFilename to destFilename, returns true on success
|
2008-12-08 05:30:24 +00:00
|
|
|
bool Rename(const char *srcFilename, const char *destFilename)
|
|
|
|
{
|
2009-02-28 01:26:56 +00:00
|
|
|
INFO_LOG(COMMON, "Rename: %s --> %s",
|
|
|
|
srcFilename, destFilename);
|
|
|
|
if (rename(srcFilename, destFilename) == 0)
|
|
|
|
return true;
|
|
|
|
ERROR_LOG(COMMON, "Rename: failed %s --> %s: %s",
|
|
|
|
srcFilename, destFilename, GetLastErrorMsg());
|
|
|
|
return false;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
2009-02-28 01:26:56 +00:00
|
|
|
// copies file srcFilename to destFilename, returns true on success
|
2008-12-08 05:30:24 +00:00
|
|
|
bool Copy(const char *srcFilename, const char *destFilename)
|
|
|
|
{
|
2009-02-28 01:26:56 +00:00
|
|
|
INFO_LOG(COMMON, "Copy: %s --> %s",
|
|
|
|
srcFilename, destFilename);
|
2009-01-15 06:48:15 +00:00
|
|
|
#ifdef _WIN32
|
2009-02-28 01:26:56 +00:00
|
|
|
if (CopyFile(srcFilename, destFilename, FALSE))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
ERROR_LOG(COMMON, "Copy: failed %s --> %s: %s",
|
|
|
|
srcFilename, destFilename, GetLastErrorMsg());
|
|
|
|
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
|
|
|
|
FILE *input = fopen(srcFilename, "rb");
|
|
|
|
if (!input)
|
|
|
|
{
|
|
|
|
ERROR_LOG(COMMON, "Copy: input failed %s --> %s: %s",
|
|
|
|
srcFilename, destFilename, GetLastErrorMsg());
|
2008-12-08 05:30:24 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-02-28 01:26:56 +00:00
|
|
|
// open output file
|
|
|
|
FILE *output = fopen(destFilename, "wb");
|
|
|
|
if (!output)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2009-02-28 01:26:56 +00:00
|
|
|
fclose(input);
|
|
|
|
ERROR_LOG(COMMON, "Copy: output failed %s --> %s: %s",
|
|
|
|
srcFilename, destFilename, GetLastErrorMsg());
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
if (ferror(input) != 0) {
|
|
|
|
ERROR_LOG(COMMON,
|
|
|
|
"Copy: failed reading from source, %s --> %s: %s",
|
|
|
|
srcFilename, destFilename, GetLastErrorMsg());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
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)
|
|
|
|
{
|
|
|
|
ERROR_LOG(COMMON,
|
|
|
|
"Copy: failed writing to output, %s --> %s: %s",
|
|
|
|
srcFilename, destFilename, GetLastErrorMsg());
|
|
|
|
return false;
|
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
2009-02-28 01:26:56 +00:00
|
|
|
// close flushs
|
|
|
|
fclose(input);
|
|
|
|
fclose(output);
|
|
|
|
return true;
|
2008-12-08 05:30:24 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2009-02-28 01:26:56 +00:00
|
|
|
// Returns the size of filename (64bit)
|
2008-12-08 05:30:24 +00:00
|
|
|
u64 GetSize(const char *filename)
|
|
|
|
{
|
2009-02-28 01:26:56 +00:00
|
|
|
if (!Exists(filename)) {
|
|
|
|
WARN_LOG(COMMON, "GetSize: failed %s: No such file"
|
|
|
|
,filename);
|
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
|
|
|
|
2009-02-28 01:26:56 +00:00
|
|
|
if (IsDirectory(filename)) {
|
|
|
|
WARN_LOG(COMMON, "GetSize: failed %s: is a directory"
|
|
|
|
,filename);
|
|
|
|
return 0;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
2009-02-28 01:26:56 +00:00
|
|
|
// on windows it's actually _stat64 defined in commonFuncs
|
|
|
|
struct stat64 buf;
|
|
|
|
if (stat64(filename, &buf) == 0) {
|
2009-09-13 09:03:38 +00:00
|
|
|
DEBUG_LOG(COMMON, "GetSize: %s: %ld", filename, 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",
|
|
|
|
filename, GetLastErrorMsg());
|
|
|
|
return 0;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
2009-02-28 01:26:56 +00:00
|
|
|
// creates an empty file filename, returns true on success
|
|
|
|
bool CreateEmptyFile(const char *filename)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2009-02-28 01:26:56 +00:00
|
|
|
INFO_LOG(COMMON, "CreateEmptyFile: %s", filename);
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2009-02-28 01:26:56 +00:00
|
|
|
FILE *pFile = fopen(filename, "wb");
|
|
|
|
if (!pFile) {
|
|
|
|
ERROR_LOG(COMMON, "CreateEmptyFile: failed %s: %s",
|
|
|
|
filename, GetLastErrorMsg());
|
|
|
|
return false;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
2009-02-28 01:26:56 +00:00
|
|
|
fclose(pFile);
|
|
|
|
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
|
|
|
|
u32 ScanDirectoryTree(const char *directory, FSTEntry& parentEntry)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2009-02-28 01:26:56 +00:00
|
|
|
INFO_LOG(COMMON, "ScanDirectoryTree: directory %s", directory);
|
|
|
|
// 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
|
|
|
char *virtualName;
|
|
|
|
#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;
|
|
|
|
char searchName[MAX_PATH + 3];
|
|
|
|
strncpy(searchName, directory, MAX_PATH);
|
|
|
|
strcat(searchName, "\\*");
|
|
|
|
|
|
|
|
HANDLE hFind = FindFirstFile(searchName, &ffd);
|
|
|
|
if (hFind == INVALID_HANDLE_VALUE) {
|
|
|
|
FindClose(hFind);
|
|
|
|
return foundEntries;
|
|
|
|
}
|
|
|
|
// windows loop
|
|
|
|
do {
|
|
|
|
FSTEntry entry;
|
|
|
|
virtualName = ffd.cFileName;
|
|
|
|
#else
|
|
|
|
struct dirent dirent, *result = NULL;
|
|
|
|
|
|
|
|
DIR *dirp = opendir(directory);
|
|
|
|
if (!dirp)
|
|
|
|
return 0;
|
2009-01-15 06:48:15 +00:00
|
|
|
|
2009-02-28 01:26:56 +00:00
|
|
|
// non windows loop
|
2008-12-29 02:11:56 +00:00
|
|
|
while (!readdir_r(dirp, &dirent, &result) && result) {
|
|
|
|
FSTEntry entry;
|
2009-02-28 01:26:56 +00:00
|
|
|
virtualName = result->d_name;
|
|
|
|
#endif
|
|
|
|
// check for "." and ".."
|
|
|
|
if (((virtualName[0] == '.') && (virtualName[1] == '\0')) ||
|
|
|
|
((virtualName[0] == '.') && (virtualName[1] == '.') &&
|
|
|
|
(virtualName[2] == '\0')))
|
|
|
|
continue;
|
|
|
|
entry.virtualName = virtualName;
|
|
|
|
entry.physicalName = directory;
|
|
|
|
entry.physicalName += DIR_SEP + entry.virtualName;
|
|
|
|
|
2008-12-29 02:11:56 +00:00
|
|
|
if (IsDirectory(entry.physicalName.c_str())) {
|
|
|
|
entry.isDirectory = true;
|
2009-02-28 01:26:56 +00:00
|
|
|
// is a directory, lets go inside
|
|
|
|
entry.size = ScanDirectoryTree(entry.physicalName.c_str(), entry);
|
|
|
|
foundEntries += (u32)entry.size;
|
|
|
|
} else { // 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
|
|
|
|
parentEntry.children.push_back(entry);
|
|
|
|
#ifdef _WIN32
|
|
|
|
} 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
|
|
|
}
|
|
|
|
|
2009-02-28 01:26:56 +00:00
|
|
|
|
|
|
|
// deletes the given directory and anything under it. Returns true on
|
|
|
|
// success.
|
|
|
|
bool DeleteDirRecursively(const char *directory)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2009-02-28 01:26:56 +00:00
|
|
|
INFO_LOG(COMMON, "DeleteDirRecursively: %s", directory);
|
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;
|
2009-02-28 01:26:56 +00:00
|
|
|
char searchName[MAX_PATH + 3] = {0};
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2009-02-28 01:26:56 +00:00
|
|
|
strncpy(searchName, directory, MAX_PATH);
|
|
|
|
strcat(searchName, "\\*");
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2009-02-28 01:26:56 +00:00
|
|
|
HANDLE hFind = FindFirstFile(searchName, &ffd);
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2009-02-28 01:26:56 +00:00
|
|
|
if (hFind == INVALID_HANDLE_VALUE) {
|
|
|
|
FindClose(hFind);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// windows loop
|
|
|
|
do {
|
|
|
|
char *virtualName = ffd.cFileName;
|
|
|
|
#else
|
|
|
|
struct dirent dirent, *result = NULL;
|
|
|
|
DIR *dirp = opendir(directory);
|
|
|
|
if (!dirp)
|
|
|
|
return false;
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2009-02-28 01:26:56 +00:00
|
|
|
// non windows loop
|
|
|
|
while (!readdir_r(dirp, &dirent, &result) && result) {
|
|
|
|
char *virtualName = result->d_name;
|
|
|
|
#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')) ||
|
|
|
|
((virtualName[0] == '.') && (virtualName[1] == '.') &&
|
|
|
|
(virtualName[2] == '\0')))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
char newPath[MAX_PATH];
|
|
|
|
sprintf(newPath, "%s%c%s", directory, DIR_SEP_CHR, virtualName);
|
|
|
|
if (IsDirectory(newPath)) {
|
|
|
|
if (!DeleteDirRecursively(newPath))
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
if (!File::Delete(newPath))
|
|
|
|
return false;
|
|
|
|
}
|
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);
|
|
|
|
|
|
|
|
return true;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
2010-02-02 21:56:29 +00:00
|
|
|
//Create directory and copy contents (does not overwrite existing files)
|
|
|
|
void CopyDir(const char *source_path, const char *dest_path)
|
|
|
|
{
|
2010-05-12 04:26:32 +00:00
|
|
|
#ifndef _WIN32
|
2010-04-06 15:02:09 +00:00
|
|
|
if (!strcmp(source_path, dest_path)) return;
|
|
|
|
if (!File::Exists(source_path)) return;
|
|
|
|
if (!File::Exists(dest_path)) File::CreateFullPath(dest_path);
|
|
|
|
|
|
|
|
char *virtualName;
|
|
|
|
struct dirent dirent, *result = NULL;
|
|
|
|
DIR *dirp = opendir(source_path);
|
|
|
|
if (!dirp) return;
|
|
|
|
|
|
|
|
while (!readdir_r(dirp, &dirent, &result) && result)
|
|
|
|
{
|
|
|
|
virtualName = result->d_name;
|
|
|
|
// check for "." and ".."
|
|
|
|
if (((virtualName[0] == '.') && (virtualName[1] == '\0')) ||
|
|
|
|
((virtualName[0] == '.') && (virtualName[1] == '.') &&
|
|
|
|
(virtualName[2] == '\0')))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
char source[FILENAME_MAX], dest[FILENAME_MAX];
|
|
|
|
sprintf(source, "%s%s", source_path, virtualName);
|
|
|
|
sprintf(dest, "%s%s", dest_path, virtualName);
|
|
|
|
if (IsDirectory(source))
|
|
|
|
{
|
|
|
|
const unsigned int srclen = strlen(source);
|
|
|
|
const unsigned int destlen = strlen(dest);
|
|
|
|
source[srclen] = '/'; source[srclen+1] = '\0';
|
|
|
|
dest[destlen] = '/'; dest[destlen+1] = '\0';
|
|
|
|
if (!File::Exists(dest)) File::CreateFullPath(dest);
|
|
|
|
CopyDir(source, dest);
|
|
|
|
}
|
|
|
|
else if (!File::Exists(dest)) File::Copy(source, dest);
|
|
|
|
}
|
|
|
|
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;
|
2009-02-28 01:26:56 +00:00
|
|
|
// Get the current working directory (getcwd uses malloc)
|
2009-03-28 08:57:34 +00:00
|
|
|
if (!(dir = __getcwd(NULL, 0))) {
|
2009-02-28 01:26:56 +00:00
|
|
|
|
|
|
|
ERROR_LOG(COMMON, "GetCurrentDirectory failed: %s",
|
|
|
|
GetLastErrorMsg());
|
2009-08-06 06:18:22 +00:00
|
|
|
return NULL;
|
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
|
2009-07-30 07:09:26 +00:00
|
|
|
bool SetCurrentDir(const char *_rDirectory)
|
2009-02-24 07:18:08 +00:00
|
|
|
{
|
2009-03-28 08:57:34 +00:00
|
|
|
return __chdir(_rDirectory) == 0;
|
2009-02-24 07:18:08 +00:00
|
|
|
}
|
|
|
|
|
2009-02-28 23:21:51 +00:00
|
|
|
#if defined(__APPLE__)
|
|
|
|
std::string GetBundleDirectory()
|
|
|
|
{
|
|
|
|
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);
|
2009-05-04 19:48:00 +00:00
|
|
|
#if defined(HAVE_WX) && HAVE_WX
|
2009-02-28 23:21:51 +00:00
|
|
|
return AppBundlePath;
|
2009-05-04 19:48:00 +00:00
|
|
|
#else
|
|
|
|
std::string NoWxBundleDirectory;
|
|
|
|
NoWxBundleDirectory=AppBundlePath;
|
|
|
|
NoWxBundleDirectory+=DIR_SEP;
|
|
|
|
NoWxBundleDirectory+="Dolphin.app";
|
|
|
|
return NoWxBundleDirectory;
|
|
|
|
#endif
|
2009-02-28 23:21:51 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
std::string GetPluginsDirectory()
|
|
|
|
{
|
|
|
|
std::string pluginsDir;
|
|
|
|
|
|
|
|
#if defined (__APPLE__)
|
2009-03-01 23:06:29 +00:00
|
|
|
pluginsDir = GetBundleDirectory();
|
|
|
|
pluginsDir += DIR_SEP;
|
|
|
|
pluginsDir += PLUGINS_DIR;
|
2009-02-28 23:21:51 +00:00
|
|
|
#else
|
2010-06-05 18:52:56 +00:00
|
|
|
pluginsDir = PLUGINS_DIR;
|
2009-02-28 23:21:51 +00:00
|
|
|
#endif
|
2009-03-01 00:12:05 +00:00
|
|
|
pluginsDir += DIR_SEP;
|
2009-09-21 20:28:17 +00:00
|
|
|
|
2009-02-28 23:21:51 +00:00
|
|
|
INFO_LOG(COMMON, "GetPluginsDirectory: Setting to %s:", pluginsDir.c_str());
|
|
|
|
return pluginsDir;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string GetSysDirectory()
|
|
|
|
{
|
|
|
|
std::string sysDir;
|
|
|
|
|
|
|
|
#if defined (__APPLE__)
|
|
|
|
sysDir = GetBundleDirectory();
|
|
|
|
sysDir += DIR_SEP;
|
|
|
|
sysDir += SYSDATA_DIR;
|
|
|
|
#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
|
|
|
|
2010-02-02 21:56:29 +00:00
|
|
|
// Returns a pointer to 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).
|
2010-02-02 21:56:29 +00:00
|
|
|
const char *GetUserPath(int DirIDX)
|
2009-02-28 23:21:51 +00:00
|
|
|
{
|
2010-02-02 21:56:29 +00:00
|
|
|
static char UserDir[MAX_PATH] = {0};
|
|
|
|
static char GCUserDir[MAX_PATH] = {0};
|
|
|
|
static char WiiUserDir[MAX_PATH] = {0};
|
2010-02-03 03:27:32 +00:00
|
|
|
static char WiiRootDir[MAX_PATH] = {0};
|
2010-02-02 21:56:29 +00:00
|
|
|
static char ConfigDir[MAX_PATH] = {0};
|
|
|
|
static char GameConfigDir[MAX_PATH] = {0};
|
|
|
|
static char MapsDir[MAX_PATH] = {0};
|
|
|
|
static char CacheDir[MAX_PATH] = {0};
|
|
|
|
static char ShaderCacheDir[MAX_PATH] = {0};
|
|
|
|
static char ShadersDir[MAX_PATH] = {0};
|
|
|
|
static char StateSavesDir[MAX_PATH] = {0};
|
|
|
|
static char ScreenShotsDir[MAX_PATH] = {0};
|
|
|
|
static char HiresTexturesDir[MAX_PATH] = {0};
|
|
|
|
static char DumpDir[MAX_PATH] = {0};
|
|
|
|
static char DumpFramesDir[MAX_PATH] = {0};
|
|
|
|
static char DumpTexturesDir[MAX_PATH] = {0};
|
|
|
|
static char DumpDSPDir[MAX_PATH] = {0};
|
|
|
|
static char LogsDir[MAX_PATH] = {0};
|
|
|
|
static char MailLogsDir[MAX_PATH] = {0};
|
|
|
|
static char WiiSYSCONFDir[MAX_PATH] = {0};
|
|
|
|
static char WiiMenuDir[MAX_PATH] = {0};
|
|
|
|
static char DolphinConfig[MAX_PATH] = {0};
|
|
|
|
static char DebuggerConfig[MAX_PATH] = {0};
|
|
|
|
static char LoggerConfig[MAX_PATH] = {0};
|
|
|
|
static char MainLog[MAX_PATH] = {0};
|
|
|
|
static char WiiSYSCONF[MAX_PATH] = {0};
|
|
|
|
static char RamDump[MAX_PATH] = {0};
|
|
|
|
static char ARamDump[MAX_PATH] = {0};
|
|
|
|
static char GCSRam[MAX_PATH] = {0};
|
|
|
|
|
|
|
|
// Set up all paths and files on the first run
|
|
|
|
if (strlen(UserDir) == 0)
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
// Keep the directory setup the way it was on windows
|
|
|
|
snprintf(UserDir, sizeof(UserDir), ROOT_DIR DIR_SEP USERDATA_DIR DIR_SEP);
|
2010-05-12 04:26:32 +00:00
|
|
|
#elif defined (__linux__)
|
2010-06-13 14:52:11 +00:00
|
|
|
if (File::Exists(ROOT_DIR DIR_SEP USERDATA_DIR))
|
|
|
|
snprintf(UserDir, sizeof(UserDir), ROOT_DIR DIR_SEP USERDATA_DIR DIR_SEP);
|
|
|
|
else
|
2010-05-12 04:26:32 +00:00
|
|
|
snprintf(UserDir, sizeof(UserDir), "%s" DIR_SEP DOLPHIN_DATA_DIR DIR_SEP, getenv("HOME"));
|
|
|
|
#else
|
|
|
|
snprintf(UserDir, sizeof(UserDir), "%s" DIR_SEP DOLPHIN_DATA_DIR DIR_SEP, getenv("HOME"));
|
2009-02-28 23:21:51 +00:00
|
|
|
#endif
|
2010-02-02 21:56:29 +00:00
|
|
|
INFO_LOG(COMMON, "GetUserPath: Setting user directory to %s:", UserDir);
|
|
|
|
|
|
|
|
snprintf(GCUserDir, sizeof(GCUserDir), "%s" GC_USER_DIR DIR_SEP, UserDir);
|
|
|
|
snprintf(WiiUserDir, sizeof(WiiUserDir), "%s" WII_USER_DIR DIR_SEP, UserDir);
|
2010-02-03 03:27:32 +00:00
|
|
|
snprintf(WiiRootDir, sizeof(WiiRootDir), "%s" WII_USER_DIR, UserDir);
|
2010-02-02 21:56:29 +00:00
|
|
|
snprintf(ConfigDir, sizeof(ConfigDir), "%s" CONFIG_DIR DIR_SEP, UserDir);
|
|
|
|
snprintf(GameConfigDir, sizeof(GameConfigDir), "%s" GAMECONFIG_DIR DIR_SEP, UserDir);
|
|
|
|
snprintf(MapsDir, sizeof(MapsDir), "%s" MAPS_DIR DIR_SEP, UserDir);
|
|
|
|
snprintf(CacheDir, sizeof(CacheDir), "%s" CACHE_DIR DIR_SEP, UserDir);
|
|
|
|
snprintf(ShaderCacheDir, sizeof(ShaderCacheDir), "%s" SHADERCACHE_DIR DIR_SEP, UserDir);
|
|
|
|
snprintf(ShadersDir, sizeof(ShadersDir), "%s" SHADERS_DIR DIR_SEP, UserDir);
|
|
|
|
snprintf(StateSavesDir, sizeof(StateSavesDir), "%s" STATESAVES_DIR DIR_SEP, UserDir);
|
|
|
|
snprintf(ScreenShotsDir, sizeof(ScreenShotsDir), "%s" SCREENSHOTS_DIR DIR_SEP, UserDir);
|
|
|
|
snprintf(HiresTexturesDir, sizeof(HiresTexturesDir), "%s" HIRES_TEXTURES_DIR DIR_SEP, UserDir);
|
|
|
|
snprintf(DumpDir, sizeof(DumpDir), "%s" DUMP_DIR DIR_SEP, UserDir);
|
|
|
|
snprintf(DumpFramesDir, sizeof(DumpFramesDir), "%s" DUMP_FRAMES_DIR DIR_SEP, UserDir);
|
|
|
|
snprintf(DumpTexturesDir, sizeof(DumpTexturesDir), "%s" DUMP_TEXTURES_DIR DIR_SEP, UserDir);
|
|
|
|
snprintf(DumpDSPDir, sizeof(DumpDSPDir), "%s" DUMP_DSP_DIR DIR_SEP, UserDir);
|
|
|
|
snprintf(LogsDir, sizeof(LogsDir), "%s" LOGS_DIR DIR_SEP, UserDir);
|
|
|
|
snprintf(MailLogsDir, sizeof(MailLogsDir), "%s" MAIL_LOGS_DIR DIR_SEP, UserDir);
|
|
|
|
snprintf(WiiSYSCONFDir, sizeof(WiiSYSCONFDir), "%s" WII_SYSCONF_DIR DIR_SEP, UserDir);
|
|
|
|
snprintf(WiiMenuDir, sizeof(WiiMenuDir), "%s" WII_MENU_DIR DIR_SEP, UserDir);
|
|
|
|
snprintf(DolphinConfig, sizeof(DolphinConfig), "%s" DOLPHIN_CONFIG, ConfigDir);
|
|
|
|
snprintf(DebuggerConfig, sizeof(DebuggerConfig), "%s" DEBUGGER_CONFIG, ConfigDir);
|
|
|
|
snprintf(LoggerConfig, sizeof(LoggerConfig), "%s" LOGGER_CONFIG, ConfigDir);
|
|
|
|
snprintf(MainLog, sizeof(MainLog), "%s" MAIN_LOG, LogsDir);
|
|
|
|
snprintf(WiiSYSCONF, sizeof(WiiSYSCONF), "%s" WII_SYSCONF, WiiSYSCONFDir);
|
|
|
|
snprintf(RamDump, sizeof(RamDump), "%s" RAM_DUMP, DumpDir);
|
|
|
|
snprintf(ARamDump, sizeof(ARamDump), "%s" ARAM_DUMP, DumpDir);
|
|
|
|
snprintf(GCSRam, sizeof(GCSRam), "%s" GC_SRAM, GCUserDir);
|
|
|
|
}
|
|
|
|
switch (DirIDX)
|
|
|
|
{
|
|
|
|
case D_USER_IDX:
|
|
|
|
return UserDir;
|
|
|
|
case D_GCUSER_IDX:
|
|
|
|
return GCUserDir;
|
|
|
|
case D_WIIUSER_IDX:
|
|
|
|
return WiiUserDir;
|
2010-02-03 03:27:32 +00:00
|
|
|
case D_WIIROOT_IDX:
|
|
|
|
return WiiRootDir;
|
2010-02-02 21:56:29 +00:00
|
|
|
case D_CONFIG_IDX:
|
|
|
|
return ConfigDir;
|
|
|
|
case D_GAMECONFIG_IDX:
|
|
|
|
return GameConfigDir;
|
|
|
|
case D_MAPS_IDX:
|
|
|
|
return MapsDir;
|
|
|
|
case D_CACHE_IDX:
|
|
|
|
return CacheDir;
|
|
|
|
case D_SHADERCACHE_IDX:
|
|
|
|
return ShaderCacheDir;
|
|
|
|
case D_SHADERS_IDX:
|
|
|
|
return ShadersDir;
|
|
|
|
case D_STATESAVES_IDX:
|
|
|
|
return StateSavesDir;
|
|
|
|
case D_SCREENSHOTS_IDX:
|
|
|
|
return ScreenShotsDir;
|
|
|
|
case D_HIRESTEXTURES_IDX:
|
|
|
|
return HiresTexturesDir;
|
|
|
|
case D_DUMP_IDX:
|
|
|
|
return DumpDir;
|
|
|
|
case D_DUMPFRAMES_IDX:
|
|
|
|
return DumpFramesDir;
|
|
|
|
case D_DUMPTEXTURES_IDX:
|
|
|
|
return DumpTexturesDir;
|
|
|
|
case D_DUMPDSP_IDX:
|
|
|
|
return DumpDSPDir;
|
|
|
|
case D_LOGS_IDX:
|
|
|
|
return LogsDir;
|
|
|
|
case D_MAILLOGS_IDX:
|
|
|
|
return MailLogsDir;
|
|
|
|
case D_WIISYSCONF_IDX:
|
|
|
|
return WiiSYSCONFDir;
|
|
|
|
case D_WIIMENU_IDX:
|
|
|
|
return WiiMenuDir;
|
|
|
|
case F_DOLPHINCONFIG_IDX:
|
|
|
|
return DolphinConfig;
|
|
|
|
case F_DEBUGGERCONFIG_IDX:
|
|
|
|
return DebuggerConfig;
|
|
|
|
case F_LOGGERCONFIG_IDX:
|
|
|
|
return LoggerConfig;
|
|
|
|
case F_MAINLOG_IDX:
|
|
|
|
return MainLog;
|
|
|
|
case F_WIISYSCONF_IDX:
|
|
|
|
return WiiSYSCONF;
|
|
|
|
case F_RAMDUMP_IDX:
|
|
|
|
return RamDump;
|
|
|
|
case F_ARAMDUMP_IDX:
|
|
|
|
return ARamDump;
|
|
|
|
case F_GCSRAM_IDX:
|
|
|
|
return GCSRam;
|
|
|
|
default:
|
|
|
|
return NULL;
|
|
|
|
}
|
2009-02-28 23:21:51 +00:00
|
|
|
}
|
|
|
|
|
2009-04-12 13:12:42 +00:00
|
|
|
bool WriteStringToFile(bool text_file, const std::string &str, const char *filename)
|
2009-04-12 10:21:40 +00:00
|
|
|
{
|
|
|
|
FILE *f = fopen(filename, text_file ? "w" : "wb");
|
|
|
|
if (!f)
|
|
|
|
return false;
|
2009-04-12 13:12:42 +00:00
|
|
|
size_t len = str.size();
|
|
|
|
if (len != fwrite(str.data(), 1, str.size(), f))
|
2009-04-12 10:21:40 +00:00
|
|
|
{
|
|
|
|
fclose(f);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
fclose(f);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-04-25 10:38:26 +00:00
|
|
|
bool ReadFileToString(bool text_file, const char *filename, std::string &str)
|
2009-04-12 10:21:40 +00:00
|
|
|
{
|
|
|
|
FILE *f = fopen(filename, text_file ? "r" : "rb");
|
|
|
|
if (!f)
|
|
|
|
return false;
|
|
|
|
fseek(f, 0, SEEK_END);
|
2009-06-12 15:47:41 +00:00
|
|
|
size_t len = (size_t)ftell(f);
|
2009-04-12 10:21:40 +00:00
|
|
|
fseek(f, 0, SEEK_SET);
|
|
|
|
char *buf = new char[len + 1];
|
|
|
|
buf[fread(buf, 1, len, f)] = 0;
|
2009-04-25 10:38:26 +00:00
|
|
|
str = std::string(buf, len);
|
2009-04-12 10:21:40 +00:00
|
|
|
fclose(f);
|
|
|
|
delete [] buf;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-12-08 05:30:24 +00:00
|
|
|
} // namespace
|