2014-12-17 06:38:14 +01:00
|
|
|
// Copyright 2013 Dolphin Emulator Project / 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
2014-03-25 15:47:12 +01:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2015-05-04 05:01:16 +02:00
|
|
|
#include <string>
|
2014-06-17 12:23:46 +02:00
|
|
|
#include "common/common_types.h"
|
2014-06-19 00:58:09 +02:00
|
|
|
#include "core/loader/loader.h"
|
2014-06-17 05:05:10 +02:00
|
|
|
|
2014-06-19 00:58:09 +02:00
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Loader namespace
|
2014-06-17 05:05:10 +02:00
|
|
|
|
2014-06-19 00:58:09 +02:00
|
|
|
namespace Loader {
|
2014-06-17 05:05:10 +02:00
|
|
|
|
2014-06-19 00:58:09 +02:00
|
|
|
/// Loads an ELF/AXF file
|
2014-07-04 19:20:40 +02:00
|
|
|
class AppLoader_ELF final : public AppLoader {
|
2014-06-17 05:05:10 +02:00
|
|
|
public:
|
2018-07-19 03:07:11 +02:00
|
|
|
explicit AppLoader_ELF(FileSys::VirtualFile file);
|
2014-06-17 05:05:10 +02:00
|
|
|
|
2015-01-07 00:10:13 +01:00
|
|
|
/**
|
|
|
|
* Returns the type of the file
|
2018-07-19 03:07:11 +02:00
|
|
|
* @param file std::shared_ptr<VfsFile> open file
|
2015-01-07 00:10:13 +01:00
|
|
|
* @return FileType found, or FileType::Error if this loader doesn't know it
|
|
|
|
*/
|
2018-07-19 03:07:11 +02:00
|
|
|
static FileType IdentifyType(const FileSys::VirtualFile& file);
|
2015-01-07 00:10:13 +01:00
|
|
|
|
2016-05-18 00:30:44 +02:00
|
|
|
FileType GetFileType() override {
|
2018-07-19 03:07:11 +02:00
|
|
|
return IdentifyType(file);
|
2016-05-18 00:30:44 +02:00
|
|
|
}
|
|
|
|
|
2017-09-27 01:17:47 +02:00
|
|
|
ResultStatus Load(Kernel::SharedPtr<Kernel::Process>& process) override;
|
2014-03-25 15:47:12 +01:00
|
|
|
};
|
2014-06-17 05:18:10 +02:00
|
|
|
|
|
|
|
} // namespace Loader
|