Symbian
Symbian Developer Library

SYMBIAN OS V9.4

Feedback

[Index] [Previous] [Next]

#include <zipfilememberinputstream.h>
Link against: ezip.lib

Class RZipFileMemberReaderStream

class RZipFileMemberReaderStream : public CBase;

Description

A RZipFileMemberReaderStream represents a input stream for compressed files in the archive. This is a friend class to CZipFile. In order to create a input stream for a file in the archive, CZipFile will call its member function GetInputStreamL() by passing a pointer to RZipFileMemberReaderStream and the function will return the input stream for the file Note: This class is actually a C class as it derives from CBase

Derivation

Members

Defined in RZipFileMemberReaderStream:

Inherited from CBase:

Related Topics


Construction and destruction


~RZipFileMemberReaderStream()

IMPORT_C ~RZipFileMemberReaderStream();

Description

Destructor. All dynamically allocated data structures for this stream are freed.

[Top]


Member functions


Read(TDes16 &,TInt)

IMPORT_C TInt Read(TDes16 &aDes, TInt aLength);

Description

Reads data from the stream buffer into the specified descriptor. On return, contains the data read from the stream buffer

Parameters

TDes16 &aDes

The target descriptor for the data read from the stream buffer

TInt aLength

The maximum number of bytes to be read

Return value

TInt

KErrNone If all bytes read successfully. KErrCorrupt If reading fails. KErrEof If end of file is reached. ... Any one of the system-wide error codes for other errors.


Read(TDes8 &,TInt)

virtual TInt Read(TDes8 &aDes, TInt aLength);

Description

Overload version of the RZipFileMemberReaderStream read method. On return, contains the data read from the stream buffer.

Parameters

TDes8 &aDes

The target descriptor for the data read from the stream buffer

TInt aLength

The maximum number of bytes to be read

Return value

TInt

KErrNone If all bytes read successfully. KErrCorrupt If reading fails. KErrEof If end of file is reached. ... Any one of the system-wide error codes for other errors.


ReadL(TDes16 &,TInt)

virtual void ReadL(TDes16 &aDes, TInt aLength);

Description

Overload version of the RZipFileMemberReaderStream readL method. On return, contains the data read from the stream buffer.

Parameters

TDes16 &aDes

The target descriptor for the data read from the stream buffer

TInt aLength

The maximum number of bytes to be read

Leave codes

KErrNone

If all bytes read successfully.

KErrCorrupt

If reading fails.

KErrEof

If end of file is reached.

...

Any one of the system-wide error codes for other errors.


Read(void)

private: virtual TInt Read(void);

Description

Return value

TInt


Read(TByte *,TUint32,TUint32 *)

private: virtual TInt Read(TByte *, TUint32, TUint32 *);

Description

Parameters

TByte *

TUint32

TUint32 *

Return value

TInt