os/ossrv/compressionlibs/ziplib/test/oldezlib/inc/oldzipfilememberinputstream.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
// zipfilememberinputstream.h
sl@0
    15
// $Revision: 1.2 $
sl@0
    16
// 
sl@0
    17
//
sl@0
    18
sl@0
    19
#ifndef _EZIP_FILE_MEMBER_INPUT_STREAM_H_
sl@0
    20
#define _EZIP_FILE_MEMBER_INPUT_STREAM_H_
sl@0
    21
sl@0
    22
#include "OldEZlib.h"
sl@0
    23
#include "localtypes.h"
sl@0
    24
#include <s32file.h>
sl@0
    25
sl@0
    26
class TOLDEZIP::CZipFile;
sl@0
    27
sl@0
    28
/**
sl@0
    29
A RZipFileMemberReaderStream represents a input stream for compressed files in the archive. 
sl@0
    30
This is a friend class to CZipFile. In order to create a input stream for a file in the archive,
sl@0
    31
CZipFile will call its member function GetInputStreamL() by passing a pointer to 
sl@0
    32
RZipFileMemberReaderStream and the function will return the input stream for the file
sl@0
    33
Note: This class is actually a C class as it derives from CBase
sl@0
    34
sl@0
    35
@publishedAll
sl@0
    36
@released
sl@0
    37
*/
sl@0
    38
namespace TOLDEZIP
sl@0
    39
{
sl@0
    40
class RZipFileMemberReaderStream : public CBase
sl@0
    41
	{
sl@0
    42
friend class CZipFile;
sl@0
    43
sl@0
    44
public:
sl@0
    45
	
sl@0
    46
	IMPORT_C ~RZipFileMemberReaderStream();
sl@0
    47
	IMPORT_C TInt Read(TDes16& aDes, TInt aLength);
sl@0
    48
	
sl@0
    49
	/**
sl@0
    50
	Overload version of the RZipFileMemberReaderStream read method.
sl@0
    51
	On return, contains the data read from the stream buffer.
sl@0
    52
	
sl@0
    53
	@param aDes The target descriptor for the data read from the stream buffer
sl@0
    54
	@param aLength The maximum number of bytes to be read
sl@0
    55
	@return KErrNone If all bytes read successfully.
sl@0
    56
	@return	KErrCorrupt If reading fails.
sl@0
    57
	@return KErrEof If end of file is reached.
sl@0
    58
	@return ... Any one of the system-wide error codes for other errors.
sl@0
    59
	*/	
sl@0
    60
	virtual TInt Read(TDes8& aDes, TInt aLength);
sl@0
    61
	
sl@0
    62
	/**
sl@0
    63
	Overload version of the RZipFileMemberReaderStream readL method.
sl@0
    64
	On return, contains the data read from the stream buffer.
sl@0
    65
	
sl@0
    66
	@param aDes The target descriptor for the data read from the stream buffer
sl@0
    67
	@param aLength The maximum number of bytes to be read
sl@0
    68
	@leave KErrNone If all bytes read successfully.
sl@0
    69
	@leave KErrCorrupt If reading fails.
sl@0
    70
	@leave KErrEof If end of file is reached.
sl@0
    71
	@leave ... Any one of the system-wide error codes for other errors.
sl@0
    72
	*/
sl@0
    73
	virtual void ReadL(TDes16& aDes, TInt aLength);
sl@0
    74
sl@0
    75
sl@0
    76
	void Release();
sl@0
    77
	void Close();
sl@0
    78
sl@0
    79
private:
sl@0
    80
	RZipFileMemberReaderStream(CZipFile&, TUint32, TUint32, TUint32, TUint32);
sl@0
    81
	
sl@0
    82
	static RZipFileMemberReaderStream* NewL(CZipFile&, TUint32, TUint32, TUint32, TUint32);
sl@0
    83
	void RZipFileMemberReaderStream::ConstructL();
sl@0
    84
	
sl@0
    85
	virtual TInt Read(void);
sl@0
    86
	virtual TInt Read(TByte*, TUint32, TUint32*);
sl@0
    87
sl@0
    88
	TInt GetBytes(TByte*, TUint32, TUint32*);
sl@0
    89
	TInt GetCompressedBytes(void);
sl@0
    90
	TInt GetStoredBytes(TByte*, TUint32, TUint32*);
sl@0
    91
	
sl@0
    92
	void ReadL(TDes8&);
sl@0
    93
	void ReadL(TDes16&);
sl@0
    94
	void ReadL(TDes8&, TChar);
sl@0
    95
	void ReadL(TDes16&, TChar);
sl@0
    96
	void ReadL(TUint8*, TInt);
sl@0
    97
	void ReadL(TUint16*, TInt);
sl@0
    98
	void ReadL(RWriteStream&);
sl@0
    99
	void ReadL(RWriteStream&, TInt);
sl@0
   100
	void ReadL(TInt);
sl@0
   101
sl@0
   102
	TInt8 ReadInt8L();
sl@0
   103
	TInt16 ReadInt16L();
sl@0
   104
	TInt32 ReadInt32L();
sl@0
   105
	TUint8 ReadUint8L();
sl@0
   106
	TUint16 ReadUint16L();
sl@0
   107
	TUint32 ReadUint32L();
sl@0
   108
sl@0
   109
	TReal32 ReadReal32L() __SOFTFP;
sl@0
   110
	TReal64 ReadReal64L() __SOFTFP;
sl@0
   111
sl@0
   112
	void PushL();
sl@0
   113
	void Pop();
sl@0
   114
	void Attach(MStreamBuf*);
sl@0
   115
	void Detach();
sl@0
   116
	MStreamBuf* Source();
sl@0
   117
sl@0
   118
sl@0
   119
private:
sl@0
   120
sl@0
   121
	enum
sl@0
   122
		{
sl@0
   123
		kCompressedBytesSize = 1024
sl@0
   124
		};
sl@0
   125
		
sl@0
   126
private:
sl@0
   127
	
sl@0
   128
	CZipFile& 	iZipFile;
sl@0
   129
	
sl@0
   130
	/** The method for compressing file*/ 
sl@0
   131
	TUint32   	iCompressionMethod;
sl@0
   132
	
sl@0
   133
	z_stream  	iStream;
sl@0
   134
	
sl@0
   135
	/** The size of compressed file */
sl@0
   136
	TUint32     iCompressedSize;
sl@0
   137
	
sl@0
   138
	/** The size of uncompressed file */
sl@0
   139
	TUint32     iUncompressedSize;
sl@0
   140
	
sl@0
   141
	TUint32     iFileOffset;
sl@0
   142
	TUint32     iOffset;
sl@0
   143
	TBool       iDone;
sl@0
   144
	
sl@0
   145
	/** The number of bytes already read in uncompressed bytes*/
sl@0
   146
	TUint32     iBytesLength;
sl@0
   147
	
sl@0
   148
	/** To store compressed bytes read*/
sl@0
   149
	TByte       iCompressedBytes[kCompressedBytesSize];
sl@0
   150
	
sl@0
   151
	/** Not used in implementation*/
sl@0
   152
	TUint32     iCompressedBytesOffset;
sl@0
   153
	};
sl@0
   154
}//TOLDEZIP
sl@0
   155
#endif /* !_ZIP_FILE_MEMBER_INPUT_STREAM_H_ */
sl@0
   156