2018-06-21 15:16:23 +00:00
|
|
|
// Copyright 2018 yuzu emulator team
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include "common/common_types.h"
|
2018-07-19 01:07:11 +00:00
|
|
|
#include "core/file_sys/content_archive.h"
|
2018-06-21 15:16:23 +00:00
|
|
|
#include "core/file_sys/program_metadata.h"
|
2018-08-02 02:40:00 +00:00
|
|
|
#include "core/hle/kernel/object.h"
|
2018-06-21 15:16:23 +00:00
|
|
|
#include "core/loader/loader.h"
|
2018-08-05 22:27:05 +00:00
|
|
|
#include "deconstructed_rom_directory.h"
|
2018-06-21 15:16:23 +00:00
|
|
|
|
|
|
|
namespace Loader {
|
|
|
|
|
|
|
|
/// Loads an NCA file
|
|
|
|
class AppLoader_NCA final : public AppLoader {
|
|
|
|
public:
|
2018-07-19 01:07:11 +00:00
|
|
|
explicit AppLoader_NCA(FileSys::VirtualFile file);
|
2018-06-21 15:16:23 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the type of the file
|
2018-07-19 01:07:11 +00:00
|
|
|
* @param file std::shared_ptr<VfsFile> open file
|
2018-06-21 15:16:23 +00:00
|
|
|
* @return FileType found, or FileType::Error if this loader doesn't know it
|
|
|
|
*/
|
2018-07-19 01:07:11 +00:00
|
|
|
static FileType IdentifyType(const FileSys::VirtualFile& file);
|
2018-06-21 15:16:23 +00:00
|
|
|
|
|
|
|
FileType GetFileType() override {
|
2018-07-19 01:07:11 +00:00
|
|
|
return IdentifyType(file);
|
2018-06-21 15:16:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ResultStatus Load(Kernel::SharedPtr<Kernel::Process>& process) override;
|
|
|
|
|
2018-07-19 01:07:11 +00:00
|
|
|
ResultStatus ReadRomFS(FileSys::VirtualFile& dir) override;
|
2018-07-08 03:24:51 +00:00
|
|
|
|
2018-07-28 03:55:23 +00:00
|
|
|
ResultStatus ReadProgramId(u64& out_program_id) override;
|
|
|
|
|
2018-06-21 15:16:23 +00:00
|
|
|
~AppLoader_NCA();
|
|
|
|
|
|
|
|
private:
|
|
|
|
FileSys::ProgramMetadata metadata;
|
|
|
|
|
2018-07-19 01:07:11 +00:00
|
|
|
std::unique_ptr<FileSys::NCA> nca;
|
2018-08-05 22:27:05 +00:00
|
|
|
std::unique_ptr<AppLoader_DeconstructedRomDirectory> directory_loader;
|
2018-06-21 15:16:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Loader
|