2014-12-29 19:04:37 +01:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2015-06-21 16:44:11 +02:00
|
|
|
#include <algorithm>
|
|
|
|
#include <vector>
|
2014-12-29 19:04:37 +01:00
|
|
|
|
|
|
|
#include "common/common_types.h"
|
|
|
|
#include "common/file_util.h"
|
2015-05-06 09:06:12 +02:00
|
|
|
#include "common/logging/log.h"
|
2015-02-06 14:53:14 +01:00
|
|
|
#include "common/make_unique.h"
|
2015-06-20 23:24:01 +02:00
|
|
|
#include "common/string_util.h"
|
2014-12-29 19:04:37 +01:00
|
|
|
|
|
|
|
#include "core/file_sys/archive_extsavedata.h"
|
|
|
|
#include "core/file_sys/disk_archive.h"
|
2015-01-04 02:46:05 +01:00
|
|
|
#include "core/hle/service/fs/archive.h"
|
2014-12-29 19:04:37 +01:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// FileSys namespace
|
|
|
|
|
|
|
|
namespace FileSys {
|
|
|
|
|
2015-01-14 05:56:00 +01:00
|
|
|
std::string GetExtSaveDataPath(const std::string& mount_point, const Path& path) {
|
2014-12-29 19:04:37 +01:00
|
|
|
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[2];
|
2015-01-01 03:43:31 +01:00
|
|
|
return Common::StringFromFormat("%s%08X/%08X/", mount_point.c_str(), save_high, save_low);
|
2014-12-29 19:04:37 +01:00
|
|
|
}
|
|
|
|
|
2015-01-14 05:56:00 +01:00
|
|
|
std::string GetExtDataContainerPath(const std::string& mount_point, bool shared) {
|
2015-01-04 02:46:05 +01:00
|
|
|
if (shared)
|
2015-01-04 15:10:27 +01:00
|
|
|
return Common::StringFromFormat("%sdata/%s/extdata/", mount_point.c_str(), SYSTEM_ID.c_str());
|
2015-05-25 20:34:09 +02:00
|
|
|
|
|
|
|
return Common::StringFromFormat("%sNintendo 3DS/%s/%s/extdata/", mount_point.c_str(),
|
2015-01-04 15:10:27 +01:00
|
|
|
SYSTEM_ID.c_str(), SDCARD_ID.c_str());
|
2015-01-04 02:46:05 +01:00
|
|
|
}
|
|
|
|
|
2015-03-14 18:00:01 +01:00
|
|
|
Path ConstructExtDataBinaryPath(u32 media_type, u32 high, u32 low) {
|
|
|
|
std::vector<u8> binary_path;
|
|
|
|
binary_path.reserve(12);
|
|
|
|
|
|
|
|
// Append each word byte by byte
|
|
|
|
|
|
|
|
// The first word is the media type
|
|
|
|
for (unsigned i = 0; i < 4; ++i)
|
|
|
|
binary_path.push_back((media_type >> (8 * i)) & 0xFF);
|
|
|
|
|
|
|
|
// Next is the low word
|
|
|
|
for (unsigned i = 0; i < 4; ++i)
|
|
|
|
binary_path.push_back((low >> (8 * i)) & 0xFF);
|
|
|
|
|
|
|
|
// Next is the high word
|
|
|
|
for (unsigned i = 0; i < 4; ++i)
|
|
|
|
binary_path.push_back((high >> (8 * i)) & 0xFF);
|
|
|
|
|
|
|
|
return { binary_path };
|
|
|
|
}
|
|
|
|
|
2015-02-06 14:53:14 +01:00
|
|
|
ArchiveFactory_ExtSaveData::ArchiveFactory_ExtSaveData(const std::string& mount_location, bool shared)
|
2016-03-03 19:05:50 +01:00
|
|
|
: shared(shared), mount_point(GetExtDataContainerPath(mount_location, shared)) {
|
2015-01-04 02:46:05 +01:00
|
|
|
LOG_INFO(Service_FS, "Directory %s set as base for ExtSaveData.", mount_point.c_str());
|
2014-12-29 19:04:37 +01:00
|
|
|
}
|
|
|
|
|
2015-02-06 14:53:14 +01:00
|
|
|
bool ArchiveFactory_ExtSaveData::Initialize() {
|
2014-12-29 19:04:37 +01:00
|
|
|
if (!FileUtil::CreateFullPath(mount_point)) {
|
|
|
|
LOG_ERROR(Service_FS, "Unable to create ExtSaveData base path.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-02-06 14:53:14 +01:00
|
|
|
ResultVal<std::unique_ptr<ArchiveBackend>> ArchiveFactory_ExtSaveData::Open(const Path& path) {
|
2015-06-02 04:26:40 +02:00
|
|
|
std::string fullpath = GetExtSaveDataPath(mount_point, path) + "user/";
|
2014-12-29 19:04:37 +01:00
|
|
|
if (!FileUtil::Exists(fullpath)) {
|
2016-03-03 19:05:50 +01:00
|
|
|
// TODO(Subv): Verify the archive behavior of SharedExtSaveData compared to ExtSaveData.
|
|
|
|
// ExtSaveData seems to return FS_NotFound (120) when the archive doesn't exist.
|
|
|
|
if (!shared) {
|
|
|
|
return ResultCode(ErrorDescription::FS_NotFound, ErrorModule::FS,
|
|
|
|
ErrorSummary::InvalidState, ErrorLevel::Status);
|
|
|
|
} else {
|
|
|
|
return ResultCode(ErrorDescription::FS_NotFormatted, ErrorModule::FS,
|
|
|
|
ErrorSummary::InvalidState, ErrorLevel::Status);
|
|
|
|
}
|
2014-12-29 19:04:37 +01:00
|
|
|
}
|
2015-02-06 14:53:14 +01:00
|
|
|
auto archive = Common::make_unique<DiskArchive>(fullpath);
|
|
|
|
return MakeResult<std::unique_ptr<ArchiveBackend>>(std::move(archive));
|
2014-12-29 19:04:37 +01:00
|
|
|
}
|
|
|
|
|
2015-12-28 19:51:44 +01:00
|
|
|
ResultCode ArchiveFactory_ExtSaveData::Format(const Path& path, const FileSys::ArchiveFormatInfo& format_info) {
|
2015-06-02 04:26:40 +02:00
|
|
|
// These folders are always created with the ExtSaveData
|
|
|
|
std::string user_path = GetExtSaveDataPath(mount_point, path) + "user/";
|
|
|
|
std::string boss_path = GetExtSaveDataPath(mount_point, path) + "boss/";
|
|
|
|
FileUtil::CreateFullPath(user_path);
|
|
|
|
FileUtil::CreateFullPath(boss_path);
|
2015-12-28 19:51:44 +01:00
|
|
|
|
|
|
|
// Write the format metadata
|
|
|
|
std::string metadata_path = GetExtSaveDataPath(mount_point, path) + "metadata";
|
|
|
|
FileUtil::IOFile file(metadata_path, "wb");
|
|
|
|
|
2016-03-03 19:05:50 +01:00
|
|
|
if (!file.IsOpen()) {
|
|
|
|
// TODO(Subv): Find the correct error code
|
|
|
|
return ResultCode(-1);
|
2015-12-28 19:51:44 +01:00
|
|
|
}
|
|
|
|
|
2016-03-03 19:05:50 +01:00
|
|
|
file.WriteBytes(&format_info, sizeof(format_info));
|
|
|
|
return RESULT_SUCCESS;
|
2015-12-28 19:51:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ResultVal<ArchiveFormatInfo> ArchiveFactory_ExtSaveData::GetFormatInfo(const Path& path) const {
|
|
|
|
std::string metadata_path = GetExtSaveDataPath(mount_point, path) + "metadata";
|
|
|
|
FileUtil::IOFile file(metadata_path, "rb");
|
|
|
|
|
2016-03-03 19:05:50 +01:00
|
|
|
if (!file.IsOpen()) {
|
|
|
|
LOG_ERROR(Service_FS, "Could not open metadata information for archive");
|
|
|
|
// TODO(Subv): Verify error code
|
|
|
|
return ResultCode(ErrorDescription::FS_NotFormatted, ErrorModule::FS, ErrorSummary::InvalidState, ErrorLevel::Status);
|
2015-12-28 19:51:44 +01:00
|
|
|
}
|
|
|
|
|
2016-03-03 19:05:50 +01:00
|
|
|
ArchiveFormatInfo info = {};
|
|
|
|
file.ReadBytes(&info, sizeof(info));
|
|
|
|
return MakeResult<ArchiveFormatInfo>(info);
|
2015-12-28 19:51:44 +01:00
|
|
|
}
|
|
|
|
|
2016-03-03 19:05:50 +01:00
|
|
|
void ArchiveFactory_ExtSaveData::WriteIcon(const Path& path, const u8* icon_data, size_t icon_size) {
|
2015-12-28 19:51:44 +01:00
|
|
|
std::string game_path = FileSys::GetExtSaveDataPath(GetMountPoint(), path);
|
2016-03-03 19:05:50 +01:00
|
|
|
FileUtil::IOFile icon_file(game_path + "icon", "wb");
|
2015-12-28 19:51:44 +01:00
|
|
|
icon_file.WriteBytes(icon_data, icon_size);
|
2014-12-29 19:04:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace FileSys
|