2008-12-08 05:30:24 +00:00
|
|
|
// Copyright (C) 2003-2008 Dolphin Project.
|
|
|
|
|
|
|
|
// 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"
|
|
|
|
|
|
|
|
#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>
|
|
|
|
#include <CoreFoundation/CFUrl.h>
|
|
|
|
#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-02-28 01:26:56 +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.
|
|
|
|
inline 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)
|
|
|
|
{
|
|
|
|
struct stat file_info;
|
2009-02-28 01:26:56 +00:00
|
|
|
|
|
|
|
char *copy = StripTailDirSlashes(strdup(filename));
|
|
|
|
int result = stat(copy, &file_info);
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
struct stat file_info;
|
|
|
|
|
2009-02-28 01:26:56 +00:00
|
|
|
char *copy = StripTailDirSlashes(strdup(filename));
|
|
|
|
|
|
|
|
int result = stat(copy, &file_info);
|
|
|
|
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-02-28 01:26:56 +00:00
|
|
|
INFO_LOG(COMMON, "Delete: file %s\n", 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) {
|
|
|
|
WARN_LOG(COMMON, "Delete: DeleteFile failed on %s: %s",
|
|
|
|
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-02-28 01:26:56 +00:00
|
|
|
INFO_LOG(COMMON, "CreateDir: directory %s\n", 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) {
|
|
|
|
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) {
|
|
|
|
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;
|
|
|
|
INFO_LOG(COMMON, "CreateFullPath: path %s\n", fullPath);
|
|
|
|
|
2009-03-03 00:21:08 +00:00
|
|
|
if (File::Exists(fullPath)) {
|
|
|
|
INFO_LOG(COMMON, "CreateFullPath: path exists %s\n", fullPath);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-02-28 01:26:56 +00:00
|
|
|
const char *position = fullPath;
|
|
|
|
while (true) {
|
2008-12-08 05:30:24 +00:00
|
|
|
// Find next sub path, support both \ and / directory separators
|
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-02-28 01:26:56 +00:00
|
|
|
int sLen = (int)(position - fullPath);
|
|
|
|
if (sLen > 0) {
|
|
|
|
char *subPath = strndup(fullPath, sLen);
|
|
|
|
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) {
|
|
|
|
ERROR_LOG(COMMON, "CreateFullPath: directory stracture 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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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-03-03 00:21:08 +00:00
|
|
|
DEBUG_LOG(COMMON, "GetSize: %s: %d", 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
|
|
|
}
|
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
|
|
|
}
|
|
|
|
|
2009-02-28 01:26:56 +00:00
|
|
|
// Returns the current directory, caller should free
|
|
|
|
const char *GetCurrentDirectory()
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2009-02-28 01:26:56 +00:00
|
|
|
const char *dir;
|
|
|
|
// Get the current working directory (getcwd uses malloc)
|
|
|
|
if (!(dir = getcwd(NULL, 0))) {
|
|
|
|
|
|
|
|
ERROR_LOG(COMMON, "GetCurrentDirectory failed: %s",
|
|
|
|
GetLastErrorMsg());
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return dir;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
2009-02-28 01:26:56 +00:00
|
|
|
// Sets the current directory to the given directory
|
|
|
|
bool SetCurrentDirectory(const char *_rDirectory)
|
2009-02-24 07:18:08 +00:00
|
|
|
{
|
2009-02-28 01:26:56 +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__)
|
2009-03-09 10:43:56 +00:00
|
|
|
|
|
|
|
//get the full config dir
|
|
|
|
char *GetConfigDirectory()
|
|
|
|
{
|
|
|
|
|
|
|
|
static char path[MAX_PATH] = {0};
|
|
|
|
if (strlen(path) > 0)
|
|
|
|
return path;
|
|
|
|
snprintf(path, sizeof(path), "%s" DIR_SEP CONFIG_FILE, GetUserDirectory());
|
|
|
|
return path;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2009-02-28 23:21:51 +00:00
|
|
|
std::string GetBundleDirectory()
|
|
|
|
{
|
|
|
|
// Plugin path will be Dolphin.app/Contents/PlugIns
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Returns the path to where the plugins are
|
|
|
|
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;
|
|
|
|
#elif defined __linux__
|
2009-02-28 23:21:51 +00:00
|
|
|
pluginsDir = PLUGINS_DIR;
|
|
|
|
// FIXME global install
|
|
|
|
#else
|
|
|
|
pluginsDir = PLUGINS_DIR;
|
|
|
|
#endif
|
|
|
|
|
2009-03-09 10:43:56 +00:00
|
|
|
#if !defined (__APPLE__)
|
2009-03-01 00:12:05 +00:00
|
|
|
pluginsDir += DIR_SEP;
|
2009-03-09 10:43:56 +00:00
|
|
|
#endif
|
2009-02-28 23:21:51 +00:00
|
|
|
INFO_LOG(COMMON, "GetPluginsDirectory: Setting to %s:", pluginsDir.c_str());
|
|
|
|
return pluginsDir;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns the path to where the sys file are
|
|
|
|
std::string GetSysDirectory()
|
|
|
|
{
|
|
|
|
std::string sysDir;
|
|
|
|
|
|
|
|
#if defined (__APPLE__)
|
|
|
|
sysDir = GetBundleDirectory();
|
|
|
|
sysDir += DIR_SEP;
|
|
|
|
sysDir += SYSDATA_DIR;
|
2009-03-01 23:06:29 +00:00
|
|
|
#elif defined __linux__
|
2009-02-28 23:21:51 +00:00
|
|
|
sysDir = SYSDATA_DIR;
|
|
|
|
// FIXME global install
|
|
|
|
#else
|
|
|
|
sysDir = SYSDATA_DIR;
|
|
|
|
#endif
|
|
|
|
|
2009-03-01 00:12:05 +00:00
|
|
|
sysDir += DIR_SEP;
|
2009-02-28 23:21:51 +00:00
|
|
|
INFO_LOG(COMMON, "GetSysDirectory: Setting to %s:", sysDir.c_str());
|
|
|
|
return sysDir;
|
|
|
|
|
|
|
|
}
|
|
|
|
// Returns a pointer to a string with a Dolphin data dir in the user's home
|
|
|
|
// directory. To be used in "multi-user" mode (that is, installed).
|
|
|
|
const char *GetUserDirectory()
|
|
|
|
{
|
|
|
|
// Make sure we only need to do it once
|
|
|
|
static char path[MAX_PATH] = {0};
|
|
|
|
if (strlen(path) > 0)
|
|
|
|
return path;
|
|
|
|
|
|
|
|
#ifdef WIN32
|
|
|
|
char homedir[MAX_PATH];
|
|
|
|
if (!SUCCEEDED(SHGetFolderPath(NULL, CSIDL_APPDATA, NULL, 0, path)))
|
|
|
|
return NULL;
|
|
|
|
#else
|
|
|
|
char *homedir = getenv("HOME");
|
|
|
|
if (!homedir)
|
|
|
|
return NULL;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
snprintf(path, sizeof(path), "%s" DIR_SEP DOLPHIN_DATA_DIR, homedir);
|
|
|
|
INFO_LOG(COMMON, "GetUserDirectory: Setting to %s:", path);
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
2008-12-08 05:30:24 +00:00
|
|
|
} // namespace
|
2009-02-24 19:31:32 +00:00
|
|
|
|