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.
19 #ifndef _EZIP_ARCHIVE_H_
20 #define _EZIP_ARCHIVE_H_
22 #include "localtypes.h"
25 This class represents a zip archive
32 class CZipArchive: public CBase
38 KZipArchiveError = -256,
39 KCentralDirectoryTrailerNotFound = KZipArchiveError - 1,
40 KCentralDirectoryTrailerInvalid = KZipArchiveError - 3,
41 KCompressionMethodNotSupported = KZipArchiveError - 4,
42 KLocalHeaderSignatureInvalid = KZipArchiveError - 5,
43 KMultiDiskArchivesNotSupported = KZipArchiveError - 6,
44 KMemberNotFound = KZipArchiveError - 7,
46 KZipArchiveMinError = KZipArchiveError - 8
50 enum TCompressionMethod
72 KCentralDirectorySignature = 0x06054b50,
73 KCentralDirectoryHeaderSignature = 0x02014b50,
74 KLocalHeaderSignature = 0x04034b50
80 KCentralDirectoryTrailerFixedLength = 22,
81 KLocalHeaderFixedLength = 30,
82 KCentralDirectoryHeaderFixedLength = 46,
84 KMaxTrailerSearchLength = 65536
90 KCentralFileHeaderFileNameLengthOffset = 28,
91 KCentralFileHeaderExtraFieldLengthOffset = 30,
92 KCentralFileHeaderFileNameOffset = 46
96 Represents the archive's central directory trailer - the central directory contains information
97 about files in the arhive
102 struct TCentralDirectoryTrailer
106 TUint16 iStartDiskNumber;
107 TUint16 iLocalEntryCount;
108 TUint16 iTotalEntryCount;
111 TUint16 iCommentLength;
112 // comment -- variable length
116 Represents the archive's central directory header - the central directory contains information
117 about files in the arhive
122 struct TCentralDirectoryHeader
128 TUint16 iCompressionMethod;
129 TUint16 iLastModifiedFileTime;
130 TUint16 iLastModifiedFileDate;
132 TUint32 iCompressedSize;
133 TUint32 iUncompressedSize;
134 TUint16 iFileNameLength;
135 TUint16 iExtraFieldLength;
136 TUint16 iFileCommentLength;
137 TUint16 iDiskNumberStart;
138 TUint16 iInternalFileAttributes;
139 TUint32 iExternalFileAttributes;
140 TUint32 iLocalHeaderOffset;
141 // file name -- variable length
142 // extra field -- variable length
143 // file comment -- variable length
147 Represents the archive's local header
155 TUint16 iVersionNeeded;
157 TUint16 iCompressionMethod;
158 TUint16 iLastModifiedFileTime;
159 TUint16 iLastModifiedFileDate;
161 TUint32 iCompressedSize;
162 TUint32 iUncompressedSize;
163 TUint16 iFileNameLength;
164 TUint16 iExtraFieldLength;
165 // file name -- variable length
166 // extra field -- variable length
170 #endif /* !_ZIP_ARCHIVE_H_ */