2014-12-18 05:44:32 +01:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 06:38:14 +01:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-12-18 05:44:32 +01:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
|
|
|
#include "common/common_types.h"
|
|
|
|
#include "common/file_util.h"
|
2015-02-25 00:02:40 +01:00
|
|
|
#include "common/make_unique.h"
|
2014-12-18 05:44:32 +01:00
|
|
|
|
|
|
|
#include "core/file_sys/archive_systemsavedata.h"
|
2015-01-04 02:46:05 +01:00
|
|
|
#include "core/hle/service/fs/archive.h"
|
2014-12-18 05:44:32 +01:00
|
|
|
#include "core/settings.h"
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// FileSys namespace
|
|
|
|
|
|
|
|
namespace FileSys {
|
|
|
|
|
2015-02-25 00:02:40 +01:00
|
|
|
static std::string GetSystemSaveDataPath(const std::string& mount_point, const Path& path) {
|
|
|
|
std::vector<u8> vec_data = path.AsBinary();
|
|
|
|
const u32* data = reinterpret_cast<const u32*>(vec_data.data());
|
|
|
|
u32 save_low = data[1];
|
|
|
|
u32 save_high = data[0];
|
2014-12-21 05:33:33 +01:00
|
|
|
return Common::StringFromFormat("%s%08X/%08X/", mount_point.c_str(), save_low, save_high);
|
|
|
|
}
|
|
|
|
|
2015-01-04 02:46:05 +01:00
|
|
|
static std::string GetSystemSaveDataContainerPath(const std::string& mount_point) {
|
2015-01-04 15:10:27 +01:00
|
|
|
return Common::StringFromFormat("%sdata/%s/sysdata/", mount_point.c_str(), SYSTEM_ID.c_str());
|
2015-01-04 02:46:05 +01:00
|
|
|
}
|
|
|
|
|
2015-02-25 00:02:40 +01:00
|
|
|
ArchiveFactory_SystemSaveData::ArchiveFactory_SystemSaveData(const std::string& nand_path)
|
|
|
|
: base_path(GetSystemSaveDataContainerPath(nand_path)) {
|
2014-12-18 05:44:32 +01:00
|
|
|
}
|
|
|
|
|
2015-02-25 00:02:40 +01:00
|
|
|
ResultVal<std::unique_ptr<ArchiveBackend>> ArchiveFactory_SystemSaveData::Open(const Path& path) {
|
|
|
|
std::string fullpath = GetSystemSaveDataPath(base_path, path);
|
|
|
|
if (!FileUtil::Exists(fullpath)) {
|
|
|
|
// TODO(Subv): Check error code, this one is probably wrong
|
|
|
|
return ResultCode(ErrorDescription::FS_NotFormatted, ErrorModule::FS,
|
|
|
|
ErrorSummary::InvalidState, ErrorLevel::Status);
|
2014-12-18 05:44:32 +01:00
|
|
|
}
|
2015-02-25 00:02:40 +01:00
|
|
|
auto archive = Common::make_unique<DiskArchive>(fullpath);
|
|
|
|
return MakeResult<std::unique_ptr<ArchiveBackend>>(std::move(archive));
|
|
|
|
}
|
2014-12-18 05:44:32 +01:00
|
|
|
|
2015-02-25 00:02:40 +01:00
|
|
|
ResultCode ArchiveFactory_SystemSaveData::Format(const Path& path) {
|
|
|
|
std::string fullpath = GetSystemSaveDataPath(base_path, path);
|
|
|
|
FileUtil::CreateFullPath(fullpath);
|
|
|
|
return RESULT_SUCCESS;
|
2014-12-18 05:44:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace FileSys
|