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.
17 #ifndef _ZIP_ARCHIVE_H_
18 #define _ZIP_ARCHIVE_H_
20 #include <localtypes.h>
23 This class represents a zip archive
28 class CZipArchive: public CBase
34 KZipArchiveError = -256,
35 KCentralDirectoryTrailerNotFound = KZipArchiveError - 1,
36 KCentralDirectoryTrailerInvalid = KZipArchiveError - 3,
37 KCompressionMethodNotSupported = KZipArchiveError - 4,
38 KLocalHeaderSignatureInvalid = KZipArchiveError - 5,
39 KMultiDiskArchivesNotSupported = KZipArchiveError - 6,
40 KMemberNotFound = KZipArchiveError - 7,
42 KZipArchiveMinError = KZipArchiveError - 8
46 enum TCompressionMethod
68 KCentralDirectorySignature = 0x06054b50,
69 KCentralDirectoryHeaderSignature = 0x02014b50,
70 KLocalHeaderSignature = 0x04034b50
76 KCentralDirectoryTrailerFixedLength = 22,
77 KLocalHeaderFixedLength = 30,
78 KCentralDirectoryHeaderFixedLength = 46,
80 KMaxTrailerSearchLength = 65536
86 KCentralFileHeaderFileNameLengthOffset = 28,
87 KCentralFileHeaderExtraFieldLengthOffset = 30,
88 KCentralFileHeaderFileNameOffset = 46
92 Represents the archive's central directory trailer - the central directory contains information
93 about files in the arhive
98 struct TCentralDirectoryTrailer
102 TUint16 iStartDiskNumber;
103 TUint16 iLocalEntryCount;
104 TUint16 iTotalEntryCount;
107 TUint16 iCommentLength;
108 // comment -- variable length
112 Represents the archive's central directory header - the central directory contains information
113 about files in the arhive
118 struct TCentralDirectoryHeader
124 TUint16 iCompressionMethod;
125 TUint16 iLastModifiedFileTime;
126 TUint16 iLastModifiedFileDate;
128 TUint32 iCompressedSize;
129 TUint32 iUncompressedSize;
130 TUint16 iFileNameLength;
131 TUint16 iExtraFieldLength;
132 TUint16 iFileCommentLength;
133 TUint16 iDiskNumberStart;
134 TUint16 iInternalFileAttributes;
135 TUint32 iExternalFileAttributes;
136 TUint32 iLocalHeaderOffset;
137 // file name -- variable length
138 // extra field -- variable length
139 // file comment -- variable length
143 Represents the archive's local header
151 TUint16 iVersionNeeded;
153 TUint16 iCompressionMethod;
154 TUint16 iLastModifiedFileTime;
155 TUint16 iLastModifiedFileDate;
157 TUint32 iCompressedSize;
158 TUint32 iUncompressedSize;
159 TUint16 iFileNameLength;
160 TUint16 iExtraFieldLength;
161 // file name -- variable length
162 // extra field -- variable length
166 #endif /* !_ZIP_ARCHIVE_H_ */