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: #include "UM_STD.H"
sl@0:
sl@0: EXPORT_C TMemBuf::TMemBuf()
sl@0: : iBase(NULL)
sl@0: /** Constructs an empty object.
sl@0:
sl@0: Call Set() before using the object. */
sl@0: {}
sl@0:
sl@0: EXPORT_C void TMemBuf::Set(TUint8* aPtr,TUint8* anEnd,TInt aMode)
sl@0: /** Sets up the stream to use the specified area of plain memory.
sl@0:
sl@0: @param aPtr The start address for the area of plain memory that hosts the
sl@0: stream and that also acts as the intermediate buffer.
sl@0: @param anEnd The end address for the area of plain memory that hosts the stream
sl@0: and that also acts as the intermediate buffer. The addressed byte is outside
sl@0: the memory area.
sl@0: @param aMode The mode in which the stream is to be used. It can be used in
sl@0: either or both read and write modes, represented by ERead and EWrite.
sl@0: @see MStreamBuf::TRead
sl@0: @see MStreamBuf::TWrite */
sl@0: {
sl@0: if (aPtr==NULL && anEnd==NULL)
sl@0: aPtr=anEnd=(TUint8*)this; // treat null data as seekable zero-length data
sl@0: iBase=aPtr;
sl@0: SetBuf(ERead,(aMode&ERead)?aPtr:NULL,anEnd);
sl@0: SetBuf(EWrite,(aMode&EWrite)?aPtr:NULL,anEnd);
sl@0: }
sl@0:
sl@0: EXPORT_C TInt TMemBuf::UnderflowL(TInt)
sl@0: //
sl@0: // The read buffer is empty.
sl@0: //
sl@0: {
sl@0: return 0;
sl@0: }
sl@0:
sl@0: EXPORT_C void TMemBuf::OverflowL()
sl@0: //
sl@0: // Ran out of write buffer.
sl@0: //
sl@0: {
sl@0: __LEAVE(KErrOverflow);
sl@0: }
sl@0:
sl@0: EXPORT_C TStreamPos TMemBuf::DoSeekL(TMark aMark,TStreamLocation aLocation,TInt anOffset)
sl@0: //
sl@0: // Position the mark(s) indicated by aMark at anOffset from aLocation.
sl@0: //
sl@0: {
sl@0: TUint8* ptr=0;
sl@0: switch (aLocation)
sl@0: {
sl@0: case EStreamBeginning:
sl@0: ptr=Base()+anOffset;
sl@0: break;
sl@0: case EStreamMark:
sl@0: ptr=Ptr(aMark)+anOffset;
sl@0: break;
sl@0: case EStreamEnd:
sl@0: ptr=End()+anOffset;
sl@0: break;
sl@0: default:
sl@0: Panic(EMemLocationInvalid);
sl@0: break;
sl@0: }
sl@0: TInt r=KErrNone;
sl@0: if (ptr>End())
sl@0: {
sl@0: ptr=End();
sl@0: r=KErrEof;
sl@0: }
sl@0: else if (ptrEnd(ERead))
sl@0: {
sl@0: ptr=End(ERead);
sl@0: r=KErrEof;
sl@0: }
sl@0: else if (ptr=0,User::Invariant());
sl@0: if (left=0,Panic(EMemWriteLengthNegative));
sl@0: __ASSERT_DEBUG(aLength>0,Panic(EMemWriteNoTransfer));
sl@0: TInt len=(iMode&EInsert?0:Min(aLength,Buf().Size()-Mark(EWrite)));
sl@0: if (len>0)
sl@0: {
sl@0: TStreamBuf::DoWriteL(aPtr,len);
sl@0: aPtr=(TUint8*)aPtr+len;
sl@0: aLength-=len;
sl@0: }
sl@0: if (aLength>0)
sl@0: {
sl@0: Consolidate();
sl@0: TInt pos=Pos(EWrite);
sl@0: Buf().InsertL(pos,aPtr,aLength);
sl@0: if (Pos(ERead)>pos)
sl@0: MovePos(ERead,aLength);
sl@0: SetPos(EWrite,pos+aLength);
sl@0: }
sl@0: }
sl@0:
sl@0: EXPORT_C TStreamPos TBufBuf::DoSeekL(TMark aMark,TStreamLocation aLocation,TInt anOffset)
sl@0: //
sl@0: // Position the mark(s) indicated by aMark at anOffset from aLocation.
sl@0: //
sl@0: {
sl@0: Consolidate();
sl@0: TInt size=Buf().Size();
sl@0: switch (aLocation)
sl@0: {
sl@0: case EStreamBeginning:
sl@0: break;
sl@0: case EStreamMark:
sl@0: anOffset+=Pos(aMark);
sl@0: break;
sl@0: case EStreamEnd:
sl@0: anOffset+=size;
sl@0: break;
sl@0: default:
sl@0: Panic(EMemLocationInvalid);
sl@0: break;
sl@0: }
sl@0: TInt r=KErrNone;
sl@0: if (anOffset>size)
sl@0: {
sl@0: anOffset=size;
sl@0: r=KErrEof;
sl@0: }
sl@0: else if (anOffset<0)
sl@0: {
sl@0: anOffset=0;
sl@0: r=KErrEof;
sl@0: }
sl@0: //
sl@0: SetPos(aMark,anOffset);
sl@0: __LEAVE_IF_ERROR(r);
sl@0: return TStreamPos(anOffset);
sl@0: }
sl@0:
sl@0: void TBufBuf::Consolidate()
sl@0: //
sl@0: // Empty buffer areas and, in truncate mode, cut off at the current write position.
sl@0: //
sl@0: {
sl@0: MovePos(ERead,-Avail(ERead));
sl@0: MovePos(EWrite,-Avail(EWrite));
sl@0: SetBuf(ERead|EWrite,NULL,NULL);
sl@0: if (iMode&ETruncate)
sl@0: {
sl@0: Buf().Delete(Pos(EWrite),Buf().Size()-Pos(EWrite));
sl@0: iMode&=~ETruncate;
sl@0: }
sl@0: }
sl@0:
sl@0: void TBufBuf::SetPos(TMark aMark,TInt aPos)
sl@0: //
sl@0: // Set the buffer position for the mark(s) indicated by aMark
sl@0: //
sl@0: {
sl@0: __ASSERT_ALWAYS(!(aMark&~(ERead|EWrite)),Panic(EMemMarkInvalid));
sl@0: if (aMark&ERead)
sl@0: SetPos(ERead,aPos);
sl@0: if (aMark&EWrite)
sl@0: SetPos(EWrite,aPos);
sl@0: }
sl@0:
sl@0: TInt TBufBuf::Pos(TMark aMark) const
sl@0: //
sl@0: // Return the buffer position for the mark indicated by aMark.
sl@0: //
sl@0: {
sl@0: if (aMark==ERead)
sl@0: return Pos(ERead);
sl@0: //
sl@0: __ASSERT_ALWAYS(aMark==EWrite,Panic(EMemMarkInvalid));
sl@0: return Pos(EWrite);
sl@0: }
sl@0: