2014-09-11 22:44:16 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-09-11 22:44:16 +00:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2015-06-21 14:44:11 +00:00
|
|
|
#include <algorithm>
|
2014-09-11 22:44:16 +00:00
|
|
|
|
|
|
|
#include "common/file_util.h"
|
2015-05-06 07:06:12 +00:00
|
|
|
#include "common/logging/log.h"
|
2015-02-06 13:53:14 +00:00
|
|
|
#include "common/make_unique.h"
|
2014-09-11 22:44:16 +00:00
|
|
|
|
|
|
|
#include "core/file_sys/archive_sdmc.h"
|
2014-12-16 05:33:41 +00:00
|
|
|
#include "core/file_sys/disk_archive.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 {
|
|
|
|
|
2015-02-06 13:53:14 +00:00
|
|
|
ArchiveFactory_SDMC::ArchiveFactory_SDMC(const std::string& sdmc_directory) : sdmc_directory(sdmc_directory) {
|
2015-01-06 20:02:30 +00:00
|
|
|
LOG_INFO(Service_FS, "Directory %s set as SDMC.", sdmc_directory.c_str());
|
2014-09-11 22:44:16 +00:00
|
|
|
}
|
|
|
|
|
2015-02-06 13:53:14 +00:00
|
|
|
bool ArchiveFactory_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;
|
|
|
|
}
|
|
|
|
|
2015-02-06 13:53:14 +00:00
|
|
|
if (!FileUtil::CreateFullPath(sdmc_directory)) {
|
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;
|
|
|
|
}
|
|
|
|
|
2015-02-06 13:53:14 +00:00
|
|
|
ResultVal<std::unique_ptr<ArchiveBackend>> ArchiveFactory_SDMC::Open(const Path& path) {
|
|
|
|
auto archive = Common::make_unique<DiskArchive>(sdmc_directory);
|
|
|
|
return MakeResult<std::unique_ptr<ArchiveBackend>>(std::move(archive));
|
|
|
|
}
|
|
|
|
|
|
|
|
ResultCode ArchiveFactory_SDMC::Format(const Path& path) {
|
|
|
|
// This is kind of an undesirable operation, so let's just ignore it. :)
|
|
|
|
return RESULT_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2014-09-11 22:44:16 +00:00
|
|
|
} // namespace FileSys
|