2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2013-04-18 03:09:55 +00:00
|
|
|
// Refer to the license.txt file included.
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
2009-01-16 02:58:34 +00:00
|
|
|
#include <windows.h>
|
2017-06-05 00:29:56 +00:00
|
|
|
#include <io.h>
|
2008-12-08 05:30:24 +00:00
|
|
|
#endif
|
|
|
|
|
2014-02-21 00:47:53 +00:00
|
|
|
#include <algorithm>
|
2013-10-26 09:55:41 +00:00
|
|
|
#include <cinttypes>
|
2014-02-21 00:47:53 +00:00
|
|
|
#include <cstdio>
|
|
|
|
#include <cstring>
|
2014-12-04 16:39:20 +00:00
|
|
|
#include <memory>
|
2014-02-21 00:47:53 +00:00
|
|
|
#include <string>
|
2016-12-21 11:50:15 +00:00
|
|
|
#include <utility>
|
2014-12-04 16:39:20 +00:00
|
|
|
#include <vector>
|
2014-02-19 01:02:01 +00:00
|
|
|
#include <zlib.h>
|
2013-10-26 09:55:41 +00:00
|
|
|
|
2014-09-08 01:06:58 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2017-01-15 20:46:32 +00:00
|
|
|
#include "Common/File.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Common/FileUtil.h"
|
|
|
|
#include "Common/Hash.h"
|
2016-06-24 08:43:46 +00:00
|
|
|
#include "Common/Logging/Log.h"
|
2015-09-26 21:13:07 +00:00
|
|
|
#include "Common/MsgHandler.h"
|
2014-06-03 05:08:54 +00:00
|
|
|
#include "Common/StringUtil.h"
|
2014-02-21 00:47:53 +00:00
|
|
|
#include "DiscIO/Blob.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "DiscIO/CompressedBlob.h"
|
|
|
|
#include "DiscIO/DiscScrubber.h"
|
2019-03-30 15:20:45 +00:00
|
|
|
#include "DiscIO/Volume.h"
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
namespace DiscIO
|
|
|
|
{
|
2016-12-21 11:50:15 +00:00
|
|
|
bool IsGCZBlob(File::IOFile& file);
|
2016-12-21 10:30:12 +00:00
|
|
|
|
2016-12-21 11:50:15 +00:00
|
|
|
CompressedBlobReader::CompressedBlobReader(File::IOFile file, const std::string& filename)
|
|
|
|
: m_file(std::move(file)), m_file_name(filename)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2016-12-21 11:50:15 +00:00
|
|
|
m_file_size = m_file.GetSize();
|
|
|
|
m_file.Seek(0, SEEK_SET);
|
2016-06-24 08:43:46 +00:00
|
|
|
m_file.ReadArray(&m_header, 1);
|
|
|
|
|
|
|
|
SetSectorSize(m_header.block_size);
|
|
|
|
|
|
|
|
// cache block pointers and hashes
|
|
|
|
m_block_pointers.resize(m_header.num_blocks);
|
|
|
|
m_file.ReadArray(m_block_pointers.data(), m_header.num_blocks);
|
|
|
|
m_hashes.resize(m_header.num_blocks);
|
|
|
|
m_file.ReadArray(m_hashes.data(), m_header.num_blocks);
|
|
|
|
|
|
|
|
m_data_offset = (sizeof(CompressedBlobHeader)) +
|
|
|
|
(sizeof(u64)) * m_header.num_blocks // skip block pointers
|
|
|
|
+ (sizeof(u32)) * m_header.num_blocks; // skip hashes
|
|
|
|
|
|
|
|
// A compressed block is never ever longer than a decompressed block, so just header.block_size
|
|
|
|
// should be fine.
|
|
|
|
// I still add some safety margin.
|
|
|
|
const u32 zlib_buffer_size = m_header.block_size + 64;
|
|
|
|
m_zlib_buffer.resize(zlib_buffer_size);
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
2016-12-21 11:50:15 +00:00
|
|
|
std::unique_ptr<CompressedBlobReader> CompressedBlobReader::Create(File::IOFile file,
|
|
|
|
const std::string& filename)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2016-12-21 11:50:15 +00:00
|
|
|
if (IsGCZBlob(file))
|
|
|
|
return std::unique_ptr<CompressedBlobReader>(
|
|
|
|
new CompressedBlobReader(std::move(file), filename));
|
2015-12-07 04:15:51 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
return nullptr;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
CompressedBlobReader::~CompressedBlobReader()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// IMPORTANT: Calling this function invalidates all earlier pointers gotten from this function.
|
|
|
|
u64 CompressedBlobReader::GetBlockCompressedSize(u64 block_num) const
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
u64 start = m_block_pointers[block_num];
|
|
|
|
if (block_num < m_header.num_blocks - 1)
|
|
|
|
return m_block_pointers[block_num + 1] - start;
|
|
|
|
else if (block_num == m_header.num_blocks - 1)
|
|
|
|
return m_header.compressed_data_size - start;
|
|
|
|
else
|
|
|
|
PanicAlert("GetBlockCompressedSize - illegal block number %i", (int)block_num);
|
|
|
|
return 0;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
bool CompressedBlobReader::GetBlock(u64 block_num, u8* out_ptr)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
bool uncompressed = false;
|
|
|
|
u32 comp_block_size = (u32)GetBlockCompressedSize(block_num);
|
|
|
|
u64 offset = m_block_pointers[block_num] + m_data_offset;
|
|
|
|
|
|
|
|
if (offset & (1ULL << 63))
|
|
|
|
{
|
|
|
|
if (comp_block_size != m_header.block_size)
|
|
|
|
PanicAlert("Uncompressed block with wrong size");
|
|
|
|
uncompressed = true;
|
|
|
|
offset &= ~(1ULL << 63);
|
|
|
|
}
|
|
|
|
|
|
|
|
// clear unused part of zlib buffer. maybe this can be deleted when it works fully.
|
|
|
|
memset(&m_zlib_buffer[comp_block_size], 0, m_zlib_buffer.size() - comp_block_size);
|
|
|
|
|
|
|
|
m_file.Seek(offset, SEEK_SET);
|
|
|
|
if (!m_file.ReadBytes(m_zlib_buffer.data(), comp_block_size))
|
|
|
|
{
|
|
|
|
PanicAlertT("The disc image \"%s\" is truncated, some of the data is missing.",
|
|
|
|
m_file_name.c_str());
|
|
|
|
m_file.Clear();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// First, check hash.
|
2018-05-16 19:22:13 +00:00
|
|
|
u32 block_hash = Common::HashAdler32(m_zlib_buffer.data(), comp_block_size);
|
2016-06-24 08:43:46 +00:00
|
|
|
if (block_hash != m_hashes[block_num])
|
|
|
|
PanicAlertT("The disc image \"%s\" is corrupt.\n"
|
|
|
|
"Hash of block %" PRIu64 " is %08x instead of %08x.",
|
|
|
|
m_file_name.c_str(), block_num, block_hash, m_hashes[block_num]);
|
|
|
|
|
|
|
|
if (uncompressed)
|
|
|
|
{
|
|
|
|
std::copy(m_zlib_buffer.begin(), m_zlib_buffer.begin() + comp_block_size, out_ptr);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
z_stream z = {};
|
|
|
|
z.next_in = m_zlib_buffer.data();
|
|
|
|
z.avail_in = comp_block_size;
|
|
|
|
if (z.avail_in > m_header.block_size)
|
|
|
|
{
|
|
|
|
PanicAlert("We have a problem");
|
|
|
|
}
|
|
|
|
z.next_out = out_ptr;
|
|
|
|
z.avail_out = m_header.block_size;
|
|
|
|
inflateInit(&z);
|
|
|
|
int status = inflate(&z, Z_FULL_FLUSH);
|
|
|
|
u32 uncomp_size = m_header.block_size - z.avail_out;
|
|
|
|
if (status != Z_STREAM_END)
|
|
|
|
{
|
|
|
|
// this seem to fire wrongly from time to time
|
|
|
|
// to be sure, don't use compressed isos :P
|
|
|
|
PanicAlert("Failure reading block %" PRIu64 " - out of data and not at end.", block_num);
|
|
|
|
}
|
|
|
|
inflateEnd(&z);
|
|
|
|
if (uncomp_size != m_header.block_size)
|
|
|
|
{
|
|
|
|
PanicAlert("Wrong block size");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
2016-12-21 11:50:15 +00:00
|
|
|
bool CompressFileToBlob(const std::string& infile_path, const std::string& outfile_path,
|
|
|
|
u32 sub_type, int block_size, CompressCB callback, void* arg)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
bool scrubbing = false;
|
|
|
|
|
2016-12-21 11:50:15 +00:00
|
|
|
File::IOFile infile(infile_path, "rb");
|
2016-06-24 08:43:46 +00:00
|
|
|
if (IsGCZBlob(infile))
|
|
|
|
{
|
2016-12-21 11:50:15 +00:00
|
|
|
PanicAlertT("\"%s\" is already compressed! Cannot compress it further.", infile_path.c_str());
|
2016-06-24 08:43:46 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-12-21 11:50:15 +00:00
|
|
|
if (!infile)
|
2016-06-24 08:43:46 +00:00
|
|
|
{
|
2016-12-21 11:50:15 +00:00
|
|
|
PanicAlertT("Failed to open the input file \"%s\".", infile_path.c_str());
|
2016-06-24 08:43:46 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-12-21 11:50:15 +00:00
|
|
|
File::IOFile outfile(outfile_path, "wb");
|
|
|
|
if (!outfile)
|
2016-06-24 08:43:46 +00:00
|
|
|
{
|
|
|
|
PanicAlertT("Failed to open the output file \"%s\".\n"
|
|
|
|
"Check that you have permissions to write the target folder and that the media can "
|
|
|
|
"be written.",
|
2016-12-21 11:50:15 +00:00
|
|
|
outfile_path.c_str());
|
2016-06-24 08:43:46 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-01-04 19:31:38 +00:00
|
|
|
DiscScrubber disc_scrubber;
|
2019-07-14 13:49:42 +00:00
|
|
|
std::unique_ptr<VolumeDisc> volume;
|
2016-06-24 08:43:46 +00:00
|
|
|
if (sub_type == 1)
|
|
|
|
{
|
2019-07-14 13:49:42 +00:00
|
|
|
volume = CreateDisc(infile_path);
|
2019-03-30 15:20:45 +00:00
|
|
|
if (!volume || !disc_scrubber.SetupScrub(volume.get(), block_size))
|
2016-06-24 08:43:46 +00:00
|
|
|
{
|
2016-12-21 11:50:15 +00:00
|
|
|
PanicAlertT("\"%s\" failed to be scrubbed. Probably the image is corrupt.",
|
|
|
|
infile_path.c_str());
|
2016-06-24 08:43:46 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
scrubbing = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
z_stream z = {};
|
|
|
|
if (deflateInit(&z, 9) != Z_OK)
|
|
|
|
return false;
|
|
|
|
|
2019-06-17 03:45:37 +00:00
|
|
|
callback(Common::GetStringT("Files opened, ready to compress."), 0, arg);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
CompressedBlobHeader header;
|
2016-12-21 10:30:12 +00:00
|
|
|
header.magic_cookie = GCZ_MAGIC;
|
2016-06-24 08:43:46 +00:00
|
|
|
header.sub_type = sub_type;
|
|
|
|
header.block_size = block_size;
|
2016-12-21 11:50:15 +00:00
|
|
|
header.data_size = infile.GetSize();
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
// round upwards!
|
|
|
|
header.num_blocks = (u32)((header.data_size + (block_size - 1)) / block_size);
|
|
|
|
|
|
|
|
std::vector<u64> offsets(header.num_blocks);
|
|
|
|
std::vector<u32> hashes(header.num_blocks);
|
|
|
|
std::vector<u8> out_buf(block_size);
|
|
|
|
std::vector<u8> in_buf(block_size);
|
|
|
|
|
|
|
|
// seek past the header (we will write it at the end)
|
2016-12-21 11:50:15 +00:00
|
|
|
outfile.Seek(sizeof(CompressedBlobHeader), SEEK_CUR);
|
2016-06-24 08:43:46 +00:00
|
|
|
// seek past the offset and hash tables (we will write them at the end)
|
2016-12-21 11:50:15 +00:00
|
|
|
outfile.Seek((sizeof(u64) + sizeof(u32)) * header.num_blocks, SEEK_CUR);
|
2017-01-21 20:27:25 +00:00
|
|
|
// seek to the start of the input file to make sure we get everything
|
|
|
|
infile.Seek(0, SEEK_SET);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
// Now we are ready to write compressed data!
|
|
|
|
u64 position = 0;
|
|
|
|
int num_compressed = 0;
|
|
|
|
int num_stored = 0;
|
|
|
|
int progress_monitor = std::max<int>(1, header.num_blocks / 1000);
|
|
|
|
bool success = true;
|
|
|
|
|
|
|
|
for (u32 i = 0; i < header.num_blocks; i++)
|
|
|
|
{
|
|
|
|
if (i % progress_monitor == 0)
|
|
|
|
{
|
2016-12-21 11:50:15 +00:00
|
|
|
const u64 inpos = infile.Tell();
|
2016-06-24 08:43:46 +00:00
|
|
|
int ratio = 0;
|
|
|
|
if (inpos != 0)
|
|
|
|
ratio = (int)(100 * position / inpos);
|
|
|
|
|
2019-06-17 03:45:37 +00:00
|
|
|
const std::string temp =
|
|
|
|
StringFromFormat(Common::GetStringT("%i of %i blocks. Compression ratio %i%%").c_str(), i,
|
2016-06-24 08:43:46 +00:00
|
|
|
header.num_blocks, ratio);
|
|
|
|
bool was_cancelled = !callback(temp, (float)i / (float)header.num_blocks, arg);
|
|
|
|
if (was_cancelled)
|
|
|
|
{
|
|
|
|
success = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
offsets[i] = position;
|
|
|
|
|
|
|
|
size_t read_bytes;
|
|
|
|
if (scrubbing)
|
2016-12-21 11:50:15 +00:00
|
|
|
read_bytes = disc_scrubber.GetNextBlock(infile, in_buf.data());
|
2016-06-24 08:43:46 +00:00
|
|
|
else
|
2016-12-21 11:50:15 +00:00
|
|
|
infile.ReadArray(in_buf.data(), header.block_size, &read_bytes);
|
2016-06-24 08:43:46 +00:00
|
|
|
if (read_bytes < header.block_size)
|
|
|
|
std::fill(in_buf.begin() + read_bytes, in_buf.begin() + header.block_size, 0);
|
|
|
|
|
|
|
|
int retval = deflateReset(&z);
|
|
|
|
z.next_in = in_buf.data();
|
|
|
|
z.avail_in = header.block_size;
|
|
|
|
z.next_out = out_buf.data();
|
|
|
|
z.avail_out = block_size;
|
|
|
|
|
|
|
|
if (retval != Z_OK)
|
|
|
|
{
|
|
|
|
ERROR_LOG(DISCIO, "Deflate failed");
|
|
|
|
success = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
int status = deflate(&z, Z_FINISH);
|
|
|
|
int comp_size = block_size - z.avail_out;
|
|
|
|
|
|
|
|
u8* write_buf;
|
|
|
|
int write_size;
|
|
|
|
if ((status != Z_STREAM_END) || (z.avail_out < 10))
|
|
|
|
{
|
|
|
|
// PanicAlert("%i %i Store %i", i*block_size, position, comp_size);
|
|
|
|
// let's store uncompressed
|
|
|
|
write_buf = in_buf.data();
|
|
|
|
offsets[i] |= 0x8000000000000000ULL;
|
|
|
|
write_size = block_size;
|
|
|
|
num_stored++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// let's store compressed
|
|
|
|
// PanicAlert("Comp %i to %i", block_size, comp_size);
|
|
|
|
write_buf = out_buf.data();
|
|
|
|
write_size = comp_size;
|
|
|
|
num_compressed++;
|
|
|
|
}
|
|
|
|
|
2016-12-21 11:50:15 +00:00
|
|
|
if (!outfile.WriteBytes(write_buf, write_size))
|
2016-06-24 08:43:46 +00:00
|
|
|
{
|
|
|
|
PanicAlertT("Failed to write the output file \"%s\".\n"
|
|
|
|
"Check that you have enough space available on the target drive.",
|
2016-12-21 11:50:15 +00:00
|
|
|
outfile_path.c_str());
|
2016-06-24 08:43:46 +00:00
|
|
|
success = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
position += write_size;
|
|
|
|
|
2018-05-16 19:22:13 +00:00
|
|
|
hashes[i] = Common::HashAdler32(write_buf, write_size);
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
header.compressed_data_size = position;
|
|
|
|
|
|
|
|
if (!success)
|
|
|
|
{
|
|
|
|
// Remove the incomplete output file.
|
2016-12-21 11:50:15 +00:00
|
|
|
outfile.Close();
|
|
|
|
File::Delete(outfile_path);
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Okay, go back and fill in headers
|
2016-12-21 11:50:15 +00:00
|
|
|
outfile.Seek(0, SEEK_SET);
|
|
|
|
outfile.WriteArray(&header, 1);
|
|
|
|
outfile.WriteArray(offsets.data(), header.num_blocks);
|
|
|
|
outfile.WriteArray(hashes.data(), header.num_blocks);
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Cleanup
|
|
|
|
deflateEnd(&z);
|
|
|
|
|
|
|
|
if (success)
|
|
|
|
{
|
2019-06-17 03:45:37 +00:00
|
|
|
callback(Common::GetStringT("Done compressing disc image."), 1.0f, arg);
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
|
|
|
return success;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
2016-12-21 11:50:15 +00:00
|
|
|
bool DecompressBlobToFile(const std::string& infile_path, const std::string& outfile_path,
|
2016-06-24 08:43:46 +00:00
|
|
|
CompressCB callback, void* arg)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2016-12-21 11:50:15 +00:00
|
|
|
std::unique_ptr<CompressedBlobReader> reader;
|
2016-06-24 08:43:46 +00:00
|
|
|
{
|
2016-12-21 11:50:15 +00:00
|
|
|
File::IOFile infile(infile_path, "rb");
|
|
|
|
if (!IsGCZBlob(infile))
|
|
|
|
{
|
|
|
|
PanicAlertT("File not compressed");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
reader = CompressedBlobReader::Create(std::move(infile), infile_path);
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!reader)
|
|
|
|
{
|
2016-12-21 11:50:15 +00:00
|
|
|
PanicAlertT("Failed to open the input file \"%s\".", infile_path.c_str());
|
2016-06-24 08:43:46 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-12-21 11:50:15 +00:00
|
|
|
File::IOFile outfile(outfile_path, "wb");
|
|
|
|
if (!outfile)
|
2016-06-24 08:43:46 +00:00
|
|
|
{
|
|
|
|
PanicAlertT("Failed to open the output file \"%s\".\n"
|
|
|
|
"Check that you have permissions to write the target folder and that the media can "
|
|
|
|
"be written.",
|
2016-12-21 11:50:15 +00:00
|
|
|
outfile_path.c_str());
|
2016-06-24 08:43:46 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const CompressedBlobHeader& header = reader->GetHeader();
|
|
|
|
static const size_t BUFFER_BLOCKS = 32;
|
|
|
|
size_t buffer_size = header.block_size * BUFFER_BLOCKS;
|
|
|
|
size_t last_buffer_size = header.block_size * (header.num_blocks % BUFFER_BLOCKS);
|
|
|
|
std::vector<u8> buffer(buffer_size);
|
|
|
|
u32 num_buffers = (header.num_blocks + BUFFER_BLOCKS - 1) / BUFFER_BLOCKS;
|
|
|
|
int progress_monitor = std::max<int>(1, num_buffers / 100);
|
|
|
|
bool success = true;
|
|
|
|
|
|
|
|
for (u64 i = 0; i < num_buffers; i++)
|
|
|
|
{
|
|
|
|
if (i % progress_monitor == 0)
|
|
|
|
{
|
2019-06-17 03:45:37 +00:00
|
|
|
const bool was_cancelled =
|
|
|
|
!callback(Common::GetStringT("Unpacking"), (float)i / (float)num_buffers, arg);
|
2016-06-24 08:43:46 +00:00
|
|
|
if (was_cancelled)
|
|
|
|
{
|
|
|
|
success = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const size_t sz = i == num_buffers - 1 ? last_buffer_size : buffer_size;
|
|
|
|
reader->Read(i * buffer_size, sz, buffer.data());
|
2016-12-21 11:50:15 +00:00
|
|
|
if (!outfile.WriteBytes(buffer.data(), sz))
|
2016-06-24 08:43:46 +00:00
|
|
|
{
|
|
|
|
PanicAlertT("Failed to write the output file \"%s\".\n"
|
|
|
|
"Check that you have enough space available on the target drive.",
|
2016-12-21 11:50:15 +00:00
|
|
|
outfile_path.c_str());
|
2016-06-24 08:43:46 +00:00
|
|
|
success = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!success)
|
|
|
|
{
|
|
|
|
// Remove the incomplete output file.
|
2016-12-21 11:50:15 +00:00
|
|
|
outfile.Close();
|
|
|
|
File::Delete(outfile_path);
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-12-21 11:50:15 +00:00
|
|
|
outfile.Resize(header.data_size);
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
|
|
|
|
2017-01-21 20:27:25 +00:00
|
|
|
return success;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
2016-12-21 11:50:15 +00:00
|
|
|
bool IsGCZBlob(File::IOFile& file)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2017-01-21 20:26:19 +00:00
|
|
|
const u64 position = file.Tell();
|
|
|
|
if (!file.Seek(0, SEEK_SET))
|
|
|
|
return false;
|
2016-06-24 08:43:46 +00:00
|
|
|
CompressedBlobHeader header;
|
2017-01-21 20:26:19 +00:00
|
|
|
bool is_gcz = file.ReadArray(&header, 1) && header.magic_cookie == GCZ_MAGIC;
|
|
|
|
file.Seek(position, SEEK_SET);
|
|
|
|
return is_gcz;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
2019-05-05 23:48:12 +00:00
|
|
|
} // namespace DiscIO
|