fceugx/source/ngc/gcunzip.cpp

571 lines
13 KiB
C++
Raw Normal View History

2008-09-02 03:57:21 +02:00
/****************************************************************************
* FCE Ultra 0.98.12
* Nintendo Wii/Gamecube Port
*
* Tantric September 2008
*
* gcunzip.h
*
* Unzip routines
****************************************************************************/
#include <gccore.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <zlib.h>
extern "C" {
2008-10-13 20:15:03 +02:00
#include "../sz/7zCrc.h"
#include "../sz/7zIn.h"
#include "../sz/7zExtract.h"
}
2008-10-13 20:15:03 +02:00
#include "fceugx.h"
2008-09-02 03:57:21 +02:00
#include "dvd.h"
2009-03-28 18:23:08 +01:00
#include "networkop.h"
#include "fileop.h"
2009-03-28 18:23:08 +01:00
#include "filebrowser.h"
#include "gcvideo.h"
#include "menu.h"
2008-09-02 03:57:21 +02:00
#include "gcunzip.h"
#define ZIPCHUNK 2048
/*
* Zip file header definition
*/
typedef struct
{
unsigned int zipid __attribute__ ((__packed__)); // 0x04034b50
unsigned short zipversion __attribute__ ((__packed__));
unsigned short zipflags __attribute__ ((__packed__));
unsigned short compressionMethod __attribute__ ((__packed__));
unsigned short lastmodtime __attribute__ ((__packed__));
unsigned short lastmoddate __attribute__ ((__packed__));
unsigned int crc32 __attribute__ ((__packed__));
unsigned int compressedSize __attribute__ ((__packed__));
unsigned int uncompressedSize __attribute__ ((__packed__));
unsigned short filenameLength __attribute__ ((__packed__));
unsigned short extraDataLength __attribute__ ((__packed__));
}
PKZIPHEADER;
2008-09-02 03:57:21 +02:00
/*
* Zip files are stored little endian
* Support functions for short and int types
*/
static u32
2008-09-02 03:57:21 +02:00
FLIP32 (u32 b)
{
unsigned int c;
c = (b & 0xff000000) >> 24;
c |= (b & 0xff0000) >> 8;
c |= (b & 0xff00) << 8;
c |= (b & 0xff) << 24;
return c;
}
static u16
2008-09-02 03:57:21 +02:00
FLIP16 (u16 b)
{
u16 c;
c = (b & 0xff00) >> 8;
c |= (b & 0xff) << 8;
return c;
}
/****************************************************************************
* IsZipFile
*
* Returns TRUE when 0x504b0304 is first four characters of buffer
***************************************************************************/
2008-09-02 03:57:21 +02:00
int
IsZipFile (char *buffer)
{
unsigned int *check;
2008-09-02 03:57:21 +02:00
check = (unsigned int *) buffer;
if (check[0] == 0x504b0304)
2008-09-02 03:57:21 +02:00
return 1;
2008-10-13 20:15:03 +02:00
return 0;
2008-09-02 03:57:21 +02:00
}
/*****************************************************************************
* UnZipBuffer
******************************************************************************/
2008-09-02 03:57:21 +02:00
int
2008-10-13 20:15:03 +02:00
UnZipBuffer (unsigned char *outbuffer, int method)
2008-09-02 03:57:21 +02:00
{
PKZIPHEADER pkzip;
int zipoffset = 0;
int zipchunk = 0;
char out[ZIPCHUNK];
z_stream zs;
int res;
int bufferoffset = 0;
int readoffset = 0;
int have = 0;
char readbuffer[ZIPCHUNK];
int sizeread = 0;
2008-09-02 03:57:21 +02:00
// Read Zip Header
2008-10-13 20:15:03 +02:00
switch (method)
2008-09-02 03:57:21 +02:00
{
2008-10-13 20:15:03 +02:00
case METHOD_DVD:
sizeread = dvd_safe_read (readbuffer, ZIPCHUNK, 0);
break;
default:
fseek(file, 0, SEEK_SET);
sizeread = fread (readbuffer, 1, ZIPCHUNK, file);
break;
2008-09-02 03:57:21 +02:00
}
if(sizeread <= 0)
return 0;
2008-09-02 03:57:21 +02:00
/*** Copy PKZip header to local, used as info ***/
memcpy (&pkzip, readbuffer, sizeof (PKZIPHEADER));
pkzip.uncompressedSize = FLIP32 (pkzip.uncompressedSize);
ShowProgress ("Loading...", 0, pkzip.uncompressedSize);
2008-09-02 03:57:21 +02:00
/*** Prepare the zip stream ***/
memset (&zs, 0, sizeof (z_stream));
zs.zalloc = Z_NULL;
zs.zfree = Z_NULL;
zs.opaque = Z_NULL;
zs.avail_in = 0;
zs.next_in = Z_NULL;
res = inflateInit2 (&zs, -MAX_WBITS);
if (res != Z_OK)
2009-03-28 18:23:08 +01:00
goto done;
2008-09-02 03:57:21 +02:00
/*** Set ZipChunk for first pass ***/
zipoffset =
(sizeof (PKZIPHEADER) + FLIP16 (pkzip.filenameLength) +
FLIP16 (pkzip.extraDataLength));
zipchunk = ZIPCHUNK - zipoffset;
/*** Now do it! ***/
do
{
zs.avail_in = zipchunk;
zs.next_in = (Bytef *) & readbuffer[zipoffset];
/*** Now inflate until input buffer is exhausted ***/
do
{
zs.avail_out = ZIPCHUNK;
zs.next_out = (Bytef *) & out;
res = inflate (&zs, Z_NO_FLUSH);
if (res == Z_MEM_ERROR)
{
2009-03-28 18:23:08 +01:00
goto done;
2008-09-02 03:57:21 +02:00
}
have = ZIPCHUNK - zs.avail_out;
if (have)
{
/*** Copy to normal block buffer ***/
memcpy (&outbuffer[bufferoffset], &out, have);
bufferoffset += have;
}
}
while (zs.avail_out == 0);
// Readup the next 2k block
2008-09-02 03:57:21 +02:00
zipoffset = 0;
zipchunk = ZIPCHUNK;
2008-10-13 20:15:03 +02:00
switch (method)
2008-09-02 03:57:21 +02:00
{
2008-10-13 20:15:03 +02:00
case METHOD_DVD:
readoffset += ZIPCHUNK;
sizeread = dvd_safe_read (readbuffer, ZIPCHUNK, readoffset);
break;
default:
sizeread = fread (readbuffer, 1, ZIPCHUNK, file);
break;
2008-09-02 03:57:21 +02:00
}
if(sizeread <= 0)
2009-03-28 18:23:08 +01:00
goto done; // read failure
ShowProgress ("Loading...", bufferoffset, pkzip.uncompressedSize);
2008-09-02 03:57:21 +02:00
}
while (res != Z_STREAM_END);
2009-03-28 18:23:08 +01:00
done:
2008-09-02 03:57:21 +02:00
inflateEnd (&zs);
2009-03-28 18:23:08 +01:00
CancelAction();
2008-09-02 03:57:21 +02:00
if (res == Z_STREAM_END)
2009-03-28 18:23:08 +01:00
return pkzip.uncompressedSize;
else
return 0;
2008-09-02 03:57:21 +02:00
}
2008-09-06 20:24:52 +02:00
/****************************************************************************
2008-11-12 09:40:09 +01:00
* GetFirstZipFilename
*
* Returns the filename of the first file in the zipped archive
* The idea here is to do the least amount of work required
***************************************************************************/
char *
GetFirstZipFilename (int method)
{
2008-10-13 20:15:03 +02:00
char * firstFilename = NULL;
char tempbuffer[ZIPCHUNK];
2008-11-12 09:40:09 +01:00
char filepath[1024];
2008-11-12 09:40:09 +01:00
if(!MakeFilePath(filepath, FILE_ROM, method))
return NULL;
2008-11-12 09:40:09 +01:00
// read start of ZIP
2009-01-25 08:09:11 +01:00
if(LoadFile (tempbuffer, filepath, ZIPCHUNK, method, NOTSILENT))
{
tempbuffer[28] = 0; // truncate - filename length is 2 bytes long (bytes 26-27)
int namelength = tempbuffer[26]; // filename length starts 26 bytes in
if(namelength > 0 && namelength < 200) // the filename is a reasonable length
{
firstFilename = &tempbuffer[30]; // first filename of a ZIP starts 31 bytes in
firstFilename[namelength] = 0; // truncate at filename length
}
else
{
2009-03-28 18:23:08 +01:00
ErrorPrompt("Error - Invalid ZIP file!");
}
}
return firstFilename;
}
2008-10-13 20:15:03 +02:00
/****************************************************************************
2008-11-12 09:40:09 +01:00
* 7z functions
***************************************************************************/
2008-09-06 20:24:52 +02:00
typedef struct _SzFileInStream
{
2008-11-12 09:40:09 +01:00
ISzInStream InStream;
u64 offset; // offset of the file
unsigned int len; // length of the file
u64 pos; // current position of the file pointer
2008-09-06 20:24:52 +02:00
} SzFileInStream;
2008-11-12 09:40:09 +01:00
// 7zip error list
static char szerrormsg[][50] = {
"File is corrupt.", // 7z: Data error
"Archive contains too many files.", // 7z: Out of memory
"File is corrupt (CRC mismatch).", // 7z: CRC Error
"File uses unsupported compression settings.", // 7z: Not implemented
"File is corrupt.", // 7z: Fail
"Failed to read file data.", // 7z: Data read failure
"File is corrupt.", // 7z: Archive error
"File uses too high of compression settings.", // 7z: Dictionary too large
2008-09-06 20:24:52 +02:00
};
static SZ_RESULT SzRes;
static SzFileInStream SzArchiveStream;
static CArchiveDatabaseEx SzDb;
static ISzAlloc SzAllocImp;
static ISzAlloc SzAllocTempImp;
static UInt32 SzBlockIndex = 0xFFFFFFFF;
static size_t SzBufferSize;
static size_t SzOffset;
static size_t SzOutSizeProcessed;
static CFileItem *SzF;
2008-09-06 20:24:52 +02:00
static char sz_buffer[2048];
static int szMethod = 0;
2008-09-06 20:24:52 +02:00
2008-10-13 20:15:03 +02:00
/****************************************************************************
2008-11-12 09:40:09 +01:00
* Is7ZipFile
*
* Returns 1 when 7z signature is found
****************************************************************************/
2008-10-13 20:15:03 +02:00
int
Is7ZipFile (char *buffer)
{
unsigned int *check;
check = (unsigned int *) buffer;
// 7z signature
static Byte Signature[6] = {'7', 'z', 0xBC, 0xAF, 0x27, 0x1C};
int i;
for(i = 0; i < 6; i++)
if(buffer[i] != Signature[i])
return 0;
2008-09-06 20:24:52 +02:00
2008-10-13 20:15:03 +02:00
return 1; // 7z archive found
2008-09-06 20:24:52 +02:00
}
2008-10-13 20:15:03 +02:00
// display an error message
static void SzDisplayError(SZ_RESULT res)
2008-10-13 20:15:03 +02:00
{
char msg[1024];
sprintf(msg, "7z decompression failed: %s", szerrormsg[(res - 1)]);
ErrorPrompt(msg);
2008-09-06 20:24:52 +02:00
}
// function used by the 7zip SDK to read data from SD/USB/DVD/SMB
static SZ_RESULT SzFileReadImp(void *object, void **buffer, size_t maxRequiredSize, size_t *processedSize)
2008-10-13 20:15:03 +02:00
{
u32 seekok = 0;
u32 sizeread = 0;
2008-11-12 09:40:09 +01:00
// the void* object is a SzFileInStream
SzFileInStream *s = (SzFileInStream *) object;
2008-10-13 20:15:03 +02:00
2008-11-12 09:40:09 +01:00
// calculate offset
u64 offset = (u64) (s->offset + s->pos);
2008-09-06 20:24:52 +02:00
2008-11-12 09:40:09 +01:00
if (maxRequiredSize > 2048)
maxRequiredSize = 2048;
2008-09-06 20:24:52 +02:00
2008-11-12 09:40:09 +01:00
// read data
switch (szMethod)
{
case METHOD_DVD:
sizeread = dvd_safe_read(sz_buffer, maxRequiredSize, offset);
break;
default:
seekok = fseek(file, offset, SEEK_SET);
sizeread = fread(sz_buffer, 1, maxRequiredSize, file);
break;
}
2008-10-13 20:15:03 +02:00
if(seekok != 0 || sizeread <= 0)
return SZE_FAILREAD;
2008-11-12 09:40:09 +01:00
*buffer = sz_buffer;
*processedSize = maxRequiredSize;
s->pos += *processedSize;
2008-10-13 20:15:03 +02:00
if(maxRequiredSize > 1024) // only show progress for large reads
// this isn't quite right, but oh well
ShowProgress ("Loading...", s->pos, browserList[browser.selIndex].length);
2008-11-12 09:40:09 +01:00
return SZ_OK;
2008-10-13 20:15:03 +02:00
}
// function used by the 7zip SDK to change the filepointer
static SZ_RESULT SzFileSeekImp(void *object, CFileSize pos)
2008-09-06 20:24:52 +02:00
{
2008-11-12 09:40:09 +01:00
// the void* object is a SzFileInStream
SzFileInStream *s = (SzFileInStream *) object;
// check if the 7z SDK wants to move the pointer to somewhere after the EOF
if (pos >= s->len)
return SZE_FAIL;
// save new position and return
s->pos = pos;
return SZ_OK;
2008-09-06 20:24:52 +02:00
}
2008-10-13 20:15:03 +02:00
/****************************************************************************
2008-11-12 09:40:09 +01:00
* SzParse
*
* Opens a 7z file, and parses it
* It parses the entire 7z for full browsing capability
2008-11-12 09:40:09 +01:00
***************************************************************************/
2008-10-13 20:15:03 +02:00
int SzParse(char * filepath, int method)
{
if(!filepath)
return 0;
2008-10-13 20:15:03 +02:00
int nbfiles = 0;
2008-09-06 20:24:52 +02:00
// save the length/offset of this file
unsigned int filelen = browserList[browser.selIndex].length;
u64 fileoff = browserList[browser.selIndex].offset;
// setup archive stream
SzArchiveStream.offset = 0;
SzArchiveStream.len = filelen;
2008-10-13 20:15:03 +02:00
SzArchiveStream.pos = 0;
2008-09-06 20:24:52 +02:00
// open file
2008-10-13 20:15:03 +02:00
switch (method)
{
case METHOD_SD:
case METHOD_USB:
case METHOD_SMB:
file = fopen (filepath, "rb");
if(!file)
return 0;
2008-10-13 20:15:03 +02:00
break;
case METHOD_DVD:
SwitchDVDFolder(filepath);
break;
2008-10-13 20:15:03 +02:00
}
2008-09-06 20:24:52 +02:00
// set szMethod to current chosen load method
szMethod = method;
// set handler functions for reading data from SD/USB/SMB/DVD
SzArchiveStream.InStream.Read = SzFileReadImp;
2008-10-13 20:15:03 +02:00
SzArchiveStream.InStream.Seek = SzFileSeekImp;
2008-09-06 20:24:52 +02:00
2008-10-13 20:15:03 +02:00
// set default 7Zip SDK handlers for allocation and freeing memory
SzAllocImp.Alloc = SzAlloc;
SzAllocImp.Free = SzFree;
SzAllocTempImp.Alloc = SzAllocTemp;
SzAllocTempImp.Free = SzFreeTemp;
// prepare CRC and 7Zip database structures
InitCrcTable();
SzArDbExInit(&SzDb);
2008-09-06 20:24:52 +02:00
2008-10-13 20:15:03 +02:00
// open the archive
SzRes = SzArchiveOpen(&SzArchiveStream.InStream, &SzDb, &SzAllocImp,
&SzAllocTempImp);
2008-09-06 20:24:52 +02:00
2008-10-13 20:15:03 +02:00
if (SzRes != SZ_OK)
{
2008-10-14 11:21:58 +02:00
SzDisplayError(SzRes);
2008-10-13 20:15:03 +02:00
// free memory used by the 7z SDK
SzClose();
2008-10-13 20:15:03 +02:00
}
else // archive opened successfully
{
if(SzDb.Database.NumFiles > 0)
{
// Parses the 7z into a full file listing
2008-09-06 20:24:52 +02:00
// reset browser
ResetBrowser();
2008-09-06 20:24:52 +02:00
2008-10-15 20:29:14 +02:00
// add '..' folder in case the user wants exit the 7z
strncpy(browserList[0].displayname, "..", 2);
browserList[0].isdir = 1;
browserList[0].offset = fileoff;
browserList[0].length = filelen;
2008-09-06 20:24:52 +02:00
2008-10-13 20:15:03 +02:00
// get contents and parse them into file list structure
unsigned int SzI, SzJ;
SzJ = 1;
for (SzI = 0; SzI < SzDb.Database.NumFiles; SzI++)
{
SzF = SzDb.Database.Files + SzI;
// skip directories
if (SzF->IsDirectory)
continue;
BROWSERENTRY * newBrowserList = (BROWSERENTRY *)realloc(browserList, (SzJ+1) * sizeof(BROWSERENTRY));
if(!newBrowserList) // failed to allocate required memory
{
ResetBrowser();
2009-03-28 18:23:08 +01:00
ErrorPrompt("Out of memory: too many files!");
nbfiles = 0;
2008-10-13 20:15:03 +02:00
break;
}
else
{
browserList = newBrowserList;
}
memset(&(browserList[SzJ]), 0, sizeof(BROWSERENTRY)); // clear the new entry
2008-10-13 20:15:03 +02:00
// parse information about this file to the dvd file list structure
strncpy(browserList[SzJ].filename, SzF->Name, MAXJOLIET); // copy joliet name (useless...)
strncpy(browserList[SzJ].displayname, SzF->Name, MAXDISPLAY); // crop name for display
browserList[SzJ].length = SzF->Size; // filesize
browserList[SzJ].offset = SzI; // the extraction function identifies the file with this number
browserList[SzJ].isdir = 0; // only files will be displayed (-> no flags)
2008-10-13 20:15:03 +02:00
SzJ++;
}
2008-09-06 20:24:52 +02:00
2008-10-13 20:15:03 +02:00
nbfiles = SzJ;
}
else
{
SzArDbExFree(&SzDb, SzAllocImp.Free);
}
}
2008-10-13 20:15:03 +02:00
// close file
switch (method)
{
case METHOD_SD:
case METHOD_USB:
case METHOD_SMB:
fclose(file);
2008-10-13 20:15:03 +02:00
break;
}
return nbfiles;
2008-09-06 20:24:52 +02:00
}
2008-10-13 20:15:03 +02:00
/****************************************************************************
2008-11-12 09:40:09 +01:00
* SzClose
*
* Closes a 7z file
***************************************************************************/
2008-10-13 20:15:03 +02:00
void SzClose()
2008-09-06 20:24:52 +02:00
{
2008-10-13 20:15:03 +02:00
if(SzDb.Database.NumFiles > 0)
SzArDbExFree(&SzDb, SzAllocImp.Free);
2008-09-06 20:24:52 +02:00
}
2008-10-13 20:15:03 +02:00
/****************************************************************************
2008-11-12 09:40:09 +01:00
* SzExtractFile
*
* Extracts the given file # into the buffer specified
* Must parse the 7z BEFORE running this function
***************************************************************************/
2008-09-06 20:24:52 +02:00
2008-10-13 20:15:03 +02:00
int SzExtractFile(int i, unsigned char *buffer)
{
2008-11-12 09:40:09 +01:00
// prepare some variables
SzBlockIndex = 0xFFFFFFFF;
SzOffset = 0;
// Unzip the file
SzRes = SzExtract2(
&SzArchiveStream.InStream,
&SzDb,
i, // index of file
&SzBlockIndex, // index of solid block
&buffer,
&SzBufferSize,
&SzOffset, // offset of stream for required file in *outBuffer
&SzOutSizeProcessed, // size of file in *outBuffer
&SzAllocImp,
&SzAllocTempImp);
2008-11-12 09:40:09 +01:00
// close 7Zip archive and free memory
2008-10-13 20:15:03 +02:00
SzClose();
2009-03-28 18:23:08 +01:00
CancelAction();
2008-11-12 09:40:09 +01:00
// check for errors
if(SzRes != SZ_OK)
{
// display error message
SzDisplayError(SzRes);
return 0;
}
else
{
return SzOutSizeProcessed;
}
2008-09-06 20:24:52 +02:00
}