2014-04-08 23:15:46 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2013-09-20 03:21:22 +00:00
|
|
|
|
2014-06-18 22:58:09 +00:00
|
|
|
#include <memory>
|
|
|
|
|
2014-06-16 22:03:13 +00:00
|
|
|
#include "core/loader/loader.h"
|
2014-06-17 03:05:10 +00:00
|
|
|
#include "core/loader/elf.h"
|
2014-06-17 02:57:09 +00:00
|
|
|
#include "core/loader/ncch.h"
|
2014-04-22 03:09:10 +00:00
|
|
|
|
2013-09-20 03:21:22 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
namespace Loader {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Identifies the type of a bootable file
|
|
|
|
* @param filename String filename of bootable file
|
|
|
|
* @todo (ShizZy) this function sucks... make it actually check file contents etc.
|
|
|
|
* @return FileType of file
|
|
|
|
*/
|
2014-06-19 21:46:05 +00:00
|
|
|
FileType IdentifyFile(const std::string &filename) {
|
2014-04-01 02:23:55 +00:00
|
|
|
if (filename.size() == 0) {
|
|
|
|
ERROR_LOG(LOADER, "invalid filename %s", filename.c_str());
|
2014-06-18 22:58:09 +00:00
|
|
|
return FileType::Error;
|
2014-04-01 02:23:55 +00:00
|
|
|
}
|
|
|
|
std::string extension = filename.size() >= 5 ? filename.substr(filename.size() - 4) : "";
|
|
|
|
|
2014-06-17 03:18:10 +00:00
|
|
|
if (!strcasecmp(extension.c_str(), ".elf")) {
|
2014-06-18 22:58:09 +00:00
|
|
|
return FileType::ELF; // TODO(bunnei): Do some filetype checking :p
|
2014-04-01 02:23:55 +00:00
|
|
|
}
|
2014-05-15 22:54:57 +00:00
|
|
|
else if (!strcasecmp(extension.c_str(), ".axf")) {
|
2014-06-18 22:58:09 +00:00
|
|
|
return FileType::ELF; // TODO(bunnei): Do some filetype checking :p
|
2014-05-15 22:54:57 +00:00
|
|
|
}
|
2014-06-16 21:53:25 +00:00
|
|
|
else if (!strcasecmp(extension.c_str(), ".cxi")) {
|
2014-06-18 22:58:09 +00:00
|
|
|
return FileType::CXI; // TODO(bunnei): Do some filetype checking :p
|
2014-06-16 21:53:25 +00:00
|
|
|
}
|
|
|
|
else if (!strcasecmp(extension.c_str(), ".cci")) {
|
2014-06-18 22:58:09 +00:00
|
|
|
return FileType::CCI; // TODO(bunnei): Do some filetype checking :p
|
2014-06-16 21:53:25 +00:00
|
|
|
}
|
2014-06-18 22:58:09 +00:00
|
|
|
return FileType::Unknown;
|
2013-09-20 03:21:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Identifies and loads a bootable file
|
|
|
|
* @param filename String filename of bootable file
|
2014-06-18 22:58:09 +00:00
|
|
|
* @return ResultStatus result of function
|
2013-09-20 03:21:22 +00:00
|
|
|
*/
|
2014-06-19 21:46:05 +00:00
|
|
|
ResultStatus LoadFile(const std::string& filename) {
|
2014-06-18 22:58:09 +00:00
|
|
|
INFO_LOG(LOADER, "Loading file %s...", filename.c_str());
|
2014-04-01 02:23:55 +00:00
|
|
|
|
|
|
|
switch (IdentifyFile(filename)) {
|
|
|
|
|
2014-06-18 22:58:09 +00:00
|
|
|
// Standard ELF file format...
|
|
|
|
case FileType::ELF: {
|
|
|
|
return AppLoader_ELF(filename).Load();
|
|
|
|
}
|
2014-05-01 03:50:14 +00:00
|
|
|
|
2014-06-18 22:58:09 +00:00
|
|
|
// NCCH/NCSD container formats...
|
|
|
|
case FileType::CXI:
|
|
|
|
case FileType::CCI: {
|
|
|
|
return AppLoader_NCCH(filename).Load();
|
|
|
|
}
|
2014-06-17 02:57:09 +00:00
|
|
|
|
2014-06-18 22:58:09 +00:00
|
|
|
// Error occurred durring IdentifyFile...
|
|
|
|
case FileType::Error:
|
|
|
|
|
|
|
|
// IdentifyFile could know identify file type...
|
|
|
|
case FileType::Unknown:
|
2013-09-20 03:21:22 +00:00
|
|
|
|
2014-04-01 02:23:55 +00:00
|
|
|
default:
|
2014-06-18 22:58:09 +00:00
|
|
|
return ResultStatus::ErrorInvalidFormat;
|
2014-04-01 02:23:55 +00:00
|
|
|
}
|
2014-06-18 22:58:09 +00:00
|
|
|
|
|
|
|
return ResultStatus::Error;
|
2013-09-20 03:21:22 +00:00
|
|
|
}
|
|
|
|
|
2014-06-17 03:18:10 +00:00
|
|
|
} // namespace Loader
|