Update contrib.
1 // Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
18 EXPORT_C TMemBuf::TMemBuf()
20 /** Constructs an empty object.
22 Call Set() before using the object. */
25 EXPORT_C void TMemBuf::Set(TUint8* aPtr,TUint8* anEnd,TInt aMode)
26 /** Sets up the stream to use the specified area of plain memory.
28 @param aPtr The start address for the area of plain memory that hosts the
29 stream and that also acts as the intermediate buffer.
30 @param anEnd The end address for the area of plain memory that hosts the stream
31 and that also acts as the intermediate buffer. The addressed byte is outside
33 @param aMode The mode in which the stream is to be used. It can be used in
34 either or both read and write modes, represented by ERead and EWrite.
35 @see MStreamBuf::TRead
36 @see MStreamBuf::TWrite */
38 if (aPtr==NULL && anEnd==NULL)
39 aPtr=anEnd=(TUint8*)this; // treat null data as seekable zero-length data
41 SetBuf(ERead,(aMode&ERead)?aPtr:NULL,anEnd);
42 SetBuf(EWrite,(aMode&EWrite)?aPtr:NULL,anEnd);
45 EXPORT_C TInt TMemBuf::UnderflowL(TInt)
47 // The read buffer is empty.
53 EXPORT_C void TMemBuf::OverflowL()
55 // Ran out of write buffer.
58 __LEAVE(KErrOverflow);
61 EXPORT_C TStreamPos TMemBuf::DoSeekL(TMark aMark,TStreamLocation aLocation,TInt anOffset)
63 // Position the mark(s) indicated by aMark at anOffset from aLocation.
69 case EStreamBeginning:
73 ptr=Ptr(aMark)+anOffset;
79 Panic(EMemLocationInvalid);
96 return TStreamPos(ptr-Base());
99 EXPORT_C TDesBuf::TDesBuf()
101 /** Constructs an empty object.
103 Call Set() before using the object. */
106 EXPORT_C void TDesBuf::Set(TDes8& aDes,TInt aMode)
107 /** Sets up the stream to use the specified descriptor.
109 @param aDes The descriptor that hosts the stream and that also acts as the
111 @param aMode The mode in which the buffer is to be used. It can be used in
112 either or both read and write modes, represented by ERead and EWrite.
114 @see MStreamBuf::TRead
115 @see MStreamBuf::TWrite */
118 TUint8* ptr=(TUint8*)aDes.Ptr();
119 SetBuf(ERead,(aMode&ERead)?ptr:NULL,ptr+aDes.Length());
120 SetBuf(EWrite,(aMode&EWrite)?ptr:NULL,ptr+aDes.MaxLength());
123 EXPORT_C TInt TDesBuf::UnderflowL(TInt)
125 // Check if there's any more to be read.
132 EXPORT_C void TDesBuf::OverflowL()
134 // Ran out of write buffer.
137 __LEAVE(KErrOverflow);
140 EXPORT_C void TDesBuf::DoSynchL()
142 // Synchronise descriptor and stream buffer.
148 EXPORT_C TStreamPos TDesBuf::DoSeekL(TMark aMark,TStreamLocation aLocation,TInt anOffset)
150 // Position the mark(s) indicated by aMark at anOffset from aLocation.
157 case EStreamBeginning:
161 ptr=Ptr(aMark)+anOffset;
164 ptr=End(ERead)+anOffset;
167 Panic(EMemLocationInvalid);
184 return TStreamPos(ptr-Base());
187 void TDesBuf::Consolidate()
189 // Update the descriptor's length as well as the read limit.
192 TUint8* ptr=Ptr(EWrite);
194 return; // ERead only desbuf
196 TInt len=Max(Des().Length(),ptr-base);
197 Des().SetLength(len);
198 SetEnd(ERead,base+len);
201 EXPORT_C TBufBuf::TBufBuf()
203 /** Constructs an empty object.
205 Call Set() before using the object. */
208 EXPORT_C void TBufBuf::Set(CBufBase& aBuf,TInt aPos,TInt aMode)
209 /** Sets up the stream to use the specified dynamic buffer.
211 @param aBuf The dynamic buffer that hosts the stream and that also acts as
212 the intermediate buffer.
213 @param aPos The offset within the dynamic buffer where the stream starts.
214 @param aMode The mode in which the stream is to be used. It can be used in
215 either or both read and write modes, represented by ERead and EWrite. In addition,
216 specify TBufBuf::EInsert to imply insert mode; specify TBufBuf::ETruncate
217 to imply truncate mode. If neither TBufBuf::EInsert nor TBufBuf::ETruncate
218 are specified, then overwrite mode is implied. Both TBufBuf::EInsert and TBufBuf::ETruncate
221 @see MStreamBuf::TRead
222 @see MStreamBuf::TWrite */
225 SetPos(ERead|EWrite,aPos);
226 if (aMode&(ETruncate|EInsert))
227 aMode|=EWrite; // truncate and insert imply write
229 //Initialize base class data members.
230 //The first Read/Write call will reinitialize them with non NULL values.
231 TStreamBuf::SetBuf(iMode & (EWrite | ERead), NULL, NULL);
234 EXPORT_C TInt TBufBuf::UnderflowL(TInt)
236 // Establish the buffer's read area.
239 __ASSERT_ALWAYS(iMode&ERead,Panic(EMemCannotRead));
240 __ASSERT_DEBUG(Ptr(ERead)==End(ERead),User::Invariant());
242 TPtr8 seg=Buf().Ptr(pos);
243 TUint8* ptr=(TUint8*)seg.Ptr();
244 TInt len=seg.Length();
247 TInt left=Pos(EWrite)-pos;
248 __ASSERT_DEBUG(left>=0,User::Invariant());
252 SetBuf(ERead,ptr,ptr+len);
253 SetPos(ERead,pos+len);
257 EXPORT_C void TBufBuf::OverflowL()
259 // Establish the buffer's write area.
262 __ASSERT_ALWAYS(iMode&EWrite,Panic(EMemCannotWrite));
263 __ASSERT_DEBUG(Ptr(EWrite)==End(EWrite)&&Pos(EWrite)<Buf().Size(),User::Invariant());
264 TInt pos=Pos(EWrite);
265 TPtr8 seg=Buf().Ptr(pos);
266 TUint8* ptr=(TUint8*)seg.Ptr();
267 TInt len=seg.Length();
268 SetBuf(EWrite,ptr,ptr+len);
269 SetPos(EWrite,pos+len);
272 EXPORT_C void TBufBuf::DoSynchL()
274 // Synchronise buffer and stream buffer and compress.
281 EXPORT_C void TBufBuf::DoWriteL(const TAny* aPtr,TInt aLength)
283 // Consume aLength bytes, taking care of any reallocation.
286 __ASSERT_ALWAYS(iMode&EWrite,Panic(EMemCannotWrite));
287 __ASSERT_DEBUG(aLength>=0,Panic(EMemWriteLengthNegative));
288 __ASSERT_DEBUG(aLength>0,Panic(EMemWriteNoTransfer));
289 TInt len=(iMode&EInsert?0:Min(aLength,Buf().Size()-Mark(EWrite)));
292 TStreamBuf::DoWriteL(aPtr,len);
293 aPtr=(TUint8*)aPtr+len;
299 TInt pos=Pos(EWrite);
300 Buf().InsertL(pos,aPtr,aLength);
302 MovePos(ERead,aLength);
303 SetPos(EWrite,pos+aLength);
307 EXPORT_C TStreamPos TBufBuf::DoSeekL(TMark aMark,TStreamLocation aLocation,TInt anOffset)
309 // Position the mark(s) indicated by aMark at anOffset from aLocation.
313 TInt size=Buf().Size();
316 case EStreamBeginning:
319 anOffset+=Pos(aMark);
325 Panic(EMemLocationInvalid);
340 SetPos(aMark,anOffset);
342 return TStreamPos(anOffset);
345 void TBufBuf::Consolidate()
347 // Empty buffer areas and, in truncate mode, cut off at the current write position.
350 MovePos(ERead,-Avail(ERead));
351 MovePos(EWrite,-Avail(EWrite));
352 SetBuf(ERead|EWrite,NULL,NULL);
355 Buf().Delete(Pos(EWrite),Buf().Size()-Pos(EWrite));
360 void TBufBuf::SetPos(TMark aMark,TInt aPos)
362 // Set the buffer position for the mark(s) indicated by aMark
365 __ASSERT_ALWAYS(!(aMark&~(ERead|EWrite)),Panic(EMemMarkInvalid));
372 TInt TBufBuf::Pos(TMark aMark) const
374 // Return the buffer position for the mark indicated by aMark.
380 __ASSERT_ALWAYS(aMark==EWrite,Panic(EMemMarkInvalid));