2018-01-13 21:22:39 +00:00
|
|
|
// Copyright 2018 yuzu emulator team
|
2017-09-24 15:08:31 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "common/common_types.h"
|
2018-09-30 02:16:09 +00:00
|
|
|
#include "core/file_sys/patch_manager.h"
|
2017-10-06 03:30:08 +00:00
|
|
|
#include "core/loader/linker.h"
|
2017-09-24 15:08:31 +00:00
|
|
|
#include "core/loader/loader.h"
|
|
|
|
|
|
|
|
namespace Loader {
|
|
|
|
|
|
|
|
/// Loads an NSO file
|
2017-10-06 03:30:08 +00:00
|
|
|
class AppLoader_NSO final : public AppLoader, Linker {
|
2017-09-24 15:08:31 +00:00
|
|
|
public:
|
2018-07-19 01:07:11 +00:00
|
|
|
explicit AppLoader_NSO(FileSys::VirtualFile file);
|
2017-09-24 15:08:31 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the type of the file
|
2018-07-19 01:07:11 +00:00
|
|
|
* @param file std::shared_ptr<VfsFile> open file
|
2017-09-24 15:08:31 +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);
|
2017-09-24 15:08:31 +00:00
|
|
|
|
|
|
|
FileType GetFileType() override {
|
2018-07-19 01:07:11 +00:00
|
|
|
return IdentifyType(file);
|
2017-09-24 15:08:31 +00:00
|
|
|
}
|
|
|
|
|
2018-09-30 02:16:09 +00:00
|
|
|
static VAddr LoadModule(FileSys::VirtualFile file, VAddr load_base,
|
|
|
|
std::shared_ptr<FileSys::PatchManager> pm = nullptr);
|
2018-01-20 19:20:04 +00:00
|
|
|
|
2018-09-29 19:57:40 +00:00
|
|
|
ResultStatus Load(Kernel::Process& process) override;
|
2017-09-24 15:08:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Loader
|