2014-12-17 05:38:14 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project / 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
2014-03-25 14:47:12 +00:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2015-05-04 03:01:16 +00:00
|
|
|
#include <string>
|
|
|
|
|
2014-06-17 10:23:46 +00:00
|
|
|
#include "common/common_types.h"
|
2014-06-18 22:58:09 +00:00
|
|
|
#include "core/loader/loader.h"
|
2014-06-17 03:05:10 +00:00
|
|
|
|
2014-06-18 22:58:09 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Loader namespace
|
2014-06-17 03:05:10 +00:00
|
|
|
|
2014-06-18 22:58:09 +00:00
|
|
|
namespace Loader {
|
2014-06-17 03:05:10 +00:00
|
|
|
|
2014-06-18 22:58:09 +00:00
|
|
|
/// Loads an ELF/AXF file
|
2014-07-04 17:20:40 +00:00
|
|
|
class AppLoader_ELF final : public AppLoader {
|
2014-06-17 03:05:10 +00:00
|
|
|
public:
|
2015-07-11 22:16:33 +00:00
|
|
|
AppLoader_ELF(FileUtil::IOFile&& file, std::string filename)
|
2015-05-04 03:01:16 +00:00
|
|
|
: AppLoader(std::move(file)), filename(std::move(filename)) { }
|
2014-06-17 03:05:10 +00:00
|
|
|
|
2015-01-06 23:10:13 +00:00
|
|
|
/**
|
|
|
|
* Returns the type of the file
|
|
|
|
* @param file FileUtil::IOFile open file
|
|
|
|
* @return FileType found, or FileType::Error if this loader doesn't know it
|
|
|
|
*/
|
|
|
|
static FileType IdentifyType(FileUtil::IOFile& file);
|
|
|
|
|
2014-06-18 22:58:09 +00:00
|
|
|
/**
|
|
|
|
* Load the bootable file
|
|
|
|
* @return ResultStatus result of function
|
|
|
|
*/
|
2014-07-04 17:25:30 +00:00
|
|
|
ResultStatus Load() override;
|
2015-05-04 03:01:16 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
std::string filename;
|
2014-03-25 14:47:12 +00:00
|
|
|
};
|
2014-06-17 03:18:10 +00:00
|
|
|
|
|
|
|
} // namespace Loader
|