9f82a9a244
Previously, we were reading the keys everytime a KeyManager object was created, causing yuzu to reread the keys file multiple hundreds of times when loading the game list. With this change, it is only loaded once. On my system, this decreased game list loading times by a factor of 20.
82 lines
2.4 KiB
C++
82 lines
2.4 KiB
C++
// Copyright 2018 yuzu emulator team
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <map>
|
|
#include <memory>
|
|
#include <vector>
|
|
#include "common/common_types.h"
|
|
#include "core/file_sys/vfs.h"
|
|
|
|
namespace Loader {
|
|
enum class ResultStatus : u16;
|
|
}
|
|
|
|
namespace FileSys {
|
|
|
|
class NCA;
|
|
class PartitionFilesystem;
|
|
|
|
enum class ContentRecordType : u8;
|
|
|
|
class NSP : public ReadOnlyVfsDirectory {
|
|
public:
|
|
explicit NSP(VirtualFile file);
|
|
~NSP() override;
|
|
|
|
Loader::ResultStatus GetStatus() const;
|
|
Loader::ResultStatus GetProgramStatus(u64 title_id) const;
|
|
// Should only be used when one title id can be assured.
|
|
u64 GetFirstTitleID() const;
|
|
u64 GetProgramTitleID() const;
|
|
std::vector<u64> GetTitleIDs() const;
|
|
|
|
bool IsExtractedType() const;
|
|
|
|
// Common (Can be safely called on both types)
|
|
VirtualFile GetRomFS() const;
|
|
VirtualDir GetExeFS() const;
|
|
|
|
// Type 0 Only (Collection of NCAs + Certificate + Ticket + Meta XML)
|
|
std::vector<std::shared_ptr<NCA>> GetNCAsCollapsed() const;
|
|
std::multimap<u64, std::shared_ptr<NCA>> GetNCAsByTitleID() const;
|
|
std::map<u64, std::map<std::pair<TitleType, ContentRecordType>, std::shared_ptr<NCA>>> GetNCAs()
|
|
const;
|
|
std::shared_ptr<NCA> GetNCA(u64 title_id, ContentRecordType type,
|
|
TitleType title_type = TitleType::Application) const;
|
|
VirtualFile GetNCAFile(u64 title_id, ContentRecordType type,
|
|
TitleType title_type = TitleType::Application) const;
|
|
std::vector<Core::Crypto::Key128> GetTitlekey() const;
|
|
|
|
std::vector<VirtualFile> GetFiles() const override;
|
|
|
|
std::vector<VirtualDir> GetSubdirectories() const override;
|
|
|
|
std::string GetName() const override;
|
|
|
|
VirtualDir GetParentDirectory() const override;
|
|
|
|
private:
|
|
void InitializeExeFSAndRomFS(const std::vector<VirtualFile>& files);
|
|
void ReadNCAs(const std::vector<VirtualFile>& files);
|
|
|
|
VirtualFile file;
|
|
|
|
bool extracted = false;
|
|
Loader::ResultStatus status;
|
|
std::map<u64, Loader::ResultStatus> program_status;
|
|
|
|
std::shared_ptr<PartitionFilesystem> pfs;
|
|
// Map title id -> {map type -> NCA}
|
|
std::map<u64, std::map<std::pair<TitleType, ContentRecordType>, std::shared_ptr<NCA>>> ncas;
|
|
std::vector<VirtualFile> ticket_files;
|
|
|
|
Core::Crypto::KeyManager& keys = Core::Crypto::KeyManager::instance();
|
|
|
|
VirtualFile romfs;
|
|
VirtualDir exefs;
|
|
};
|
|
} // namespace FileSys
|