2015-01-01 17:39:27 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2015-06-21 14:44:11 +00:00
|
|
|
#include <algorithm>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "common/common_types.h"
|
2015-01-01 17:39:27 +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"
|
2015-06-20 21:24:01 +00:00
|
|
|
#include "common/string_util.h"
|
2015-01-01 17:39:27 +00:00
|
|
|
|
|
|
|
#include "core/file_sys/archive_savedatacheck.h"
|
2015-06-21 14:44:11 +00:00
|
|
|
#include "core/file_sys/ivfc_archive.h"
|
2015-01-04 01:46:05 +00:00
|
|
|
#include "core/hle/service/fs/archive.h"
|
2015-01-01 17:39:27 +00:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// FileSys namespace
|
|
|
|
|
|
|
|
namespace FileSys {
|
|
|
|
|
2015-01-06 20:02:30 +00:00
|
|
|
static std::string GetSaveDataCheckContainerPath(const std::string& nand_directory) {
|
|
|
|
return Common::StringFromFormat("%s%s/title/", nand_directory.c_str(), SYSTEM_ID.c_str());
|
2015-01-04 01:46:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static std::string GetSaveDataCheckPath(const std::string& mount_point, u32 high, u32 low) {
|
|
|
|
return Common::StringFromFormat("%s%08x/%08x/content/00000000.app.romfs",
|
|
|
|
mount_point.c_str(), high, low);
|
|
|
|
}
|
|
|
|
|
2015-02-06 13:53:14 +00:00
|
|
|
ArchiveFactory_SaveDataCheck::ArchiveFactory_SaveDataCheck(const std::string& nand_directory) :
|
2015-01-06 20:02:30 +00:00
|
|
|
mount_point(GetSaveDataCheckContainerPath(nand_directory)) {
|
2015-01-01 17:39:27 +00:00
|
|
|
}
|
|
|
|
|
2015-02-06 13:53:14 +00:00
|
|
|
ResultVal<std::unique_ptr<ArchiveBackend>> ArchiveFactory_SaveDataCheck::Open(const Path& path) {
|
2015-01-01 17:39:27 +00:00
|
|
|
auto vec = path.AsBinary();
|
|
|
|
const u32* data = reinterpret_cast<u32*>(vec.data());
|
2015-01-04 01:46:05 +00:00
|
|
|
std::string file_path = GetSaveDataCheckPath(mount_point, data[1], data[0]);
|
2015-07-09 21:55:23 +00:00
|
|
|
auto file = std::make_shared<FileUtil::IOFile>(file_path, "rb");
|
2015-01-01 17:39:27 +00:00
|
|
|
|
2015-07-09 21:55:23 +00:00
|
|
|
if (!file->IsOpen()) {
|
2015-01-01 17:39:27 +00:00
|
|
|
return ResultCode(-1); // TODO(Subv): Find the right error code
|
|
|
|
}
|
2015-07-09 21:55:23 +00:00
|
|
|
auto size = file->GetSize();
|
2015-02-06 13:53:14 +00:00
|
|
|
|
2015-07-09 21:55:23 +00:00
|
|
|
auto archive = Common::make_unique<IVFCArchive>(file, 0, size);
|
2015-02-06 13:53:14 +00:00
|
|
|
return MakeResult<std::unique_ptr<ArchiveBackend>>(std::move(archive));
|
|
|
|
}
|
|
|
|
|
2015-12-28 18:51:44 +00:00
|
|
|
ResultCode ArchiveFactory_SaveDataCheck::Format(const Path& path, const FileSys::ArchiveFormatInfo& format_info) {
|
2015-02-06 13:53:14 +00:00
|
|
|
LOG_ERROR(Service_FS, "Attempted to format a SaveDataCheck archive.");
|
|
|
|
// TODO: Verify error code
|
|
|
|
return ResultCode(ErrorDescription::NotAuthorized, ErrorModule::FS,
|
|
|
|
ErrorSummary::NotSupported, ErrorLevel::Permanent);
|
2015-01-01 17:39:27 +00:00
|
|
|
}
|
|
|
|
|
2015-12-28 18:51:44 +00:00
|
|
|
ResultVal<ArchiveFormatInfo> ArchiveFactory_SaveDataCheck::GetFormatInfo(const Path& path) const {
|
|
|
|
// TODO(Subv): Implement
|
|
|
|
LOG_ERROR(Service_FS, "Unimplemented GetFormatInfo archive %s", GetName().c_str());
|
|
|
|
return ResultCode(-1);
|
|
|
|
}
|
|
|
|
|
2015-01-01 17:39:27 +00:00
|
|
|
} // namespace FileSys
|