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
|
// ExtractCallback.h
#ifndef ZIP7_INC_EXTRACT_CALLBACK_H
#define ZIP7_INC_EXTRACT_CALLBACK_H
#include "../../../../C/Alloc.h"
#include "../../../Common/MyCom.h"
#include "../../../Common/StringConvert.h"
#ifndef Z7_SFX
#include "../Agent/IFolderArchive.h"
#endif
#include "../Common/ArchiveExtractCallback.h"
#include "../Common/ArchiveOpenCallback.h"
#ifndef Z7_NO_CRYPTO
#include "../../IPassword.h"
#endif
#ifndef Z7_SFX
#include "IFolder.h"
#endif
#include "ProgressDialog2.h"
#ifdef Z7_LANG
// #include "LangUtils.h"
#endif
#ifndef Z7_SFX
class CGrowBuf
{
Byte *_items;
size_t _size;
Z7_CLASS_NO_COPY(CGrowBuf)
public:
bool ReAlloc_KeepData(size_t newSize, size_t keepSize)
{
void *buf = MyAlloc(newSize);
if (!buf)
return false;
if (keepSize != 0)
memcpy(buf, _items, keepSize);
MyFree(_items);
_items = (Byte *)buf;
_size = newSize;
return true;
}
CGrowBuf(): _items(NULL), _size(0) {}
~CGrowBuf() { MyFree(_items); }
operator Byte *() { return _items; }
operator const Byte *() const { return _items; }
size_t Size() const { return _size; }
};
struct CVirtFile
{
CGrowBuf Data;
UInt64 Size; // real size
UInt64 ExpectedSize; // the size from props request. 0 if unknown
UString Name;
bool CTimeDefined;
bool ATimeDefined;
bool MTimeDefined;
bool AttribDefined;
bool IsDir;
bool IsAltStream;
DWORD Attrib;
FILETIME CTime;
FILETIME ATime;
FILETIME MTime;
CVirtFile():
CTimeDefined(false),
ATimeDefined(false),
MTimeDefined(false),
AttribDefined(false),
IsDir(false),
IsAltStream(false) {}
};
Z7_CLASS_IMP_NOQIB_1(
CVirtFileSystem,
ISequentialOutStream
)
UInt64 _totalAllocSize;
size_t _pos;
unsigned _numFlushed;
bool _fileIsOpen;
bool _fileMode;
CMyComPtr2<ISequentialOutStream, COutFileStream> _outFileStream;
public:
CObjectVector<CVirtFile> Files;
UInt64 MaxTotalAllocSize;
FString DirPrefix;
CByteBuffer ZoneBuf;
CVirtFile &AddNewFile()
{
if (!Files.IsEmpty())
{
MaxTotalAllocSize -= Files.Back().Data.Size();
}
return Files.AddNew();
}
HRESULT CloseMemFile()
{
if (_fileMode)
{
return FlushToDisk(true);
}
CVirtFile &file = Files.Back();
if (file.Data.Size() != file.Size)
{
file.Data.ReAlloc_KeepData((size_t)file.Size, (size_t)file.Size);
}
return S_OK;
}
bool IsStreamInMem() const
{
if (_fileMode)
return false;
if (Files.Size() < 1 || /* Files[0].IsAltStream || */ Files[0].IsDir)
return false;
return true;
}
size_t GetMemStreamWrittenSize() const { return _pos; }
CVirtFileSystem():
MaxTotalAllocSize((UInt64)0 - 1)
{}
void Init()
{
_totalAllocSize = 0;
_fileMode = false;
_pos = 0;
_numFlushed = 0;
_fileIsOpen = false;
}
HRESULT CloseFile(const FString &path);
HRESULT FlushToDisk(bool closeLast);
size_t GetPos() const { return _pos; }
};
#endif
class CExtractCallbackImp Z7_final:
public IFolderArchiveExtractCallback,
/* IExtractCallbackUI:
before v23.00 : it included IFolderArchiveExtractCallback
since v23.00 : it doesn't include IFolderArchiveExtractCallback
*/
public IExtractCallbackUI, // NON-COM interface since 23.00
public IOpenCallbackUI, // NON-COM interface
public IFolderArchiveExtractCallback2,
#ifndef Z7_SFX
public IFolderOperationsExtractCallback,
public IFolderExtractToStreamCallback,
public ICompressProgressInfo,
public IArchiveRequestMemoryUseCallback,
#endif
#ifndef Z7_NO_CRYPTO
public ICryptoGetTextPassword,
#endif
public CMyUnknownImp
{
Z7_COM_QI_BEGIN2(IFolderArchiveExtractCallback)
Z7_COM_QI_ENTRY(IFolderArchiveExtractCallback2)
#ifndef Z7_SFX
Z7_COM_QI_ENTRY(IFolderOperationsExtractCallback)
Z7_COM_QI_ENTRY(IFolderExtractToStreamCallback)
Z7_COM_QI_ENTRY(ICompressProgressInfo)
Z7_COM_QI_ENTRY(IArchiveRequestMemoryUseCallback)
#endif
#ifndef Z7_NO_CRYPTO
Z7_COM_QI_ENTRY(ICryptoGetTextPassword)
#endif
Z7_COM_QI_END
Z7_COM_ADDREF_RELEASE
Z7_IFACE_IMP(IExtractCallbackUI)
Z7_IFACE_IMP(IOpenCallbackUI)
Z7_IFACE_COM7_IMP(IProgress)
Z7_IFACE_COM7_IMP(IFolderArchiveExtractCallback)
Z7_IFACE_COM7_IMP(IFolderArchiveExtractCallback2)
#ifndef Z7_SFX
Z7_IFACE_COM7_IMP(IFolderOperationsExtractCallback)
Z7_IFACE_COM7_IMP(IFolderExtractToStreamCallback)
Z7_IFACE_COM7_IMP(ICompressProgressInfo)
Z7_IFACE_COM7_IMP(IArchiveRequestMemoryUseCallback)
#endif
#ifndef Z7_NO_CRYPTO
Z7_IFACE_COM7_IMP(ICryptoGetTextPassword)
#endif
bool _needWriteArchivePath;
bool _isFolder;
bool _totalFilesDefined;
bool _totalBytesDefined;
public:
bool MultiArcMode;
bool ProcessAltStreams;
bool StreamMode;
bool ThereAreMessageErrors;
bool Src_Is_IO_FS_Folder;
#ifndef Z7_NO_CRYPTO
bool PasswordIsDefined;
bool PasswordWasAsked;
#endif
private:
#ifndef Z7_SFX
bool _needUpdateStat;
bool _newVirtFileWasAdded;
bool _isAltStream;
// bool _extractMode;
// bool _testMode;
bool _hashStream_WasUsed;
bool _curSize_Defined;
bool NeedAddFile;
bool _remember;
bool _skipArc;
#endif
UString _currentArchivePath;
UString _currentFilePath;
UString _filePath;
#ifndef Z7_SFX
UInt64 _curSize;
CMyComPtr2<ISequentialOutStream, COutStreamWithHash> _hashStream;
IHashCalc *_hashCalc; // it's for stat in Test operation
#endif
public:
CProgressDialog *ProgressDialog;
#ifndef Z7_SFX
CVirtFileSystem *VirtFileSystemSpec;
CMyComPtr<ISequentialOutStream> VirtFileSystem;
UInt64 NumFolders;
UInt64 NumFiles;
#endif
UInt32 NumArchiveErrors;
NExtract::NOverwriteMode::EEnum OverwriteMode;
bool YesToAll;
bool TestMode;
#ifndef Z7_NO_CRYPTO
UString Password;
#endif
UString _lang_Extracting;
UString _lang_Testing;
UString _lang_Skipping;
UString _lang_Reading;
UString _lang_Empty;
CExtractCallbackImp():
_totalFilesDefined(false)
, _totalBytesDefined(false)
, MultiArcMode(false)
, ProcessAltStreams(true)
, StreamMode(false)
, ThereAreMessageErrors(false)
, Src_Is_IO_FS_Folder(false)
#ifndef Z7_NO_CRYPTO
, PasswordIsDefined(false)
, PasswordWasAsked(false)
#endif
#ifndef Z7_SFX
, _remember(false)
, _skipArc(false)
, _hashCalc(NULL)
#endif
, OverwriteMode(NExtract::NOverwriteMode::kAsk)
, YesToAll(false)
, TestMode(false)
{}
~CExtractCallbackImp();
void Init();
HRESULT SetCurrentFilePath2(const wchar_t *filePath);
void AddError_Message(LPCWSTR message);
void AddError_Message_ShowArcPath(LPCWSTR message);
HRESULT MessageError(const char *message, const FString &path);
void Add_ArchiveName_Error();
#ifndef Z7_SFX
void SetHashCalc(IHashCalc *hashCalc) { _hashCalc = hashCalc; }
void SetHashMethods(IHashCalc *hash)
{
if (!hash)
return;
_hashStream.Create_if_Empty();
_hashStream->_hash = hash;
}
#endif
bool IsOK() const { return NumArchiveErrors == 0 && !ThereAreMessageErrors; }
};
#endif
|