2014-09-11 22:44:16 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
|
|
|
#include "common/common_types.h"
|
|
|
|
#include "common/file_util.h"
|
|
|
|
|
|
|
|
#include "core/file_sys/archive_sdmc.h"
|
2014-09-11 22:47:05 +00:00
|
|
|
#include "core/file_sys/directory_sdmc.h"
|
2014-09-11 22:44:16 +00:00
|
|
|
#include "core/file_sys/file_sdmc.h"
|
2014-10-10 02:43:40 +00:00
|
|
|
#include "core/settings.h"
|
2014-09-11 22:44:16 +00:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// FileSys namespace
|
|
|
|
|
|
|
|
namespace FileSys {
|
|
|
|
|
|
|
|
Archive_SDMC::Archive_SDMC(const std::string& mount_point) {
|
|
|
|
this->mount_point = mount_point;
|
2014-12-06 01:53:49 +00:00
|
|
|
LOG_INFO(Service_FS, "Directory %s set as SDMC.", mount_point.c_str());
|
2014-09-11 22:44:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Archive_SDMC::~Archive_SDMC() {
|
|
|
|
}
|
|
|
|
|
2014-09-27 19:09:04 +00:00
|
|
|
/**
|
|
|
|
* Initialize the archive.
|
|
|
|
* @return true if it initialized successfully
|
|
|
|
*/
|
2014-09-11 22:44:16 +00:00
|
|
|
bool Archive_SDMC::Initialize() {
|
2014-10-10 02:43:40 +00:00
|
|
|
if (!Settings::values.use_virtual_sd) {
|
2014-12-06 01:53:49 +00:00
|
|
|
LOG_WARNING(Service_FS, "SDMC disabled by config.");
|
2014-10-10 02:43:40 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!FileUtil::CreateFullPath(mount_point)) {
|
2014-12-06 01:53:49 +00:00
|
|
|
LOG_ERROR(Service_FS, "Unable to create SDMC path.");
|
2014-09-11 22:44:16 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Open a file specified by its path, using the specified mode
|
|
|
|
* @param path Path relative to the archive
|
|
|
|
* @param mode Mode to open the file with
|
|
|
|
* @return Opened file, or nullptr
|
|
|
|
*/
|
2014-12-15 07:03:17 +00:00
|
|
|
std::unique_ptr<FileBackend> Archive_SDMC::OpenFile(const Path& path, const Mode mode) const {
|
2014-12-06 01:53:49 +00:00
|
|
|
LOG_DEBUG(Service_FS, "called path=%s mode=%u", path.DebugStr().c_str(), mode.hex);
|
2014-09-11 22:44:16 +00:00
|
|
|
File_SDMC* file = new File_SDMC(this, path, mode);
|
2014-09-27 19:21:48 +00:00
|
|
|
if (!file->Open())
|
|
|
|
return nullptr;
|
2014-12-15 07:03:17 +00:00
|
|
|
return std::unique_ptr<FileBackend>(file);
|
2014-09-11 22:44:16 +00:00
|
|
|
}
|
|
|
|
|
2014-11-11 18:37:26 +00:00
|
|
|
/**
|
|
|
|
* Delete a file specified by its path
|
|
|
|
* @param path Path relative to the archive
|
|
|
|
* @return Whether the file could be deleted
|
|
|
|
*/
|
|
|
|
bool Archive_SDMC::DeleteFile(const FileSys::Path& path) const {
|
|
|
|
return FileUtil::Delete(GetMountPoint() + path.AsString());
|
|
|
|
}
|
|
|
|
|
2014-11-24 07:20:04 +00:00
|
|
|
bool Archive_SDMC::RenameFile(const FileSys::Path& src_path, const FileSys::Path& dest_path) const {
|
|
|
|
return FileUtil::Rename(GetMountPoint() + src_path.AsString(), GetMountPoint() + dest_path.AsString());
|
|
|
|
}
|
|
|
|
|
2014-11-11 18:37:26 +00:00
|
|
|
/**
|
|
|
|
* Delete a directory specified by its path
|
|
|
|
* @param path Path relative to the archive
|
|
|
|
* @return Whether the directory could be deleted
|
|
|
|
*/
|
|
|
|
bool Archive_SDMC::DeleteDirectory(const FileSys::Path& path) const {
|
|
|
|
return FileUtil::DeleteDir(GetMountPoint() + path.AsString());
|
|
|
|
}
|
|
|
|
|
2014-10-29 05:52:56 +00:00
|
|
|
/**
|
|
|
|
* Create a directory specified by its path
|
|
|
|
* @param path Path relative to the archive
|
|
|
|
* @return Whether the directory could be created
|
|
|
|
*/
|
2014-11-12 00:27:35 +00:00
|
|
|
bool Archive_SDMC::CreateDirectory(const Path& path) const {
|
|
|
|
return FileUtil::CreateDir(GetMountPoint() + path.AsString());
|
2014-10-29 05:52:56 +00:00
|
|
|
}
|
|
|
|
|
2014-11-24 09:12:58 +00:00
|
|
|
bool Archive_SDMC::RenameDirectory(const FileSys::Path& src_path, const FileSys::Path& dest_path) const {
|
|
|
|
return FileUtil::Rename(GetMountPoint() + src_path.AsString(), GetMountPoint() + dest_path.AsString());
|
|
|
|
}
|
|
|
|
|
2014-09-11 22:47:05 +00:00
|
|
|
/**
|
|
|
|
* Open a directory specified by its path
|
|
|
|
* @param path Path relative to the archive
|
|
|
|
* @return Opened directory, or nullptr
|
|
|
|
*/
|
2014-12-15 06:59:29 +00:00
|
|
|
std::unique_ptr<DirectoryBackend> Archive_SDMC::OpenDirectory(const Path& path) const {
|
2014-12-06 01:53:49 +00:00
|
|
|
LOG_DEBUG(Service_FS, "called path=%s", path.DebugStr().c_str());
|
2014-09-11 22:47:05 +00:00
|
|
|
Directory_SDMC* directory = new Directory_SDMC(this, path);
|
2014-12-07 22:40:27 +00:00
|
|
|
if (!directory->Open())
|
|
|
|
return nullptr;
|
2014-12-15 06:59:29 +00:00
|
|
|
return std::unique_ptr<DirectoryBackend>(directory);
|
2014-09-11 22:47:05 +00:00
|
|
|
}
|
|
|
|
|
2014-09-11 22:44:16 +00:00
|
|
|
/**
|
|
|
|
* Getter for the path used for this Archive
|
|
|
|
* @return Mount point of that passthrough archive
|
|
|
|
*/
|
|
|
|
std::string Archive_SDMC::GetMountPoint() const {
|
|
|
|
return mount_point;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace FileSys
|