2015-07-02 18:33:55 +00:00
|
|
|
#include "NOD/DiscBase.hpp"
|
|
|
|
#include "NOD/IFileIO.hpp"
|
2015-09-28 01:55:59 +00:00
|
|
|
#include "NOD/NOD.hpp"
|
2015-06-26 20:01:15 +00:00
|
|
|
|
2015-09-02 18:53:24 +00:00
|
|
|
#include <errno.h>
|
2015-06-30 19:38:51 +00:00
|
|
|
#ifndef _WIN32
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
|
2015-06-26 20:01:15 +00:00
|
|
|
namespace NOD
|
|
|
|
{
|
|
|
|
|
2015-06-30 00:07:46 +00:00
|
|
|
void DiscBase::IPartition::parseFST(IPartReadStream& s)
|
2015-06-29 05:35:25 +00:00
|
|
|
{
|
2015-06-30 00:07:46 +00:00
|
|
|
std::unique_ptr<uint8_t[]> fst(new uint8_t[m_fstSz]);
|
|
|
|
s.seek(m_fstOff);
|
|
|
|
s.read(fst.get(), m_fstSz);
|
|
|
|
|
|
|
|
const FSTNode* nodes = (FSTNode*)fst.get();
|
|
|
|
|
|
|
|
/* Root node indicates the count of all contained nodes */
|
|
|
|
uint32_t nodeCount = nodes[0].getLength();
|
|
|
|
const char* names = (char*)fst.get() + 12 * nodeCount;
|
|
|
|
m_nodes.clear();
|
|
|
|
m_nodes.reserve(nodeCount);
|
|
|
|
|
|
|
|
/* Construct nodes */
|
|
|
|
for (uint32_t n=0 ; n<nodeCount ; ++n)
|
|
|
|
{
|
|
|
|
const FSTNode& node = nodes[n];
|
2015-06-30 06:46:19 +00:00
|
|
|
m_nodes.emplace_back(*this, node, n ? names + node.getNameOffset() : "");
|
2015-06-30 00:07:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Setup dir-child iterators */
|
|
|
|
for (std::vector<Node>::iterator it=m_nodes.begin();
|
|
|
|
it != m_nodes.end();
|
|
|
|
++it)
|
|
|
|
{
|
|
|
|
Node& node = *it;
|
|
|
|
if (node.m_kind == Node::NODE_DIRECTORY)
|
|
|
|
{
|
|
|
|
node.m_childrenBegin = it + 1;
|
|
|
|
node.m_childrenEnd = m_nodes.begin() + node.m_discLength;
|
|
|
|
}
|
|
|
|
}
|
2015-06-29 05:35:25 +00:00
|
|
|
}
|
|
|
|
|
2015-07-10 03:11:30 +00:00
|
|
|
void DiscBase::IPartition::parseDOL(IPartReadStream& s)
|
|
|
|
{
|
|
|
|
/* Read Dol header */
|
2015-09-27 17:10:40 +00:00
|
|
|
DOLHeader dolHeader;
|
|
|
|
s.read(&dolHeader, sizeof(DOLHeader));
|
2015-07-10 03:11:30 +00:00
|
|
|
|
|
|
|
/* Calculate Dol size */
|
2015-09-27 17:10:40 +00:00
|
|
|
uint32_t dolSize = SBig(dolHeader.textOff[0]);
|
2015-07-10 03:11:30 +00:00
|
|
|
for (uint32_t i = 0 ; i < 7 ; i++)
|
2015-09-27 17:10:40 +00:00
|
|
|
dolSize += SBig(dolHeader.textSizes[i]);
|
2015-07-10 03:11:30 +00:00
|
|
|
for (uint32_t i = 0 ; i < 11 ; i++)
|
2015-09-27 17:10:40 +00:00
|
|
|
dolSize += SBig(dolHeader.dataSizes[i]);
|
|
|
|
|
2015-07-10 03:11:30 +00:00
|
|
|
m_dolSz = dolSize;
|
|
|
|
}
|
|
|
|
|
2015-09-28 01:55:59 +00:00
|
|
|
bool DiscBase::IPartition::Node::extractToDirectory(const SystemString& basePath, const ExtractionContext& ctx) const
|
2015-06-30 06:46:19 +00:00
|
|
|
{
|
2015-07-02 18:33:55 +00:00
|
|
|
SystemStringView nameView(getName());
|
|
|
|
SystemString path = basePath + _S("/") + nameView.sys_str();
|
2015-09-28 01:55:59 +00:00
|
|
|
|
2015-06-30 06:46:19 +00:00
|
|
|
if (m_kind == NODE_DIRECTORY)
|
|
|
|
{
|
2015-09-28 01:55:59 +00:00
|
|
|
if (ctx.verbose && ctx.progressCB && !getName().empty())
|
|
|
|
ctx.progressCB(getName());
|
2015-07-02 20:37:07 +00:00
|
|
|
if (Mkdir(path.c_str(), 0755) && errno != EEXIST)
|
|
|
|
{
|
2015-07-26 02:44:44 +00:00
|
|
|
LogModule.report(LogVisor::Error, _S("unable to mkdir '%s'"), path.c_str());
|
|
|
|
return false;
|
2015-07-02 20:37:07 +00:00
|
|
|
}
|
2015-06-30 19:38:51 +00:00
|
|
|
for (Node& subnode : *this)
|
2015-09-28 01:55:59 +00:00
|
|
|
if (!subnode.extractToDirectory(path, ctx))
|
2015-07-26 02:44:44 +00:00
|
|
|
return false;
|
2015-06-30 06:46:19 +00:00
|
|
|
}
|
|
|
|
else if (m_kind == NODE_FILE)
|
|
|
|
{
|
2015-07-02 20:37:07 +00:00
|
|
|
Sstat theStat;
|
2015-09-28 01:55:59 +00:00
|
|
|
if (ctx.verbose && ctx.progressCB)
|
|
|
|
ctx.progressCB(getName());
|
|
|
|
|
|
|
|
if (ctx.force || Stat(path.c_str(), &theStat))
|
2015-06-30 06:46:19 +00:00
|
|
|
{
|
|
|
|
std::unique_ptr<IPartReadStream> rs = beginReadStream();
|
2015-07-17 23:28:41 +00:00
|
|
|
std::unique_ptr<IFileIO::IWriteStream> ws = NewFileIO(path)->beginWriteStream();
|
2015-08-05 21:45:25 +00:00
|
|
|
ws->copyFromDisc(*rs, m_discLength);
|
2015-06-30 06:46:19 +00:00
|
|
|
}
|
|
|
|
}
|
2015-07-26 02:44:44 +00:00
|
|
|
return true;
|
2015-06-30 06:46:19 +00:00
|
|
|
}
|
|
|
|
|
2015-09-28 01:55:59 +00:00
|
|
|
bool DiscBase::IPartition::extractToDirectory(const SystemString& path, const ExtractionContext& ctx)
|
2015-06-30 19:38:51 +00:00
|
|
|
{
|
2015-07-02 20:37:07 +00:00
|
|
|
Sstat theStat;
|
|
|
|
if (Mkdir(path.c_str(), 0755) && errno != EEXIST)
|
|
|
|
{
|
2015-07-26 02:44:44 +00:00
|
|
|
LogModule.report(LogVisor::Error, _S("unable to mkdir '%s'"), path.c_str());
|
|
|
|
return false;
|
2015-07-02 20:37:07 +00:00
|
|
|
}
|
2015-06-30 19:38:51 +00:00
|
|
|
|
|
|
|
/* Extract Apploader */
|
2015-07-02 20:37:07 +00:00
|
|
|
SystemString apploaderPath = path + _S("/apploader.bin");
|
2015-09-28 01:55:59 +00:00
|
|
|
if (ctx.force || Stat(apploaderPath.c_str(), &theStat))
|
2015-06-30 19:38:51 +00:00
|
|
|
{
|
2015-09-28 01:55:59 +00:00
|
|
|
if (ctx.verbose && ctx.progressCB)
|
|
|
|
ctx.progressCB("apploader.bin");
|
2015-07-10 03:11:30 +00:00
|
|
|
std::unique_ptr<uint8_t[]> buf = getApploaderBuf();
|
|
|
|
NewFileIO(apploaderPath)->beginWriteStream()->write(buf.get(), m_apploaderSz);
|
2015-06-30 19:38:51 +00:00
|
|
|
}
|
|
|
|
|
2015-07-03 03:49:31 +00:00
|
|
|
/* Extract Dol */
|
|
|
|
SystemString dolPath = path + _S("/main.dol");
|
2015-09-28 01:55:59 +00:00
|
|
|
if (ctx.force || Stat(dolPath.c_str(), &theStat))
|
2015-07-03 03:49:31 +00:00
|
|
|
{
|
2015-09-28 01:55:59 +00:00
|
|
|
if (ctx.verbose && ctx.progressCB)
|
|
|
|
ctx.progressCB("main.dol");
|
2015-07-10 03:11:30 +00:00
|
|
|
std::unique_ptr<uint8_t[]> buf = getDOLBuf();
|
|
|
|
NewFileIO(dolPath)->beginWriteStream()->write(buf.get(), m_dolSz);
|
2015-07-03 03:49:31 +00:00
|
|
|
}
|
|
|
|
|
2015-06-30 19:38:51 +00:00
|
|
|
/* Extract Filesystem */
|
2015-09-28 01:55:59 +00:00
|
|
|
return m_nodes[0].extractToDirectory(path, ctx);
|
2015-06-30 19:38:51 +00:00
|
|
|
}
|
|
|
|
|
2015-06-26 20:01:15 +00:00
|
|
|
}
|