sl@0: // Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #if !defined(__S32BUF_H__) sl@0: #define __S32BUF_H__ sl@0: #if !defined(__E32STD_H__) sl@0: #include sl@0: #endif sl@0: sl@0: /** Defines the type of location within a stream on which the calculation sl@0: of a new seek position is based. sl@0: sl@0: The type is used by the stream buffer SeekL() functions. sl@0: sl@0: @see MStreamBuf::SeekL() */ sl@0: enum TStreamLocation sl@0: /** The seek position is calculated relative to the beginning of the sl@0: stream.*/ sl@0: {EStreamBeginning, sl@0: /** The seek position is calculated relative to the end of the stream.*/ sl@0: EStreamMark, sl@0: /** The seek position is calculated relative to the existing read or sl@0: write mark in the stream. */ sl@0: EStreamEnd}; sl@0: sl@0: /** sl@0: * @publishedAll sl@0: * @released sl@0: * Holds the position of the read or write mark within a seekable stream. sl@0: sl@0: Position is the offset from the beginning of a seekable stream. The class sl@0: provides convenient operators for performing arithmetic on the offset value sl@0: and for doing comparisons between stream position objects. sl@0: sl@0: It can be considered as an absolute stream position. sl@0: sl@0: Objects of this type are usually created as a result of calling sl@0: MStreamBuf::SeekL() or MStreamBuf::TellL(); they allow a program to remember sl@0: the current read position in a stream buffer and reset it to the same sl@0: location later. sl@0: sl@0: @see MStreamBuf::SeekL() sl@0: @see MStreamBuf::TellL() sl@0: */ sl@0: class TStreamPos sl@0: { sl@0: public: sl@0: /** Constructs an empty stream position object. */ sl@0: TStreamPos() {} sl@0: inline TStreamPos(TInt anOffset); sl@0: // sl@0: inline TBool operator==(TStreamPos aPos) const; sl@0: inline TBool operator!=(TStreamPos aPos) const; sl@0: inline TBool operator<(TStreamPos aPos) const; sl@0: inline TBool operator<=(TStreamPos aPos) const; sl@0: inline TBool operator>(TStreamPos aPos) const; sl@0: inline TBool operator>=(TStreamPos aPos) const; sl@0: // sl@0: inline TInt operator-(TStreamPos aPos) const; sl@0: inline TStreamPos operator+(TInt anOffset) const; sl@0: inline TStreamPos operator-(TInt anOffset) const; sl@0: // sl@0: inline TStreamPos& operator+=(TInt anOffset); sl@0: inline TStreamPos& operator-=(TInt anOffset); sl@0: // sl@0: inline TInt Offset() const; sl@0: private: sl@0: TInt iOff; sl@0: }; sl@0: inline TStreamPos operator+(TInt anOffset,TStreamPos aPos); sl@0: #if defined(__NO_CLASS_CONSTS__) sl@0: /** Constructs a TStreamPos object that denotes the beginning of any seekable sl@0: stream. sl@0: sl@0: @see TStreamPos */ sl@0: #define KStreamBeginning TStreamPos(0) sl@0: #else sl@0: const TStreamPos KStreamBeginning=TStreamPos(0); sl@0: #endif sl@0: sl@0: /** sl@0: * @publishedAll sl@0: * @released sl@0: * Stream transfer object. sl@0: sl@0: Holds and maintains a value that represents how much data is to be transferred, sl@0: or remains to be transferred, between streams. sl@0: sl@0: Objects of this type are used by ReadL() and WriteL() functions of MStreamBuf. sl@0: sl@0: @see MStreamBuf sl@0: @see TStreamBuf sl@0: @see TStreamMark sl@0: @see TStreamExchange sl@0: @see RShareBuf sl@0: */ sl@0: class TStreamTransfer sl@0: { sl@0: public: sl@0: /** An enumerator type passed to a constructor of this class to indicate sl@0: that there is no explicit limit to the amount of data that can be sl@0: transferred between streams. The enumeration is not used. */ sl@0: enum TUnlimited {EUnlimited}; sl@0: public: sl@0: /** Constructs a stream transfer object specifying that there is no sl@0: explicit limit to the amount of data that can be transferred between sl@0: streams. sl@0: sl@0: The amount of data to be transferred is only limited by the streams sl@0: themselves. sl@0: sl@0: The arithmetical operators do not change the state of an unlimited stream sl@0: transfer object. */ sl@0: TStreamTransfer() {} sl@0: inline TStreamTransfer(TInt aMaxLength); sl@0: inline TStreamTransfer(TUnlimited); sl@0: // sl@0: inline TBool operator==(TInt aLength) const; sl@0: inline TBool operator>(TInt aLength) const; sl@0: inline TStreamTransfer operator-(TInt aLength) const; sl@0: inline TInt operator[](TInt aMaxLength) const; sl@0: // sl@0: inline TStreamTransfer& operator-=(TInt aLength); sl@0: // sl@0: inline TInt Left() const; sl@0: private: sl@0: TInt iVal; sl@0: private: sl@0: IMPORT_C static void __DbgChkNonNegative(TInt aLength); sl@0: }; sl@0: inline TBool operator==(TInt aLength,TStreamTransfer aTransfer); sl@0: inline TBool operator<(TInt aLength,TStreamTransfer aTransfer); sl@0: #if defined(__NO_CLASS_CONSTS__) sl@0: /** Constructs a TStreamTransfer object indicating that no explicit limit is sl@0: imposed on transfers between streams. sl@0: sl@0: @see TStreamTransfer sl@0: @see MStreamBuf::ReadL() sl@0: @see MStreamBuf::WriteL() */ sl@0: #define KStreamUnlimited TStreamTransfer(TStreamTransfer::EUnlimited) sl@0: #else sl@0: const TStreamTransfer KStreamUnlimited=TStreamTransfer::EUnlimited; sl@0: #endif sl@0: // sl@0: class MStreamInput; sl@0: class MStreamOutput; sl@0: sl@0: /** sl@0: * @publishedAll sl@0: * @released sl@0: * A stream buffer that provides a generic I/O interface for streamed data. sl@0: sl@0: A stream buffer: sl@0: sl@0: may be buffered or unbuffered sl@0: sl@0: may provide read-only, write-only or read/write capability sl@0: sl@0: may be seekable, or unseekable. sl@0: sl@0: A seekable stream buffer maintains independent read and write pointers, which sl@0: can be manipulated separately. This is unlike the RFile interface which sl@0: maintains a single current position in the file. For example, file streams sl@0: and memory streams are seekable streams, but socket, serial-comms, and filtered sl@0: streams are not. sl@0: sl@0: Objects of this type are used by the stream interface classes derived from sl@0: RReadStream and RWriteStream. sl@0: sl@0: The class has no member data. sl@0: sl@0: Derive from this class, if the stream has no intermediate buffering sl@0: capabilities, otherwise derive from TStreamBuf. sl@0: sl@0: Get a reference to the stream buffer used by a read stream by calling sl@0: RReadStream::Source(). Get a reference to the stream buffer used by a write sl@0: stream by calling RWriteStream::Sink() sl@0: sl@0: @see RReadStream sl@0: @see RWriteStream sl@0: @see TStreamBuf sl@0: */ sl@0: class MStreamBuf sl@0: { sl@0: public: sl@0: /** Indicates that an operation applies to the read mark in a stream or to sl@0: the read area in an stream buffer. */ sl@0: enum TRead {ERead=0x01}; sl@0: sl@0: /** Indicates that an operation applies to the write mark in a stream or sl@0: to the write area in an stream buffer. */ sl@0: enum TWrite {EWrite=0x02}; sl@0: sl@0: /** Used to identify the type of mark in a stream. sl@0: sl@0: The type is used by functions of this class and derived classes that perform sl@0: seek operations to marks within a stream. sl@0: sl@0: The type uses the ERead and EWrite enumeration values, as bit flags, to sl@0: identify the read and write marks respectively. sl@0: sl@0: ERead is an MStreamBuf::TRead enumerator. EWrite is an MStreamBuf::EWrite sl@0: enumerator. sl@0: sl@0: @see MStreamBuf::TRead sl@0: @see MStreamBuf::TWrite */ sl@0: typedef TInt TMark; sl@0: public: sl@0: IMPORT_C void Close(); sl@0: inline void Release(); sl@0: IMPORT_C TInt Synch(); sl@0: inline void SynchL(); sl@0: // sl@0: IMPORT_C void PushL(); sl@0: // sl@0: inline TInt ReadL(TAny* aPtr,TInt aMaxLength); sl@0: IMPORT_C TInt Read(TDes8& aDes,TRequestStatus& aStatus); sl@0: IMPORT_C TInt Read(TDes8& aDes,TInt aMaxLength,TRequestStatus& aStatus); sl@0: IMPORT_C TInt ReadL(TDes8& aDes,TRequestStatus& aStatus); sl@0: inline TInt ReadL(TDes8& aDes,TInt aMaxLength,TRequestStatus& aStatus); sl@0: inline TStreamTransfer ReadL(MStreamInput& anInput,TStreamTransfer aTransfer); sl@0: IMPORT_C TInt ReadL(MStreamInput& anInput,TInt aMaxLength); sl@0: inline void ReadL(MStreamInput& anInput); sl@0: // sl@0: inline void WriteL(const TAny* aPtr,TInt aLength); sl@0: IMPORT_C TInt Write(const TDesC8& aDes,TRequestStatus& aStatus); sl@0: IMPORT_C TInt Write(const TDesC8& aDes,TInt aMaxLength,TRequestStatus& aStatus); sl@0: IMPORT_C TInt WriteL(const TDesC8& aDes,TRequestStatus& aStatus); sl@0: inline TInt WriteL(const TDesC8& aDes,TInt aMaxLength,TRequestStatus& aStatus); sl@0: inline TStreamTransfer WriteL(MStreamOutput& anOutput,TStreamTransfer aTransfer); sl@0: IMPORT_C TInt WriteL(MStreamOutput& anOutput,TInt aMaxLength); sl@0: inline void WriteL(MStreamOutput& anOutput); sl@0: // sl@0: inline void SeekL(TMark aMark,TStreamPos aPos); sl@0: inline TStreamPos SeekL(TMark aMark,TStreamLocation aLocation,TInt anOffset=0); sl@0: inline TStreamPos SeekL(TRead,TStreamLocation aLocation,TInt anOffset=0); sl@0: inline TStreamPos SeekL(TWrite,TStreamLocation aLocation,TInt anOffset=0); sl@0: inline TStreamPos SeekL(TRead,TInt anOffset); sl@0: inline TStreamPos SeekL(TWrite,TInt anOffset); sl@0: // sl@0: inline TStreamPos TellL(TRead) const; sl@0: inline TStreamPos TellL(TWrite) const; sl@0: inline TInt SizeL() const; sl@0: protected: sl@0: MStreamBuf() {} sl@0: private: sl@0: MStreamBuf(const MStreamBuf&); sl@0: MStreamBuf& operator=(const MStreamBuf&); sl@0: // sl@0: virtual IMPORT_C void DoRelease(); sl@0: virtual IMPORT_C void DoSynchL(); sl@0: virtual IMPORT_C TInt DoReadL(TAny* aPtr,TInt aMaxLength); sl@0: virtual IMPORT_C TInt DoReadL(TDes8& aDes,TInt aMaxLength,TRequestStatus& aStatus); sl@0: virtual IMPORT_C TStreamTransfer DoReadL(MStreamInput& anInput,TStreamTransfer aTransfer); sl@0: virtual IMPORT_C void DoWriteL(const TAny* aPtr,TInt aLength); sl@0: virtual IMPORT_C TInt DoWriteL(const TDesC8& aDes,TInt aMaxLength,TRequestStatus& aStatus); sl@0: virtual IMPORT_C TStreamTransfer DoWriteL(MStreamOutput& anOutput,TStreamTransfer aTransfer); sl@0: virtual IMPORT_C TStreamPos DoSeekL(TMark aMark,TStreamLocation aLocation,TInt anOffset); sl@0: }; sl@0: sl@0: /** sl@0: * @publishedAll sl@0: * @released sl@0: * An interface to an object that acts as a target for read operations from sl@0: a stream. The object behaves as a generic data sink. sl@0: sl@0: A stream input object can act as an intelligent buffer, and is useful for sl@0: performing filtering, compression or any other general kind of conversion sl@0: operation that might be needed after reading from a stream. sl@0: sl@0: The class is pure interface and requires an implementation. sl@0: sl@0: @see MStreamBuf::ReadL() sl@0: */ sl@0: class MStreamInput sl@0: { sl@0: public: sl@0: /** Reads data from an intermediate buffer into this stream input object. sl@0: sl@0: This function is called by the default implementation of sl@0: TStreamBuf::DoReadL(MStreamInput&,TStreamTransfer) sl@0: and assumes that the source is a stream buffer's intermediate buffer. sl@0: sl@0: @param aPtr A pointer into the intermediate buffer from which the read sl@0: operation starts. sl@0: @param aMaxLength The maximum amount of data to be read. sl@0: @return The amount of data read. sl@0: @see TStreamBuf::DoReadL() sl@0: @see TStreamBuf */ sl@0: virtual TInt PushL(const TAny* aPtr,TInt aMaxLength)=0; sl@0: sl@0: /** Reads data from the specified stream into this stream input object. sl@0: sl@0: This function is called by the default implementation of sl@0: MStreamBuf::DoReadL(MStreamInput&,TStreamTransfer). sl@0: It may also be called by TStreamBuf::DoReadL(MStreamInput&,TStreamTransfer), sl@0: depending on the amount of data to be transferred and the nature of the sl@0: buffering scheme. sl@0: sl@0: @param aSource The stream from which data is to be read. sl@0: @param aTransfer Defines the amount of data available to be read. sl@0: @return The amount of data that was not consumed. sl@0: @see MStreamBuf::DoReadL() sl@0: @see TStreamBuf::DoReadL() */ sl@0: virtual TStreamTransfer ReadFromL(MStreamBuf& aSource,TStreamTransfer aTransfer)=0; sl@0: }; sl@0: sl@0: /** sl@0: * @publishedAll sl@0: * @released sl@0: * An interface to an object that acts as source for write operations to a sl@0: stream. The object behaves as a generic data source. sl@0: sl@0: A stream output object can act as an intelligent buffer, and is useful for sl@0: performing filtering, compression or any other general kind of conversion sl@0: operation that might be needed before writing to a stream. sl@0: sl@0: The class is pure interface and requires an implementation. sl@0: sl@0: @see MStreamBuf::WriteL() sl@0: */ sl@0: class MStreamOutput sl@0: { sl@0: public: sl@0: /** Writes data to an intermediate buffer from this stream output object. sl@0: sl@0: This function is called by the default implementation of sl@0: TStreamBuf::DoWriteL(MStreamOutput&,TStreamTransfer) sl@0: and assumes that the target is a stream buffer's intermediate buffer. sl@0: sl@0: @param aPtr A pointer into the intermediate buffer where the write operation sl@0: starts. sl@0: @param aMaxLength The maximum amount of data to be written. sl@0: @return The amount of data written. sl@0: @see TStreamBuf::DoWriteL() sl@0: @see TStreamBuf */ sl@0: virtual TInt PullL(TAny* aPtr,TInt aMaxLength)=0; sl@0: sl@0: /** Writes data to the specified stream from this stream output object. sl@0: sl@0: This function is called by the default implementation of sl@0: MStreamBuf::DoWriteL(MStreamOutput&,TStreamTransfer). sl@0: It may also be called by TStreamBuf::DoWriteL(MStreamOutput&,TStreamTransfer), sl@0: depending on the amount of data to be transferred and the nature of the sl@0: buffering scheme. sl@0: sl@0: @param aSink The stream to which data is to be written. sl@0: @param aTransfer Defines the amount of data available to be written. sl@0: @return The amount of data that was not consumed. sl@0: @see MStreamBuf::DoWriteL() sl@0: @see TStreamBuf::DoWriteL() */ sl@0: virtual TStreamTransfer WriteToL(MStreamBuf& aSink,TStreamTransfer aTransfer)=0; sl@0: }; sl@0: sl@0: /** sl@0: * @publishedAll sl@0: * @released sl@0: * Adds buffering capabilities to a stream buffer sl@0: sl@0: The class provides pointers to mark out the current read and write areas within sl@0: the intermediate buffer. The class also defines the pure virtual functions sl@0: UnderflowL() and OverflowL() which must be provided by a derived class. sl@0: sl@0: Streams which have buffering capabilities derive from this class, otherwise sl@0: they derive from MStreamBuf. sl@0: sl@0: Note that the class does not provide the buffer; this is left to the class sl@0: derived from it. For example, the memory buffer classes use the memory area sl@0: directly, the file buffer class allocate a heap cell to use as a buffer. sl@0: sl@0: @see UnderflowL() sl@0: @see OverflowL() sl@0: */ sl@0: class TStreamBuf : public MStreamBuf sl@0: { sl@0: protected: sl@0: /** Used to identify the type of area within an intermediate buffer. sl@0: sl@0: The type is used by functions of this class that set or get pointers into sl@0: the intermediate buffer. sl@0: sl@0: The type uses the ERead and EWrite enumeration values, as bit flags, to sl@0: identify the read and write areas respectively. sl@0: sl@0: ERead is an MStreamBuf::TRead enumerator. EWrite is an MStreamBuf::EWrite sl@0: enumerator. sl@0: sl@0: @see MStreamBuf::TRead sl@0: @see MStreamBuf::TWrite */ sl@0: typedef TInt TArea; sl@0: protected: sl@0: IMPORT_C TStreamBuf(); sl@0: // sl@0: IMPORT_C void SetBuf(TArea anArea,TUint8* aPtr,TUint8* anEnd); sl@0: IMPORT_C void SetPtr(TArea anArea,TUint8* aPtr); sl@0: IMPORT_C void SetEnd(TArea anArea,TUint8* anEnd); sl@0: IMPORT_C TUint8* Ptr(TArea anArea) const; sl@0: IMPORT_C TUint8* End(TArea anArea) const; sl@0: IMPORT_C TInt Avail(TArea anArea) const; sl@0: // sl@0: IMPORT_C TInt DoReadL(TAny* aPtr,TInt aMaxLength); sl@0: IMPORT_C TStreamTransfer DoReadL(MStreamInput& anInput,TStreamTransfer aTransfer); sl@0: IMPORT_C void DoWriteL(const TAny* aPtr,TInt aLength); sl@0: IMPORT_C TStreamTransfer DoWriteL(MStreamOutput& anOutput,TStreamTransfer aTransfer); sl@0: // sl@0: inline void SetBuf(TRead,TUint8* aPtr,TUint8* anEnd); sl@0: inline void SetBuf(TWrite,TUint8* aPtr,TUint8* anEnd); sl@0: inline void SetPtr(TRead,TUint8* aPtr); sl@0: inline void SetPtr(TWrite,TUint8* aPtr); sl@0: inline void SetEnd(TRead,TUint8* anEnd); sl@0: inline void SetEnd(TWrite,TUint8* anEnd); sl@0: inline TUint8* Ptr(TRead) const; sl@0: inline TUint8* Ptr(TWrite) const; sl@0: inline TUint8* End(TRead) const; sl@0: inline TUint8* End(TWrite) const; sl@0: inline TInt Avail(TRead) const; sl@0: inline TInt Avail(TWrite) const; sl@0: private: sl@0: /** Re-fills the intermediate buffer and resets the start and end points sl@0: of the read area. sl@0: sl@0: The implementation of this function depends on the way the stream itself is sl@0: implemented. For example, the in-memory streams have simple implementations. sl@0: sl@0: @param aMaxLength The maximum amount of data required for the intermediate sl@0: buffer. sl@0: @return The amount of data available in the intermediate buffer. */ sl@0: virtual TInt UnderflowL(TInt aMaxLength)=0; sl@0: sl@0: /** Empties the intermediate buffer and resets the start and end points sl@0: of the write area. sl@0: sl@0: The implementation of this function depends on the way the stream itself is sl@0: implemented. For example, the in-memory streams have simple implementations. */ sl@0: virtual void OverflowL()=0; sl@0: private: sl@0: TUint8* iRPtr; sl@0: TUint8* iREnd; sl@0: TUint8* iWPtr; sl@0: TUint8* iWEnd; sl@0: }; sl@0: sl@0: /** sl@0: * @publishedAll sl@0: * @released sl@0: * Interface to a stream filter. sl@0: sl@0: A stream filter is an object that allows stream data to be filtered after sl@0: retrieval from a host or filtered before being written to a host. sl@0: sl@0: The class is abstract and a derived class must be defined an implemented. sl@0: */ sl@0: class TStreamFilter : public MStreamBuf sl@0: { sl@0: public: sl@0: enum {EAttached=0x10}; sl@0: protected: sl@0: IMPORT_C TStreamFilter(); sl@0: inline void Set(MStreamBuf* aHost,TInt aMode); sl@0: inline void Committed(); sl@0: inline TBool IsCommitted() const; sl@0: IMPORT_C void EmitL(const TAny* aPtr,TInt aLength); sl@0: // sl@0: IMPORT_C void DoRelease(); sl@0: IMPORT_C void DoSynchL(); sl@0: IMPORT_C TInt DoReadL(TAny* aPtr,TInt aMaxLength); sl@0: IMPORT_C void DoWriteL(const TAny* aPtr,TInt aLength); sl@0: private: sl@0: /** Calculates the maximum size of unfiltered data necessary to give the sl@0: specified amount of filtered data. sl@0: sl@0: @param aMaxLength The amount of filtered data required. sl@0: @return The maximum amount of unfiltered data guaranteed not to generate sl@0: more than aMaxLength bytes of filtered output. */ sl@0: virtual TInt Capacity(TInt aMaxLength)=0; sl@0: sl@0: /** Performs the filtration process. sl@0: sl@0: @param aPtr Pointer to the output location for the filtered data. sl@0: @param aMaxLength The maximum amount of space available for the filtered sl@0: data. sl@0: @param aFrom A reference to a pointer to the unfiltered data source. This sl@0: pointer should be advanced as the source is consumed. sl@0: @param anEnd Pointer to the first byte beyond the end of the unfiltered sl@0: data source. sl@0: @return The size of the filtered data. */ sl@0: virtual TInt FilterL(TAny* aPtr,TInt aMaxLength,const TUint8*& aFrom,const TUint8* anEnd)=0; sl@0: private: sl@0: MStreamBuf* iHost; sl@0: TInt iMode; sl@0: private: sl@0: friend class TFilterInput; sl@0: friend class TFilterOutput; sl@0: private: sl@0: IMPORT_C static void __DbgChkMode(TInt aMode); sl@0: }; sl@0: sl@0: #include sl@0: #endif