2014-04-09 01:15:46 +02:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 06:38:14 +01:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-04-09 01:15:46 +02:00
|
|
|
// Refer to the license.txt file included.
|
2013-09-20 05:21:22 +02:00
|
|
|
|
2014-04-09 01:15:46 +02:00
|
|
|
#pragma once
|
2013-09-20 05:21:22 +02:00
|
|
|
|
2014-06-19 00:58:09 +02:00
|
|
|
#include <vector>
|
|
|
|
|
2015-05-06 09:06:12 +02:00
|
|
|
#include "common/common_types.h"
|
2015-01-06 22:30:40 +01:00
|
|
|
#include "common/file_util.h"
|
2013-09-20 05:21:22 +02:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
2014-06-17 05:18:10 +02:00
|
|
|
// Loader namespace
|
2013-09-20 05:21:22 +02:00
|
|
|
|
|
|
|
namespace Loader {
|
|
|
|
|
2014-06-19 00:58:09 +02:00
|
|
|
/// File types supported by CTR
|
|
|
|
enum class FileType {
|
|
|
|
Error,
|
|
|
|
Unknown,
|
|
|
|
CCI,
|
|
|
|
CXI,
|
|
|
|
CIA,
|
|
|
|
ELF,
|
2014-08-27 06:04:26 +02:00
|
|
|
BIN,
|
2014-12-07 21:47:06 +01:00
|
|
|
THREEDSX, //3DSX
|
2014-06-19 00:58:09 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/// Return type for functions in Loader namespace
|
|
|
|
enum class ResultStatus {
|
|
|
|
Success,
|
|
|
|
Error,
|
|
|
|
ErrorInvalidFormat,
|
|
|
|
ErrorNotImplemented,
|
|
|
|
ErrorNotLoaded,
|
2014-06-19 05:53:22 +02:00
|
|
|
ErrorNotUsed,
|
2014-06-19 00:58:09 +02:00
|
|
|
ErrorAlreadyLoaded,
|
2014-07-05 02:32:06 +02:00
|
|
|
ErrorMemoryAllocationFailed,
|
2014-06-19 00:58:09 +02:00
|
|
|
};
|
|
|
|
|
2015-02-03 14:07:03 +01:00
|
|
|
static inline u32 MakeMagic(char a, char b, char c, char d) {
|
2015-01-07 00:10:13 +01:00
|
|
|
return a | b << 8 | c << 16 | d << 24;
|
|
|
|
}
|
|
|
|
|
2014-06-19 00:58:09 +02:00
|
|
|
/// Interface for loading an application
|
|
|
|
class AppLoader : NonCopyable {
|
|
|
|
public:
|
2015-01-06 22:30:40 +01:00
|
|
|
AppLoader(std::unique_ptr<FileUtil::IOFile>&& file) : file(std::move(file)) { }
|
2014-06-19 00:58:09 +02:00
|
|
|
virtual ~AppLoader() { }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Load the application
|
|
|
|
* @return ResultStatus result of function
|
|
|
|
*/
|
2014-06-19 23:46:05 +02:00
|
|
|
virtual ResultStatus Load() = 0;
|
2014-06-19 00:58:09 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the code (typically .code section) of the application
|
2014-06-27 21:33:23 +02:00
|
|
|
* @param buffer Reference to buffer to store data
|
|
|
|
* @return ResultStatus result of function
|
2014-06-19 00:58:09 +02:00
|
|
|
*/
|
2014-07-04 19:11:09 +02:00
|
|
|
virtual ResultStatus ReadCode(std::vector<u8>& buffer) const {
|
2014-06-27 21:33:23 +02:00
|
|
|
return ResultStatus::ErrorNotImplemented;
|
2014-06-19 00:58:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-06-22 21:40:21 +02:00
|
|
|
* Get the icon (typically icon section) of the application
|
2014-06-27 21:33:23 +02:00
|
|
|
* @param buffer Reference to buffer to store data
|
|
|
|
* @return ResultStatus result of function
|
2014-06-19 00:58:09 +02:00
|
|
|
*/
|
2014-07-04 19:11:09 +02:00
|
|
|
virtual ResultStatus ReadIcon(std::vector<u8>& buffer) const {
|
2014-06-27 21:33:23 +02:00
|
|
|
return ResultStatus::ErrorNotImplemented;
|
2014-06-19 00:58:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-06-22 21:40:21 +02:00
|
|
|
* Get the banner (typically banner section) of the application
|
2014-06-27 21:33:23 +02:00
|
|
|
* @param buffer Reference to buffer to store data
|
|
|
|
* @return ResultStatus result of function
|
2014-06-19 00:58:09 +02:00
|
|
|
*/
|
2014-07-04 19:11:09 +02:00
|
|
|
virtual ResultStatus ReadBanner(std::vector<u8>& buffer) const {
|
2014-06-27 21:33:23 +02:00
|
|
|
return ResultStatus::ErrorNotImplemented;
|
2014-06-19 00:58:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-06-22 21:40:21 +02:00
|
|
|
* Get the logo (typically logo section) of the application
|
2014-06-27 21:33:23 +02:00
|
|
|
* @param buffer Reference to buffer to store data
|
|
|
|
* @return ResultStatus result of function
|
2014-06-19 00:58:09 +02:00
|
|
|
*/
|
2014-07-04 19:11:09 +02:00
|
|
|
virtual ResultStatus ReadLogo(std::vector<u8>& buffer) const {
|
2014-06-27 21:33:23 +02:00
|
|
|
return ResultStatus::ErrorNotImplemented;
|
2014-06-19 00:58:09 +02:00
|
|
|
}
|
2013-09-20 05:21:22 +02:00
|
|
|
|
2014-06-19 00:58:09 +02:00
|
|
|
/**
|
2014-06-27 21:33:23 +02:00
|
|
|
* Get the RomFS of the application
|
|
|
|
* @param buffer Reference to buffer to store data
|
|
|
|
* @return ResultStatus result of function
|
2014-06-19 00:58:09 +02:00
|
|
|
*/
|
2014-07-04 19:11:09 +02:00
|
|
|
virtual ResultStatus ReadRomFS(std::vector<u8>& buffer) const {
|
2014-06-27 21:33:23 +02:00
|
|
|
return ResultStatus::ErrorNotImplemented;
|
2014-06-19 00:58:09 +02:00
|
|
|
}
|
2015-01-06 22:30:40 +01:00
|
|
|
|
|
|
|
protected:
|
|
|
|
std::unique_ptr<FileUtil::IOFile> file;
|
|
|
|
bool is_loaded = false;
|
2013-09-20 05:21:22 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Identifies and loads a bootable file
|
|
|
|
* @param filename String filename of bootable file
|
2014-06-19 00:58:09 +02:00
|
|
|
* @return ResultStatus result of function
|
2013-09-20 05:21:22 +02:00
|
|
|
*/
|
2014-06-19 23:46:05 +02:00
|
|
|
ResultStatus LoadFile(const std::string& filename);
|
2013-09-20 05:21:22 +02:00
|
|
|
|
|
|
|
} // namespace
|