| 
									
										
										
										
											2009-07-28 21:32:10 +00:00
										 |  |  | // Copyright (C) 2003 Dolphin Project.
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | // This program is free software: you can redistribute it and/or modify
 | 
					
						
							|  |  |  | // it under the terms of the GNU General Public License as published by
 | 
					
						
							|  |  |  | // the Free Software Foundation, version 2.0.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // This program is distributed in the hope that it will be useful,
 | 
					
						
							|  |  |  | // but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
					
						
							|  |  |  | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
					
						
							|  |  |  | // GNU General Public License 2.0 for more details.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // A copy of the GPL 2.0 should have been included with the program.
 | 
					
						
							|  |  |  | // If not, see http://www.gnu.org/licenses/
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Official SVN repository and contact information can be found at
 | 
					
						
							|  |  |  | // http://code.google.com/p/dolphin-emu/
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef _WIN32
 | 
					
						
							|  |  |  | #include <io.h>
 | 
					
						
							| 
									
										
										
										
											2009-01-16 02:58:34 +00:00
										 |  |  | #include <windows.h>
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | #else
 | 
					
						
							|  |  |  | #include <unistd.h>
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "Common.h"
 | 
					
						
							|  |  |  | #include "CompressedBlob.h"
 | 
					
						
							| 
									
										
										
										
											2009-05-21 19:19:15 +00:00
										 |  |  | #include "DiscScrubber.h"
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | #include "FileUtil.h"
 | 
					
						
							|  |  |  | #include "Hash.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-19 03:12:14 +00:00
										 |  |  | #include "zlib.h"
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | namespace DiscIO | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | CompressedBlobReader::CompressedBlobReader(const char *filename) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-01-11 23:27:02 +00:00
										 |  |  | 	file_name = filename; | 
					
						
							| 
									
										
										
										
											2011-03-11 10:21:46 +00:00
										 |  |  | 	m_file.Open(filename, "rb"); | 
					
						
							| 
									
										
										
										
											2010-12-03 12:42:01 +00:00
										 |  |  | 	file_size = File::GetSize(filename); | 
					
						
							| 
									
										
										
										
											2011-03-11 10:21:46 +00:00
										 |  |  | 	m_file.ReadArray(&header, 1); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	SetSectorSize(header.block_size); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// cache block pointers and hashes
 | 
					
						
							|  |  |  | 	block_pointers = new u64[header.num_blocks]; | 
					
						
							| 
									
										
										
										
											2011-03-11 10:21:46 +00:00
										 |  |  | 	m_file.ReadArray(block_pointers, header.num_blocks); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 	hashes = new u32[header.num_blocks]; | 
					
						
							| 
									
										
										
										
											2011-03-11 10:21:46 +00:00
										 |  |  | 	m_file.ReadArray(hashes, header.num_blocks); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	data_offset = (sizeof(CompressedBlobHeader)) | 
					
						
							|  |  |  | 		+ (sizeof(u64)) * header.num_blocks   // skip block pointers
 | 
					
						
							|  |  |  | 		+ (sizeof(u32)) * 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.
 | 
					
						
							|  |  |  | 	zlib_buffer_size = header.block_size + 64; | 
					
						
							|  |  |  | 	zlib_buffer = new u8[zlib_buffer_size]; | 
					
						
							|  |  |  | 	memset(zlib_buffer, 0, zlib_buffer_size); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | CompressedBlobReader* CompressedBlobReader::Create(const char* filename) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (IsCompressedBlob(filename)) | 
					
						
							|  |  |  | 		return new CompressedBlobReader(filename); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | CompressedBlobReader::~CompressedBlobReader() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	delete [] zlib_buffer; | 
					
						
							|  |  |  | 	delete [] block_pointers; | 
					
						
							|  |  |  | 	delete [] hashes; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // IMPORTANT: Calling this function invalidates all earlier pointers gotten from this function.
 | 
					
						
							|  |  |  | u64 CompressedBlobReader::GetBlockCompressedSize(u64 block_num) const | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	u64 start = block_pointers[block_num]; | 
					
						
							|  |  |  | 	if (block_num < header.num_blocks - 1) | 
					
						
							|  |  |  | 		return block_pointers[block_num + 1] - start; | 
					
						
							|  |  |  | 	else if (block_num == header.num_blocks - 1) | 
					
						
							|  |  |  | 		return header.compressed_data_size - start; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		PanicAlert("GetBlockCompressedSize - illegal block number %i", (int)block_num); | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void CompressedBlobReader::GetBlock(u64 block_num, u8 *out_ptr) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	bool uncompressed = false; | 
					
						
							|  |  |  | 	u32 comp_block_size = (u32)GetBlockCompressedSize(block_num); | 
					
						
							|  |  |  | 	u64 offset = block_pointers[block_num] + data_offset; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (offset & (1ULL << 63)) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		if (comp_block_size != 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(zlib_buffer + comp_block_size, 0, zlib_buffer_size - comp_block_size); | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2011-03-11 10:21:46 +00:00
										 |  |  | 	m_file.Seek(offset, SEEK_SET); | 
					
						
							|  |  |  | 	m_file.ReadBytes(zlib_buffer, comp_block_size); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	u8* source = zlib_buffer; | 
					
						
							|  |  |  | 	u8* dest = out_ptr; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// First, check hash.
 | 
					
						
							|  |  |  | 	u32 block_hash = HashAdler32(source, comp_block_size); | 
					
						
							|  |  |  | 	if (block_hash != hashes[block_num]) | 
					
						
							| 
									
										
										
										
											2010-12-05 04:07:44 +00:00
										 |  |  | 		PanicAlert("Hash of block %lli is %08x instead of %08x.\n" | 
					
						
							| 
									
										
										
										
											2010-01-11 23:27:02 +00:00
										 |  |  | 		           "Your ISO, %s, is corrupt.", | 
					
						
							|  |  |  | 		           block_num, block_hash, hashes[block_num], | 
					
						
							|  |  |  | 				   file_name.c_str()); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (uncompressed) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		memcpy(dest, source, comp_block_size); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		z_stream z; | 
					
						
							|  |  |  | 		memset(&z, 0, sizeof(z)); | 
					
						
							|  |  |  | 		z.next_in  = source; | 
					
						
							|  |  |  | 		z.avail_in = comp_block_size; | 
					
						
							|  |  |  | 		if (z.avail_in > header.block_size) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			PanicAlert("We have a problem"); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		z.next_out  = dest; | 
					
						
							|  |  |  | 		z.avail_out = header.block_size; | 
					
						
							|  |  |  | 		inflateInit(&z); | 
					
						
							|  |  |  | 		int status = inflate(&z, Z_FULL_FLUSH); | 
					
						
							|  |  |  | 		u32 uncomp_size = 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
 | 
					
						
							| 
									
										
										
										
											2010-12-05 09:04:34 +00:00
										 |  |  | 			PanicAlert("Failure reading block %lli - out of data and not at end.", block_num); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		inflateEnd(&z); | 
					
						
							|  |  |  | 		if (uncomp_size != header.block_size) | 
					
						
							|  |  |  | 			PanicAlert("Wrong block size"); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool CompressFileToBlob(const char* infile, const char* outfile, u32 sub_type, | 
					
						
							|  |  |  | 						int block_size, CompressCB callback, void* arg) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-02-08 22:46:04 +00:00
										 |  |  | 	bool scrubbing = false; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 	if (IsCompressedBlob(infile)) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2011-01-13 02:05:58 +00:00
										 |  |  | 		PanicAlertT("%s is already compressed! Cannot compress it further.", infile); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 		return false; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-21 19:19:15 +00:00
										 |  |  | 	if (sub_type == 1) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-02-08 22:46:04 +00:00
										 |  |  | 		if (!DiscScrubber::SetupScrub(infile, block_size)) | 
					
						
							| 
									
										
										
										
											2009-05-22 07:14:34 +00:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2011-01-13 02:05:58 +00:00
										 |  |  | 			PanicAlertT("%s failed to be scrubbed. Probably the image is corrupt.", infile); | 
					
						
							| 
									
										
										
										
											2009-05-21 19:19:15 +00:00
										 |  |  | 			return false; | 
					
						
							| 
									
										
										
										
											2009-05-22 07:14:34 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2010-02-08 22:46:04 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		scrubbing = true; | 
					
						
							| 
									
										
										
										
											2009-05-21 19:19:15 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-11 10:21:46 +00:00
										 |  |  | 	File::IOFile inf(infile, "rb"); | 
					
						
							|  |  |  | 	File::IOFile f(outfile, "wb"); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-11 10:21:46 +00:00
										 |  |  | 	if (!f || !inf) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 		return false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	callback("Files opened, ready to compress.", 0, arg); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	CompressedBlobHeader header; | 
					
						
							|  |  |  | 	header.magic_cookie = kBlobCookie; | 
					
						
							|  |  |  | 	header.sub_type   = sub_type; | 
					
						
							|  |  |  | 	header.block_size = block_size; | 
					
						
							| 
									
										
										
										
											2010-12-03 12:42:01 +00:00
										 |  |  | 	header.data_size  = File::GetSize(infile); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// round upwards!
 | 
					
						
							|  |  |  | 	header.num_blocks = (u32)((header.data_size + (block_size - 1)) / block_size); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	u64* offsets = new u64[header.num_blocks]; | 
					
						
							|  |  |  | 	u32* hashes = new u32[header.num_blocks]; | 
					
						
							|  |  |  | 	u8* out_buf = new u8[block_size]; | 
					
						
							|  |  |  | 	u8* in_buf = new u8[block_size]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// seek past the header (we will write it at the end)
 | 
					
						
							| 
									
										
										
										
											2011-03-11 10:21:46 +00:00
										 |  |  | 	f.Seek(sizeof(CompressedBlobHeader), SEEK_CUR); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 	// seek past the offset and hash tables (we will write them at the end)
 | 
					
						
							| 
									
										
										
										
											2011-03-11 10:21:46 +00:00
										 |  |  | 	f.Seek((sizeof(u64) + sizeof(u32)) * header.num_blocks, SEEK_CUR); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Now we are ready to write compressed data!
 | 
					
						
							|  |  |  | 	u64 position = 0; | 
					
						
							|  |  |  | 	int num_compressed = 0; | 
					
						
							|  |  |  | 	int num_stored = 0; | 
					
						
							| 
									
										
										
										
											2010-05-04 18:15:22 +00:00
										 |  |  | 	int progress_monitor = max<int>(1, header.num_blocks / 1000); | 
					
						
							| 
									
										
										
										
											2010-02-08 22:22:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 	for (u32 i = 0; i < header.num_blocks; i++) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-05-04 18:15:22 +00:00
										 |  |  | 		if (i % progress_monitor == 0) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2011-03-11 10:21:46 +00:00
										 |  |  | 			const u64 inpos = inf.Tell(); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 			int ratio = 0; | 
					
						
							|  |  |  | 			if (inpos != 0) | 
					
						
							|  |  |  | 				ratio = (int)(100 * position / inpos); | 
					
						
							|  |  |  | 			char temp[512]; | 
					
						
							| 
									
										
										
										
											2010-08-01 04:09:59 +00:00
										 |  |  | 			sprintf(temp, "%i of %i blocks. Compression ratio %i%%", i, header.num_blocks, ratio); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 			callback(temp, (float)i / (float)header.num_blocks, arg); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		offsets[i] = position; | 
					
						
							|  |  |  | 		// u64 start = i * header.block_size;
 | 
					
						
							|  |  |  | 		// u64 size = header.block_size;
 | 
					
						
							| 
									
										
										
										
											2009-08-03 22:51:13 +00:00
										 |  |  | 		std::fill(in_buf, in_buf + header.block_size, 0); | 
					
						
							| 
									
										
										
										
											2010-02-08 22:46:04 +00:00
										 |  |  | 		if (scrubbing) | 
					
						
							| 
									
										
										
										
											2011-03-11 10:21:46 +00:00
										 |  |  | 			DiscScrubber::GetNextBlock(inf.GetHandle(), in_buf); | 
					
						
							| 
									
										
										
										
											2010-02-08 22:46:04 +00:00
										 |  |  | 		else | 
					
						
							| 
									
										
										
										
											2011-03-11 10:21:46 +00:00
										 |  |  | 			inf.ReadBytes(in_buf, header.block_size); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 		z_stream z; | 
					
						
							|  |  |  | 		memset(&z, 0, sizeof(z)); | 
					
						
							|  |  |  | 		z.zalloc = Z_NULL; | 
					
						
							|  |  |  | 		z.zfree  = Z_NULL; | 
					
						
							|  |  |  | 		z.opaque = Z_NULL; | 
					
						
							|  |  |  | 		z.next_in   = in_buf; | 
					
						
							|  |  |  | 		z.avail_in  = header.block_size; | 
					
						
							|  |  |  | 		z.next_out  = out_buf; | 
					
						
							|  |  |  | 		z.avail_out = block_size; | 
					
						
							|  |  |  | 		int retval = deflateInit(&z, 9); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (retval != Z_OK) | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2009-05-21 21:15:35 +00:00
										 |  |  | 			ERROR_LOG(DISCIO, "Deflate failed"); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 			goto cleanup; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		int status = deflate(&z, Z_FINISH); | 
					
						
							|  |  |  | 		int comp_size = block_size - z.avail_out; | 
					
						
							|  |  |  | 		if ((status != Z_STREAM_END) || (z.avail_out < 10)) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			//PanicAlert("%i %i Store %i", i*block_size, position, comp_size);
 | 
					
						
							|  |  |  | 			// let's store uncompressed
 | 
					
						
							|  |  |  | 			offsets[i] |= 0x8000000000000000ULL; | 
					
						
							| 
									
										
										
										
											2011-03-11 10:21:46 +00:00
										 |  |  | 			f.WriteBytes(in_buf, block_size); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 			hashes[i] = HashAdler32(in_buf, block_size); | 
					
						
							|  |  |  | 			position += block_size; | 
					
						
							|  |  |  | 			num_stored++; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			// let's store compressed
 | 
					
						
							|  |  |  | 			//PanicAlert("Comp %i to %i", block_size, comp_size);
 | 
					
						
							| 
									
										
										
										
											2011-03-11 10:21:46 +00:00
										 |  |  | 			f.WriteBytes(out_buf, comp_size); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 			hashes[i] = HashAdler32(out_buf, comp_size); | 
					
						
							|  |  |  | 			position += comp_size; | 
					
						
							|  |  |  | 			num_compressed++; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		deflateEnd(&z); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	header.compressed_data_size = position; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Okay, go back and fill in headers
 | 
					
						
							| 
									
										
										
										
											2011-03-11 10:21:46 +00:00
										 |  |  | 	f.Seek(0, SEEK_SET); | 
					
						
							|  |  |  | 	f.WriteArray(&header, 1); | 
					
						
							|  |  |  | 	f.WriteArray(offsets, header.num_blocks); | 
					
						
							|  |  |  | 	f.WriteArray(hashes, header.num_blocks); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | cleanup: | 
					
						
							|  |  |  | 	// Cleanup
 | 
					
						
							|  |  |  | 	delete[] in_buf; | 
					
						
							|  |  |  | 	delete[] out_buf; | 
					
						
							|  |  |  | 	delete[] offsets; | 
					
						
							| 
									
										
										
										
											2009-10-08 22:22:13 +00:00
										 |  |  | 	delete[] hashes; | 
					
						
							| 
									
										
										
										
											2011-03-11 10:21:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-08 22:46:04 +00:00
										 |  |  | 	DiscScrubber::Cleanup(); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 	callback("Done compressing disc image.", 1.0f, arg); | 
					
						
							|  |  |  | 	return true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool DecompressBlobToFile(const char* infile, const char* outfile, CompressCB callback, void* arg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (!IsCompressedBlob(infile)) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2011-01-13 02:05:58 +00:00
										 |  |  | 		PanicAlertT("File not compressed"); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 		return false; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	CompressedBlobReader* reader = CompressedBlobReader::Create(infile); | 
					
						
							|  |  |  | 	if (!reader) return false; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-11 10:21:46 +00:00
										 |  |  | 	File::IOFile f(outfile, "wb"); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 	const CompressedBlobHeader &header = reader->GetHeader(); | 
					
						
							|  |  |  | 	u8* buffer = new u8[header.block_size]; | 
					
						
							| 
									
										
										
										
											2010-05-04 18:15:22 +00:00
										 |  |  | 	int progress_monitor = max<int>(1, header.num_blocks / 100); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	for (u64 i = 0; i < header.num_blocks; i++) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-05-04 18:15:22 +00:00
										 |  |  | 		if (i % progress_monitor == 0) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 		{ | 
					
						
							|  |  |  | 			callback("Unpacking", (float)i / (float)header.num_blocks, arg); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		reader->Read(i * header.block_size, header.block_size, buffer); | 
					
						
							| 
									
										
										
										
											2011-03-11 10:21:46 +00:00
										 |  |  | 		f.WriteBytes(buffer, header.block_size); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	delete[] buffer; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-11 10:21:46 +00:00
										 |  |  | 	f.Resize(header.data_size); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	delete reader; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool IsCompressedBlob(const char* filename) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2011-03-11 10:21:46 +00:00
										 |  |  | 	File::IOFile f(filename, "rb"); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	CompressedBlobHeader header; | 
					
						
							| 
									
										
										
										
											2011-03-11 10:21:46 +00:00
										 |  |  | 	return f.ReadArray(&header, 1) && (header.magic_cookie == kBlobCookie); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }  // namespace
 |