First public contribution.
1 // Copyright (c) 2003-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 #include "BaRsReadImpl.h"
19 #include "BaCompileAssert.h"
21 /** @internalComponent
22 An error will be issued at compile time if the class size is not KRsReaderImplSize. */
23 TResourceReaderImpl::TResourceReaderImpl() :
27 //TResourceReaderImpl size. It should be 12 because of the BC reasons.
28 //12 is the size of TResourceReader class.
31 KRsReaderImplSize = 12
33 COMPILE_TIME_ASSERT(sizeof(TResourceReaderImpl) == KRsReaderImplSize);
36 /** Sets the buffer containing the resource data.
38 The current position within the buffer is set to the start of the buffer so
39 that subsequent calls to the interpreting functions, for example ReadInt8(),
40 start at the beginning of this buffer.
43 @param aBuffer Pointer to an 8 bit non-modifiable descriptor containing
44 or representing resource data.
45 @param aResourceId The numeric id of the resource to be read.
46 @post Buffer pointer is initialized.
47 @post Buffer current position pointer is initialized. */
48 void TResourceReaderImpl::SetBuffer(const TDesC8* aBuffer)
51 iCurrentPtr=iBuffer->Ptr();
54 /** Sets the buffer and current position to NULL.
56 @post Buffer pointer is set to NULL.
57 @post Buffer current position pointer is set to NULL. */
58 void TResourceReaderImpl::ResetBuffer()
64 /** Returns the current position within the resource buffer.
66 The function makes no assumption about the type of data in the buffer at the
70 @return A pointer to the current position within the resource buffer. */
71 const TAny* TResourceReaderImpl::Ptr()
76 /** Updates iCurrentPtr with a new value.
79 @pre iBuffer is not NULL.
80 @pre aPtr is not NULL.
81 @param aPtr The new value of iCurrentPtr.
82 @post iCurrentPtr is updated.
83 @panic BAFL 4 The new iCurrentPtr points beyond the buffer end.
84 @panic BAFL 70 iBuffer is NULL. DEBUG build only.
85 @panic BAFL 71 aPtr is NULL. DEBUG build only.
86 @leave KErrOff The new iCurrentPtr points beyond the buffer end. */
87 void TResourceReaderImpl::MovePtrL(const TUint8* aPtr)
89 __ASSERT_DEBUG(iBuffer != NULL, Panic(EBafPanicNullPtr1));
90 __ASSERT_DEBUG(aPtr != NULL, Panic(EBafPanicNullPtr2));
91 iAssertObj.AssertRelL(aPtr<=(iBuffer->Ptr()+iBuffer->Length()), EBafPanicResourceReaderEndExceeded);
95 /** Interprets the data at the current buffer position as leading byte count data
96 and constructs an 8 bit heap descriptor containing a copy of this data.
98 The data is interpreted as:
100 a byte value defining the number of 8 bit text characters or the length of
101 binary data (the resource string/binary data length is limited to 255 characters max)
105 the 8 bit text characters or binary data.
107 If the value of the leading byte is zero, the function assumes that no data
108 follows the leading byte and returns a NULL pointer.
110 The current position within the resource buffer is updated.
112 Use this explicit 8 bit variant when the resource contains binary data. If
113 the resource contains text, then use the build independent variant ReadHBufCL().
115 In general, this type of resource data corresponds to one of the following:
117 a LTEXT type in a resource STRUCT declaration.
119 a variable length array within a STRUCT declaration which includes the LEN
123 @pre The same as for ReadTPtrC8L().
124 @return Pointer to the 8 bit heap descriptor containing a
125 copy of the data following the leading byte count at
126 the current position within the resource buffer. The
128 @post iCurrentPtr is updated.
129 @panic The same as ReadTPtrC8L().
130 @leave The same as ReadTPtrC8L().
131 @see ReadTPtrC8L() */
132 HBufC8* TResourceReaderImpl::ReadHBufC8L()
134 const TPtrC8 data(ReadTPtrC8L());
135 return (data.Length()==0)? NULL: data.AllocL();
138 /** Interprets the data at the current buffer position as leading byte count data
139 and constructs a 16 bit heap descriptor containing a copy of this data.
141 The data is interpreted as:
143 a byte value defining the number of 16 bit text characters
144 (the resource string/binary data length is limited to 255 characters max)
148 the 16 bit text characters.
150 If the value of the leading byte is zero, the function assumes that no data
151 follows the leading byte and returns a NULL pointer.
153 The current position within the resource buffer is updated.
155 Do not use this explicit 16 bit variant when the resource contains binary
156 data; use the explicit 8 bit variant instead. If the resource contains text,
157 use the build independent variant ReadHBufCL().
160 @pre The same as for ReadTPtrC16L().
161 @return Pointer to the 16bit heap descriptor containing a
162 copy of the data following the leading byte count at
163 the current position within the resource buffer. The
165 @post iCurrentPtr is updated.
166 @panic The same as ReadTPtrC16L().
167 @leave The same as ReadTPtrC16L().
168 @see ReadTPtrC16L() */
169 HBufC16* TResourceReaderImpl::ReadHBufC16L()
171 const TPtrC16 data(ReadTPtrC16L());
172 return (data.Length()==0)? NULL: data.AllocL();
175 /** Interprets the data at the current buffer position as leading byte count data
176 and constructs an 8 bit non modifiable pointer descriptor to represent this
179 The data is interpreted as:
181 a byte value defining the number of text characters or the length of binary
182 data (the resource string/binary data length is limited to 255 characters max)
186 the 8 bit text characters or binary data.
188 If the value of the leading byte is zero, calling Length() on the returned
191 The current position within the resource buffer is updated.
193 Use this explicit 8 bit variant when the resource contains binary data. If
194 the resource contains text, then use the build independent variant ReadTPtrC().
196 In general, this type of resource data corresponds to one of the following:
198 a LTEXT type in a resource STRUCT declaration.
200 a variable length array within a STRUCT declaration which includes the LEN
204 @pre iCurrentPtr != NULL.
205 @pre The same as MovePtrL(const TUint8* aPtr).
206 @return 8bit non modifiable pointer descriptor representing
207 the data following the leading byte count at the
208 current position within the resource buffer.
209 @post iCurrentPtr is updated.
210 @panic BAFL 72 iCurrentPtr is NULL. DEBUG build only.
211 @panic The same as MovePtrL(const TUint8* aPtr).
212 @leave The same as MovePtrL(const TUint8* aPtr).
213 @see MovePtrL(const TUint8* aPtr) */
214 TPtrC8 TResourceReaderImpl::ReadTPtrC8L()
216 __ASSERT_DEBUG(iCurrentPtr != NULL, Panic(EBafPanicNullPtr3));
217 const TUint8* currentPtr=iCurrentPtr;//TUint8 pointer is used, which means that the
218 //resource string length is limited to 255 characters max.
219 const TInt strLen=*currentPtr;
221 MovePtrL(currentPtr+strLen);
222 return TPtrC8(currentPtr,strLen);
225 /** Interprets the data at the current buffer position as leading byte count data
226 and constructs a 16 bit non modifiable pointer descriptor to represent this
229 The data is interpreted as:
231 a byte value defining the number of 16 bit text characters
232 (the resource string/binary data length is limited to 255 characters max)
236 the 16 bit text characters.
238 If the value of the leading byte is zero, calling Length() on the returned
239 TPtrC16 returns zero.
241 The current position within the resource buffer is updated.
243 Do not use this explicit 16 bit variant when the resource contains binary
244 data; use the explicit 8 bit variant instead. If the resource contains text,
245 use the build independent variant ReadTPtrC().
248 @pre iCurrentPtr != NULL.
249 @pre The same as MovePtrL(const TUint8* aPtr).
250 @return Pointer to an 8bit variant flat descriptor array.
251 @post iCurrentPtr is updated.
252 @panic BAFL 73 iCurrentPtr is NULL. DEBUG build only.
253 @panic BAFL 15 The resource is a unicode string and it is not properly aligned. DEBUG build only.
254 @panic The same as MovePtrL(const TUint8* aPtr).
255 @leave KErrCorrupt The resource is a unicode string and it is not properly aligned.
256 @leave The same as MovePtrL(const TUint8* aPtr).
257 @see MovePtrL(const TUint8* aPtr) */
258 TPtrC16 TResourceReaderImpl::ReadTPtrC16L()
260 __ASSERT_DEBUG(iCurrentPtr != NULL, Panic(EBafPanicNullPtr4));
261 const TUint8* currentPtr=iCurrentPtr;//TUint8 pointer is used, which means that the
262 //resource string length is limited to 255 characters max.
263 const TInt unicodeLength=*currentPtr;
265 if (unicodeLength!=0)
267 if (REINTERPRET_CAST(TUint,currentPtr)&0x1)
269 // The resource compiler puts out a padding byte (arbitrarily 0xab)
270 // to ensure the alignment of Unicode strings within each resource.
271 iAssertObj.AssertDebL(*currentPtr==0xab, EBafPanicUnicodeTextPaddingError);
275 const TPtrC16 unicode(REINTERPRET_CAST(const TText16*,(unicodeLength==0)? NULL: currentPtr),unicodeLength);
276 currentPtr+=unicodeLength*sizeof(TText16);
277 MovePtrL(currentPtr);
281 /** Interprets the data within the specified resource buffer as an array of leading
282 byte count data and constructs an 8 bit non modifiable pointer descriptor
283 to represent an element within this array.
285 The function sets the buffer containing the resource data and sets the current
286 position to the start of this buffer. Any buffer set by a previous call to
287 SetBuffer() etc, is lost.
289 The buffer is expected to contain an array of data elements preceded by a
290 TInt16 value defining the number of elements within that array.
292 Each element of the array is interpreted as:
294 a byte value defining the number of 8 bit text characters or the length of
295 binary data (the resource string/binary data length is limited to 255 characters max)
299 the 8 bit text characters or binary data.
301 If the value of the leading byte is zero, calling Length() on the returned
304 The current position within the resource buffer is updated.
306 Use this explicit 8 bit variant when the resource contains binary data, If
307 the resource contains text, then use the build independent variant ReadTPtrC(TInt,const TDesC8*).
310 @pre aBuffer != NULL.
311 @pre The same as MovePtrL(const TUint8* aPtr).
312 @param aIndex Position of the element within the array. This
313 value is relative to zero.
314 @param aBuffer Buffer containing the resource data.
315 @return 8bit non modifiable pointer descriptor representing
316 the data following the leading byte count at the
317 current position within the resource buffer.
318 @post iBuffer is initialized with aBuffer.
319 @post The same as MovePtrL(const TUint8* aPtr).
320 @panic BAFL 4 aIndex is greater or equal than the string length. DEBUG build only.
321 @panic The same as MovePtrL(const TUint8* aPtr).
322 @leave The same as MovePtrL(const TUint8* aPtr).
323 @see MovePtrL(const TUint8* aPtr) */
324 TPtrC8 TResourceReaderImpl::ReadTPtrC8L(TInt aIndex,const TDesC8* aBuffer)
325 { // implementation could be made more efficient if desired
327 TInt count=ReadInt16L();
329 __ASSERT_DEBUG(aIndex<count,Panic(EBafPanicResourceReaderEndExceeded));
333 const TUint8* ptr=iCurrentPtr;
337 return ReadTPtrC8L();
340 /** Interprets the data within the specified resource buffer as an array of leading
341 byte count data and constructs a 16 bit non modifiable pointer descriptor
342 to represent an element within this array.
344 The function sets the buffer containing the resource data and sets the current
345 position to the start of this buffer. Any buffer set by a previous call to
346 SetBuffer() etc., is lost.
348 The buffer is expected to contain an array of data elements preceded by a
349 TInt16 value defining the number of elements within that array.
351 Each element of the array is interpreted as:
353 a byte value defining the number of 8 bit text characters or the length of
354 binary data (the resource string/binary data length is limited to 255 characters max)
358 the 16 bit text characters.
360 If the value of the leading byte is zero, calling Length() on the returned
361 TPtrC16 returns zero.
363 The current position within the resource buffer is updated.
365 Do not use this explicit 16 bit variant when the resource contains binary
366 data; use the explicit 8 bit variant instead. If the resource contains text,
367 use the build independent variant ReadTPtrC(TInt,const TDesC8*).
370 @pre aBuffer != NULL.
371 @pre The same as ReadTPtrC16L().
372 @param aIndex The position of the element within the array. This
373 value is relative to zero.
374 @param aBuffer The buffer containing the resource data.
375 @return 16bit non modifiable pointer descriptor representing
376 the data following the leading byte count of the
377 element at position within the array
378 @post iBuffer is initialized with aBuffer.
379 @post The same as ReadTPtrC16L().
380 @panic BAFL 4 aIndex is greater or equal than the string length.
381 @panic The same as ReadTPtrC16L().
382 @leave KErrOff aIndex is grater or equal than the string length.
383 @leave The same as ReadTPtrC16L().
384 @see ReadTPtrC16L()*/
385 TPtrC16 TResourceReaderImpl::ReadTPtrC16L(TInt aIndex,const TDesC8* aBuffer)
386 { // implementation could be made more efficient if desired
388 const TInt count=ReadInt16L();
389 iAssertObj.AssertRelL(aIndex<count,EBafPanicResourceReaderEndExceeded);
390 for (TInt i=0; i<aIndex; ++i)
394 return ReadTPtrC16L();
397 /** Interprets the data at the current buffer position as an array of leading byte
398 count data and constructs a flat array of 8 bit descriptors.
400 Each descriptor in the descriptor array corresponds to an element of the resource
403 At the current buffer position, the buffer is expected to contain an array
404 of data elements preceded by a TInt16 value defining the number of elements
407 Each element of the array is interpreted as:
409 a byte value defining the number of 8 bit text characters or the length of
410 binary data (the resource string/binary data length is limited to 255 characters max)
414 the text characters or binary data.
416 The current position within the resource buffer is updated.
418 Use this explicit 8 bit variant when the resource contains binary data. If
419 the elements of the resource array contain text, use the build independent
420 variant of ReadDesCArrayL().
423 @pre The same as ReadTPtrC8L().
424 @return Pointer to an 8bit variant flat descriptor array.
425 @post The same as ReadTPtrC8L().
426 @panic The same as ReadTPtrC8L().
427 @leave The same as ReadTPtrC8L().
428 @leave KErrNoMemory There is not enough memory
429 for the resulting buffer.
430 @see ReadTPtrC8L() */
431 CDesC8ArrayFlat* TResourceReaderImpl::ReadDesC8ArrayL()
433 TInt count=ReadInt16L();
434 CDesC8ArrayFlat* array=new(ELeave) CDesC8ArrayFlat(count);
435 CleanupStack::PushL(array);
437 array->AppendL(ReadTPtrC8L());
442 /** Interprets the data at the current buffer position as an array of leading byte
443 count data and constructs a flat array of 16 bit descriptors.
445 Each descriptor in the descriptor array corresponds to an element of the resource
448 At the current buffer position, the buffer is expected to contain an array
449 of data elements preceded by a TInt16 value defining the number of elements
452 Each element of the array is interpreted as:
454 a byte value defining the number of 8 bit text characters or the length of
455 binary data (the resource string/binary data length is limited to 255 characters max)
459 the 16 bit text characters.
461 The current position within the resource buffer is updated.
463 Do not use this explicit 16 bit variant when the resource contains binary
464 data; use the explicit 8 bit variant instead. If the resource contains text,
465 use the build independent variant ReadDesCArrayL().
468 @pre The same as ReadTPtrC16L().
469 @return Pointer to a 16bit variant flat descriptor array.
470 @post The same as ReadTPtrC16L().
471 @panic The same as ReadTPtrC16L().
472 @leave The same as ReadTPtrC16L().
473 @leave KErrNoMemory There is not enough memory
474 for the resulting buffer.
475 @see ReadTPtrC16L() */
476 CDesC16ArrayFlat* TResourceReaderImpl::ReadDesC16ArrayL()
478 TInt count=ReadInt16L();
479 CDesC16ArrayFlat* array=new(ELeave) CDesC16ArrayFlat(count);
480 CleanupStack::PushL(array);
482 array->AppendL(ReadTPtrC16L());
487 /** Interprets the data at the current buffer position as a TInt8 type and returns
490 The current position within the resource buffer is updated.
492 In general, a TInt8 corresponds to a BYTE type in a resource STRUCT declaration.
494 Note that in Symbian OS, a TInt is at least as big as a TInt8.
497 @pre iCurrentPtr != NULL.
498 @pre The same as MovePtrL(const TUint8* aPtr).
499 @return The TInt8 value taken from the resource buffer.
500 @post The same as MovePtrL(const TUint8* aPtr).
501 @leave The same as MovePtrL(const TUint8* aPtr).
502 @panic The same as MovePtrL(const TUint8* aPtr).
503 @panic BAFL 74 iCurrentPtr is NULL. DEBUG build only.
504 @see MovePtrL(const TUint8* aPtr) */
505 TInt TResourceReaderImpl::ReadInt8L()
507 __ASSERT_DEBUG(iCurrentPtr != NULL, Panic(EBafPanicNullPtr5));
508 const TUint8* currentPtr=iCurrentPtr;
509 MovePtrL(currentPtr+sizeof(TInt8));
510 return(*(TInt8*)currentPtr);
513 /** Interprets the data at the current buffer position as a TUint8 type and returns
514 the value as a TUint.
516 The current position within the resource buffer is updated.
518 In general, a TUint8 corresponds to a BYTE type in a resource STRUCT declaration.
520 Note that in Symbian OS, a TUint is at least as big as a TUint8.
523 @pre iCurrentPtr != NULL.
524 @pre The same as MovePtrL(const TUint8* aPtr).
525 @return The TUint8 value taken from the resource buffer.
526 @post The same as MovePtrL(const TUint8* aPtr).
527 @leave The same as MovePtrL(const TUint8* aPtr).
528 @panic The same as MovePtrL(const TUint8* aPtr).
529 @panic BAFL 75 iCurrentPtr is NULL. DEBUG build only.
530 @see MovePtrL(const TUint8* aPtr) */
531 TUint TResourceReaderImpl::ReadUint8L()
533 __ASSERT_DEBUG(iCurrentPtr != NULL, Panic(EBafPanicNullPtr6));
534 const TUint8* currentPtr=iCurrentPtr;
535 MovePtrL(currentPtr+sizeof(TUint8));
536 return(*(TUint8*)currentPtr);
539 /** Interprets the data at the current buffer position as a TInt16 type and returns
542 The current position within the resource buffer is updated.
544 In general, a TInt16 corresponds to a WORD type in a resource STRUCT declaration.
546 Note that in Symbian OS, a TInt is at least as big as a TInt16.
549 @pre iCurrentPtr != NULL.
550 @pre The same as MovePtrL(const TUint8* aPtr).
551 @return The TInt16 value taken from the resource buffer.
552 @post The same as MovePtrL(const TUint8* aPtr).
553 @leave The same as MovePtrL(const TUint8* aPtr).
554 @panic The same as MovePtrL(const TUint8* aPtr).
555 @panic BAFL 76 iCurrentPtr is NULL. DEBUG build only.
556 @see MovePtrL(const TUint8* aPtr) */
557 TInt TResourceReaderImpl::ReadInt16L()
559 __ASSERT_DEBUG(iCurrentPtr != NULL, Panic(EBafPanicNullPtr7));
560 if (((TUint)iCurrentPtr)%2)
563 ReadL(&ret,sizeof(ret));
566 const TUint8* currentPtr=iCurrentPtr;
567 MovePtrL(currentPtr+sizeof(TInt16));
568 return(*(TInt16*)currentPtr);
571 /** Interprets the data at the current buffer position as a TUint16 type and returns
572 the value as a TUint.
574 The current position within the resource buffer is updated.
576 In general, a TUint16 corresponds to a WORD type in a resource STRUCT declaration.
578 Note that in Symbian OS, a TUint is at least as big as a TUint16.
581 @pre iCurrentPtr != NULL.
582 @pre The same as MovePtrL(const TUint8* aPtr).
583 @return The TUint16 value taken from the resource buffer.
584 @post The same as MovePtrL(const TUint8* aPtr).
585 @leave The same as MovePtrL(const TUint8* aPtr).
586 @panic The same as MovePtrL(const TUint8* aPtr).
587 @panic BAFL 77 iCurrentPtr is NULL. DEBUG build only.
588 @see MovePtrL(const TUint8* aPtr) */
589 TUint TResourceReaderImpl::ReadUint16L()
591 __ASSERT_DEBUG(iCurrentPtr != NULL, Panic(EBafPanicNullPtr8));
592 if (((TUint)iCurrentPtr)%2)
595 ReadL(&ret,sizeof(ret));
598 const TUint8* currentPtr=iCurrentPtr;
599 MovePtrL(currentPtr+sizeof(TUint16));
600 return(*(TUint16*)currentPtr);
603 /** Interprets the data at the current buffer position as a TInt32 type and returns
606 The current position within the resource buffer is updated.
608 In general, a TInt32 corresponds to a LONG type in a resource STRUCT declaration.
610 Note that in Symbian OS, TInt and TInt32 are the same size.
613 @pre iCurrentPtr != NULL.
614 @pre The same as MovePtrL(const TUint8* aPtr).
615 @return The TInt32 value taken from the resource buffer.
616 @post The same as MovePtrL(const TUint8* aPtr).
617 @leave The same as MovePtrL(const TUint8* aPtr).
618 @panic The same as MovePtrL(const TUint8* aPtr).
619 @panic BAFL 78 iCurrentPtr is NULL. DEBUG build only.
620 @see MovePtrL(const TUint8* aPtr) */
621 TInt TResourceReaderImpl::ReadInt32L()
623 __ASSERT_DEBUG(iCurrentPtr != NULL, Panic(EBafPanicNullPtr9));
624 if (((TUint)iCurrentPtr)%4)
627 ReadL(&ret,sizeof(ret));
630 const TUint8* currentPtr=iCurrentPtr;
631 MovePtrL(currentPtr+sizeof(TInt32));
632 return(*(TInt32*)currentPtr);
635 /** Interprets the data at the current buffer position as a TUint32 type and returns
636 the value as a TUint.
638 The current position within the resource buffer is updated.
640 In general, a TUint32 corresponds to a LONG type in a resource STRUCT declaration.
642 Note that in Symbian OS a TUint is the same size as a TUint32.
645 @pre iCurrentPtr != NULL.
646 @pre The same as MovePtrL(const TUint8* aPtr).
647 @return The TUint32 value taken from the resource buffer.
648 @post The same as MovePtrL(const TUint8* aPtr).
649 @leave The same as MovePtrL(const TUint8* aPtr).
650 @panic The same as MovePtrL(const TUint8* aPtr).
651 @panic BAFL 79 iCurrentPtr is NULL. DEBUG build only.
652 @see MovePtrL(const TUint8* aPtr) */
653 TUint TResourceReaderImpl::ReadUint32L()
655 __ASSERT_DEBUG(iCurrentPtr != NULL, Panic(EBafPanicNullPtr10));
656 if (((TUint)iCurrentPtr)%4)
659 ReadL(&ret,sizeof(ret));
662 const TUint8* currentPtr=iCurrentPtr;
663 MovePtrL(currentPtr+sizeof(TUint32));
664 return(*(TUint32*)currentPtr);
667 /** Interprets the data at the current buffer position as a TReal64 type and returns
668 the value as a TReal64.
670 The current position within the resource buffer is updated.
672 In general, a TReal64 corresponds to a DOUBLE type in a resource STRUCT declaration.
675 @pre The same as ReadUint32L().
676 @return The TReal64 value taken from the resource buffer.
677 @post The same as ReadUint32L().
678 @leave The same as ReadUint32L().
679 @panic The same as ReadUint32L().
680 @see ReadUint32L() */
681 TReal64 TResourceReaderImpl::ReadReal64L() __SOFTFP
688 #if defined(__DOUBLE_WORDS_SWAPPED__)
689 tmp[1]=ReadUint32L();
690 tmp[0]=ReadUint32L();
692 tmp[0]=ReadUint32L();
693 tmp[1]=ReadUint32L();
698 /** Copies a specified length of data from the resource buffer, starting at the
699 current position within the buffer, into the location pointed to by a specified
700 pointer. No assumption is made about the type of data at being read.
702 The current position within the resource buffer is updated.
705 @pre iCurrentPtr != NULL.
706 @pre The same as MovePtrL(const TUint8* aPtr).
707 @param aPtr Pointer to the target location for data copied from the resource buffer.
708 @param aLength The length of data to be copied from the resource buffer.
709 @post The same as MovePtrL(const TUint8* aPtr).
710 @leave The same as MovePtrL(const TUint8* aPtr).
711 @panic The same as MovePtrL(const TUint8* aPtr).
712 @panic BAFL 80 iCurrentPtr is NULL. DEBUG build only.
713 @see MovePtrL(const TUint8* aPtr) */
714 void TResourceReaderImpl::ReadL(TAny* aPtr,TInt aLength)
716 __ASSERT_DEBUG(iCurrentPtr != NULL, Panic(EBafPanicNullPtr11));
717 const TUint8* currentPtr=iCurrentPtr;
718 MovePtrL(currentPtr+aLength);
719 Mem::Copy(aPtr,currentPtr,aLength);
722 /** Moves the current buffer position backwards by the specified amount.
725 @pre iCurrentPtr != NULL.
726 @param aLength The length by which the current position is to be moved backward.
727 @post iCurrentPtr is updated.
728 @leave @see MovePtrL(const TUint8* aPtr).
729 @panic BAFL 5 If the resulting position lies before the start of the resource.
730 @panic BAFL 81 iCurrentPtr is NULL. DEBUG build only.
731 @leave KErrArgument The resulting position lies before the start of the resource. */
732 void TResourceReaderImpl::RewindL(TInt aLength)
734 __ASSERT_DEBUG(iCurrentPtr != NULL, Panic(EBafPanicNullPtr12));
735 iAssertObj.AssertRelL(!(aLength>iCurrentPtr-iBuffer->Ptr()),EBafPanicResourceReaderStartExceeded);
736 iCurrentPtr-=aLength;
739 /** Moves the current buffer position forwards by the specified amount.
742 @pre The same as MovePtrL(const TUint8* aPtr).
743 @param aLength The length by which the current position is to be advanced.
744 @post The same as MovePtrL(const TUint8* aPtr).
745 @leave The same as MovePtrL(const TUint8* aPtr).
746 @panic The same as MovePtrL(const TUint8* aPtr).
747 @panic BAFL 82 iCurrentPtr is NULL. DEBUG build only.
748 @see MovePtrL(const TUint8* aPtr) */
749 void TResourceReaderImpl::AdvanceL(TInt aLength)
751 __ASSERT_DEBUG(iCurrentPtr != NULL, Panic(EBafPanicNullPtr13));
752 MovePtrL(iCurrentPtr+aLength);
755 /** The method sets a new iAssertObj.
756 If some method is called and something goes wrong - the method either
757 will panics or asserts depending on iAssertObj state.
760 @param aAssertObj The assert object.
761 @post iAssertObj is updated. */
762 void TResourceReaderImpl::SetAssertObj(const TBaAssert& aAssertObj)
764 iAssertObj = aAssertObj;