1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/compressionlibs/ziplib/test/oldezlib/inc/oldziparchive.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,171 @@
1.4 +// Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// ziparchive.h
1.18 +// $Revision: 1.1 $
1.19 +//
1.20 +//
1.21 +
1.22 +#ifndef _EZIP_ARCHIVE_H_
1.23 +#define _EZIP_ARCHIVE_H_
1.24 +
1.25 +#include "localtypes.h"
1.26 +
1.27 +/**
1.28 +This class represents a zip archive
1.29 +
1.30 +@publishedAll
1.31 +@released
1.32 +*/
1.33 +namespace TOLDEZIP
1.34 +{
1.35 +class CZipArchive: public CBase
1.36 + {
1.37 +public:
1.38 +
1.39 + enum
1.40 + {
1.41 + KZipArchiveError = -256,
1.42 + KCentralDirectoryTrailerNotFound = KZipArchiveError - 1,
1.43 + KCentralDirectoryTrailerInvalid = KZipArchiveError - 3,
1.44 + KCompressionMethodNotSupported = KZipArchiveError - 4,
1.45 + KLocalHeaderSignatureInvalid = KZipArchiveError - 5,
1.46 + KMultiDiskArchivesNotSupported = KZipArchiveError - 6,
1.47 + KMemberNotFound = KZipArchiveError - 7,
1.48 +
1.49 + KZipArchiveMinError = KZipArchiveError - 8
1.50 +
1.51 + };
1.52 +
1.53 + enum TCompressionMethod
1.54 + {
1.55 +
1.56 + EStored = 0,
1.57 + EShrunk = 1,
1.58 + EReducedCFOne = 2,
1.59 + EReducedCFTwo = 3,
1.60 + EReducedCFThree = 4,
1.61 + EReducedCFFour = 5,
1.62 + EImploded = 6,
1.63 + EReservedOne = 7,
1.64 + EDeflated = 8,
1.65 + EReservedTwo = 9,
1.66 + EPKWAREImploded = 10
1.67 +
1.68 + };
1.69 +
1.70 +protected:
1.71 +
1.72 + enum // Constants
1.73 + {
1.74 +
1.75 + KCentralDirectorySignature = 0x06054b50,
1.76 + KCentralDirectoryHeaderSignature = 0x02014b50,
1.77 + KLocalHeaderSignature = 0x04034b50
1.78 + };
1.79 +
1.80 + enum // Lengths
1.81 + {
1.82 +
1.83 + KCentralDirectoryTrailerFixedLength = 22,
1.84 + KLocalHeaderFixedLength = 30,
1.85 + KCentralDirectoryHeaderFixedLength = 46,
1.86 + KSignatureLength = 4,
1.87 + KMaxTrailerSearchLength = 65536
1.88 + };
1.89 +
1.90 + enum // Offsets
1.91 + {
1.92 +
1.93 + KCentralFileHeaderFileNameLengthOffset = 28,
1.94 + KCentralFileHeaderExtraFieldLengthOffset = 30,
1.95 + KCentralFileHeaderFileNameOffset = 46
1.96 + };
1.97 +
1.98 + /**
1.99 + Represents the archive's central directory trailer - the central directory contains information
1.100 + about files in the arhive
1.101 +
1.102 + @publishedAll
1.103 + @released
1.104 + */
1.105 + struct TCentralDirectoryTrailer
1.106 + {
1.107 + TUint32 iSignature;
1.108 + TUint16 iDiskNumber;
1.109 + TUint16 iStartDiskNumber;
1.110 + TUint16 iLocalEntryCount;
1.111 + TUint16 iTotalEntryCount;
1.112 + TUint32 iSize;
1.113 + TUint32 iOffset;
1.114 + TUint16 iCommentLength;
1.115 + // comment -- variable length
1.116 + };
1.117 +
1.118 + /**
1.119 + Represents the archive's central directory header - the central directory contains information
1.120 + about files in the arhive
1.121 +
1.122 + @publishedAll
1.123 + @released
1.124 + */
1.125 + struct TCentralDirectoryHeader
1.126 + {
1.127 + TUint32 iSignature;
1.128 + TUint16 iMadeBy;
1.129 + TUint16 iRequired;
1.130 + TUint16 iFlags;
1.131 + TUint16 iCompressionMethod;
1.132 + TUint16 iLastModifiedFileTime;
1.133 + TUint16 iLastModifiedFileDate;
1.134 + TUint32 iCRC32;
1.135 + TUint32 iCompressedSize;
1.136 + TUint32 iUncompressedSize;
1.137 + TUint16 iFileNameLength;
1.138 + TUint16 iExtraFieldLength;
1.139 + TUint16 iFileCommentLength;
1.140 + TUint16 iDiskNumberStart;
1.141 + TUint16 iInternalFileAttributes;
1.142 + TUint32 iExternalFileAttributes;
1.143 + TUint32 iLocalHeaderOffset;
1.144 + // file name -- variable length
1.145 + // extra field -- variable length
1.146 + // file comment -- variable length
1.147 + };
1.148 +
1.149 + /**
1.150 + Represents the archive's local header
1.151 +
1.152 + @publishedAll
1.153 + @released
1.154 + */
1.155 + struct TLocalHeader
1.156 + {
1.157 + TUint32 iSignature;
1.158 + TUint16 iVersionNeeded;
1.159 + TUint16 iFlags;
1.160 + TUint16 iCompressionMethod;
1.161 + TUint16 iLastModifiedFileTime;
1.162 + TUint16 iLastModifiedFileDate;
1.163 + TUint32 iCRC32;
1.164 + TUint32 iCompressedSize;
1.165 + TUint32 iUncompressedSize;
1.166 + TUint16 iFileNameLength;
1.167 + TUint16 iExtraFieldLength;
1.168 + // file name -- variable length
1.169 + // extra field -- variable length
1.170 + };
1.171 + };
1.172 +}//TOLDEZIP
1.173 +#endif /* !_ZIP_ARCHIVE_H_ */
1.174 +