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.
14 // zipfilememberinputstream.h
19 #ifndef _EZIP_FILE_MEMBER_INPUT_STREAM_H_
20 #define _EZIP_FILE_MEMBER_INPUT_STREAM_H_
23 #include "localtypes.h"
26 class TOLDEZIP::CZipFile;
29 A RZipFileMemberReaderStream represents a input stream for compressed files in the archive.
30 This is a friend class to CZipFile. In order to create a input stream for a file in the archive,
31 CZipFile will call its member function GetInputStreamL() by passing a pointer to
32 RZipFileMemberReaderStream and the function will return the input stream for the file
33 Note: This class is actually a C class as it derives from CBase
40 class RZipFileMemberReaderStream : public CBase
42 friend class CZipFile;
46 IMPORT_C ~RZipFileMemberReaderStream();
47 IMPORT_C TInt Read(TDes16& aDes, TInt aLength);
50 Overload version of the RZipFileMemberReaderStream read method.
51 On return, contains the data read from the stream buffer.
53 @param aDes The target descriptor for the data read from the stream buffer
54 @param aLength The maximum number of bytes to be read
55 @return KErrNone If all bytes read successfully.
56 @return KErrCorrupt If reading fails.
57 @return KErrEof If end of file is reached.
58 @return ... Any one of the system-wide error codes for other errors.
60 virtual TInt Read(TDes8& aDes, TInt aLength);
63 Overload version of the RZipFileMemberReaderStream readL method.
64 On return, contains the data read from the stream buffer.
66 @param aDes The target descriptor for the data read from the stream buffer
67 @param aLength The maximum number of bytes to be read
68 @leave KErrNone If all bytes read successfully.
69 @leave KErrCorrupt If reading fails.
70 @leave KErrEof If end of file is reached.
71 @leave ... Any one of the system-wide error codes for other errors.
73 virtual void ReadL(TDes16& aDes, TInt aLength);
80 RZipFileMemberReaderStream(CZipFile&, TUint32, TUint32, TUint32, TUint32);
82 static RZipFileMemberReaderStream* NewL(CZipFile&, TUint32, TUint32, TUint32, TUint32);
83 void RZipFileMemberReaderStream::ConstructL();
85 virtual TInt Read(void);
86 virtual TInt Read(TByte*, TUint32, TUint32*);
88 TInt GetBytes(TByte*, TUint32, TUint32*);
89 TInt GetCompressedBytes(void);
90 TInt GetStoredBytes(TByte*, TUint32, TUint32*);
94 void ReadL(TDes8&, TChar);
95 void ReadL(TDes16&, TChar);
96 void ReadL(TUint8*, TInt);
97 void ReadL(TUint16*, TInt);
98 void ReadL(RWriteStream&);
99 void ReadL(RWriteStream&, TInt);
106 TUint16 ReadUint16L();
107 TUint32 ReadUint32L();
109 TReal32 ReadReal32L() __SOFTFP;
110 TReal64 ReadReal64L() __SOFTFP;
114 void Attach(MStreamBuf*);
116 MStreamBuf* Source();
123 kCompressedBytesSize = 1024
130 /** The method for compressing file*/
131 TUint32 iCompressionMethod;
135 /** The size of compressed file */
136 TUint32 iCompressedSize;
138 /** The size of uncompressed file */
139 TUint32 iUncompressedSize;
145 /** The number of bytes already read in uncompressed bytes*/
146 TUint32 iBytesLength;
148 /** To store compressed bytes read*/
149 TByte iCompressedBytes[kCompressedBytesSize];
151 /** Not used in implementation*/
152 TUint32 iCompressedBytesOffset;
155 #endif /* !_ZIP_FILE_MEMBER_INPUT_STREAM_H_ */