2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2008-09-17 23:25:35 +00:00
|
|
|
// WARNING Code not big-endian safe.
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2008-09-17 23:25:35 +00:00
|
|
|
// To create new compressed BLOBs, use CompressFileToBlob.
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2008-09-17 23:25:35 +00:00
|
|
|
// File format
|
|
|
|
// * Header
|
|
|
|
// * [Block Pointers interleaved with block hashes (hash of decompressed data)]
|
|
|
|
// * [Data]
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2015-12-07 04:15:51 +00:00
|
|
|
#include <memory>
|
2010-01-11 23:27:02 +00:00
|
|
|
#include <string>
|
2015-12-08 00:53:42 +00:00
|
|
|
#include <vector>
|
2010-01-11 23:27:02 +00:00
|
|
|
|
2014-02-21 00:47:53 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2020-09-15 10:29:41 +00:00
|
|
|
#include "Common/IOFile.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "DiscIO/Blob.h"
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2008-09-17 23:25:35 +00:00
|
|
|
namespace DiscIO
|
|
|
|
{
|
2016-12-21 10:30:12 +00:00
|
|
|
static constexpr u32 GCZ_MAGIC = 0xB10BC001;
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2015-09-26 12:46:53 +00:00
|
|
|
// GCZ file structure:
|
2008-09-17 23:25:35 +00:00
|
|
|
// BlobHeader
|
|
|
|
// u64 offsetsToBlocks[n], top bit specifies whether the block is compressed, or not.
|
|
|
|
// compressed data
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2008-09-17 23:25:35 +00:00
|
|
|
// Blocks that won't compress to less than 97% of the original size are stored as-is.
|
|
|
|
struct CompressedBlobHeader // 32 bytes
|
|
|
|
{
|
|
|
|
u32 magic_cookie; // 0xB10BB10B
|
2014-11-14 02:28:27 +00:00
|
|
|
u32 sub_type; // GC image, whatever
|
2008-09-17 23:25:35 +00:00
|
|
|
u64 compressed_data_size;
|
|
|
|
u64 data_size;
|
|
|
|
u32 block_size;
|
|
|
|
u32 num_blocks;
|
|
|
|
};
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2008-09-17 23:25:35 +00:00
|
|
|
class CompressedBlobReader : public SectorReader
|
|
|
|
{
|
2010-01-11 23:27:02 +00:00
|
|
|
public:
|
2016-12-21 11:50:15 +00:00
|
|
|
static std::unique_ptr<CompressedBlobReader> Create(File::IOFile file,
|
|
|
|
const std::string& filename);
|
2010-01-11 23:27:02 +00:00
|
|
|
~CompressedBlobReader();
|
2020-06-07 12:11:00 +00:00
|
|
|
|
2014-09-01 19:48:02 +00:00
|
|
|
const CompressedBlobHeader& GetHeader() const { return m_header; }
|
2020-06-07 12:11:00 +00:00
|
|
|
|
2015-09-27 12:01:12 +00:00
|
|
|
BlobType GetBlobType() const override { return BlobType::GCZ; }
|
2023-07-07 12:31:26 +00:00
|
|
|
std::unique_ptr<BlobReader> CopyReader() const override;
|
2020-06-07 12:11:00 +00:00
|
|
|
|
2014-09-01 19:48:02 +00:00
|
|
|
u64 GetRawSize() const override { return m_file_size; }
|
2019-03-21 21:20:23 +00:00
|
|
|
u64 GetDataSize() const override { return m_header.data_size; }
|
2022-08-01 09:53:30 +00:00
|
|
|
DataSizeType GetDataSizeType() const override { return DataSizeType::Accurate; }
|
2020-06-07 12:11:00 +00:00
|
|
|
|
2020-04-04 18:56:20 +00:00
|
|
|
u64 GetBlockSize() const override { return m_header.block_size; }
|
2020-06-07 12:11:00 +00:00
|
|
|
bool HasFastRandomAccessInBlock() const override { return false; }
|
2020-06-21 18:41:50 +00:00
|
|
|
std::string GetCompressionMethod() const override { return "Deflate"; }
|
2022-02-24 10:51:52 +00:00
|
|
|
std::optional<int> GetCompressionLevel() const override { return std::nullopt; }
|
2020-06-07 12:11:00 +00:00
|
|
|
|
2010-01-11 23:27:02 +00:00
|
|
|
u64 GetBlockCompressedSize(u64 block_num) const;
|
2016-04-26 11:24:08 +00:00
|
|
|
bool GetBlock(u64 block_num, u8* out_ptr) override;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2008-09-17 23:25:35 +00:00
|
|
|
private:
|
2016-12-21 11:50:15 +00:00
|
|
|
CompressedBlobReader(File::IOFile file, const std::string& filename);
|
2010-01-11 23:27:02 +00:00
|
|
|
|
2014-09-01 19:48:02 +00:00
|
|
|
CompressedBlobHeader m_header;
|
2015-12-08 00:53:42 +00:00
|
|
|
std::vector<u64> m_block_pointers;
|
|
|
|
std::vector<u32> m_hashes;
|
2014-09-01 19:48:02 +00:00
|
|
|
int m_data_offset;
|
2011-03-11 10:21:46 +00:00
|
|
|
File::IOFile m_file;
|
2014-09-01 19:48:02 +00:00
|
|
|
u64 m_file_size;
|
2015-12-08 00:53:42 +00:00
|
|
|
std::vector<u8> m_zlib_buffer;
|
2014-09-01 19:48:02 +00:00
|
|
|
std::string m_file_name;
|
2008-09-17 23:25:35 +00:00
|
|
|
};
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2019-05-05 23:48:12 +00:00
|
|
|
} // namespace DiscIO
|