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