os/ossrv/lowlevellibsandfws/apputils/src/BaRsReadImpl.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/apputils/src/BaRsReadImpl.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,766 @@
     1.4 +// Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// Resource reader
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +#include "BaRsReadImpl.h"
    1.22 +#include "BaCompileAssert.h"
    1.23 +
    1.24 +/** @internalComponent
    1.25 +An error will be issued at compile time if the class size is not KRsReaderImplSize. */
    1.26 +TResourceReaderImpl::TResourceReaderImpl() :
    1.27 +    iBuffer(NULL),
    1.28 +    iCurrentPtr(NULL)
    1.29 +	{
    1.30 +	//TResourceReaderImpl size. It should be 12 because of the BC reasons.
    1.31 +	//12 is the size of TResourceReader class.
    1.32 +	enum
    1.33 +		{
    1.34 +		KRsReaderImplSize = 12
    1.35 +		};
    1.36 +	COMPILE_TIME_ASSERT(sizeof(TResourceReaderImpl) == KRsReaderImplSize);
    1.37 +	}
    1.38 +
    1.39 +/** Sets the buffer containing the resource data.
    1.40 +
    1.41 +The current position within the buffer is set to the start of the buffer so 
    1.42 +that subsequent calls to the interpreting functions, for example ReadInt8(), 
    1.43 +start at the beginning of this buffer.
    1.44 +
    1.45 +@internalComponent
    1.46 +@param aBuffer Pointer to an 8 bit non-modifiable descriptor containing 
    1.47 +or representing resource data.
    1.48 +@param aResourceId The numeric id of the resource to be read.
    1.49 +@post Buffer pointer is initialized.
    1.50 +@post Buffer current position pointer is initialized. */
    1.51 +void TResourceReaderImpl::SetBuffer(const TDesC8* aBuffer)
    1.52 +	{
    1.53 +	iBuffer=aBuffer;
    1.54 +	iCurrentPtr=iBuffer->Ptr();
    1.55 +	}
    1.56 +
    1.57 +/** Sets the buffer and current position to NULL.
    1.58 +@internalComponent
    1.59 +@post Buffer pointer is set to NULL.
    1.60 +@post Buffer current position pointer is set to NULL. */
    1.61 +void TResourceReaderImpl::ResetBuffer()
    1.62 +	{
    1.63 +	iBuffer=NULL;
    1.64 +	iCurrentPtr=NULL;
    1.65 +	}
    1.66 +
    1.67 +/** Returns the current position within the resource buffer. 
    1.68 +
    1.69 +The function makes no assumption about the type of data in the buffer at the 
    1.70 +current position.
    1.71 +
    1.72 +@internalComponent
    1.73 +@return A pointer to the current position within the resource buffer. */
    1.74 +const TAny* TResourceReaderImpl::Ptr()
    1.75 +    {
    1.76 +    return(iCurrentPtr);
    1.77 +    }
    1.78 +
    1.79 +/** Updates iCurrentPtr with a new value.
    1.80 +
    1.81 +@internalComponent
    1.82 +@pre iBuffer is not NULL.
    1.83 +@pre aPtr is not NULL.
    1.84 +@param aPtr The new value of iCurrentPtr.
    1.85 +@post iCurrentPtr is updated.
    1.86 +@panic BAFL 4 The new iCurrentPtr points beyond the buffer end.
    1.87 +@panic BAFL 70 iBuffer is NULL. DEBUG build only.
    1.88 +@panic BAFL 71 aPtr is NULL. DEBUG build only.
    1.89 +@leave KErrOff The new iCurrentPtr points beyond the buffer end. */
    1.90 +void TResourceReaderImpl::MovePtrL(const TUint8* aPtr)
    1.91 +    {
    1.92 +	__ASSERT_DEBUG(iBuffer != NULL, Panic(EBafPanicNullPtr1));
    1.93 +	__ASSERT_DEBUG(aPtr != NULL, Panic(EBafPanicNullPtr2));
    1.94 +	iAssertObj.AssertRelL(aPtr<=(iBuffer->Ptr()+iBuffer->Length()), EBafPanicResourceReaderEndExceeded);
    1.95 +    iCurrentPtr=aPtr;
    1.96 +    }
    1.97 +
    1.98 +/** Interprets the data at the current buffer position as leading byte count data 
    1.99 +and constructs an 8 bit heap descriptor containing a copy of this data.
   1.100 +
   1.101 +The data is interpreted as:
   1.102 +
   1.103 +a byte value defining the number of 8 bit text characters or the length of 
   1.104 +binary data (the resource string/binary data length is limited to 255 characters max)
   1.105 +
   1.106 +followed by:
   1.107 +
   1.108 +the 8 bit text characters or binary data.
   1.109 +
   1.110 +If the value of the leading byte is zero, the function assumes that no data 
   1.111 +follows the leading byte and returns a NULL pointer.
   1.112 +
   1.113 +The current position within the resource buffer is updated.
   1.114 +
   1.115 +Use this explicit 8 bit variant when the resource contains binary data. If 
   1.116 +the resource contains text, then use the build independent variant ReadHBufCL().
   1.117 +
   1.118 +In general, this type of resource data corresponds to one of the following:
   1.119 +
   1.120 +a LTEXT type in a resource STRUCT declaration.
   1.121 +
   1.122 +a variable length array within a STRUCT declaration which includes the LEN 
   1.123 +BYTE keywords.
   1.124 +
   1.125 +@internalComponent
   1.126 +@pre The same as for ReadTPtrC8L().
   1.127 +@return Pointer to the 8 bit heap descriptor containing a
   1.128 +copy of the data following the leading byte count at
   1.129 +the current position within the resource buffer. The
   1.130 +pointer can be NULL.
   1.131 +@post iCurrentPtr is updated.
   1.132 +@panic The same as ReadTPtrC8L().
   1.133 +@leave The same as ReadTPtrC8L().
   1.134 +@see ReadTPtrC8L() */
   1.135 +HBufC8* TResourceReaderImpl::ReadHBufC8L()
   1.136 +	{
   1.137 +	const TPtrC8 data(ReadTPtrC8L());
   1.138 +	return (data.Length()==0)? NULL: data.AllocL();
   1.139 +	}
   1.140 +
   1.141 +/** Interprets the data at the current buffer position as leading byte count data 
   1.142 +and constructs a 16 bit heap descriptor containing a copy of this data.
   1.143 +
   1.144 +The data is interpreted as:
   1.145 +
   1.146 +a byte value defining the number of 16 bit text characters
   1.147 +(the resource string/binary data length is limited to 255 characters max)
   1.148 +
   1.149 +followed by:
   1.150 +
   1.151 +the 16 bit text characters.
   1.152 +
   1.153 +If the value of the leading byte is zero, the function assumes that no data 
   1.154 +follows the leading byte and returns a NULL pointer.
   1.155 +
   1.156 +The current position within the resource buffer is updated.
   1.157 +
   1.158 +Do not use this explicit 16 bit variant when the resource contains binary 
   1.159 +data; use the explicit 8 bit variant instead. If the resource contains text, 
   1.160 +use the build independent variant ReadHBufCL().
   1.161 +
   1.162 +@internalComponent
   1.163 +@pre The same as for ReadTPtrC16L().
   1.164 +@return Pointer to the 16bit heap descriptor containing a
   1.165 +copy of the data following the leading byte count at
   1.166 +the current position within the resource buffer. The
   1.167 +pointer can be NULL.
   1.168 +@post iCurrentPtr is updated.
   1.169 +@panic The same as ReadTPtrC16L().
   1.170 +@leave The same as ReadTPtrC16L(). 
   1.171 +@see ReadTPtrC16L() */
   1.172 +HBufC16* TResourceReaderImpl::ReadHBufC16L()
   1.173 +	{
   1.174 +	const TPtrC16 data(ReadTPtrC16L());
   1.175 +	return (data.Length()==0)? NULL: data.AllocL();
   1.176 +	}
   1.177 +
   1.178 +/** Interprets the data at the current buffer position as leading byte count data 
   1.179 +and constructs an 8 bit non modifiable pointer descriptor to represent this 
   1.180 +data.
   1.181 +
   1.182 +The data is interpreted as:
   1.183 +
   1.184 +a byte value defining the number of text characters or the length of binary 
   1.185 +data (the resource string/binary data length is limited to 255 characters max)
   1.186 +
   1.187 +followed by:
   1.188 +
   1.189 +the 8 bit text characters or binary data.
   1.190 +
   1.191 +If the value of the leading byte is zero, calling Length() on the returned 
   1.192 +TPtrC8 returns zero.
   1.193 +
   1.194 +The current position within the resource buffer is updated.
   1.195 +
   1.196 +Use this explicit 8 bit variant when the resource contains binary data. If 
   1.197 +the resource contains text, then use the build independent variant ReadTPtrC().
   1.198 +
   1.199 +In general, this type of resource data corresponds to one of the following:
   1.200 +
   1.201 +a LTEXT type in a resource STRUCT declaration.
   1.202 +
   1.203 +a variable length array within a STRUCT declaration which includes the LEN 
   1.204 +BYTE keywords.
   1.205 +
   1.206 +@internalComponent
   1.207 +@pre iCurrentPtr != NULL.
   1.208 +@pre The same as MovePtrL(const TUint8* aPtr).
   1.209 +@return 8bit non modifiable pointer descriptor representing
   1.210 +the data following the leading byte count at the
   1.211 +current position within the resource buffer.
   1.212 +@post iCurrentPtr is updated.
   1.213 +@panic BAFL 72 iCurrentPtr is NULL. DEBUG build only.
   1.214 +@panic The same as MovePtrL(const TUint8* aPtr).
   1.215 +@leave The same as MovePtrL(const TUint8* aPtr).
   1.216 +@see MovePtrL(const TUint8* aPtr) */
   1.217 +TPtrC8 TResourceReaderImpl::ReadTPtrC8L()
   1.218 +	{
   1.219 +	__ASSERT_DEBUG(iCurrentPtr != NULL, Panic(EBafPanicNullPtr3));
   1.220 +	const TUint8* currentPtr=iCurrentPtr;//TUint8 pointer is used, which means that the 
   1.221 +	//resource string length is limited to 255 characters max.
   1.222 +	const TInt strLen=*currentPtr;
   1.223 +	++currentPtr;
   1.224 +	MovePtrL(currentPtr+strLen);
   1.225 +	return TPtrC8(currentPtr,strLen);
   1.226 +	}
   1.227 +
   1.228 +/** Interprets the data at the current buffer position as leading byte count data 
   1.229 +and constructs a 16 bit non modifiable pointer descriptor to represent this 
   1.230 +data.
   1.231 +
   1.232 +The data is interpreted as:
   1.233 +
   1.234 +a byte value defining the number of 16 bit text characters 
   1.235 +(the resource string/binary data length is limited to 255 characters max)
   1.236 +
   1.237 +followed by:
   1.238 +
   1.239 +the 16 bit text characters.
   1.240 +
   1.241 +If the value of the leading byte is zero, calling Length() on the returned 
   1.242 +TPtrC16 returns zero.
   1.243 +
   1.244 +The current position within the resource buffer is updated.
   1.245 +
   1.246 +Do not use this explicit 16 bit variant when the resource contains binary 
   1.247 +data; use the explicit 8 bit variant instead. If the resource contains text, 
   1.248 +use the build independent variant ReadTPtrC().
   1.249 +
   1.250 +@internalComponent
   1.251 +@pre iCurrentPtr != NULL.
   1.252 +@pre The same as MovePtrL(const TUint8* aPtr).
   1.253 +@return Pointer to an 8bit variant flat descriptor array.
   1.254 +@post iCurrentPtr is updated.
   1.255 +@panic BAFL 73 iCurrentPtr is NULL. DEBUG build only.
   1.256 +@panic BAFL 15 The resource is a unicode string and it is not properly aligned. DEBUG build only.
   1.257 +@panic The same as MovePtrL(const TUint8* aPtr).
   1.258 +@leave KErrCorrupt The resource is a unicode string and it is not properly aligned.
   1.259 +@leave The same as MovePtrL(const TUint8* aPtr).
   1.260 +@see MovePtrL(const TUint8* aPtr) */
   1.261 +TPtrC16 TResourceReaderImpl::ReadTPtrC16L()
   1.262 +	{
   1.263 +	__ASSERT_DEBUG(iCurrentPtr != NULL, Panic(EBafPanicNullPtr4));
   1.264 +	const TUint8* currentPtr=iCurrentPtr;//TUint8 pointer is used, which means that the 
   1.265 +	//resource string length is limited to 255 characters max.
   1.266 +	const TInt unicodeLength=*currentPtr;
   1.267 +	++currentPtr;
   1.268 +	if (unicodeLength!=0)
   1.269 +		{
   1.270 +		if (REINTERPRET_CAST(TUint,currentPtr)&0x1)
   1.271 +			{
   1.272 +			// The resource compiler puts out a padding byte (arbitrarily 0xab)
   1.273 +			// to ensure the alignment of Unicode strings within each resource.
   1.274 +			iAssertObj.AssertDebL(*currentPtr==0xab, EBafPanicUnicodeTextPaddingError);
   1.275 +			++currentPtr;
   1.276 +			}
   1.277 +		}
   1.278 +	const TPtrC16 unicode(REINTERPRET_CAST(const TText16*,(unicodeLength==0)? NULL: currentPtr),unicodeLength);
   1.279 +	currentPtr+=unicodeLength*sizeof(TText16);
   1.280 +	MovePtrL(currentPtr);
   1.281 +	return unicode;
   1.282 +	}
   1.283 +
   1.284 +/** Interprets the data within the specified resource buffer as an array of leading 
   1.285 +byte count data and constructs an 8 bit non modifiable pointer descriptor 
   1.286 +to represent an element within this array.
   1.287 +
   1.288 +The function sets the buffer containing the resource data and sets the current 
   1.289 +position to the start of this buffer. Any buffer set by a previous call to 
   1.290 +SetBuffer() etc, is lost.
   1.291 +
   1.292 +The buffer is expected to contain an array of data elements preceded by a 
   1.293 +TInt16 value defining the number of elements within that array.
   1.294 +
   1.295 +Each element of the array is interpreted as:
   1.296 +
   1.297 +a byte value defining the number of 8 bit text characters or the length of 
   1.298 +binary data (the resource string/binary data length is limited to 255 characters max)
   1.299 +
   1.300 +followed by:
   1.301 +
   1.302 +the 8 bit text characters or binary data.
   1.303 +
   1.304 +If the value of the leading byte is zero, calling Length() on the returned 
   1.305 +TPtrC8 returns zero.
   1.306 +
   1.307 +The current position within the resource buffer is updated.
   1.308 +
   1.309 +Use this explicit 8 bit variant when the resource contains binary data, If 
   1.310 +the resource contains text, then use the build independent variant ReadTPtrC(TInt,const TDesC8*).
   1.311 +
   1.312 +@internalComponent
   1.313 +@pre aBuffer != NULL. 
   1.314 +@pre The same as MovePtrL(const TUint8* aPtr).
   1.315 +@param aIndex Position of the element within the array. This
   1.316 +value is relative to zero.
   1.317 +@param aBuffer Buffer containing the resource data.
   1.318 +@return 8bit non modifiable pointer descriptor representing
   1.319 +the data following the leading byte count at the
   1.320 +current position within the resource buffer.
   1.321 +@post iBuffer is initialized with aBuffer.
   1.322 +@post The same as MovePtrL(const TUint8* aPtr).
   1.323 +@panic BAFL 4 aIndex is greater or equal than the string length. DEBUG build only.
   1.324 +@panic The same as MovePtrL(const TUint8* aPtr).
   1.325 +@leave The same as MovePtrL(const TUint8* aPtr).
   1.326 +@see MovePtrL(const TUint8* aPtr) */
   1.327 +TPtrC8 TResourceReaderImpl::ReadTPtrC8L(TInt aIndex,const TDesC8* aBuffer)
   1.328 +    { // implementation could be made more efficient if desired
   1.329 +	SetBuffer(aBuffer);
   1.330 +	TInt count=ReadInt16L();
   1.331 +//
   1.332 +	__ASSERT_DEBUG(aIndex<count,Panic(EBafPanicResourceReaderEndExceeded));
   1.333 +	if (aIndex>=count)
   1.334 +		return TPtrC8();
   1.335 +//
   1.336 +	const TUint8* ptr=iCurrentPtr;
   1.337 +	while (--aIndex>=0)
   1.338 +		ptr+=1+*ptr;
   1.339 +	MovePtrL(ptr);
   1.340 +	return ReadTPtrC8L();
   1.341 +    }
   1.342 +
   1.343 +/** Interprets the data within the specified resource buffer as an array of leading 
   1.344 +byte count data and constructs a 16 bit non modifiable pointer descriptor 
   1.345 +to represent an element within this array.
   1.346 +
   1.347 +The function sets the buffer containing the resource data and sets the current 
   1.348 +position to the start of this buffer. Any buffer set by a previous call to 
   1.349 +SetBuffer() etc., is lost.
   1.350 +
   1.351 +The buffer is expected to contain an array of data elements preceded by a 
   1.352 +TInt16 value defining the number of elements within that array.
   1.353 +
   1.354 +Each element of the array is interpreted as:
   1.355 +
   1.356 +a byte value defining the number of 8 bit text characters or the length of 
   1.357 +binary data (the resource string/binary data length is limited to 255 characters max)
   1.358 +
   1.359 +followed by:
   1.360 +
   1.361 +the 16 bit text characters.
   1.362 +
   1.363 +If the value of the leading byte is zero, calling Length() on the returned 
   1.364 +TPtrC16 returns zero.
   1.365 +
   1.366 +The current position within the resource buffer is updated.
   1.367 +
   1.368 +Do not use this explicit 16 bit variant when the resource contains binary 
   1.369 +data; use the explicit 8 bit variant instead. If the resource contains text, 
   1.370 +use the build independent variant ReadTPtrC(TInt,const TDesC8*).
   1.371 +
   1.372 +@internalComponent
   1.373 +@pre aBuffer != NULL.
   1.374 +@pre The same as ReadTPtrC16L().
   1.375 +@param aIndex The position of the element within the array. This
   1.376 +value is relative to zero.
   1.377 +@param aBuffer The buffer containing the resource data.
   1.378 +@return 16bit non modifiable pointer descriptor representing
   1.379 +the data following the leading byte count of the
   1.380 +element at position within the array
   1.381 +@post iBuffer is initialized with aBuffer.
   1.382 +@post The same as ReadTPtrC16L().
   1.383 +@panic BAFL 4 aIndex is greater or equal than the string length.
   1.384 +@panic The same as ReadTPtrC16L().
   1.385 +@leave KErrOff aIndex is grater or equal than the string length.
   1.386 +@leave The same as ReadTPtrC16L(). 
   1.387 +@see ReadTPtrC16L()*/
   1.388 +TPtrC16 TResourceReaderImpl::ReadTPtrC16L(TInt aIndex,const TDesC8* aBuffer)
   1.389 +    { // implementation could be made more efficient if desired
   1.390 +	SetBuffer(aBuffer);
   1.391 +	const TInt count=ReadInt16L();
   1.392 +	iAssertObj.AssertRelL(aIndex<count,EBafPanicResourceReaderEndExceeded);
   1.393 +	for (TInt i=0; i<aIndex; ++i)
   1.394 +		{
   1.395 +		ReadTPtrC16L();
   1.396 +		}
   1.397 +	return ReadTPtrC16L();
   1.398 +    }
   1.399 +
   1.400 +/** Interprets the data at the current buffer position as an array of leading byte 
   1.401 +count data and constructs a flat array of 8 bit descriptors.
   1.402 +
   1.403 +Each descriptor in the descriptor array corresponds to an element of the resource 
   1.404 +array.
   1.405 +
   1.406 +At the current buffer position, the buffer is expected to contain an array 
   1.407 +of data elements preceded by a TInt16 value defining the number of elements 
   1.408 +within that array.
   1.409 +
   1.410 +Each element of the array is interpreted as:
   1.411 +
   1.412 +a byte value defining the number of 8 bit text characters or the length of 
   1.413 +binary data (the resource string/binary data length is limited to 255 characters max)
   1.414 +
   1.415 +followed by:
   1.416 +
   1.417 +the text characters or binary data.
   1.418 +
   1.419 +The current position within the resource buffer is updated.
   1.420 +
   1.421 +Use this explicit 8 bit variant when the resource contains binary data. If 
   1.422 +the elements of the resource array contain text, use the build independent 
   1.423 +variant of ReadDesCArrayL().
   1.424 +
   1.425 +@internalComponent
   1.426 +@pre The same as ReadTPtrC8L().
   1.427 +@return Pointer to an 8bit variant flat descriptor array.
   1.428 +@post The same as ReadTPtrC8L().
   1.429 +@panic The same as ReadTPtrC8L().
   1.430 +@leave The same as ReadTPtrC8L().
   1.431 +@leave KErrNoMemory There is not enough memory
   1.432 +for the resulting buffer.
   1.433 +@see ReadTPtrC8L() */
   1.434 +CDesC8ArrayFlat* TResourceReaderImpl::ReadDesC8ArrayL()
   1.435 +    {
   1.436 +	TInt count=ReadInt16L();
   1.437 +	CDesC8ArrayFlat* array=new(ELeave) CDesC8ArrayFlat(count);
   1.438 +    CleanupStack::PushL(array);
   1.439 +	while (--count>=0)
   1.440 +		array->AppendL(ReadTPtrC8L());
   1.441 +    CleanupStack::Pop();
   1.442 +	return(array);
   1.443 +    }
   1.444 +
   1.445 +/** Interprets the data at the current buffer position as an array of leading byte 
   1.446 +count data and constructs a flat array of 16 bit descriptors.
   1.447 +
   1.448 +Each descriptor in the descriptor array corresponds to an element of the resource 
   1.449 +array.
   1.450 +
   1.451 +At the current buffer position, the buffer is expected to contain an array 
   1.452 +of data elements preceded by a TInt16 value defining the number of elements 
   1.453 +within that array.
   1.454 +
   1.455 +Each element of the array is interpreted as:
   1.456 +
   1.457 +a byte value defining the number of 8 bit text characters or the length of 
   1.458 +binary data (the resource string/binary data length is limited to 255 characters max)
   1.459 +
   1.460 +followed by:
   1.461 +
   1.462 +the 16 bit text characters.
   1.463 +
   1.464 +The current position within the resource buffer is updated.
   1.465 +
   1.466 +Do not use this explicit 16 bit variant when the resource contains binary 
   1.467 +data; use the explicit 8 bit variant instead. If the resource contains text, 
   1.468 +use the build independent variant ReadDesCArrayL().
   1.469 +
   1.470 +@internalComponent
   1.471 +@pre The same as ReadTPtrC16L().
   1.472 +@return Pointer to a 16bit variant flat descriptor array.
   1.473 +@post The same as ReadTPtrC16L().
   1.474 +@panic The same as ReadTPtrC16L().
   1.475 +@leave The same as ReadTPtrC16L().
   1.476 +@leave KErrNoMemory There is not enough memory
   1.477 +for the resulting buffer. 
   1.478 +@see ReadTPtrC16L() */
   1.479 +CDesC16ArrayFlat* TResourceReaderImpl::ReadDesC16ArrayL()
   1.480 +    {
   1.481 +	TInt count=ReadInt16L();
   1.482 +	CDesC16ArrayFlat* array=new(ELeave) CDesC16ArrayFlat(count);
   1.483 +    CleanupStack::PushL(array);
   1.484 +	while (--count>=0)
   1.485 +		array->AppendL(ReadTPtrC16L());
   1.486 +    CleanupStack::Pop();
   1.487 +	return(array);
   1.488 +    }
   1.489 +
   1.490 +/** Interprets the data at the current buffer position as a TInt8 type and returns 
   1.491 +the value as a TInt.
   1.492 +
   1.493 +The current position within the resource buffer is updated.
   1.494 +
   1.495 +In general, a TInt8 corresponds to a BYTE type in a resource STRUCT declaration.
   1.496 +
   1.497 +Note that in Symbian OS, a TInt is at least as big as a TInt8.
   1.498 +
   1.499 +@internalComponent
   1.500 +@pre iCurrentPtr != NULL.
   1.501 +@pre The same as MovePtrL(const TUint8* aPtr).
   1.502 +@return The TInt8 value taken from the resource buffer.
   1.503 +@post The same as MovePtrL(const TUint8* aPtr).
   1.504 +@leave The same as MovePtrL(const TUint8* aPtr).
   1.505 +@panic The same as MovePtrL(const TUint8* aPtr).
   1.506 +@panic BAFL 74 iCurrentPtr is NULL. DEBUG build only.
   1.507 +@see MovePtrL(const TUint8* aPtr) */
   1.508 +TInt TResourceReaderImpl::ReadInt8L()
   1.509 +    {
   1.510 +	__ASSERT_DEBUG(iCurrentPtr != NULL, Panic(EBafPanicNullPtr5));
   1.511 +    const TUint8* currentPtr=iCurrentPtr;
   1.512 +    MovePtrL(currentPtr+sizeof(TInt8));
   1.513 +    return(*(TInt8*)currentPtr);
   1.514 +    }
   1.515 +
   1.516 +/** Interprets the data at the current buffer position as a TUint8 type and returns 
   1.517 +the value as a TUint.
   1.518 +
   1.519 +The current position within the resource buffer is updated.
   1.520 +
   1.521 +In general, a TUint8 corresponds to a BYTE type in a resource STRUCT declaration.
   1.522 +
   1.523 +Note that in Symbian OS, a TUint is at least as big as a TUint8.
   1.524 +
   1.525 +@internalComponent
   1.526 +@pre iCurrentPtr != NULL.
   1.527 +@pre The same as MovePtrL(const TUint8* aPtr).
   1.528 +@return The TUint8 value taken from the resource buffer.
   1.529 +@post The same as MovePtrL(const TUint8* aPtr).
   1.530 +@leave The same as MovePtrL(const TUint8* aPtr).
   1.531 +@panic The same as MovePtrL(const TUint8* aPtr).
   1.532 +@panic BAFL 75 iCurrentPtr is NULL. DEBUG build only. 
   1.533 +@see MovePtrL(const TUint8* aPtr) */
   1.534 +TUint TResourceReaderImpl::ReadUint8L()
   1.535 +    {
   1.536 +	__ASSERT_DEBUG(iCurrentPtr != NULL, Panic(EBafPanicNullPtr6));
   1.537 +    const TUint8* currentPtr=iCurrentPtr;
   1.538 +    MovePtrL(currentPtr+sizeof(TUint8));
   1.539 +    return(*(TUint8*)currentPtr);
   1.540 +    }
   1.541 +
   1.542 +/** Interprets the data at the current buffer position as a TInt16 type and returns 
   1.543 +the value as a TInt.
   1.544 +
   1.545 +The current position within the resource buffer is updated.
   1.546 +
   1.547 +In general, a TInt16 corresponds to a WORD type in a resource STRUCT declaration.
   1.548 +
   1.549 +Note that in Symbian OS, a TInt is at least as big as a TInt16.
   1.550 +
   1.551 +@internalComponent
   1.552 +@pre iCurrentPtr != NULL.
   1.553 +@pre The same as MovePtrL(const TUint8* aPtr).
   1.554 +@return The TInt16 value taken from the resource buffer.
   1.555 +@post The same as MovePtrL(const TUint8* aPtr).
   1.556 +@leave The same as MovePtrL(const TUint8* aPtr).
   1.557 +@panic The same as MovePtrL(const TUint8* aPtr).
   1.558 +@panic BAFL 76 iCurrentPtr is NULL. DEBUG build only.
   1.559 +@see MovePtrL(const TUint8* aPtr) */
   1.560 +TInt TResourceReaderImpl::ReadInt16L()
   1.561 +    {
   1.562 +	__ASSERT_DEBUG(iCurrentPtr != NULL, Panic(EBafPanicNullPtr7));
   1.563 +    if (((TUint)iCurrentPtr)%2)
   1.564 +        {
   1.565 +        TInt16 ret;
   1.566 +        ReadL(&ret,sizeof(ret));
   1.567 +        return(ret);
   1.568 +        }
   1.569 +    const TUint8* currentPtr=iCurrentPtr;
   1.570 +    MovePtrL(currentPtr+sizeof(TInt16));
   1.571 +    return(*(TInt16*)currentPtr);
   1.572 +    }
   1.573 +
   1.574 +/** Interprets the data at the current buffer position as a TUint16 type and returns 
   1.575 +the value as a TUint.
   1.576 +
   1.577 +The current position within the resource buffer is updated.
   1.578 +
   1.579 +In general, a TUint16 corresponds to a WORD type in a resource STRUCT declaration.
   1.580 +
   1.581 +Note that in Symbian OS, a TUint is at least as big as a TUint16.
   1.582 +
   1.583 +@internalComponent
   1.584 +@pre iCurrentPtr != NULL.
   1.585 +@pre The same as MovePtrL(const TUint8* aPtr).
   1.586 +@return The TUint16 value taken from the resource buffer.
   1.587 +@post The same as MovePtrL(const TUint8* aPtr).
   1.588 +@leave The same as MovePtrL(const TUint8* aPtr).
   1.589 +@panic The same as MovePtrL(const TUint8* aPtr).
   1.590 +@panic BAFL 77 iCurrentPtr is NULL. DEBUG build only.
   1.591 +@see MovePtrL(const TUint8* aPtr) */
   1.592 +TUint TResourceReaderImpl::ReadUint16L()
   1.593 +    {
   1.594 +	__ASSERT_DEBUG(iCurrentPtr != NULL, Panic(EBafPanicNullPtr8));
   1.595 +    if (((TUint)iCurrentPtr)%2)
   1.596 +        {
   1.597 +        TUint16 ret;
   1.598 +        ReadL(&ret,sizeof(ret));
   1.599 +        return(ret);
   1.600 +        }
   1.601 +    const TUint8* currentPtr=iCurrentPtr;
   1.602 +    MovePtrL(currentPtr+sizeof(TUint16));
   1.603 +    return(*(TUint16*)currentPtr);
   1.604 +    }
   1.605 +
   1.606 +/** Interprets the data at the current buffer position as a TInt32 type and returns 
   1.607 +the value as a TInt.
   1.608 +
   1.609 +The current position within the resource buffer is updated.
   1.610 +
   1.611 +In general, a TInt32 corresponds to a LONG type in a resource STRUCT declaration.
   1.612 +
   1.613 +Note that in Symbian OS, TInt and TInt32 are the same size.
   1.614 +
   1.615 +@internalComponent
   1.616 +@pre iCurrentPtr != NULL.
   1.617 +@pre The same as MovePtrL(const TUint8* aPtr).
   1.618 +@return The TInt32 value taken from the resource buffer.
   1.619 +@post The same as MovePtrL(const TUint8* aPtr).
   1.620 +@leave The same as MovePtrL(const TUint8* aPtr).
   1.621 +@panic The same as MovePtrL(const TUint8* aPtr).
   1.622 +@panic BAFL 78 iCurrentPtr is NULL. DEBUG build only.
   1.623 +@see MovePtrL(const TUint8* aPtr) */
   1.624 +TInt TResourceReaderImpl::ReadInt32L()
   1.625 +    {
   1.626 +	__ASSERT_DEBUG(iCurrentPtr != NULL, Panic(EBafPanicNullPtr9));
   1.627 +    if (((TUint)iCurrentPtr)%4)
   1.628 +        {
   1.629 +        TInt32 ret;
   1.630 +        ReadL(&ret,sizeof(ret));
   1.631 +        return(ret);
   1.632 +        }
   1.633 +    const TUint8* currentPtr=iCurrentPtr;
   1.634 +    MovePtrL(currentPtr+sizeof(TInt32));
   1.635 +	return(*(TInt32*)currentPtr);
   1.636 +    }
   1.637 +
   1.638 +/** Interprets the data at the current buffer position as a TUint32 type and returns 
   1.639 +the value as a TUint.
   1.640 +
   1.641 +The current position within the resource buffer is updated.
   1.642 +
   1.643 +In general, a TUint32 corresponds to a LONG type in a resource STRUCT declaration.
   1.644 +
   1.645 +Note that in Symbian OS a TUint is the same size as a TUint32.
   1.646 +
   1.647 +@internalComponent
   1.648 +@pre iCurrentPtr != NULL.
   1.649 +@pre The same as MovePtrL(const TUint8* aPtr).
   1.650 +@return The TUint32 value taken from the resource buffer.
   1.651 +@post The same as MovePtrL(const TUint8* aPtr).
   1.652 +@leave The same as MovePtrL(const TUint8* aPtr).
   1.653 +@panic The same as MovePtrL(const TUint8* aPtr).
   1.654 +@panic BAFL 79 iCurrentPtr is NULL. DEBUG build only.
   1.655 +@see MovePtrL(const TUint8* aPtr) */
   1.656 +TUint TResourceReaderImpl::ReadUint32L()
   1.657 +    {
   1.658 +	__ASSERT_DEBUG(iCurrentPtr != NULL, Panic(EBafPanicNullPtr10));
   1.659 +    if (((TUint)iCurrentPtr)%4)
   1.660 +        {
   1.661 +        TUint32 ret;
   1.662 +        ReadL(&ret,sizeof(ret));
   1.663 +        return(ret);
   1.664 +        }
   1.665 +    const TUint8* currentPtr=iCurrentPtr;
   1.666 +    MovePtrL(currentPtr+sizeof(TUint32));
   1.667 +    return(*(TUint32*)currentPtr);
   1.668 +    }
   1.669 +
   1.670 +/** Interprets the data at the current buffer position as a TReal64 type and returns 
   1.671 +the value as a TReal64.
   1.672 +
   1.673 +The current position within the resource buffer is updated.
   1.674 +
   1.675 +In general, a TReal64 corresponds to a DOUBLE type in a resource STRUCT declaration.
   1.676 +
   1.677 +@internalComponent
   1.678 +@pre The same as ReadUint32L().
   1.679 +@return The TReal64 value taken from the resource buffer.
   1.680 +@post The same as ReadUint32L().
   1.681 +@leave The same as ReadUint32L().
   1.682 +@panic The same as ReadUint32L().
   1.683 +@see ReadUint32L() */
   1.684 +TReal64 TResourceReaderImpl::ReadReal64L() __SOFTFP
   1.685 +    {
   1.686 +    union
   1.687 +        {
   1.688 +        TReal64 ret;
   1.689 +        TUint32 tmp[2];
   1.690 +        };
   1.691 +#if defined(__DOUBLE_WORDS_SWAPPED__)
   1.692 +    tmp[1]=ReadUint32L();
   1.693 +    tmp[0]=ReadUint32L();
   1.694 +#else
   1.695 +    tmp[0]=ReadUint32L();
   1.696 +    tmp[1]=ReadUint32L();
   1.697 +#endif
   1.698 +    return(ret);
   1.699 +    }
   1.700 +
   1.701 +/** Copies a specified length of data from the resource buffer, starting at the 
   1.702 +current position within the buffer, into the location pointed to by a specified 
   1.703 +pointer. No assumption is made about the type of data at being read.
   1.704 +
   1.705 +The current position within the resource buffer is updated.
   1.706 +
   1.707 +@internalComponent
   1.708 +@pre iCurrentPtr != NULL.
   1.709 +@pre The same as MovePtrL(const TUint8* aPtr).
   1.710 +@param aPtr Pointer to the target location for data copied from the resource buffer.
   1.711 +@param  aLength The length of data to be copied from the resource buffer.
   1.712 +@post The same as MovePtrL(const TUint8* aPtr).
   1.713 +@leave The same as MovePtrL(const TUint8* aPtr).
   1.714 +@panic The same as MovePtrL(const TUint8* aPtr).
   1.715 +@panic BAFL 80 iCurrentPtr is NULL. DEBUG build only.
   1.716 +@see MovePtrL(const TUint8* aPtr) */
   1.717 +void TResourceReaderImpl::ReadL(TAny* aPtr,TInt aLength)
   1.718 +    {
   1.719 +	__ASSERT_DEBUG(iCurrentPtr != NULL, Panic(EBafPanicNullPtr11));
   1.720 +    const TUint8* currentPtr=iCurrentPtr;
   1.721 +    MovePtrL(currentPtr+aLength);
   1.722 +    Mem::Copy(aPtr,currentPtr,aLength);
   1.723 +    }
   1.724 +
   1.725 +/** Moves the current buffer position backwards by the specified amount.
   1.726 +
   1.727 +@internalComponent
   1.728 +@pre iCurrentPtr != NULL.
   1.729 +@param aLength The length by which the current position is to be moved backward.
   1.730 +@post iCurrentPtr is updated.
   1.731 +@leave @see MovePtrL(const TUint8* aPtr).
   1.732 +@panic BAFL 5 If the resulting position lies before the start of the resource.
   1.733 +@panic BAFL 81 iCurrentPtr is NULL. DEBUG build only.
   1.734 +@leave KErrArgument The resulting position lies before the start of the resource. */
   1.735 +void TResourceReaderImpl::RewindL(TInt aLength)
   1.736 +    {
   1.737 +	__ASSERT_DEBUG(iCurrentPtr != NULL, Panic(EBafPanicNullPtr12));
   1.738 +	iAssertObj.AssertRelL(!(aLength>iCurrentPtr-iBuffer->Ptr()),EBafPanicResourceReaderStartExceeded);
   1.739 +    iCurrentPtr-=aLength;
   1.740 +    }
   1.741 +
   1.742 +/** Moves the current buffer position forwards by the specified amount.
   1.743 +
   1.744 +@internalComponent
   1.745 +@pre The same as MovePtrL(const TUint8* aPtr).
   1.746 +@param aLength The length by which the current position is to be advanced.
   1.747 +@post The same as MovePtrL(const TUint8* aPtr).
   1.748 +@leave The same as MovePtrL(const TUint8* aPtr).
   1.749 +@panic The same as MovePtrL(const TUint8* aPtr).
   1.750 +@panic BAFL 82 iCurrentPtr is NULL. DEBUG build only.
   1.751 +@see MovePtrL(const TUint8* aPtr) */
   1.752 +void TResourceReaderImpl::AdvanceL(TInt aLength)
   1.753 +	{
   1.754 +	__ASSERT_DEBUG(iCurrentPtr != NULL, Panic(EBafPanicNullPtr13));
   1.755 +	MovePtrL(iCurrentPtr+aLength);
   1.756 +	}
   1.757 +
   1.758 +/** The method sets a new iAssertObj. 
   1.759 +If some method is called and something goes wrong - the method either
   1.760 +will panics or asserts depending on iAssertObj state.
   1.761 +
   1.762 +@internalComponent
   1.763 +@param  aAssertObj The assert object.
   1.764 +@post iAssertObj is updated. */
   1.765 +void TResourceReaderImpl::SetAssertObj(const TBaAssert& aAssertObj)
   1.766 +	{
   1.767 +	iAssertObj = aAssertObj;
   1.768 +	}
   1.769 +