Update contrib.
1 // Copyright (c) 1997-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.
19 #include "BaRsReadImpl.h"
21 #define UNUSED_VAR(a) a = a
23 /** Sets the buffer containing the resource data.
25 The current position within the buffer is set to the start of the buffer so
26 that subsequent calls to the interpreting functions, for example ReadInt8(),
27 start at the beginning of this buffer.
29 @param aBuffer A pointer to an 8-bit non-modifiable descriptor containing
30 or representing resource data. */
31 EXPORT_C void TResourceReader::SetBuffer(const TDesC8* aBuffer)
34 Impl()->SetBuffer(aBuffer);
37 /** Returns the current position within the resource buffer.
39 The function makes no assumption about the type of data in the buffer at the
42 @return A pointer to the current position within the resource buffer. */
43 EXPORT_C const TAny* TResourceReader::Ptr()
48 /** Interprets the data at the current buffer position as leading byte count data
49 and constructs an 8 bit heap descriptor containing a copy of this data.
51 The data is interpreted as:
53 a byte value defining the number of 8 bit text characters or the length of
54 binary data (the resource string/binary data length is limited to 255 characters max)
58 the 8 bit text characters or binary data.
60 If the value of the leading byte is zero, the function assumes that no data
61 follows the leading byte and returns a NULL pointer.
63 The current position within the resource buffer is updated. If the resulting
64 position lies beyond the end of the resource buffer, then the function raises
67 Use this explicit 8-bit variant when the resource contains binary data. If
68 the resource contains text, then use the build independent variant ReadHBufCL().
70 In general, this type of resource data corresponds to one of the following:
72 a LTEXT type in a resource STRUCT declaration.
74 a variable length array within a STRUCT declaration which includes the LEN
77 @return A pointer to the 8-bit heap descriptor containing a copy of the data
78 following the leading byte count at the current position within the resource
79 buffer. The pointer can be NULL. */
80 EXPORT_C HBufC8* TResourceReader::ReadHBufC8L()
82 return Impl()->ReadHBufC8L();
85 /** Interprets the data at the current buffer position as leading byte count data
86 and constructs a 16 bit heap descriptor containing a copy of this data.
88 The data is interpreted as:
90 a byte value defining the number of 16 bit text characters
91 (the resource string/binary data length is limited to 255 characters max)
95 the 16 bit text characters.
97 If the value of the leading byte is zero, the function assumes that no data
98 follows the leading byte and returns a NULL pointer.
100 The current position within the resource buffer is updated. If the resulting
101 position lies beyond the end of the resource buffer, then the function raises
104 Do not use this explicit 16-bit variant when the resource contains binary
105 data; use the explicit 8-bit variant instead. If the resource contains text,
106 use the build independent variant ReadHBufCL().
108 @return A pointer to the 16-bit heap descriptor containing a copy of the
109 data following the leading byte count at the current position within the resource
110 buffer. The pointer can be NULL. */
111 EXPORT_C HBufC16* TResourceReader::ReadHBufC16L()
113 return Impl()->ReadHBufC16L();
116 /** Interprets the data at the current buffer position as leading byte count data
117 and constructs an 8 bit non modifiable pointer descriptor to represent this
120 The data is interpreted as:
122 a byte value defining the number of text characters or the length of binary
123 data (the resource string/binary data length is limited to 255 characters max)
127 the 8 bit text characters or binary data.
129 If the value of the leading byte is zero, calling Length() on the returned
132 The current position within the resource buffer is updated. If the resulting
133 position lies beyond the end of the resource buffer, then the function raises
136 Use this explicit 8-bit variant when the resource contains binary data. If
137 the resource contains text, then use the build independent variant ReadTPtrC().
139 In general, this type of resource data corresponds to one of the following:
141 a LTEXT type in a resource STRUCT declaration.
143 a variable length array within a STRUCT declaration which includes the LEN
146 @return An 8-bit non modifiable pointer descriptor representing the data
147 following the leading byte count at the current position within the resource
149 EXPORT_C TPtrC8 TResourceReader::ReadTPtrC8()
152 // TRAP and ignore the Error code as its non leaving method
153 TRAPD(errCode, retPtr.Set(ReadTPtrC8L ()));
158 TPtrC8 TResourceReader::ReadTPtrC8L()
160 return Impl()->ReadTPtrC8L();
164 /** Interprets the data at the current buffer position as leading byte count data
165 and constructs a 16 bit non modifiable pointer descriptor to represent this
168 The data is interpreted as:
170 a byte value defining the number of 16 bit text characters
171 (the resource string/binary data length is limited to 255 characters max)
175 the 16 bit text characters.
177 If the value of the leading byte is zero, calling Length() on the returned
178 TPtrC16 returns zero.
180 The current position within the resource buffer is updated. If the resulting
181 position lies beyond the end of the resource buffer, then the function raises
184 Do not use this explicit 16-bit variant when the resource contains binary
185 data; use the explicit 8-bit variant instead. If the resource contains text,
186 use the build independent variant ReadTPtrC().
188 @return A 16-bit non modifiable pointer descriptor representing the data
189 following the leading byte count at the current position within the resource
191 EXPORT_C TPtrC16 TResourceReader::ReadTPtrC16()
194 // TRAP and ignore the Error code as its non leaving method
195 TRAPD(errCode, retPtr.Set(ReadTPtrC16L ()));
200 TPtrC16 TResourceReader::ReadTPtrC16L()
202 return Impl()->ReadTPtrC16L();
205 /** Interprets the data within the specified resource buffer as an array of leading
206 byte count data and constructs an 8 bit non modifiable pointer descriptor
207 to represent an element within this array.
209 The function sets the buffer containing the resource data and sets the current
210 position to the start of this buffer. Any buffer set by a previous call to
211 SetBuffer() etc, is lost.
213 The buffer is expected to contain an array of data elements preceded by a
214 TInt16 value defining the number of elements within that array.
216 Each element of the array is interpreted as:
218 a byte value defining the number of 8 bit text characters or the length of
219 binary data (the resource string/binary data length is limited to 255 characters max)
223 the 8 bit text characters or binary data.
225 If the value of the leading byte is zero, calling Length() on the returned
228 The current position within the resource buffer is updated. If the resulting
229 position lies beyond the end of the resource buffer, then the function raises
232 Use this explicit 8 bit variant when the resource contains binary data, If
233 the resource contains text, then use the build independent variant ReadTPtrC(TInt,const TDesC8*).
235 @param aIndex The position of the element within the array. This value is
237 @param aBuffer The buffer containing the resource data.
238 @return An 8-bit non modifiable pointer descriptor representing the data following
239 the leading byte count of the element at the specified position within the
241 EXPORT_C TPtrC8 TResourceReader::ReadTPtrC8(TInt aIndex,const TDesC8* aBuffer)
244 // TRAP and ignore the Error code as its non leaving method
245 TRAPD(errCode, retPtr.Set(ReadTPtrC8L(aIndex, aBuffer)));
250 TPtrC8 TResourceReader::ReadTPtrC8L(TInt aIndex,const TDesC8* aBuffer)
253 return Impl()->ReadTPtrC8L(aIndex,aBuffer);
256 /** Interprets the data within the specified resource buffer as an array of leading
257 byte count data and constructs a 16 bit non modifiable pointer descriptor
258 to represent an element within this array.
260 The function sets the buffer containing the resource data and sets the current
261 position to the start of this buffer. Any buffer set by a previous call to
262 SetBuffer() etc., is lost.
264 The buffer is expected to contain an array of data elements preceded by a
265 TInt16 value defining the number of elements within that array.
267 Each element of the array is interpreted as:
269 a byte value defining the number of 8 bit text characters or the length of
270 binary data (the resource string/binary data length is limited to 255 characters max)
274 the 16 bit text characters.
276 If the value of the leading byte is zero, calling Length() on the returned
277 TPtrC16 returns zero.
279 The current position within the resource buffer is updated. If the resulting
280 position lies beyond the end of the resource buffer, then the function raises
283 Do not use this explicit 16-bit variant when the resource contains binary
284 data; use the explicit 8-bit variant instead. If the resource contains text,
285 use the build independent variant ReadTPtrC(TInt,const TDesC8*).
287 @param aIndex The position of the element within the array. This value is
289 @param aBuffer The buffer containing the resource data.
290 @return A 16-bit non modifiable pointer descriptor representing the data following
291 the leading byte count of the element at position within the array */
292 EXPORT_C TPtrC16 TResourceReader::ReadTPtrC16(TInt aIndex,const TDesC8* aBuffer)
295 // TRAP and ignore the Error code as its non leaving method
296 TRAPD(errCode, retPtr.Set(ReadTPtrC16L(aIndex, aBuffer)));
301 TPtrC16 TResourceReader::ReadTPtrC16L(TInt aIndex,const TDesC8* aBuffer)
304 return Impl()->ReadTPtrC16L(aIndex,aBuffer);
307 /** Interprets the data at the current buffer position as an array of leading byte
308 count data and constructs a flat array of 8 bit descriptors.
310 Each descriptor in the descriptor array corresponds to an element of the resource
313 At the current buffer position, the buffer is expected to contain an array
314 of data elements preceded by a TInt16 value defining the number of elements
317 Each element of the array is interpreted as:
319 a byte value defining the number of 8 bit text characters or the length of
320 binary data (the resource string/binary data length is limited to 255 characters max)
324 the text characters or binary data.
326 The current position within the resource buffer is updated. If the resulting
327 position lies beyond the end of the resource buffer, then the function raises
330 Use this explicit 8-bit variant when the resource contains binary data. If
331 the elements of the resource array contain text, use the build independent
332 variant of ReadDesCArrayL().
334 @return A pointer to an 8-bit variant flat descriptor array. */
335 EXPORT_C CDesC8ArrayFlat* TResourceReader::ReadDesC8ArrayL()
337 return Impl()->ReadDesC8ArrayL();
340 /** Interprets the data at the current buffer position as an array of leading byte
341 count data and constructs a flat array of 16 bit descriptors.
343 Each descriptor in the descriptor array corresponds to an element of the resource
346 At the current buffer position, the buffer is expected to contain an array
347 of data elements preceded by a TInt16 value defining the number of elements
350 Each element of the array is interpreted as:
352 a byte value defining the number of 8 bit text characters or the length of
353 binary data (the resource string/binary data length is limited to 255 characters max)
357 the 16 bit text characters.
359 The current position within the resource buffer is updated. If the resulting
360 position lies beyond the end of the resource buffer, then the function raises
363 Do not use this explicit 16-bit variant when the resource contains binary
364 data; use the explicit 8-bit variant instead. If the resource contains text,
365 use the build independent variant ReadDesCArrayL().
367 @return A pointer to a 16-bit variant flat descriptor array. */
368 EXPORT_C CDesC16ArrayFlat* TResourceReader::ReadDesC16ArrayL()
370 return Impl()->ReadDesC16ArrayL();
373 /** Interprets the data at the current buffer position as a TInt8 type and returns
376 The current position within the resource buffer is updated. If the resulting
377 position lies beyond the end of the resource buffer, then the function raises
380 In general, a TInt8 corresponds to a BYTE type in a resource STRUCT declaration.
382 Note that in Symbian OS, a TInt is at least as big as a TInt8.
384 @return The TInt8 value taken from the resource buffer. */
385 EXPORT_C TInt TResourceReader::ReadInt8()
388 // TRAP and ignore the Error code as its non leaving method
389 TRAPD(errCode, retInt=ReadInt8L());
394 TInt TResourceReader::ReadInt8L()
396 return Impl()->ReadInt8L();
399 /** Interprets the data at the current buffer position as a TUint8 type and returns
400 the value as a TUint.
402 The current position within the resource buffer is updated. If the resulting
403 position lies beyond the end of the resource buffer, then the function raises
406 In general, a TUint8 corresponds to a BYTE type in a resource STRUCT declaration.
408 Note that in Symbian OS, a TUint is at least as big as a TUint8.
410 @return The TUint8 value taken from the resource buffer. */
411 EXPORT_C TUint TResourceReader::ReadUint8()
414 // TRAP and ignore the Error code as its non leaving method
415 TRAPD(errCode, retInt=ReadUint8L());
420 TUint TResourceReader::ReadUint8L()
422 return Impl()->ReadUint8L();
425 /** Interprets the data at the current buffer position as a TInt16 type and returns
428 The current position within the resource buffer is updated. If the resulting
429 position lies beyond the end of the resource buffer, then the function raises
432 In general, a TInt16 corresponds to a WORD type in a resource STRUCT declaration.
434 Note that in Symbian OS, a TInt is at least as big as a TInt16.
436 @return The TInt16 value taken from the resource buffer. */
437 EXPORT_C TInt TResourceReader::ReadInt16()
440 // TRAP and ignore the Error code as its non leaving method
441 TRAPD(errCode, retInt=ReadInt16L());
446 TInt TResourceReader::ReadInt16L()
448 return Impl()->ReadInt16L();
451 /** Interprets the data at the current buffer position as a TUint16 type and returns
452 the value as a TUint.
454 The current position within the resource buffer is updated. If the resulting
455 position lies beyond the end of the resource buffer, then the function raises
458 In general, a TUint16 corresponds to a WORD type in a resource STRUCT declaration.
460 Note that in Symbian OS, a TUint is at least as big as a TUint16.
462 @return The TUint16 value taken from the resource buffer. */
463 EXPORT_C TUint TResourceReader::ReadUint16()
466 // TRAP and ignore the Error code as its non leaving method
467 TRAPD(errCode, retInt=ReadUint16L());
472 TUint TResourceReader::ReadUint16L()
474 return Impl()->ReadUint16L();
477 /** Interprets the data at the current buffer position as a TInt32 type and returns
480 The current position within the resource buffer is updated. If the resulting
481 position lies beyond the end of the resource buffer, then the function raises
484 In general, a TInt32 corresponds to a LONG type in a resource STRUCT declaration.
486 Note that in Symbian OS, TInt and TInt32 are the same size.
488 @return The TInt32 value taken from the resource buffer. */
489 EXPORT_C TInt TResourceReader::ReadInt32()
492 // TRAP and ignore the Error code as its non leaving method
493 TRAPD(errCode, retInt=ReadInt32L());
498 TInt TResourceReader::ReadInt32L()
500 return Impl()->ReadInt32L();
503 /** Interprets the data at the current buffer position as a TUint32 type and returns
504 the value as a TUint.
506 The current position within the resource buffer is updated. If the resulting
507 position lies beyond the end of the resource buffer, then the function raises
510 In general, a TUint32 corresponds to a LONG type in a resource STRUCT declaration.
512 Note that in Symbian OS a TUint is the same size as a TUint32.
514 @return The TUint32 value taken from the resource buffer. */
515 EXPORT_C TUint TResourceReader::ReadUint32()
518 // TRAP and ignore the Error code as its non leaving method
519 TRAPD(errCode, retInt=ReadUint32L());
524 TUint TResourceReader::ReadUint32L()
526 return Impl()->ReadUint32L();
529 /** Interprets the data at the current buffer position as a TReal64 type and returns
530 the value as a TReal64.
532 The current position within the resource buffer is updated. If the resulting
533 position lies beyond the end of the resource buffer, then the function raises
536 In general, a TReal64 corresponds to a DOUBLE type in a resource STRUCT declaration.
538 @return The TReal64 value taken from the resource buffer. */
539 EXPORT_C TReal64 TResourceReader::ReadReal64() __SOFTFP
542 // TRAP and ignore the Error code as its non leaving method
543 TRAPD(errCode, retReal=ReadReal64L());
548 TReal64 TResourceReader::ReadReal64L() __SOFTFP
550 return Impl()->ReadReal64L();
553 /** Copies a specified length of data from the resource buffer, starting at the
554 current position within the buffer, into the location pointed to by a specified
555 pointer. No assumption is made about the type of data at being read.
557 The current position within the resource buffer is updated. If the resulting
558 position lies beyond the end of the resource buffer, then the function raises
561 @param aPtr A pointer to the target location for data copied from the resource
563 @param aLength The length of data to be copied from the resource buffer. */
564 EXPORT_C void TResourceReader::Read(TAny* aPtr,TInt aLength)
566 // TRAP and ignore the Error code as its non leaving method
567 TRAPD(errCode, Impl()->ReadL(aPtr,aLength));
571 /** Moves the current buffer position backwards by the specified amount.
573 If the resulting position lies before the start of the resource buffer, then
574 the function raises a BAFL 5 panic.
576 @param aLength The length by which the current position is to be moved backward. */
577 EXPORT_C void TResourceReader::Rewind(TInt aLength)
579 // TRAP and ignore the Error code as its non leaving method
580 TRAPD(errCode, Impl()->RewindL(aLength));
584 /** Moves the current buffer position forwards by the specified amount.
586 If the resulting position lies beyond the end of the resource buffer, then
587 the function raises a BAFL 4 panic.
589 @param aLength The length by which the current position is to be advanced. */
590 EXPORT_C void TResourceReader::Advance(TInt aLength)
592 // TRAP and ignore the Error code as its non leaving method
593 TRAPD(errCode, Impl()->AdvanceL(aLength));
597 /** Placement new operator is used TResourceReaderImpl instance to be created.
598 TResourceReaderImpl instance default behaviour - it will panic when there is a problem.
600 @internalComponent */
601 void TResourceReader::CreateImpl()
603 new (iImpl) TResourceReaderImpl;
606 /** Placement new operator is used TResourceReaderImpl instance to be created.
607 TResourceReaderImpl instance default behaviour - it will panic when there is a problem.
609 @internalComponent */
610 TResourceReaderImpl* TResourceReader::Impl()
612 return reinterpret_cast <TResourceReaderImpl*> (iImpl);
615 /** The method returns a const pointer to TResourceReader implementation.
617 @internalComponent */
618 const TResourceReaderImpl* TResourceReader::Impl() const
620 return reinterpret_cast <const TResourceReaderImpl*> (iImpl);