os/ossrv/compressionlibs/ziplib/inc/zipfilememberinputstream.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
sl@0
    17
#ifndef _ZIP_FILE_MEMBER_INPUT_STREAM_H_
sl@0
    18
#define _ZIP_FILE_MEMBER_INPUT_STREAM_H_
sl@0
    19
sl@0
    20
#include <zlib.h>
sl@0
    21
#include <localtypes.h>
sl@0
    22
#include <s32file.h>
sl@0
    23
sl@0
    24
class CZipFile;
sl@0
    25
sl@0
    26
/**
sl@0
    27
A RZipFileMemberReaderStream represents a input stream for compressed files in the archive. 
sl@0
    28
This is a friend class to CZipFile. In order to create a input stream for a file in the archive,
sl@0
    29
CZipFile will call its member function GetInputStreamL() by passing a pointer to 
sl@0
    30
RZipFileMemberReaderStream and the function will return the input stream for the file
sl@0
    31
Note: This class is actually a C class as it derives from CBase
sl@0
    32
sl@0
    33
@publishedAll
sl@0
    34
@released
sl@0
    35
*/
sl@0
    36
class RZipFileMemberReaderStream : public CBase
sl@0
    37
	{
sl@0
    38
friend class CZipFile;
sl@0
    39
sl@0
    40
public:
sl@0
    41
	
sl@0
    42
	IMPORT_C ~RZipFileMemberReaderStream();
sl@0
    43
	IMPORT_C TInt Read(TDes16& aDes, TInt aLength);
sl@0
    44
	
sl@0
    45
	/**
sl@0
    46
	Overload version of the RZipFileMemberReaderStream read method.
sl@0
    47
	On return, contains the data read from the stream buffer.
sl@0
    48
	
sl@0
    49
	@param aDes The target descriptor for the data read from the stream buffer
sl@0
    50
	@param aLength The maximum number of bytes to be read
sl@0
    51
	@return KErrNone If all bytes read successfully.
sl@0
    52
	@return	KErrCorrupt If reading fails.
sl@0
    53
	@return KErrEof If end of file is reached.
sl@0
    54
	@return ... Any one of the system-wide error codes for other errors.
sl@0
    55
	*/	
sl@0
    56
	virtual TInt Read(TDes8& aDes, TInt aLength);
sl@0
    57
	
sl@0
    58
	/**
sl@0
    59
	Overload version of the RZipFileMemberReaderStream readL method.
sl@0
    60
	On return, contains the data read from the stream buffer.
sl@0
    61
	
sl@0
    62
	@param aDes The target descriptor for the data read from the stream buffer
sl@0
    63
	@param aLength The maximum number of bytes to be read
sl@0
    64
	@leave KErrNone If all bytes read successfully.
sl@0
    65
	@leave KErrCorrupt If reading fails.
sl@0
    66
	@leave KErrEof If end of file is reached.
sl@0
    67
	@leave ... Any one of the system-wide error codes for other errors.
sl@0
    68
	*/
sl@0
    69
	virtual void ReadL(TDes16& aDes, TInt aLength);
sl@0
    70
sl@0
    71
sl@0
    72
	void Release();
sl@0
    73
	void Close();
sl@0
    74
sl@0
    75
private:
sl@0
    76
	RZipFileMemberReaderStream(CZipFile&, TUint32, TUint32, TUint32, TUint32);
sl@0
    77
	
sl@0
    78
	static RZipFileMemberReaderStream* NewL(CZipFile&, TUint32, TUint32, TUint32, TUint32);
sl@0
    79
	void RZipFileMemberReaderStream::ConstructL();
sl@0
    80
	
sl@0
    81
	virtual TInt Read(void);
sl@0
    82
	virtual TInt Read(TByte*, TUint32, TUint32*);
sl@0
    83
sl@0
    84
	TInt GetBytes(TByte*, TUint32, TUint32*);
sl@0
    85
	TInt GetCompressedBytes(void);
sl@0
    86
	TInt GetStoredBytes(TByte*, TUint32, TUint32*);
sl@0
    87
	
sl@0
    88
	void ReadL(TDes8&);
sl@0
    89
	void ReadL(TDes16&);
sl@0
    90
	void ReadL(TDes8&, TChar);
sl@0
    91
	void ReadL(TDes16&, TChar);
sl@0
    92
	void ReadL(TUint8*, TInt);
sl@0
    93
	void ReadL(TUint16*, TInt);
sl@0
    94
	void ReadL(RWriteStream&);
sl@0
    95
	void ReadL(RWriteStream&, TInt);
sl@0
    96
	void ReadL(TInt);
sl@0
    97
sl@0
    98
	TInt8 ReadInt8L();
sl@0
    99
	TInt16 ReadInt16L();
sl@0
   100
	TInt32 ReadInt32L();
sl@0
   101
	TUint8 ReadUint8L();
sl@0
   102
	TUint16 ReadUint16L();
sl@0
   103
	TUint32 ReadUint32L();
sl@0
   104
sl@0
   105
	TReal32 ReadReal32L() __SOFTFP;
sl@0
   106
	TReal64 ReadReal64L() __SOFTFP;
sl@0
   107
sl@0
   108
	void PushL();
sl@0
   109
	void Pop();
sl@0
   110
	void Attach(MStreamBuf*);
sl@0
   111
	void Detach();
sl@0
   112
	MStreamBuf* Source();
sl@0
   113
sl@0
   114
sl@0
   115
private:
sl@0
   116
sl@0
   117
	enum
sl@0
   118
		{
sl@0
   119
		kCompressedBytesSize = 1024
sl@0
   120
		};
sl@0
   121
		
sl@0
   122
private:
sl@0
   123
	
sl@0
   124
	CZipFile& 	iZipFile;
sl@0
   125
	
sl@0
   126
	/** The method for compressing file*/ 
sl@0
   127
	TUint32   	iCompressionMethod;
sl@0
   128
	
sl@0
   129
	z_stream  	iStream;
sl@0
   130
	
sl@0
   131
	/** The size of compressed file */
sl@0
   132
	TUint32     iCompressedSize;
sl@0
   133
	
sl@0
   134
	/** The size of uncompressed file */
sl@0
   135
	TUint32     iUncompressedSize;
sl@0
   136
	
sl@0
   137
	TUint32     iFileOffset;
sl@0
   138
	TUint32     iOffset;
sl@0
   139
	TBool       iDone;
sl@0
   140
	
sl@0
   141
	/** The number of bytes already read in uncompressed bytes*/
sl@0
   142
	TUint32     iBytesLength;
sl@0
   143
	
sl@0
   144
	/** To store compressed bytes read*/
sl@0
   145
	TByte       iCompressedBytes[kCompressedBytesSize];
sl@0
   146
	
sl@0
   147
	/** Not used in implementation*/
sl@0
   148
	TUint32     iCompressedBytesOffset;
sl@0
   149
	};
sl@0
   150
sl@0
   151
	
sl@0
   152
#endif /* !_ZIP_FILE_MEMBER_INPUT_STREAM_H_ */
sl@0
   153