Update contrib.
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.
26 #include "localtypes.h"
27 #include "oldziparchive.h"
28 #include "OldZipFileMember.h"
29 #include "OldZipFileMemberIterator.h"
30 #include "oldzipfilememberinputstream.h"
31 // Forward Class Declaration(s)
33 class CFileInputStream;
34 class TOLDEZIP::CZipFileMemberIterator;
35 class TOLDEZIP::CZipFileMember;
37 namespace ContentAccess
43 // End of Forward Class Declaration(s)
47 A CZipFile represents a ZIP archive contained in a single file.
48 Multi file zip archives are not supported.
55 class CZipFile : public TOLDEZIP::CZipArchive
57 friend class RZipFileMemberReaderStream;
58 friend class CZipFileMemberIterator;
61 /** ZipFile error enumeration.
65 /** Cannot read file directory in the archive file*/
66 KZipFileError = KZipArchiveMinError - 1,
68 /** File not found error. It is not used in current implemenation*/
69 KZipFileNotFound = KZipFileError - 1,
71 /** File IO error.Any error occurs during a archive file is readed.
72 For examples, any error about reading number of disk,
73 an offset of signature, or the content of file is non-readable.
75 KZipFileIOError = KZipFileError - 2
79 IMPORT_C static CZipFile* NewL(RFs& aFs, RFile& aFile);
80 IMPORT_C static CZipFile* NewL(RFs& aFs, const TDesC& aFileName);
81 IMPORT_C CZipFile(RFs& aFs, const TDesC& aFileName);
82 IMPORT_C TInt OpenL(void);
83 IMPORT_C void Close(void);
84 IMPORT_C virtual ~CZipFile();
87 IMPORT_C void ConstructL(const TDesC& aFileName);
89 IMPORT_C void ConstructL(RFile& aFile);
92 IMPORT_C TInt Size(TInt& aSize) const;
94 IMPORT_C CZipFileMember* MemberL(const TDesC& aName);
95 IMPORT_C CZipFileMember* CaseInsensitiveMemberL(const TDesC& aName);
96 IMPORT_C CZipFileMember* CaseSensitiveOrCaseInsensitiveMemberL(const TDesC& aName);
97 IMPORT_C TInt GetInputStreamL(const CZipFileMember* aMember, RZipFileMemberReaderStream*& aStream);
99 IMPORT_C CZipFileMemberIterator* GetMembersL(void);
105 Internal representation of a compressed file in a zipfile
109 struct TMemberPointer
111 /** the name of a compressed file*/
114 /** Not used in current implementation*/
115 TUint32 iCentralHeaderOffset;
117 /** The local offset of header in a compressed file*/
118 TUint32 iLocalHeaderOffset;
120 /** CRC with 32 bits length in a compressed file*/
123 /** The size of compressed file */
124 TUint32 iCompressedSize;
126 /** The size of file without compressed*/
127 TUint32 iUncompressedSize;
131 TInt FindCentralDirectoryTrailer(TUint32& offset);
132 TInt ReadCentralDirectoryTrailer(TUint32 offset, TCentralDirectoryTrailer&);
133 TInt ReadCentralDirectoryHeaderL(TCentralDirectoryHeader&, TMemberPointer&,
134 CCnvCharacterSetConverter* aConverter, TInt aConverterState);
136 TInt ReadLocalHeader(TUint32, TLocalHeader&);
138 const TMemberPointer* FindMemberPointer(const TDesC&, TBool);
140 TInt LoadMemberPointersL(void);
142 RZipFileMemberReaderStream* MakeInputStreamL(TUint32, TUint32, TUint32, TUint32);
143 CZipFileMember* MakeMemberL(TInt);
144 CZipFileMember* MakeMemberL(const TMemberPointer&, const TLocalHeader&);
147 void OpenFileL(const TDesC& aFileName);
149 TInt Read(TByte*, TUint32);
156 void DeleteMemberPointers(void);
159 const TDesC& iFileName;
162 /** The central directory of ZIP File Trailer*/
163 TCentralDirectoryTrailer iTrailer;
165 /** The pointer to a a compressed file in a zipfile*/
166 TMemberPointer* iMemberPointers;
170 /** The pointer to CData object created from a zip file*/
171 ContentAccess::CData* iData;
174 #endif /* !_ZIP_FILE_H_ */