2014-06-27 13:18:56 -07:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-16 21:38:14 -08:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-06-27 13:18:56 -07:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2015-06-21 07:44:11 -07:00
|
|
|
#include <algorithm>
|
2014-12-15 00:41:02 -08:00
|
|
|
#include <memory>
|
2014-06-27 13:18:56 -07:00
|
|
|
#include "common/common_types.h"
|
2015-05-06 00:06:12 -07:00
|
|
|
#include "common/logging/log.h"
|
2016-09-20 23:52:38 -07:00
|
|
|
#include "core/file_sys/archive_romfs.h"
|
2015-06-21 07:44:11 -07:00
|
|
|
#include "core/file_sys/ivfc_archive.h"
|
2014-06-27 13:18:56 -07:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// FileSys namespace
|
|
|
|
|
|
|
|
namespace FileSys {
|
|
|
|
|
2015-07-11 15:16:33 -07:00
|
|
|
ArchiveFactory_RomFS::ArchiveFactory_RomFS(Loader::AppLoader& app_loader) {
|
2014-06-27 13:18:56 -07:00
|
|
|
// Load the RomFS from the app
|
2015-07-09 14:55:23 -07:00
|
|
|
if (Loader::ResultStatus::Success != app_loader.ReadRomFS(romfs_file, data_offset, data_size)) {
|
2014-12-05 17:53:49 -08:00
|
|
|
LOG_ERROR(Service_FS, "Unable to read RomFS!");
|
2014-06-27 13:18:56 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-06 05:53:14 -08:00
|
|
|
ResultVal<std::unique_ptr<ArchiveBackend>> ArchiveFactory_RomFS::Open(const Path& path) {
|
2016-04-05 05:29:55 -07:00
|
|
|
auto archive = std::make_unique<IVFCArchive>(romfs_file, data_offset, data_size);
|
2015-02-06 05:53:14 -08:00
|
|
|
return MakeResult<std::unique_ptr<ArchiveBackend>>(std::move(archive));
|
|
|
|
}
|
|
|
|
|
2016-09-17 17:38:01 -07:00
|
|
|
ResultCode ArchiveFactory_RomFS::Format(const Path& path,
|
|
|
|
const FileSys::ArchiveFormatInfo& format_info) {
|
2015-02-06 05:53:14 -08:00
|
|
|
LOG_ERROR(Service_FS, "Attempted to format a RomFS archive.");
|
|
|
|
// TODO: Verify error code
|
2016-09-17 17:38:01 -07:00
|
|
|
return ResultCode(ErrorDescription::NotAuthorized, ErrorModule::FS, ErrorSummary::NotSupported,
|
|
|
|
ErrorLevel::Permanent);
|
2015-02-06 05:53:14 -08:00
|
|
|
}
|
|
|
|
|
2015-12-28 10:51:44 -08:00
|
|
|
ResultVal<ArchiveFormatInfo> ArchiveFactory_RomFS::GetFormatInfo(const Path& path) const {
|
|
|
|
// TODO(Subv): Implement
|
|
|
|
LOG_ERROR(Service_FS, "Unimplemented GetFormatInfo archive %s", GetName().c_str());
|
|
|
|
return ResultCode(-1);
|
|
|
|
}
|
|
|
|
|
2014-06-27 13:18:56 -07:00
|
|
|
} // namespace FileSys
|