First public contribution.
1 // Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #include "OldEZGzip.h"
18 using namespace TOLDEZLIB;
20 const TUint8 EZGZipFile::ID1 = 31;
21 const TUint8 EZGZipFile::ID2 = 139;
26 EXPORT_C TEZGZipHeader::TEZGZipHeader() : iId1(EZGZipFile::ID1), iId2(EZGZipFile::ID2), iCompressionMethod(8), iFlags(0), iTime(0),
27 iExtraFlags(0), iOs(255), iXlen(0), iExtra(NULL), iFname(NULL), iComment(NULL), iCrc(0)
35 EXPORT_C TEZGZipHeader::~TEZGZipHeader()
45 EXPORT_C TEZGZipTrailer::TEZGZipTrailer() : iCrc32(0), iSize(0)
53 @param aCrc the CRC to use for archive checking
54 @param aSize the size of the trailer
56 EXPORT_C TEZGZipTrailer::TEZGZipTrailer(TInt32 aCrc, TInt32 aSize) : iCrc32(aCrc), iSize(aSize)
61 //--------------------------------------------------------------------------------------------------------
64 Read the zip header from the specified zip file into the TEZGZipHeader object
66 @param aFile the zip file to read from
67 @param aHeader the target header object
68 @leave KEZlibErrBadGZipHeader invalid zip header
69 @leave ... Any of the system wide error codes
71 EXPORT_C void EZGZipFile::ReadHeaderL(RFile &aFile, TEZGZipHeader &aHeader)
73 TInt obligatoryData = sizeof(aHeader.iId1) + sizeof(aHeader.iId2) + sizeof(aHeader.iCompressionMethod) +
74 sizeof(aHeader.iFlags) + sizeof(aHeader.iTime) + sizeof(aHeader.iExtraFlags) + sizeof(aHeader.iOs);
76 TPtr8 des(&aHeader.iId1,0,obligatoryData);
77 TInt err = aFile.Read(des);
78 if (err != KErrNone || (des.Size() != obligatoryData))
79 User::Leave(KEZlibErrBadGZipHeader);
81 if (aHeader.iId1 != ID1 || aHeader.iId2 != ID2)
82 User::Leave(KEZlibErrBadGZipHeader);
84 if (aHeader.iFlags & (1 << EFExtra)) // then the extra bit is set
86 des.Set(REINTERPRET_CAST(TUint8 *,&aHeader.iXlen),0,sizeof(aHeader.iXlen));
87 err = aFile.Read(des);
88 if (err != KErrNone || des.Size() != sizeof(aHeader.iXlen) || aHeader.iXlen < 0)
89 User::Leave(KEZlibErrBadGZipHeader);
91 aHeader.iExtra = HBufC8::NewMaxL(aHeader.iXlen);
92 TPtr8 des = aHeader.iExtra->Des();
93 err = aFile.Read(des);
94 if (err != KErrNone || des.Size() != aHeader.iXlen)
95 User::Leave(KEZlibErrBadGZipHeader);
98 if (aHeader.iFlags & (1 << EFName)) // then read in filename
99 ReadStringIntoDescriptorL(aFile,&aHeader.iFname);
101 if (aHeader.iFlags & (1 << EFComment)) // then read in comment
102 ReadStringIntoDescriptorL(aFile,&aHeader.iComment);
104 if (aHeader.iFlags & (1 << EFHcrc))
106 des.Set(REINTERPRET_CAST(TUint8*,&aHeader.iCrc),0,sizeof(aHeader.iCrc));
107 err = aFile.Read(des);
108 if (err != KErrNone || des.Size() != sizeof(aHeader.iCrc))
109 User::Leave(KEZlibErrBadGZipHeader);
114 Write the zip header to the specified file
116 @param aFile the file to write to
117 @param aHeader the header object to write to the file
118 @leave ... Any of the system wide error codes
120 EXPORT_C void EZGZipFile::WriteHeaderL(RFile &aFile, TEZGZipHeader &aHeader)
122 TInt obligatoryData = sizeof(aHeader.iId1) + sizeof(aHeader.iId2) + sizeof(aHeader.iCompressionMethod) +
123 sizeof(aHeader.iFlags) + sizeof(aHeader.iTime) + sizeof(aHeader.iExtraFlags) + sizeof(aHeader.iOs);
125 TPtrC8 des(&aHeader.iId1,obligatoryData);
126 User::LeaveIfError(aFile.Write(des));
130 if (aHeader.iFlags & (1 << EFExtra)) // then the extra bit is set
132 des.Set(REINTERPRET_CAST(TUint8 *,&aHeader.iXlen),sizeof(aHeader.iXlen));
133 User::LeaveIfError(aFile.Write(des));
135 User::LeaveIfError(aFile.Write(*aHeader.iExtra));
138 if (aHeader.iFlags & (1 << EFName)) // then read in filename
140 User::LeaveIfError(aFile.Write(*aHeader.iFname));
141 User::LeaveIfError(aFile.Write(null));
144 if (aHeader.iFlags & (1 << EFComment)) // then read in comment
146 User::LeaveIfError(aFile.Write(*aHeader.iComment));
147 User::LeaveIfError(aFile.Write(null));
150 if (aHeader.iFlags & (1 << EFHcrc))
152 des.Set(REINTERPRET_CAST(TUint8*,&aHeader.iCrc),sizeof(aHeader.iCrc));
153 User::LeaveIfError(aFile.Write(des));
157 void EZGZipFile::ReadStringIntoDescriptorL(RFile &aFile, HBufC8 **aDes)
160 CArrayFixFlat<TUint8> *bytes = new (ELeave) CArrayFixFlat<TUint8>(16);
161 CleanupStack::PushL(bytes);
163 while (((err = aFile.Read(ch)) == KErrNone) && ch[0] != '\0')
164 bytes->AppendL(*ch.Ptr());
167 User::Leave(KEZlibErrBadGZipHeader);
169 *aDes = HBufC8::NewMaxL(bytes->Count());
171 for (i = 0; i < bytes->Count(); i++)
172 (*aDes)->Des()[i] = (*bytes)[i];
174 CleanupStack::PopAndDestroy(); // delete bytes
178 Read the zip trailer from the specified zip file into the TEZGZipTrailer object
180 @param aFile the zip file to read from
181 @param aTrailer the target trailer object
182 @leave KEZlibErrBadGZipTrailer invalid zip trailer
183 @leave ... Any of the system wide error codes
185 EXPORT_C void EZGZipFile::ReadTrailerL(RFile &aFile, TEZGZipTrailer &aTrailer)
187 TPtr8 des(REINTERPRET_CAST(TUint8*,&aTrailer.iCrc32),0,sizeof(TEZGZipTrailer));
189 TInt err = aFile.Read(des);
190 if (err != KErrNone || des.Size() != sizeof(TEZGZipTrailer))
191 User::Leave(KEZlibErrBadGZipTrailer);
195 Write the zip trailer to the specified file
197 @param aFile the file to write to
198 @param aTrailer the trailer object to write to the file
199 @leave ... Any of the system wide error codes
201 EXPORT_C void EZGZipFile::WriteTrailerL(RFile &aFile, TEZGZipTrailer &aTrailer)
203 TPtrC8 des(REINTERPRET_CAST(TUint8*,&aTrailer.iCrc32),sizeof(TEZGZipTrailer));
204 User::LeaveIfError(aFile.Write(des));
208 Find the zip trailer within the specified file, and read it into the TEZGZipTrailer object
210 @param aRfs file server session
211 @param aFname the file to read from
212 @param aTrailer the target trailer object
213 @leave KEZlibErrBadGZipHeader Invalid zip header
214 @leave ... Any of the system wide error codes
216 EXPORT_C void EZGZipFile::LocateAndReadTrailerL(RFs &aRfs, const TDesC &aFname, TEZGZipTrailer &aTrailer)
222 User::LeaveIfError(file.Open(aRfs,aFname,EFileStream | EFileRead | EFileShareAny));
223 CleanupClosePushL(file);
226 TPtr8 des(magic,0,sizeof(TUint8) * 2);
227 User::LeaveIfError(file.Read(des));
228 if (magic[0] != ID1 || magic[1] != ID2)
229 User::Leave(KEZlibErrBadGZipHeader);
231 User::LeaveIfError(file.Size(fileSize));
232 TInt sizePos = fileSize - (sizeof (TInt32) * 2);
233 User::LeaveIfError(file.Seek(ESeekStart,sizePos));
235 des.Set(REINTERPRET_CAST(TUint8 *,&aTrailer),0,sizeof(TInt32)*2);
237 User::LeaveIfError(file.Read(des));
239 CleanupStack::PopAndDestroy();
243 @deprecated Interface is deprecated because it is unsafe as it may leave. It is available for backward compatibility reasons only.
244 @see EZGZipFile::IsGzipFileL
246 EXPORT_C TBool EZGZipFile::IsGzipFile(RFs &aRfs, const TDesC &aFname)
248 TBool retBool = true;
249 TRAPD(errCode, retBool = IsGzipFileL(aRfs, aFname));
250 if(errCode != KErrNone)
258 Determine if the given file is a valid zip file
260 @param aRfs file server session
261 @param aFname name of the file to check
262 @leave ... Any of the system wide error codes
263 @return ETrue if the file is valid zip file, EFalse otherwise
265 EXPORT_C TBool EZGZipFile::IsGzipFileL(RFs &aRfs, const TDesC &aFname)
270 User::LeaveIfError(file.Open(aRfs,aFname,EFileStream | EFileRead | EFileShareAny));
271 CleanupClosePushL(file);
273 TPtr8 des(ids,0,sizeof(TUint8) * 2);
275 User::LeaveIfError(file.Read(des));
276 CleanupStack::PopAndDestroy();
277 return (ids[0] == ID1 && ids[1] == ID2);
280 //--------------------------------------------------------------------------------------------------------
283 CEZFileToGzipBM::CEZFileToGzipBM(RFile &aInput, RFile &aOutput) : CEZFileBufferManager(aInput,aOutput)
285 iCrc = crc32(iCrc,NULL,0);
289 CEZFileToGzipBM* CEZFileToGzipBM::NewLC(RFile &aInput, RFile &aOutput, TInt aBufferSize)
291 CEZFileToGzipBM *bm = new (ELeave) CEZFileToGzipBM(aInput,aOutput);
292 CleanupStack::PushL(bm);
293 bm->ConstructL(aBufferSize);
297 CEZFileToGzipBM* CEZFileToGzipBM::NewL(RFile &aInput, RFile &aOutput, TInt aBufferSize)
299 CEZFileToGzipBM *bm = new (ELeave) CEZFileToGzipBM(aInput,aOutput);
300 CleanupStack::PushL(bm);
301 bm->ConstructL(aBufferSize);
306 void CEZFileToGzipBM::NeedInputL(CEZZStream &aZStream)
308 CEZFileBufferManager::NeedInputL(aZStream);
309 iCrc = crc32(iCrc,iInputDescriptor.Ptr(),iInputDescriptor.Size());
312 void CEZFileToGzipBM::InitializeL(CEZZStream &aZStream)
314 CEZFileBufferManager::InitializeL(aZStream);
315 iCrc = crc32(iCrc,iInputDescriptor.Ptr(),iInputDescriptor.Size());
318 //--------------------------------------------------------------------------------------------------------
321 CEZGzipToFileBM::CEZGzipToFileBM(RFile &aInput, RFile &aOutput) : CEZFileBufferManager(aInput,aOutput)
323 iCrc = crc32(iCrc,NULL,0);
326 CEZGzipToFileBM* CEZGzipToFileBM::NewLC(RFile &aInput, RFile &aOutput, TInt aBufferSize)
328 CEZGzipToFileBM *bm = new (ELeave) CEZGzipToFileBM(aInput,aOutput);
329 CleanupStack::PushL(bm);
330 bm->ConstructL(aBufferSize);
334 CEZGzipToFileBM* CEZGzipToFileBM::NewL(RFile &aInput, RFile &aOutput, TInt aBufferSize)
336 CEZGzipToFileBM *bm = new (ELeave) CEZGzipToFileBM(aInput,aOutput);
337 CleanupStack::PushL(bm);
338 bm->ConstructL(aBufferSize);
343 void CEZGzipToFileBM::NeedOutputL(CEZZStream &aZStream)
345 TPtrC8 od = aZStream.OutputDescriptor();
346 iCrc = crc32(iCrc,od.Ptr(),od.Size());
347 CEZFileBufferManager::NeedOutputL(aZStream);
350 void CEZGzipToFileBM::FinalizeL(CEZZStream &aZStream)
352 TPtrC8 od = aZStream.OutputDescriptor();
353 iCrc = crc32(iCrc,od.Ptr(),od.Size());
354 CEZFileBufferManager::FinalizeL(aZStream);
358 //--------------------------------------------------------------------------------------------------------
359 CEZGZipToFile::CEZGZipToFile() : iDecompressor(NULL), iBufferManager(NULL)
364 CEZGZipToFile::~CEZGZipToFile()
366 delete iDecompressor;
367 delete iBufferManager;
372 Creates a new CEZGZipToFile object and leaves it on the CleanupStack
374 @param aRfs open file server session
375 @param aGzFileName name of the file to be de-compressed
376 @param aOutput the target file to hold the un-compressed data
377 @param aBufferSize required size of buffers
378 @return a pointer to the new CEZGZipToFile object, left on the CleanupStack
380 EXPORT_C CEZGZipToFile* CEZGZipToFile::NewLC(RFs &aRfs, const TDesC &aGzFileName, RFile &aOutput, TInt aBufferSize)
382 CEZGZipToFile* dec = new (ELeave) CEZGZipToFile;
383 CleanupStack::PushL(dec);
384 dec->ConstructL(aRfs,aGzFileName,aOutput,aBufferSize);
389 Creates a new CEZGZipToFile object
391 @param aRfs open file server session
392 @param aGzFileName name of the file to be de-compressed
393 @param aOutput the target file to hold the un-compressed data
394 @param aBufferSize required size of buffers
395 @return a pointer to the new CEZGZipToFile object
397 EXPORT_C CEZGZipToFile* CEZGZipToFile::NewL(RFs &aRfs, const TDesC &aGzFileName, RFile &aOutput, TInt aBufferSize)
399 CEZGZipToFile* dec = new (ELeave) CEZGZipToFile;
400 CleanupStack::PushL(dec);
401 dec->ConstructL(aRfs,aGzFileName,aOutput,aBufferSize);
407 Quits the current de-compression operation and restarts with the specified arguments
409 @param aRfs open file server session
410 @param aGzFileName name of the file to be de-compressed
411 @param aOutput the target file to hold the un-compressed data
412 @param aBufferSize required size of buffers
413 @leave ... Any of the system wide error codes
415 EXPORT_C void CEZGZipToFile::ResetL(RFs &aRfs, const TDesC &aGzFileName, RFile &aOutput, TInt aBufferSize)
417 delete iBufferManager;
418 InitialiseBufManL(aRfs,aGzFileName,aOutput,aBufferSize);
419 iDecompressor->ResetL(*iBufferManager);
423 De-compresses the current zip file in stages. The function needs to called again until the de-compression
424 is finalised, in which case it will return EFalse - for example...
427 while ( decompressor->InflateL() )
429 // No action required
433 @leave KEZlibErrBadGZipCrc Invalid CRC check
434 @leave ... Any of the system wide error codes
435 @return ETrue if the de-compression is not complete, and function must be called again
436 @return EFalse if the de-compression is finalised
438 EXPORT_C TBool CEZGZipToFile::InflateL()
440 TBool keepGoing = iDecompressor->InflateL();
444 if (iBufferManager->Crc() != iTrailer.iCrc32)
445 User::Leave(KEZlibErrBadGZipCrc);
452 void CEZGZipToFile::InitialiseBufManL(RFs &aRfs, const TDesC &aGzFileName, RFile &aOutput, TInt aBufferSize)
454 EZGZipFile::LocateAndReadTrailerL(aRfs,aGzFileName,iTrailer);
455 User::LeaveIfError(iGZipFile.Open(aRfs,aGzFileName,EFileStream | EFileRead | EFileShareAny));
456 EZGZipFile::ReadHeaderL(iGZipFile,iHeader);
457 iBufferManager = CEZGzipToFileBM::NewL(iGZipFile,aOutput,aBufferSize);
460 void CEZGZipToFile::ConstructL(RFs &aRfs, const TDesC &aGzFileName, RFile &aOutput, TInt aBufferSize)
462 InitialiseBufManL(aRfs,aGzFileName,aOutput,aBufferSize);
464 // this is a special zlib modification to stop it choking when it can't find the normal zlib stream header.
466 iDecompressor = CEZDecompressor::NewL(*iBufferManager,-CEZDecompressor::EMaxWBits);
470 //--------------------------------------------------------------------------------------------------------
473 CEZFileToGZip::CEZFileToGZip() : iCompressor(NULL), iBufferManager(NULL)
478 CEZFileToGZip::~CEZFileToGZip()
481 delete iBufferManager;
486 Creates a new CEZFileToGZip object and leaves it on the CleanupStack
488 @param aRfs open file server session
489 @param aGzFileName the name of the target zip file
490 @param aInput the file to compress
491 @param aBufferSize required size of buffers
492 @return a pointer to the new CEZFileToGZip object, left on the CleanupStack
494 EXPORT_C CEZFileToGZip* CEZFileToGZip::NewLC(RFs &aRfs, const TDesC &aGzFileName, RFile &aInput, TInt aBufferSize)
496 CEZFileToGZip* com = new (ELeave) CEZFileToGZip;
497 CleanupStack::PushL(com);
498 com->ConstructL(aRfs,aGzFileName,aInput,aBufferSize);
503 Creates a new CEZFileToGZip object and leaves it on the CleanupStack
505 @param aRfs open file server session
506 @param aGzFileName the name of the target zip file
507 @param aInput the file to compress
508 @param aBufferSize required size of buffers
509 @return a pointer to the new CEZFileToGZip object, left on the CleanupStack
511 EXPORT_C CEZFileToGZip* CEZFileToGZip::NewL(RFs &aRfs, const TDesC &aGzFileName, RFile &aInput, TInt aBufferSize)
513 CEZFileToGZip* com = new (ELeave) CEZFileToGZip;
514 CleanupStack::PushL(com);
515 com->ConstructL(aRfs,aGzFileName,aInput,aBufferSize);
521 Quits the current compression operation and restarts with the specified arguments
523 @param aRfs open file server session
524 @param aGzFileName the name of the target zip file
525 @param aInput the file to compress
526 @param aBufferSize required size of buffers
527 @leave ... Any of the system wide error codes
529 EXPORT_C void CEZFileToGZip::ResetL(RFs &aRfs, const TDesC &aGzFileName, RFile &aInput, TInt aBufferSize)
531 delete iBufferManager;
532 InitialiseBufManL(aRfs,aGzFileName,aInput,aBufferSize);
533 iCompressor->ResetL(*iBufferManager);
537 Compresses the current file in stages. The function needs to called again until the compression
538 is finalised, in which case it will return EFalse - for example...
541 while ( compressor->DeflateL() )
543 // No action required
547 @leave ... Any of the system wide error codes
548 @return ETrue if the compression is not complete, and function must be called again
549 @return EFalse if the compression is finalised
551 EXPORT_C TBool CEZFileToGZip::DeflateL()
553 TBool keepgoing = iCompressor->DeflateL();
556 TEZGZipTrailer trailer(iBufferManager->Crc(), iUncompressedDataSize);
557 EZGZipFile::WriteTrailerL(iGZipFile, trailer);
564 void CEZFileToGZip::InitialiseBufManL(RFs &aRfs, const TDesC &aGzFileName, RFile &aInput, TInt aBufferSize)
566 User::LeaveIfError(aInput.Size(iUncompressedDataSize));
569 err = iGZipFile.Create(aRfs, aGzFileName,EFileStream | EFileWrite | EFileShareExclusive);
570 if (err == KErrAlreadyExists)
571 User::LeaveIfError(iGZipFile.Open(aRfs,aGzFileName,EFileStream | EFileWrite | EFileShareExclusive));
573 User::LeaveIfError(err);
575 EZGZipFile::WriteHeaderL(iGZipFile,iHeader);
576 iBufferManager = CEZFileToGzipBM::NewL(aInput,iGZipFile,aBufferSize);
579 void CEZFileToGZip::ConstructL(RFs &aRfs, const TDesC &aGzFileName, RFile &aInput, TInt aBufferSize)
581 InitialiseBufManL(aRfs,aGzFileName,aInput,aBufferSize);
583 // this is a special zlib modification to stop zlib writing out its normal zlib stream header.
585 iCompressor = CEZCompressor::NewL(*iBufferManager,CEZCompressor::EDefaultCompression,-CEZCompressor::EMaxWBits);