1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136
|
////////////////////////////////////////////////////////////////////////////////////////
//
// Nestopia - NES/Famicom emulator written in C++
//
// Copyright (C) 2003-2008 Martin Freij
//
// This file is part of Nestopia.
//
// Nestopia 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; either version 2 of the License, or
// (at your option) any later version.
//
// Nestopia 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 for more details.
//
// You should have received a copy of the GNU General Public License
// along with Nestopia; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
////////////////////////////////////////////////////////////////////////////////////////
#include <new>
#include "NstApplicationInstance.hpp"
#include "NstWindowUser.hpp"
#include "NstSystemDll.hpp"
#include "NstObjectPod.hpp"
#include "NstIoFile.hpp"
#include "NstIoLog.hpp"
#include "NstIoArchive.hpp"
#include <initguid.h>
#include <ObjBase.h>
#include <OleAuto.h>
#include "../unrar/unrar.h"
#include "../7zip/IArchive.h"
#if NST_MSVC
#pragma comment(lib,"zlibstat")
#endif
DEFINE_GUID(CLSID_CFormat7z,0x23170F69,0x40C1,0x278A,0x10,0x00,0x00,0x01,0x10,0x07,0x00,0x00);
#define ZLIB_WINAPI
#define ZCALLBACK WINAPIV
#include "../zlib/unzip.h"
namespace Nestopia
{
namespace Io
{
class Archive::Codec
{
public:
enum Exception
{
ERR_DLL,
ERR_CREATE,
ERR_OPEN
};
virtual ~Codec() {}
virtual bool Build(Items&) = 0;
virtual uint Extract(uint,void*,uint) = 0;
};
class Archive::UnZip : public Codec
{
struct Stream
{
const uchar* const buffer;
uint pos;
const uint size;
explicit Stream(const void* b=NULL,uint s=0)
: buffer(static_cast<const uchar*>(b)), pos(0), size(s) {}
};
Stream stream;
void* const handle;
bool Build(Items& files)
{
uint numFiles;
{
unz_global_info_s info;
if
(
::unzGetGlobalInfo( handle, &info ) != UNZ_OK ||
info.number_entry == 0 ||
::unzGoToFirstFile( handle ) != UNZ_OK
)
return false;
numFiles = info.number_entry;
}
files.reserve( numFiles );
char path[MAX_PATH+1];
unz_file_info info;
uint i=0;
do
{
if (::unzGetCurrentFileInfo( handle, &info, path, MAX_PATH, NULL, 0, NULL, 0 ) == UNZ_OK && info.uncompressed_size && *path)
{
wchar_t unipath[MAX_PATH+1];
::MultiByteToWideChar( CP_OEMCP, 0, path, -1, unipath, MAX_PATH );
files.push_back( Item(this,unipath,info.uncompressed_size,i) );
}
}
while (++i < numFiles && ::unzGoToNextFile( handle ) == UNZ_OK);
return !files.empty();
}
uint Extract(uint index,void* buffer,uint size)
{
if (::unzGoToFirstFile( handle ) == UNZ_OK)
{
for (uint i=0; i < index; ++i)
{
if (::unzGoToNextFile( handle ) != UNZ_OK)
return false;
}
if (::unzOpenCurrentFile( handle ) == UNZ_OK)
{
const int extracted = ::unzReadCurrentFile( handle, buffer, size );
::unzCloseCurrentFile( handle );
if (extracted == int(size))
return size;
}
}
return false;
}
static void* ZCALLBACK OnOpen(void* opaque,cstring,int mode)
{
if (mode & ZLIB_FILEFUNC_MODE_WRITE)
return NULL;
else
return opaque;
}
static ulong ZCALLBACK OnWrite(voidpf,voidpf,const void*,ulong)
{
return 0;
}
static int ZCALLBACK OnClose(voidpf,voidpf stream)
{
return !stream;
}
static int ZCALLBACK OnTest(voidpf,voidpf stream)
{
return !stream;
}
static ulong ZCALLBACK OnStreamRead(voidpf,voidpf object,void* data,ulong length)
{
if (object && data)
{
Stream& stream = *static_cast<Stream*>( object );
if (length > stream.size - stream.pos)
length = stream.size - stream.pos;
std::memcpy( data, stream.buffer + stream.pos, length );
stream.pos += length;
return length;
}
else
{
return 0;
}
}
static long ZCALLBACK OnStreamTell(voidpf,voidpf object)
{
if (const Stream* const stream = static_cast<const Stream*>( object ))
return stream->pos;
else
return -1;
}
static long ZCALLBACK OnStreamSeek(voidpf,voidpf object,ulong distance,int origin)
{
if (Stream* const stream = static_cast<Stream*>( object ))
{
switch (origin)
{
case ZLIB_FILEFUNC_SEEK_SET: stream->pos = distance; break;
case ZLIB_FILEFUNC_SEEK_CUR: stream->pos += distance; break;
case ZLIB_FILEFUNC_SEEK_END: stream->pos = stream->size + distance; break;
default: return -1L;
}
if (stream->pos <= stream->size)
return 0L;
stream->pos = stream->size;
}
return -1L;
}
static ulong ZCALLBACK OnFileRead(voidpf,voidpf file,void* data,ulong size)
{
if (file && data)
{
try
{
return static_cast<const File*>(file)->ReadSome( data, size );
}
catch (...)
{
}
}
return 0;
}
static long ZCALLBACK OnFileTell(voidpf,voidpf file)
{
if (file)
{
try
{
return long (static_cast<const File*>(file)->Position());
}
catch (...)
{
}
}
return -1L;
}
static long ZCALLBACK OnFileSeek(voidpf,voidpf file,ulong distance,int origin)
{
NST_COMPILE_ASSERT
(
ZLIB_FILEFUNC_SEEK_SET == File::BEGIN &&
ZLIB_FILEFUNC_SEEK_CUR == File::CURRENT &&
ZLIB_FILEFUNC_SEEK_END == File::END
);
if (file && origin < 3)
{
try
{
static_cast<const File*>(file)->Seek( static_cast<File::Offset>(origin), distance );
return 0L;
}
catch (...)
{
}
}
return -1L;
}
static void* Create(const File& file)
{
zlib_filefunc_def_s def;
def.zopen_file = &OnOpen;
def.zread_file = &OnFileRead;
def.zwrite_file = &OnWrite;
def.ztell_file = &OnFileTell;
def.zseek_file = &OnFileSeek;
def.zclose_file = &OnClose;
def.zerror_file = &OnTest;
def.opaque = const_cast<void*>(static_cast<const void*>(&file));
void* handle = ::unzOpen2( NULL, &def );
if (handle == NULL)
throw ERR_OPEN;
return handle;
}
static void* Create(Stream& stream)
{
zlib_filefunc_def_s def;
def.zopen_file = &OnOpen;
def.zread_file = &OnStreamRead;
def.zwrite_file = &OnWrite;
def.ztell_file = &OnStreamTell;
def.zseek_file = &OnStreamSeek;
def.zclose_file = &OnClose;
def.zerror_file = &OnTest;
def.opaque = &stream;
void* handle = ::unzOpen2( NULL, &def );
if (handle == NULL)
throw ERR_OPEN;
return handle;
}
public:
UnZip(const File& file)
: handle(Create(file)) {}
UnZip(const void* buffer,uint size)
: stream(buffer,size), handle(Create(stream)) {}
~UnZip()
{
::unzClose( handle );
}
};
class Archive::UnRar : public Codec
{
public:
explicit UnRar(const Path&);
private:
class Dll : System::Dll
{
typedef HANDLE (PASCAL *OpenArchiveExFunc)(RAROpenArchiveDataEx*);
typedef int (PASCAL *CloseArchiveFunc)(HANDLE);
typedef int (PASCAL *ReadHeaderFunc)(HANDLE,RARHeaderData*);
typedef int (PASCAL *ReadHeaderExFunc)(HANDLE,RARHeaderDataEx*);
typedef int (PASCAL *ProcessFileFunc)(HANDLE,int,char*,char*);
typedef int (PASCAL *ProcessFileWFunc)(HANDLE,int,wchar_t*,wchar_t*);
typedef void (PASCAL *SetProcessDataProcFunc)(HANDLE,PROCESSDATAPROC);
public:
OpenArchiveExFunc OpenArchiveEx;
CloseArchiveFunc CloseArchive;
ReadHeaderFunc ReadHeader;
ReadHeaderExFunc ReadHeaderEx;
ProcessFileFunc ProcessFile;
ProcessFileWFunc ProcessFileW;
SetProcessDataProcFunc SetProcessDataProc;
bool Load()
{
if (*this)
{
return true;
}
else if (System::Dll::Load( L"unrar.dll" ))
{
if
(
NULL != (OpenArchiveEx = Fetch< OpenArchiveExFunc >( "RAROpenArchiveEx" )) &&
NULL != (CloseArchive = Fetch< CloseArchiveFunc >( "RARCloseArchive" )) &&
NULL != (ReadHeader = Fetch< ReadHeaderFunc >( "RARReadHeader" )) &&
NULL != (ReadHeaderEx = Fetch< ReadHeaderExFunc >( "RARReadHeaderEx" )) &&
NULL != (ProcessFile = Fetch< ProcessFileFunc >( "RARProcessFile" )) &&
NULL != (ProcessFileW = Fetch< ProcessFileWFunc >( "RARProcessFileW" )) &&
NULL != (SetProcessDataProc = Fetch< SetProcessDataProcFunc >( "RARSetProcessDataProc" ))
)
return true;
Unload();
}
return false;
}
};
static Dll dll;
void* Open(uint);
uint Extract(uint,void*,uint);
bool Build(Items&);
Path path;
};
Archive::UnRar::Dll Archive::UnRar::dll;
Archive::UnRar::UnRar(const Path& string)
: path(string)
{
if (!dll.Load())
throw ERR_DLL;
}
void* Archive::UnRar::Open(uint mode)
{
Object::Pod<RAROpenArchiveDataEx> data;
data.ArcName = NULL;
data.ArcNameW = path.Ptr();
data.OpenMode = mode;
data.CmtBuf = NULL;
return dll.OpenArchiveEx( &data );
}
bool Archive::UnRar::Build(Items& files)
{
if (void* const handle = Open( RAR_OM_LIST ))
{
try
{
Object::Pod<RARHeaderDataEx> header;
for (uint i=0; dll.ReadHeaderEx( handle, &header ) == 0; ++i)
{
if (header.UnpSize && *header.FileName)
files.push_back( Item(this,header.FileNameW,header.UnpSize,i) );
if (dll.ProcessFile( handle, RAR_SKIP, NULL, NULL ))
break;
}
}
catch (...)
{
files.clear();
}
dll.CloseArchive( handle );
return !files.empty();
}
return false;
}
uint Archive::UnRar::Extract(uint index,void* buffer,uint size)
{
static struct
{
uchar* buffer;
uint pos;
uint size;
} stream;
struct Callback
{
static int PASCAL OnRead(uchar* input,int size)
{
if (input && size > 0 && size <= stream.size)
{
std::memcpy( stream.buffer + stream.pos, input, size );
stream.pos += size;
return 1;
}
else
{
return 0;
}
};
};
uint extracted = 0;
if (void* const handle = Open( RAR_OM_EXTRACT ))
{
stream.buffer = static_cast<uchar*>(buffer);
stream.pos = 0;
stream.size = size;
dll.SetProcessDataProc( handle, Callback::OnRead );
try
{
Object::Pod<RARHeaderData> header;
header.CmtBuf = NULL;
for (uint i=0; ; ++i)
{
if (dll.ReadHeader( handle, &header ))
break;
if (i < index)
{
if (dll.ProcessFile( handle, RAR_SKIP, NULL, NULL ))
break;
}
else
{
Path path( Application::Instance::GetTmpPath() );
if (dll.ProcessFileW( handle, RAR_EXTRACT, NULL, path.Ptr() ) == 0)
{
if (stream.pos == stream.size)
extracted = size;
if (!File::Delete( path.Ptr() ))
Log() << "Archive: warning, couldn't delete temporary RAR file: " << path << '!';
}
break;
}
}
}
catch (...)
{
}
dll.CloseArchive( handle );
}
return extracted;
}
class Archive::Un7zip : public Codec
{
public:
explicit Un7zip(const File&);
Un7zip(const void*,uint);
private:
~Un7zip();
IInArchive& archive;
IInStream* const stream;
static IInArchive* Create();
class InStream : public IInStream, private IStreamGetSize
{
ulong refCount;
HRESULT STDMETHODCALLTYPE QueryInterface(REFGUID,void**)
{
return E_NOINTERFACE;
}
HRESULT STDMETHODCALLTYPE GetSize(UInt64* save)
{
if (save)
{
*save = size;
return S_OK;
}
else
{
return E_INVALIDARG;
}
}
ulong STDMETHODCALLTYPE AddRef()
{
return ++refCount;
}
ulong STDMETHODCALLTYPE Release()
{
return --refCount;
}
protected:
const uint size;
public:
explicit InStream(uint s)
: refCount(0), size(s) {}
};
class InFileStream : public InStream
{
const File& file;
HRESULT STDMETHODCALLTYPE Read(void* data,UInt32 length,UInt32* save)
{
if (data != NULL || length == 0)
{
try
{
length = file.ReadSome( data, length );
}
catch (File::Exception)
{
return E_FAIL;
}
if (save)
*save = length;
return S_OK;
}
else
{
return E_INVALIDARG;
}
}
HRESULT STDMETHODCALLTYPE Seek(Int64 offset,UInt32 origin,UInt64* pos)
{
NST_COMPILE_ASSERT( File::BEGIN == 0 && File::CURRENT == 1 && File::END == 2 );
if (origin < 3)
{
try
{
origin = file.Seek( static_cast<File::Offset>(origin), int(offset) );
}
catch (File::Exception)
{
return E_FAIL;
}
if (pos)
*pos = origin;
return S_OK;
}
else
{
return E_INVALIDARG;
}
}
public:
explicit InFileStream(const File& f)
: InStream(f.Size()), file(f) {}
};
class InMemStream : public InStream
{
const uchar* const buffer;
uint pos;
HRESULT STDMETHODCALLTYPE Read(void* data,UInt32 length,UInt32* save)
{
if (data != NULL || length == 0)
{
if (length > size - pos)
length = size - pos;
std::memcpy( data, buffer + pos, length );
pos += length;
if (save)
*save = length;
return S_OK;
}
else
{
return E_INVALIDARG;
}
}
HRESULT STDMETHODCALLTYPE Seek(Int64 offset,UInt32 origin,UInt64* save)
{
if (origin < 3)
{
pos = (origin == 0 ? 0 : origin == 1 ? pos : size) + int(offset);
if (pos > size)
pos = size;
if (save)
*save = pos;
return S_OK;
}
else
{
return E_INVALIDARG;
}
}
public:
InMemStream(const void* b,uint s)
: InStream(s), buffer(static_cast<const uchar*>(b)), pos(0) {}
};
class OutStream : public IArchiveExtractCallback
{
class SeqStream : public ISequentialOutStream
{
uchar* const output;
uint pos;
const uint size;
ulong refCount;
HRESULT STDMETHODCALLTYPE QueryInterface(REFGUID,void**)
{
return E_NOINTERFACE;
}
HRESULT STDMETHODCALLTYPE Write(const void* data,UInt32 length,UInt32* save)
{
if (data != NULL || size == 0)
{
NST_VERIFY( length <= size - pos );
if (length > size - pos)
length = size - pos;
std::memcpy( output + pos, data, length );
pos += length;
if (save)
*save = length;
return S_OK;
}
else
{
return E_INVALIDARG;
}
}
ulong STDMETHODCALLTYPE AddRef()
{
return ++refCount;
}
ulong STDMETHODCALLTYPE Release()
{
return --refCount;
}
public:
SeqStream(void* d,uint s)
: output(static_cast<uchar*>(d)), pos(0), size(s), refCount(0) {}
uint Size() const
{
return pos;
}
};
SeqStream seqStream;
const uint index;
ulong refCount;
HRESULT STDMETHODCALLTYPE QueryInterface(REFGUID,void**)
{
return E_NOINTERFACE;
}
HRESULT STDMETHODCALLTYPE PrepareOperation(Int32)
{
return S_OK;
}
HRESULT STDMETHODCALLTYPE SetTotal(UInt64)
{
return S_OK;
}
HRESULT STDMETHODCALLTYPE SetCompleted(const UInt64*)
{
return S_OK;
}
HRESULT STDMETHODCALLTYPE SetOperationResult(Int32)
{
return S_OK;
}
HRESULT STDMETHODCALLTYPE GetStream(UInt32 id,ISequentialOutStream** ptr,Int32 mode)
{
switch (mode)
{
case NArchive::NExtract::NAskMode::kExtract:
case NArchive::NExtract::NAskMode::kTest:
if (id != index || ptr == NULL)
return S_FALSE;
else
*ptr = &seqStream;
case NArchive::NExtract::NAskMode::kSkip:
return S_OK;
default:
return E_INVALIDARG;
}
}
ulong STDMETHODCALLTYPE AddRef()
{
return ++refCount;
}
ulong STDMETHODCALLTYPE Release()
{
return --refCount;
}
public:
OutStream(uint index,void* data,uint size)
: seqStream(data,size), index(index), refCount(0) {}
uint Size() const
{
return seqStream.Size();
}
};
void Open();
void Close();
bool Build(Items&);
uint Extract(uint,void*,uint);
};
IInArchive* Archive::Un7zip::Create()
{
static System::Dll dll;
if (!dll && !dll.Load( L"7zxa.dll" ))
throw ERR_DLL;
typedef UINT32 (WINAPI *CreateObjectFunc)(const GUID*,const GUID*,void**);
CreateObjectFunc const CreateObject = dll.Fetch<CreateObjectFunc>("CreateObject");
void* object;
if (CreateObject == NULL || FAILED(CreateObject( &CLSID_CFormat7z, &IID_IInArchive, &object )))
throw ERR_CREATE;
return static_cast<IInArchive*>(object);
}
Archive::Un7zip::Un7zip(const void* data,uint size)
: archive(*Create()), stream(new (std::nothrow) InMemStream(data,size))
{
Open();
}
Archive::Un7zip::Un7zip(const File& file)
: archive(*Create()), stream(new (std::nothrow) InFileStream(file))
{
Open();
}
Archive::Un7zip::~Un7zip()
{
Close();
}
void Archive::Un7zip::Open()
{
if (stream)
{
try
{
if (SUCCEEDED(archive.Open( stream, NULL, NULL )))
return;
}
catch (...)
{
}
delete stream;
}
archive.Release();
throw ERR_OPEN;
}
void Archive::Un7zip::Close()
{
archive.Close();
delete stream;
archive.Release();
}
bool Archive::Un7zip::Build(Items& files)
{
UInt32 numFiles;
if (SUCCEEDED(archive.GetNumberOfItems( &numFiles )) && numFiles)
{
files.reserve( numFiles );
Path path;
PROPVARIANT prop;
for (uint i=0; i < numFiles; ++i)
{
prop.vt = VT_EMPTY;
if (FAILED(archive.GetProperty( i, kpidSize, &prop )) || prop.vt != VT_UI8 || !prop.uhVal.LowPart || prop.uhVal.HighPart)
continue;
const uint size = prop.uhVal.LowPart;
prop.vt = VT_EMPTY;
if (FAILED(archive.GetProperty( i, kpidPath, &prop )) || prop.vt != VT_BSTR || prop.bstrVal == NULL)
continue;
path = prop.bstrVal;
::VariantClear( reinterpret_cast<VARIANTARG*>(&prop) );
if (path.Length())
files.push_back( Item(this,path.Ptr(),size,i) );
}
}
return false;
}
uint Archive::Un7zip::Extract(uint index,void* data,uint size)
{
NST_ASSERT( data );
OutStream outStream( index, data, size );
const UInt32 indices[1] = {index};
if (SUCCEEDED(archive.Extract( indices, sizeof(array(indices)), 0, &outStream )) && outStream.Size() == size)
return size;
else
return 0;
}
Archive::Archive()
: codec(NULL)
{
}
Archive::Archive(const File& file)
: codec(NULL)
{
Open( &file, NULL, 0 );
}
Archive::Archive(const void* raw,uint size)
: codec(NULL)
{
Open( NULL, raw, size );
}
Archive::~Archive()
{
Close();
}
bool Archive::Open(const File& file)
{
Close();
return Open( &file, NULL, 0 );
}
bool Archive::Open(const void* raw,uint size)
{
Close();
return Open( NULL, raw, size );
}
bool Archive::Open(const File* const file,const void* const raw,uint size)
{
try
{
if (raw)
{
if (size >= 4)
{
switch (FourCC<>::T(static_cast<const uchar*>(raw)))
{
case FILE_ID_ZIP:
codec = new UnZip( raw, size );
break;
case FILE_ID_7Z:
codec = new Un7zip( raw, size );
break;
}
}
}
else switch (file->Peek32())
{
case FILE_ID_ZIP:
codec = new UnZip( *file );
break;
case FILE_ID_7Z:
codec = new Un7zip( *file );
break;
case FILE_ID_RAR:
codec = new UnRar( file->GetName() );
break;
}
return codec ? codec->Build( files ) : false;
}
catch (...)
{
}
Close();
return false;
}
void Archive::Close()
{
if (codec)
{
delete codec;
codec = NULL;
}
files.clear();
}
inline Archive::Item::Item
(
Codec* const c,
wcstring const n,
const uint s,
const uint i
)
:
codec ( c ),
name ( n ),
size ( s ),
index ( i )
{}
uint Archive::Item::Uncompress(void* const data) const
{
NST_ASSERT( data && codec && size );
return codec->Extract( index, data, size );
}
uint Archive::Find(const GenericString name) const
{
for (uint i=0, n=files.size(); i < n; ++i)
{
if (files[i].GetName() == name)
return i+1;
}
return NO_FILES;
}
uint Archive::UserSelect() const
{
if (files.empty())
{
return NO_FILES;
}
else if (files.size() == 1)
{
return FIRST_FILE;
}
else
{
std::vector<wcstring> names( files.size() );
for (uint i=0, n=names.size(); i < n; ++i)
names[i] = files[i].GetName().Ptr();
return Window::User::Choose( IDS_CHOOSE_FILE, IDS_TEXT_ABORT, &names.front(), names.size() );
}
}
uint Archive::UserSelect(const GenericString* const filter,const uint count) const
{
if (filter && count)
{
std::vector<wcstring> names;
std::vector<uint> indices;
for (Items::const_iterator it(files.begin()), end(files.end()); it != end; ++it)
{
const GenericString extension( it->GetName().Extension() );
for (uint i=0; i < count; ++i)
{
if (filter[i] == extension)
{
indices.push_back( it - files.begin() );
names.push_back( it->GetName().Ptr() );
break;
}
}
}
if (names.empty())
{
return NO_FILES;
}
else if (names.size() == 1)
{
return indices.front() + 1;
}
else
{
return Window::User::Choose
(
IDS_CHOOSE_FILE,
IDS_TEXT_ABORT,
&names.front(),
names.size(),
&indices.front()
);
}
}
else
{
return UserSelect();
}
}
}
}
|