2016-03-04 23:04:30 +00:00
|
|
|
#include "nod/DiscGCN.hpp"
|
2017-02-05 06:19:34 +00:00
|
|
|
#include <inttypes.h>
|
2015-07-14 02:24:17 +00:00
|
|
|
#define BUFFER_SZ 0x8000
|
2015-06-28 05:43:53 +00:00
|
|
|
|
2016-03-04 23:04:30 +00:00
|
|
|
namespace nod
|
2015-06-28 05:43:53 +00:00
|
|
|
{
|
|
|
|
|
2015-06-30 00:07:46 +00:00
|
|
|
class PartitionGCN : public DiscBase::IPartition
|
|
|
|
{
|
|
|
|
public:
|
2017-02-05 06:19:34 +00:00
|
|
|
PartitionGCN(const DiscGCN& parent, Kind kind, uint64_t offset, bool& err)
|
2015-06-30 00:07:46 +00:00
|
|
|
: IPartition(parent, kind, offset)
|
|
|
|
{
|
|
|
|
/* GCN-specific header reads */
|
2015-06-30 06:46:19 +00:00
|
|
|
std::unique_ptr<IPartReadStream> s = beginReadStream(0x420);
|
2017-02-05 06:19:34 +00:00
|
|
|
if (!s)
|
|
|
|
{
|
|
|
|
err = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
uint32_t vals[5];
|
|
|
|
s->read(vals, 5 * 4);
|
2015-06-30 00:07:46 +00:00
|
|
|
m_dolOff = SBig(vals[0]);
|
|
|
|
m_fstOff = SBig(vals[1]);
|
|
|
|
m_fstSz = SBig(vals[2]);
|
2017-02-05 06:19:34 +00:00
|
|
|
m_fstMemoryAddr = SBig(vals[4]);
|
2015-06-30 19:38:51 +00:00
|
|
|
s->seek(0x2440 + 0x14);
|
|
|
|
s->read(vals, 8);
|
2015-07-04 17:30:00 +00:00
|
|
|
m_apploaderSz = 32 + SBig(vals[0]) + SBig(vals[1]);
|
2015-06-30 00:07:46 +00:00
|
|
|
|
|
|
|
/* Yay files!! */
|
2015-08-05 21:45:25 +00:00
|
|
|
parseFST(*s);
|
2015-07-10 03:11:30 +00:00
|
|
|
|
|
|
|
/* Also make DOL header and size handy */
|
|
|
|
s->seek(m_dolOff);
|
2015-08-05 21:45:25 +00:00
|
|
|
parseDOL(*s);
|
2015-06-30 00:07:46 +00:00
|
|
|
}
|
|
|
|
|
2015-06-30 06:46:19 +00:00
|
|
|
class PartReadStream : public IPartReadStream
|
2015-06-30 00:07:46 +00:00
|
|
|
{
|
|
|
|
const PartitionGCN& m_parent;
|
|
|
|
std::unique_ptr<IDiscIO::IReadStream> m_dio;
|
|
|
|
|
2015-07-14 02:24:17 +00:00
|
|
|
uint64_t m_offset;
|
|
|
|
size_t m_curBlock = SIZE_MAX;
|
|
|
|
uint8_t m_buf[BUFFER_SZ];
|
|
|
|
|
2015-06-30 00:07:46 +00:00
|
|
|
public:
|
2017-02-05 06:19:34 +00:00
|
|
|
PartReadStream(const PartitionGCN& parent, uint64_t offset, bool& err)
|
2015-07-14 02:24:17 +00:00
|
|
|
: m_parent(parent), m_offset(offset)
|
|
|
|
{
|
|
|
|
size_t block = m_offset / BUFFER_SZ;
|
|
|
|
m_dio = m_parent.m_parent.getDiscIO().beginReadStream(block * BUFFER_SZ);
|
2017-02-05 06:19:34 +00:00
|
|
|
if (!m_dio)
|
|
|
|
{
|
|
|
|
err = true;
|
|
|
|
return;
|
|
|
|
}
|
2015-07-14 02:24:17 +00:00
|
|
|
m_dio->read(m_buf, BUFFER_SZ);
|
|
|
|
m_curBlock = block;
|
|
|
|
}
|
2015-06-30 19:38:51 +00:00
|
|
|
void seek(int64_t offset, int whence)
|
2015-07-14 02:24:17 +00:00
|
|
|
{
|
|
|
|
if (whence == SEEK_SET)
|
|
|
|
m_offset = offset;
|
|
|
|
else if (whence == SEEK_CUR)
|
|
|
|
m_offset += offset;
|
|
|
|
else
|
|
|
|
return;
|
|
|
|
size_t block = m_offset / BUFFER_SZ;
|
|
|
|
if (block != m_curBlock)
|
|
|
|
{
|
|
|
|
m_dio->seek(block * BUFFER_SZ);
|
|
|
|
m_dio->read(m_buf, BUFFER_SZ);
|
|
|
|
m_curBlock = block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
uint64_t position() const {return m_offset;}
|
2015-06-30 19:38:51 +00:00
|
|
|
uint64_t read(void* buf, uint64_t length)
|
2015-07-14 02:24:17 +00:00
|
|
|
{
|
|
|
|
size_t block = m_offset / BUFFER_SZ;
|
|
|
|
size_t cacheOffset = m_offset % BUFFER_SZ;
|
|
|
|
uint64_t cacheSize;
|
|
|
|
uint64_t rem = length;
|
|
|
|
uint8_t* dst = (uint8_t*)buf;
|
|
|
|
|
|
|
|
while (rem)
|
|
|
|
{
|
|
|
|
if (block != m_curBlock)
|
|
|
|
{
|
|
|
|
m_dio->read(m_buf, BUFFER_SZ);
|
|
|
|
m_curBlock = block;
|
|
|
|
}
|
|
|
|
|
|
|
|
cacheSize = rem;
|
|
|
|
if (cacheSize + cacheOffset > BUFFER_SZ)
|
|
|
|
cacheSize = BUFFER_SZ - cacheOffset;
|
|
|
|
|
|
|
|
memcpy(dst, m_buf + cacheOffset, cacheSize);
|
|
|
|
dst += cacheSize;
|
|
|
|
rem -= cacheSize;
|
|
|
|
cacheOffset = 0;
|
|
|
|
++block;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_offset += length;
|
|
|
|
return dst - (uint8_t*)buf;
|
|
|
|
}
|
2015-06-30 00:07:46 +00:00
|
|
|
};
|
|
|
|
|
2015-06-30 19:38:51 +00:00
|
|
|
std::unique_ptr<IPartReadStream> beginReadStream(uint64_t offset) const
|
2015-06-30 00:07:46 +00:00
|
|
|
{
|
2017-02-05 06:19:34 +00:00
|
|
|
bool Err = false;
|
|
|
|
auto ret = std::unique_ptr<IPartReadStream>(new PartReadStream(*this, offset, Err));
|
|
|
|
if (Err)
|
|
|
|
return {};
|
|
|
|
return ret;
|
2015-06-30 00:07:46 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-02-05 06:19:34 +00:00
|
|
|
DiscGCN::DiscGCN(std::unique_ptr<IDiscIO>&& dio, bool& err)
|
|
|
|
: DiscBase(std::move(dio), err)
|
2015-06-28 05:43:53 +00:00
|
|
|
{
|
2017-02-05 06:19:34 +00:00
|
|
|
if (err)
|
|
|
|
return;
|
|
|
|
|
2015-06-30 00:07:46 +00:00
|
|
|
/* One lone partition for GCN */
|
2017-02-05 06:19:34 +00:00
|
|
|
m_partitions.emplace_back(new PartitionGCN(*this, IPartition::Kind::Data, 0, err));
|
|
|
|
}
|
|
|
|
|
|
|
|
DiscBuilderGCN DiscGCN::makeMergeBuilder(const SystemChar* outPath, FProgress progressCB)
|
|
|
|
{
|
|
|
|
IPartition* dataPart = getDataPartition();
|
|
|
|
return DiscBuilderGCN(outPath, m_header.m_gameID, m_header.m_gameTitle,
|
|
|
|
dataPart->getFSTMemoryAddr(), progressCB);
|
2015-06-28 05:43:53 +00:00
|
|
|
}
|
|
|
|
|
2016-01-23 03:39:38 +00:00
|
|
|
class PartitionBuilderGCN : public DiscBuilderBase::PartitionBuilderBase
|
2015-06-28 05:43:53 +00:00
|
|
|
{
|
2016-01-21 06:30:37 +00:00
|
|
|
uint64_t m_curUser = 0x57058000;
|
2016-01-22 02:30:17 +00:00
|
|
|
uint32_t m_fstMemoryAddr;
|
2016-01-25 02:00:02 +00:00
|
|
|
|
2016-01-21 06:30:37 +00:00
|
|
|
public:
|
2016-01-25 02:00:02 +00:00
|
|
|
class PartWriteStream : public IPartWriteStream
|
|
|
|
{
|
|
|
|
const PartitionBuilderGCN& m_parent;
|
|
|
|
uint64_t m_offset;
|
|
|
|
std::unique_ptr<IFileIO::IWriteStream> m_fio;
|
|
|
|
|
|
|
|
public:
|
2017-02-05 06:19:34 +00:00
|
|
|
PartWriteStream(const PartitionBuilderGCN& parent, uint64_t offset, bool& err)
|
2016-01-25 02:00:02 +00:00
|
|
|
: m_parent(parent), m_offset(offset)
|
|
|
|
{
|
|
|
|
m_fio = m_parent.m_parent.getFileIO().beginWriteStream(offset);
|
2017-02-05 06:19:34 +00:00
|
|
|
if (!m_fio)
|
|
|
|
err = true;
|
2016-01-25 02:00:02 +00:00
|
|
|
}
|
|
|
|
void close() {m_fio.reset();}
|
|
|
|
uint64_t position() const {return m_offset;}
|
|
|
|
uint64_t write(const void* buf, uint64_t length)
|
|
|
|
{
|
|
|
|
uint64_t len = m_fio->write(buf, length);
|
|
|
|
m_offset += len;
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
void seek(size_t off)
|
|
|
|
{
|
|
|
|
m_offset = off;
|
|
|
|
m_fio = m_parent.m_parent.getFileIO().beginWriteStream(off);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-01-22 02:30:17 +00:00
|
|
|
PartitionBuilderGCN(DiscBuilderBase& parent, Kind kind,
|
2016-01-21 06:30:37 +00:00
|
|
|
const char gameID[6], const char* gameTitle, uint32_t fstMemoryAddr)
|
2016-01-23 03:39:38 +00:00
|
|
|
: DiscBuilderBase::PartitionBuilderBase(parent, kind, gameID, gameTitle), m_fstMemoryAddr(fstMemoryAddr) {}
|
2016-01-21 06:30:37 +00:00
|
|
|
|
2016-01-25 02:00:02 +00:00
|
|
|
uint64_t userAllocate(uint64_t reqSz, IPartWriteStream& ws)
|
2016-01-21 06:30:37 +00:00
|
|
|
{
|
|
|
|
m_curUser -= reqSz;
|
|
|
|
m_curUser &= 0xfffffffffffffff0;
|
|
|
|
if (m_curUser < 0x30000)
|
|
|
|
{
|
2017-02-05 06:19:34 +00:00
|
|
|
LogModule.report(logvisor::Error, "user area low mark reached");
|
2016-01-21 06:30:37 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2016-01-25 02:00:02 +00:00
|
|
|
static_cast<PartWriteStream&>(ws).seek(m_curUser);
|
2016-01-21 06:30:37 +00:00
|
|
|
return m_curUser;
|
|
|
|
}
|
|
|
|
|
2016-01-22 23:45:58 +00:00
|
|
|
uint32_t packOffset(uint64_t offset) const
|
|
|
|
{
|
|
|
|
return offset;
|
|
|
|
}
|
|
|
|
|
2016-01-25 02:00:02 +00:00
|
|
|
std::unique_ptr<IPartWriteStream> beginWriteStream(uint64_t offset)
|
|
|
|
{
|
2017-02-05 06:19:34 +00:00
|
|
|
bool Err = false;
|
|
|
|
std::unique_ptr<IPartWriteStream> ret = std::make_unique<PartWriteStream>(*this, offset, Err);
|
|
|
|
if (Err)
|
|
|
|
return {};
|
|
|
|
return ret;
|
2016-01-25 02:00:02 +00:00
|
|
|
}
|
|
|
|
|
2017-02-05 06:19:34 +00:00
|
|
|
bool _build(const std::function<bool(IPartWriteStream&, size_t&)>& func)
|
2016-01-21 06:30:37 +00:00
|
|
|
{
|
2016-01-25 02:00:02 +00:00
|
|
|
std::unique_ptr<IPartWriteStream> ws = beginWriteStream(0);
|
2017-02-05 06:19:34 +00:00
|
|
|
if (!ws)
|
2016-01-21 06:30:37 +00:00
|
|
|
return false;
|
|
|
|
Header header(m_gameID, m_gameTitle.c_str(), false);
|
|
|
|
header.write(*ws);
|
|
|
|
|
2016-01-25 02:00:02 +00:00
|
|
|
ws = beginWriteStream(0x2440);
|
2016-01-21 06:30:37 +00:00
|
|
|
size_t xferSz = 0;
|
2017-02-05 06:19:34 +00:00
|
|
|
if (!func(*ws, xferSz))
|
|
|
|
return false;
|
2016-01-21 06:30:37 +00:00
|
|
|
|
|
|
|
size_t fstOff = ROUND_UP_32(xferSz);
|
|
|
|
size_t fstSz = sizeof(FSTNode) * m_buildNodes.size();
|
|
|
|
for (size_t i=0 ; i<fstOff-xferSz ; ++i)
|
|
|
|
ws->write("\xff", 1);
|
2016-01-21 20:46:07 +00:00
|
|
|
fstOff += 0x2440;
|
2016-01-21 06:30:37 +00:00
|
|
|
ws->write(m_buildNodes.data(), fstSz);
|
|
|
|
for (const std::string& str : m_buildNames)
|
|
|
|
ws->write(str.data(), str.size()+1);
|
|
|
|
fstSz += m_buildNameOff;
|
|
|
|
fstSz = ROUND_UP_32(fstSz);
|
|
|
|
|
2016-01-22 02:30:17 +00:00
|
|
|
if (fstOff + fstSz >= m_curUser)
|
2017-02-05 06:19:34 +00:00
|
|
|
{
|
|
|
|
LogModule.report(logvisor::Error,
|
2016-01-22 02:30:17 +00:00
|
|
|
"FST flows into user area (one or the other is too big)");
|
2017-02-05 06:19:34 +00:00
|
|
|
return false;
|
|
|
|
}
|
2016-01-22 02:30:17 +00:00
|
|
|
|
2016-01-25 02:00:02 +00:00
|
|
|
ws = beginWriteStream(0x420);
|
2017-02-05 06:19:34 +00:00
|
|
|
if (!ws)
|
|
|
|
return false;
|
2016-01-21 06:30:37 +00:00
|
|
|
uint32_t vals[7];
|
|
|
|
vals[0] = SBig(uint32_t(m_dolOffset));
|
|
|
|
vals[1] = SBig(uint32_t(fstOff));
|
|
|
|
vals[2] = SBig(uint32_t(fstSz));
|
|
|
|
vals[3] = SBig(uint32_t(fstSz));
|
|
|
|
vals[4] = SBig(uint32_t(m_fstMemoryAddr));
|
|
|
|
vals[5] = SBig(uint32_t(m_curUser));
|
|
|
|
vals[6] = SBig(uint32_t(0x57058000 - m_curUser));
|
|
|
|
ws->write(vals, sizeof(vals));
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2017-02-05 06:19:34 +00:00
|
|
|
|
|
|
|
bool buildFromDirectory(const SystemChar* dirIn, const SystemChar* dolIn, const SystemChar* apploaderIn)
|
|
|
|
{
|
|
|
|
std::unique_ptr<IPartWriteStream> ws = beginWriteStream(0);
|
|
|
|
if (!ws)
|
|
|
|
return false;
|
|
|
|
bool result = DiscBuilderBase::PartitionBuilderBase::buildFromDirectory(*ws, dirIn, dolIn, apploaderIn);
|
|
|
|
if (!result)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return _build([this, apploaderIn](IPartWriteStream& ws, size_t& xferSz) -> bool
|
|
|
|
{
|
|
|
|
std::unique_ptr<IFileIO::IReadStream> rs = NewFileIO(apploaderIn)->beginReadStream();
|
|
|
|
if (!rs)
|
|
|
|
return false;
|
|
|
|
char buf[8192];
|
|
|
|
SystemString apploaderName(apploaderIn);
|
|
|
|
++m_parent.m_progressIdx;
|
|
|
|
while (true)
|
|
|
|
{
|
|
|
|
size_t rdSz = rs->read(buf, 8192);
|
|
|
|
if (!rdSz)
|
|
|
|
break;
|
|
|
|
ws.write(buf, rdSz);
|
|
|
|
xferSz += rdSz;
|
|
|
|
if (0x2440 + xferSz >= m_curUser)
|
|
|
|
{
|
|
|
|
LogModule.report(logvisor::Error,
|
|
|
|
"apploader flows into user area (one or the other is too big)");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
m_parent.m_progressCB(m_parent.m_progressIdx, apploaderName, xferSz);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
bool mergeFromDirectory(const PartitionGCN* partIn, const SystemChar* dirIn)
|
|
|
|
{
|
|
|
|
std::unique_ptr<IPartWriteStream> ws = beginWriteStream(0);
|
|
|
|
if (!ws)
|
|
|
|
return false;
|
|
|
|
bool result = DiscBuilderBase::PartitionBuilderBase::mergeFromDirectory(*ws, partIn, dirIn);
|
|
|
|
if (!result)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return _build([this, partIn](IPartWriteStream& ws, size_t& xferSz) -> bool
|
|
|
|
{
|
|
|
|
std::unique_ptr<uint8_t[]> apploaderBuf = partIn->getApploaderBuf();
|
|
|
|
size_t apploaderSz = partIn->getApploaderSize();
|
|
|
|
SystemString apploaderName(_S("<apploader>"));
|
|
|
|
++m_parent.m_progressIdx;
|
|
|
|
ws.write(apploaderBuf.get(), apploaderSz);
|
|
|
|
xferSz += apploaderSz;
|
|
|
|
if (0x2440 + xferSz >= m_curUser)
|
|
|
|
{
|
|
|
|
LogModule.report(logvisor::Error,
|
|
|
|
"apploader flows into user area (one or the other is too big)");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
m_parent.m_progressCB(m_parent.m_progressIdx, apploaderName, xferSz);
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
}
|
2016-01-21 06:30:37 +00:00
|
|
|
};
|
2016-01-20 03:17:24 +00:00
|
|
|
|
2016-01-21 06:30:37 +00:00
|
|
|
bool DiscBuilderGCN::buildFromDirectory(const SystemChar* dirIn, const SystemChar* dolIn,
|
|
|
|
const SystemChar* apploaderIn)
|
2016-01-25 05:55:31 +00:00
|
|
|
{
|
2017-02-05 06:19:34 +00:00
|
|
|
if (!m_fileIO->beginWriteStream())
|
|
|
|
return false;
|
|
|
|
if (!CheckFreeSpace(m_outPath.c_str(), 0x57058000))
|
2016-01-25 02:00:02 +00:00
|
|
|
{
|
2017-02-05 06:19:34 +00:00
|
|
|
LogModule.report(logvisor::Error, _S("not enough free disk space for %s"), m_outPath.c_str());
|
2016-01-25 02:00:02 +00:00
|
|
|
return false;
|
|
|
|
}
|
2016-02-02 20:42:17 +00:00
|
|
|
++m_progressIdx;
|
|
|
|
m_progressCB(m_progressIdx, _S("Preallocating image"), -1);
|
2017-02-05 06:19:34 +00:00
|
|
|
auto ws = m_fileIO->beginWriteStream(0x57058000 - 1);
|
|
|
|
if (!ws)
|
|
|
|
return false;
|
|
|
|
ws->write("", 1);
|
2016-01-25 02:00:02 +00:00
|
|
|
|
2016-01-21 06:30:37 +00:00
|
|
|
PartitionBuilderGCN& pb = static_cast<PartitionBuilderGCN&>(*m_partitions[0]);
|
|
|
|
return pb.buildFromDirectory(dirIn, dolIn, apploaderIn);
|
|
|
|
}
|
2016-01-20 03:17:24 +00:00
|
|
|
|
2017-02-05 06:19:34 +00:00
|
|
|
uint64_t DiscBuilderGCN::CalculateTotalSizeRequired(const SystemChar* dirIn, const SystemChar* dolIn)
|
|
|
|
{
|
|
|
|
uint64_t sz = DiscBuilderBase::PartitionBuilderBase::CalculateTotalSizeBuild(dolIn, dirIn);
|
|
|
|
if (sz == -1)
|
|
|
|
return -1;
|
|
|
|
sz += 0x30000;
|
|
|
|
if (sz > 0x57058000)
|
|
|
|
{
|
|
|
|
LogModule.report(logvisor::Error, _S("disc capacity exceeded [%" PRIu64 " / %" PRIu64 "]"), sz, 0x57058000);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return sz;
|
|
|
|
}
|
|
|
|
|
2016-01-21 06:30:37 +00:00
|
|
|
DiscBuilderGCN::DiscBuilderGCN(const SystemChar* outPath, const char gameID[6], const char* gameTitle,
|
2017-02-05 06:19:34 +00:00
|
|
|
uint32_t fstMemoryAddr, FProgress progressCB)
|
2016-02-02 21:18:16 +00:00
|
|
|
: DiscBuilderBase(outPath, 0x57058000, progressCB)
|
2016-01-21 06:30:37 +00:00
|
|
|
{
|
2016-01-23 03:39:38 +00:00
|
|
|
PartitionBuilderGCN* partBuilder = new PartitionBuilderGCN(*this, PartitionBuilderBase::Kind::Data,
|
2016-01-21 06:30:37 +00:00
|
|
|
gameID, gameTitle, fstMemoryAddr);
|
|
|
|
m_partitions.emplace_back(partBuilder);
|
2015-06-28 05:43:53 +00:00
|
|
|
}
|
|
|
|
|
2017-02-05 06:19:34 +00:00
|
|
|
DiscMergerGCN::DiscMergerGCN(const SystemChar* outPath, DiscGCN& sourceDisc, FProgress progressCB)
|
|
|
|
: m_sourceDisc(sourceDisc), m_builder(sourceDisc.makeMergeBuilder(outPath, progressCB))
|
|
|
|
{}
|
|
|
|
|
|
|
|
bool DiscMergerGCN::mergeFromDirectory(const SystemChar* dirIn)
|
|
|
|
{
|
|
|
|
if (!m_builder.getFileIO().beginWriteStream())
|
|
|
|
return false;
|
|
|
|
if (!CheckFreeSpace(m_builder.m_outPath.c_str(), 0x57058000))
|
|
|
|
{
|
|
|
|
LogModule.report(logvisor::Error, _S("not enough free disk space for %s"), m_builder.m_outPath.c_str());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
++m_builder.m_progressIdx;
|
|
|
|
m_builder.m_progressCB(m_builder.m_progressIdx, _S("Preallocating image"), -1);
|
|
|
|
auto ws = m_builder.m_fileIO->beginWriteStream(0x57058000 - 1);
|
|
|
|
if (!ws)
|
|
|
|
return false;
|
|
|
|
ws->write("", 1);
|
|
|
|
|
|
|
|
PartitionBuilderGCN& pb = static_cast<PartitionBuilderGCN&>(*m_builder.m_partitions[0]);
|
|
|
|
return pb.mergeFromDirectory(static_cast<PartitionGCN*>(m_sourceDisc.getDataPartition()), dirIn);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t DiscMergerGCN::CalculateTotalSizeRequired(DiscGCN& sourceDisc, const SystemChar* dirIn)
|
|
|
|
{
|
|
|
|
uint64_t sz = DiscBuilderBase::PartitionBuilderBase::CalculateTotalSizeMerge(
|
|
|
|
sourceDisc.getDataPartition(), dirIn);
|
|
|
|
if (sz == -1)
|
|
|
|
return -1;
|
|
|
|
sz += 0x30000;
|
|
|
|
if (sz > 0x57058000)
|
|
|
|
{
|
|
|
|
LogModule.report(logvisor::Error, _S("disc capacity exceeded [%" PRIu64 " / %" PRIu64 "]"), sz, 0x57058000);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return sz;
|
|
|
|
}
|
|
|
|
|
2015-06-28 05:43:53 +00:00
|
|
|
}
|