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 void RReadStream::Release()
19 /** Frees resources before abandoning the stream.
21 Note that, if a cleanup item for the stream was placed on the cleanup stack
22 when the stream was opened by a call to OpenLC(), then this function need
23 not be called explicitly; clean up is implicitly done by CleanupStack::PopAndDestroy(). */
32 EXPORT_C void RReadStream::PushL()
33 /** Puts a cleanup item for this read stream object onto the cleanup stack. This
34 allows allocated resources to be cleaned up if a subsequent leave occurs. */
36 CleanupReleasePushL(*this);
39 EXPORT_C void RReadStream::ReadL(TDes8& aDes)
40 /** Reads sufficient data from this stream to fill the specified 8 bit descriptor up to its maximum length.
41 No other information is read from this read stream.
43 @param aDes A reference to a modifiable descriptor which is to receive the data read from this stream. Passing the build
44 independent type TDes& allows the compiler to choose the appropriate ReadL() variant (i.e the 8 bit or the 16 bit) at build time.*/
46 ReadL(aDes,aDes.MaxLength());
49 EXPORT_C void RReadStream::ReadL(TDes8& aDes,TInt aLength)
50 /** Reads data of specified length from this stream into the specified 8 bit descriptor. No other information is read
53 @param aDes A reference to a modifiable type descriptor which is to receive the data read from this stream.
54 Passing the build independent type TDes& allows the compiler to choose the appropriate ReadL() variant (i.e the 8 bit
55 or the 16 bit) at build time.
56 @param aLength The length of data to be read from this stream. This value must be non-negative and must not be greater than the maximum length of the descriptor otherwise the function raises a USER 11 panic.*/
58 __ASSERT_DEBUG(aLength<=aDes.MaxLength(),Panic(EStreamReadBeyondEnd));
59 aDes.SetLength(aLength);
60 ReadL((TUint8*)aDes.Ptr(),aLength);
63 EXPORT_C void RReadStream::ReadL(TDes8& aDes,TChar aDelim)
64 /** Reads data from this stream into the 8 bit descriptor, until either the specified delimiter is encountered or the descriptor is filled to its maximum length.
65 The resulting data in aDes always includes the delimiter aDelim, if aDes is large enough.
67 @param aDes A reference to a modifiable type descriptor which is to receive the data read from this stream. Passing
68 the build independent type TDes& allows the compiler to choose the appropriate ReadL() variant (i.e the 8 bit or the 16 bit) at build time.
69 @param aDelim The delimiter marking the end of the data in the stream.*/
72 __ASSERT_DEBUG(iSrc!=NULL,Panic(EStreamNotOpen));
73 TUint8* ptr=(TUint8*)aDes.Ptr();
74 TDelimitedInput8 input(ptr,aDes.MaxLength(),aDelim);
78 } while (!input.Done());
79 aDes.SetLength(input.Ptr()-ptr);
82 EXPORT_C void RReadStream::ReadL(TUint8* aPtr,TInt aLength)
83 /** Reads data of specified length from this stream into the location defined by the specified TUint8 pointer.
85 @param aPtr The target location for the streamed in data.
86 @param aLength The length of data to be streamed in.*/
88 __ASSERT_DEBUG(aLength>=0,Panic(EStreamReadLengthNegative));
92 __ASSERT_DEBUG(iSrc!=NULL,Panic(EStreamNotOpen));
93 TInt len=iSrc->ReadL(aPtr,aLength);
94 __ASSERT_DEBUG(len>=0&&len<=aLength,Panic(EStreamReadInBreach));
99 EXPORT_C void RReadStream::ReadL(TInt aLength)
100 /** Discards data of specified length read from this stream.
102 @param aLength The length of data to be discarded from this read stream.*/
104 __ASSERT_DEBUG(aLength>=0,Panic(EStreamReadLengthNegative));
108 __ASSERT_DEBUG(iSrc!=NULL,Panic(EStreamNotOpen));
110 TInt len=iSrc->ReadL(input,aLength);
111 __ASSERT_DEBUG(len>=0&&len<=aLength,Panic(EStreamReadInBreach));
116 EXPORT_C void RReadStream::ReadL(TDes16& aDes)
117 /** Reads sufficient data from this stream to fill the specified 16 bit descriptor up to its maximum length.
118 No other information is read from this read stream.
120 @param aDes A reference to a modifiable type descriptor which is to receive the data read from this stream. Passing
121 the build independent type TDes& allows the compiler to choose the appropriate ReadL() variant (i.e the 8 bit or the 16
122 bit) at build time.*/
124 ReadL(aDes,aDes.MaxLength());
127 EXPORT_C void RReadStream::ReadL(TDes16& aDes,TInt aLength)
128 /** Reads data of specified length from this stream into the specified 16 bit descriptor. No other information is read from this stream.
130 @param aDes A reference to a modifiable type descriptor which is to receive the data read from this stream. Passing the
131 build independent type TDes& allows the compiler to choose the appropriate ReadL() variant (i.e the 8 bit or the 16 bit)
133 @param aLength The length of data to be read from this stream. This value must be non-negative and must not be greater
134 than the maximum length of the descriptor otherwise the function raises a USER 11 panic.*/
136 __ASSERT_DEBUG(aLength<=aDes.MaxLength(),Panic(EStreamReadBeyondEnd));
137 aDes.SetLength(aLength);
138 ReadL((TUint16*)aDes.Ptr(),aLength);
141 EXPORT_C void RReadStream::ReadL(TDes16& aDes,TChar aDelim)
142 /** Reads data from this stream into the 16 bit descriptor, until either the specified delimiter is encountered or
143 the descriptor is filled to its maximum length.
144 The resulting data in aDes always includes the delimiter aDelim, if aDes is large enough.
146 @param aDes A reference to a modifiable type descriptor which is to receive the data read from this stream. Passing
147 the build independent type TDes& allows the compiler to choose the appropriate ReadL() variant (i.e the 8 bit or the 16 bit) at build time.
148 @param aDelim The delimiter marking the end of the data in the stream.*/
150 __ASSERT_DEBUG(iSrc!=NULL,Panic(EStreamNotOpen));
151 TUint16* ptr=(TUint16*)aDes.Ptr();
152 TDelimitedInput16 input(ptr,aDes.MaxLength(),aDelim);
156 } while (!input.Done());
157 aDes.SetLength(input.Ptr()-ptr);
160 EXPORT_C void RReadStream::ReadL(TUint16* aPtr,TInt aLength)
161 /** Reads data of specified length from this stream into the specified 16 bit descriptor.
162 No other information is read from this stream.
164 @param aDes A reference to a modifiable type descriptor which is to receive the data read from this stream. Passing the build independent type TDes& allows the compiler to choose the appropriate ReadL() variant (i.e the 8 bit or the 16 bit) at build time.
165 @param aLength The length of data to be read from this stream. This value must be non-negative and must not be greater than the maximum length of the descriptor otherwise the function raises a USER 11 panic.*/
167 __ASSERT_DEBUG(aLength>=0,Panic(EStreamReadLengthNegative));
168 ReadL((TUint8*)aPtr,aLength<<1); // platform dependency
171 EXPORT_C TInt8 RReadStream::ReadInt8L()
172 /** Internalises a TInt8 value The function reads an 8Â bit value from this stream
173 and interprets it as a TInt8.
175 @return The 8 bit value read from this stream. */
178 ReadL((TUint8*)&val,1); // platform dependency
182 EXPORT_C TInt16 RReadStream::ReadInt16L()
183 /** Internalises a TInt16 value. The function reads a 16Â bit value from this stream
184 and interprets it as a TInt16.
186 @return The 16 bit value read from this stream. */
189 ReadL((TUint8*)&val,2); // platform dependency
193 EXPORT_C TInt32 RReadStream::ReadInt32L()
194 /** Internalises a TInt32 value. The function reads a 32Â bit value from this stream
195 and interprets it as a TInt32.
197 @return The 32Â bit value read from this stream. */
200 ReadL((TUint8*)&val,4); // platform dependency
204 EXPORT_C TUint8 RReadStream::ReadUint8L()
205 /** Internalises a TUint8 value. The function reads an 8Â bit value from this stream
206 and interprets it as a TUint8.
208 @return The 8Â bit value read from this stream. */
215 EXPORT_C TUint16 RReadStream::ReadUint16L()
216 /** Internalises a TUint16 value. The function reads a 16Â bit value from this
217 stream and interprets it as a TUint16.
219 @return The 16Â bit value read from this stream. */
222 ReadL((TUint8*)&val,2); // platform dependency
226 EXPORT_C TUint32 RReadStream::ReadUint32L()
227 /** Internalises a TUint32 value. The function reads a 32Â bit value from this
228 stream and interprets it as a TUint32.
230 @return The 32Â bit value read from this stream. */
233 ReadL((TUint8*)&val,4); // platform dependency
237 EXPORT_C TReal32 RReadStream::ReadReal32L() __SOFTFP
238 /** Internalises a TReal32 value. The function reads a 32Â bit value from this
239 stream and interprets it as a TReal32.
241 @return The 32Â bit value read from this read stream. */
244 ReadL((TUint8*)&val,4); // platform dependency
248 EXPORT_C TReal64 RReadStream::ReadReal64L() __SOFTFP
249 /** Internalises a TReal64 value. The function reads a 64Â bit value from this
250 stream and interprets it as a TReal64.
252 @return The 64 bit value read from this stream. */
254 #if defined(__DOUBLE_WORDS_SWAPPED__)
255 union {TReal64 val;TUint32 buf[3];} u; // platform dependency
256 ReadL((TUint8*)&u.buf[1],8);
261 ReadL((TUint8*)&val,8); // platform dependency
266 EXPORT_C void RWriteStream::Close()
267 /** Commits data to the stream before freeing resources used by the stream. This
268 ensures that any buffered data is written to the stream.
270 Note that the function cannot leave. Any errors arising from the attempt to
271 commit data to the stream are ignored. */
280 EXPORT_C void RWriteStream::Release()
281 /** Frees resources before abandoning the stream. The function is called after
282 data has been committed to the stream.
284 Note that if a cleanup item for the stream was placed on the cleanup stack
285 when the stream was opened (e.g by a call to RStoreWriteStreamss CreateLC(),
286 OpenLC(), ReplaceLC() or RDictionaryStores AssignLC() etc), then this function
287 need not be called explicitly; clean up is implicitly done by CleanupStack::PopAndDestroy(). */
296 EXPORT_C void RWriteStream::CommitL()
297 /** Ensures that any buffered data is written to the stream. Once committed, it
298 is not possible to roll back the newly written data. */
306 EXPORT_C void RWriteStream::PushL()
307 /** Puts a cleanup item for this write stream object onto the cleanup stack. This
308 allows allocated resources to be cleaned up if a subsequent leave occurs. */
310 CleanupReleasePushL(*this);
313 EXPORT_C void RWriteStream::WriteL(const TDesC8& aDes)
314 /** Writes the content of the 8 bit descriptor to the stream. No other information
315 is written to this write stream.
317 @param aDes A reference to a descriptor. Passing the build independent type
318 TDesC& allows the compiler to choose the appropriate WriteL() variant (i.e
319 the 8 bit or the 16 bit) at build time. */
321 WriteL(aDes.Ptr(),aDes.Length());
324 EXPORT_C void RWriteStream::WriteL(const TDesC8& aDes,TInt aLength)
325 /** Writes data of the specified length from the 8 bit descriptor to the stream.
326 No other information is written to this write stream.
328 @param aDes A reference to a descriptor. Passing the build independent type
329 TDesC& allows the compiler to choose the appropriate WriteL() variant (i.e
330 the 8 bit or the 16 bit) at build time.
331 @param aLength The length of data to be written to this stream. */
334 __ASSERT_DEBUG(aLength<=aDes.Length(),Panic(EStreamWriteBeyondEnd));
335 WriteL(aDes.Ptr(),aLength);
338 EXPORT_C void RWriteStream::WriteL(const TUint8* aPtr,TInt aLength)
339 /** Writes 8 bit data of the specified length from the specified location to this
342 @param aPtr The location from where data is to be streamed out.
343 @param aLength The length of data to be streamed out. */
346 __ASSERT_DEBUG(aLength>=0,Panic(EStreamWriteLengthNegative));
350 __ASSERT_DEBUG(iSnk!=NULL,Panic(EStreamNotOpen));
351 iSnk->WriteL(aPtr,aLength);
354 EXPORT_C void RWriteStream::WriteL(RReadStream &aStream)
355 /** Writes the content of the specified read stream to this write stream.
357 @param aStream A reference to a read stream which is to be written to this
361 __ASSERT_DEBUG(iSnk!=NULL,Panic(EStreamNotOpen));
362 TSourceOutput output(aStream.iSrc);
363 iSnk->WriteL(output);
366 EXPORT_C void RWriteStream::WriteL(RReadStream& aStream,TInt aLength)
367 /** Writes data of the specified length from the specified read stream to this
370 @param aStream A reference to a read stream part of whose content is to be
371 written to this stream.
372 @param aLength The length of data from the read stream to be written to this
376 __ASSERT_DEBUG(aLength>=0,Panic(EStreamWriteLengthNegative));
380 __ASSERT_DEBUG(iSnk!=NULL,Panic(EStreamNotOpen));
381 TSourceOutput output(aStream.iSrc);
382 TInt len=iSnk->WriteL(output,aLength);
383 __ASSERT_DEBUG(len>=0&&len<=aLength,Panic(EStreamReadInBreach));
388 EXPORT_C void RWriteStream::WriteL(const TDesC16& aDes)
389 /** Writes the content of the 16 bit descriptor to the stream. No other information
390 is written to this write stream.
392 @param aDes A reference to a descriptor. Passing the build independent type
393 TDesC& allows the compiler to choose the appropriate WriteL() variant (i.e
394 the 8 bit or the 16 bit) at build time. */
397 WriteL(aDes.Ptr(),aDes.Length());
400 EXPORT_C void RWriteStream::WriteL(const TDesC16& aDes,TInt aLength)
401 /** Writes data of the specified length from the 16 bit descriptor to the stream.
402 No other information is written to this write stream.
404 @param aDes A reference to a descriptor. Passing the build independent type
405 TDesC& allows the compiler to choose the appropriate WriteL() variant (i.e
406 the 8 bit or the 16 bit) at build time.
407 @param aLength The length of data to be written to this stream. */
410 __ASSERT_DEBUG(aLength<=aDes.Length(),Panic(EStreamWriteBeyondEnd));
411 WriteL(aDes.Ptr(),aLength);
414 EXPORT_C void RWriteStream::WriteL(const TUint16* aPtr,TInt aLength)
415 /** Writes 16 bit data of the specified length from the specified location to this
418 @param aPtr The location from where data is to be streamed out.
419 @param aLength The length of data to be streamed out. */
422 __ASSERT_DEBUG(aLength>=0,Panic(EStreamWriteLengthNegative));
423 WriteL((const TUint8*)aPtr,aLength<<1); // platform dependency
426 EXPORT_C void RWriteStream::WriteInt8L(TInt aValue)
427 /** Writes a TInt value as an 8Â bit value to this stream.
429 @param aValue The value to be written to this stream. */
432 WriteL((const TUint8*)&aValue,1); // platform dependency
435 EXPORT_C void RWriteStream::WriteInt16L(TInt aValue)
436 /** Writes a TInt value as a 16Â bit value to this stream.
438 @param aValue The value to be written to this stream. */
440 WriteL((const TUint8*)&aValue,2); // platform dependency
443 EXPORT_C void RWriteStream::WriteInt32L(TInt32 aValue)
444 /** Writes a TInt32 value as a 32 bit value to this stream.
446 @param aValue The value to be written to this stream. */
449 WriteL((const TUint8*)&aValue,4); // platform dependency
452 EXPORT_C void RWriteStream::WriteUint8L(TUint aValue)
453 /** Writes a TUint value as an 8 bit value to this stream.
455 @param aValue The value to be written to this stream. */
457 WriteL((const TUint8*)&aValue,1); // platform dependency
460 EXPORT_C void RWriteStream::WriteUint16L(TUint aValue)
461 /** Writes a TUint value as a 16 bit value to this stream.
463 @param aValue The value to be written to this stream. */
466 WriteL((const TUint8*)&aValue,2); // platform dependency
469 EXPORT_C void RWriteStream::WriteUint32L(TUint32 aValue)
470 /** Writes a TUint32 value as a 32 bit value to this stream.
472 @param aValue The value to be written to this stream. */
474 WriteL((const TUint8*)&aValue,4); // platform dependency
477 EXPORT_C void RWriteStream::WriteReal32L(TReal aValue) __SOFTFP
478 /** Writes a TReal value as a 32 bit value to this stream.
480 @param aValue The value to be written to this stream. */
483 TReal32 val=TReal32(aValue);
484 WriteL((const TUint8*)&val,4); // platform dependency
487 EXPORT_C void RWriteStream::WriteReal64L(TReal64 aValue) __SOFTFP
488 /** Writes a TReal64 value as a 64 bit value to this stream.
490 @param aValue The value to be written to this stream. */
492 #if defined(__DOUBLE_WORDS_SWAPPED__)
493 union {TReal64 val;TUint32 buf[3];} u; // platform dependency
496 WriteL((const TUint8*)&u.buf[1],8);
498 WriteL((const TUint8*)&aValue,8); // platform dependency
502 EXPORT_C void RWriteStream::WriteRefL(TStreamRef aRef)
504 // Interpret and write aRef to this stream.
507 __ASSERT_DEBUG(iSnk!=NULL,Panic(EStreamNotOpen));
508 __ASSERT_DEBUG(iExterL!=NULL,Panic(EStreamDoesNotUnderstand));
509 (*iExterL)(aRef,*this);