os/ossrv/lowlevellibsandfws/apputils/src/BARSREAD.CPP
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/apputils/src/BARSREAD.CPP	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,622 @@
     1.4 +// Copyright (c) 1997-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 <barsread.h>
    1.22 +#include "BaRsReadImpl.h"
    1.23 +
    1.24 +#define UNUSED_VAR(a) a = a
    1.25 +
    1.26 +/** Sets the buffer containing the resource data.
    1.27 +
    1.28 +The current position within the buffer is set to the start of the buffer so 
    1.29 +that subsequent calls to the interpreting functions, for example ReadInt8(), 
    1.30 +start at the beginning of this buffer.
    1.31 +
    1.32 +@param aBuffer A pointer to an 8-bit non-modifiable descriptor containing 
    1.33 +or representing resource data. */
    1.34 +EXPORT_C void TResourceReader::SetBuffer(const TDesC8* aBuffer)
    1.35 +	{
    1.36 +	CreateImpl();
    1.37 +	Impl()->SetBuffer(aBuffer);
    1.38 +	}
    1.39 +
    1.40 +/** Returns the current position within the resource buffer. 
    1.41 +
    1.42 +The function makes no assumption about the type of data in the buffer at the 
    1.43 +current position.
    1.44 +
    1.45 +@return A pointer to the current position within the resource buffer. */
    1.46 +EXPORT_C const TAny* TResourceReader::Ptr()
    1.47 +    {
    1.48 +	return Impl()->Ptr();
    1.49 +    }
    1.50 +
    1.51 +/** Interprets the data at the current buffer position as leading byte count data 
    1.52 +and constructs an 8 bit heap descriptor containing a copy of this data.
    1.53 +
    1.54 +The data is interpreted as:
    1.55 +
    1.56 +a byte value defining the number of 8 bit text characters or the length of 
    1.57 +binary data (the resource string/binary data length is limited to 255 characters max)
    1.58 +
    1.59 +followed by:
    1.60 +
    1.61 +the 8 bit text characters or binary data.
    1.62 +
    1.63 +If the value of the leading byte is zero, the function assumes that no data 
    1.64 +follows the leading byte and returns a NULL pointer.
    1.65 +
    1.66 +The current position within the resource buffer is updated. If the resulting 
    1.67 +position lies beyond the end of the resource buffer, then the function raises 
    1.68 +a BAFL 4 panic.
    1.69 +
    1.70 +Use this explicit 8-bit variant when the resource contains binary data. If 
    1.71 +the resource contains text, then use the build independent variant ReadHBufCL().
    1.72 +
    1.73 +In general, this type of resource data corresponds to one of the following:
    1.74 +
    1.75 +a LTEXT type in a resource STRUCT declaration.
    1.76 +
    1.77 +a variable length array within a STRUCT declaration which includes the LEN 
    1.78 +BYTE keywords.
    1.79 +
    1.80 +@return A pointer to the 8-bit heap descriptor containing a copy of the data 
    1.81 +following the leading byte count at the current position within the resource 
    1.82 +buffer. The pointer can be NULL. */
    1.83 +EXPORT_C HBufC8* TResourceReader::ReadHBufC8L()
    1.84 +	{
    1.85 +	return Impl()->ReadHBufC8L();
    1.86 +	}
    1.87 +
    1.88 +/** Interprets the data at the current buffer position as leading byte count data 
    1.89 +and constructs a 16 bit heap descriptor containing a copy of this data.
    1.90 +
    1.91 +The data is interpreted as:
    1.92 +
    1.93 +a byte value defining the number of 16 bit text characters
    1.94 +(the resource string/binary data length is limited to 255 characters max)
    1.95 +
    1.96 +followed by:
    1.97 +
    1.98 +the 16 bit text characters.
    1.99 +
   1.100 +If the value of the leading byte is zero, the function assumes that no data 
   1.101 +follows the leading byte and returns a NULL pointer.
   1.102 +
   1.103 +The current position within the resource buffer is updated. If the resulting 
   1.104 +position lies beyond the end of the resource buffer, then the function raises 
   1.105 +a BAFL 4 panic.
   1.106 +
   1.107 +Do not use this explicit 16-bit variant when the resource contains binary 
   1.108 +data; use the explicit 8-bit variant instead. If the resource contains text, 
   1.109 +use the build independent variant ReadHBufCL().
   1.110 +
   1.111 +@return A pointer to the 16-bit heap descriptor containing a copy of the 
   1.112 +data following the leading byte count at the current position within the resource 
   1.113 +buffer. The pointer can be NULL. */
   1.114 +EXPORT_C HBufC16* TResourceReader::ReadHBufC16L()
   1.115 +	{
   1.116 +	return Impl()->ReadHBufC16L();
   1.117 +	}
   1.118 +
   1.119 +/** Interprets the data at the current buffer position as leading byte count data 
   1.120 +and constructs an 8 bit non modifiable pointer descriptor to represent this 
   1.121 +data.
   1.122 +
   1.123 +The data is interpreted as:
   1.124 +
   1.125 +a byte value defining the number of text characters or the length of binary 
   1.126 +data (the resource string/binary data length is limited to 255 characters max)
   1.127 +
   1.128 +followed by:
   1.129 +
   1.130 +the 8 bit text characters or binary data.
   1.131 +
   1.132 +If the value of the leading byte is zero, calling Length() on the returned 
   1.133 +TPtrC8 returns zero.
   1.134 +
   1.135 +The current position within the resource buffer is updated. If the resulting 
   1.136 +position lies beyond the end of the resource buffer, then the function raises 
   1.137 +a BAFL 4 panic.
   1.138 +
   1.139 +Use this explicit 8-bit variant when the resource contains binary data. If 
   1.140 +the resource contains text, then use the build independent variant ReadTPtrC().
   1.141 +
   1.142 +In general, this type of resource data corresponds to one of the following:
   1.143 +
   1.144 +a LTEXT type in a resource STRUCT declaration.
   1.145 +
   1.146 +a variable length array within a STRUCT declaration which includes the LEN 
   1.147 +BYTE keywords.
   1.148 +
   1.149 +@return An 8-bit non modifiable pointer descriptor representing the data 
   1.150 +following the leading byte count at the current position within the resource 
   1.151 +buffer. */
   1.152 +EXPORT_C TPtrC8 TResourceReader::ReadTPtrC8()
   1.153 +	{
   1.154 +	TPtrC8 retPtr;
   1.155 +	// TRAP and ignore the Error code as its non leaving method
   1.156 +	TRAPD(errCode, retPtr.Set(ReadTPtrC8L ()));
   1.157 +    UNUSED_VAR(errCode);
   1.158 +	return retPtr;
   1.159 +	}
   1.160 +
   1.161 +TPtrC8 TResourceReader::ReadTPtrC8L()
   1.162 +	{
   1.163 +	return Impl()->ReadTPtrC8L();
   1.164 +	}
   1.165 +
   1.166 +
   1.167 +/** Interprets the data at the current buffer position as leading byte count data 
   1.168 +and constructs a 16 bit non modifiable pointer descriptor to represent this 
   1.169 +data.
   1.170 +
   1.171 +The data is interpreted as:
   1.172 +
   1.173 +a byte value defining the number of 16 bit text characters
   1.174 +(the resource string/binary data length is limited to 255 characters max)
   1.175 +
   1.176 +followed by:
   1.177 +
   1.178 +the 16 bit text characters.
   1.179 +
   1.180 +If the value of the leading byte is zero, calling Length() on the returned 
   1.181 +TPtrC16 returns zero.
   1.182 +
   1.183 +The current position within the resource buffer is updated. If the resulting 
   1.184 +position lies beyond the end of the resource buffer, then the function raises 
   1.185 +a BAFL 4 panic.
   1.186 +
   1.187 +Do not use this explicit 16-bit variant when the resource contains binary 
   1.188 +data; use the explicit 8-bit variant instead. If the resource contains text, 
   1.189 +use the build independent variant ReadTPtrC().
   1.190 +
   1.191 +@return A 16-bit non modifiable pointer descriptor representing the data 
   1.192 +following the leading byte count at the current position within the resource 
   1.193 +buffer. */
   1.194 +EXPORT_C TPtrC16 TResourceReader::ReadTPtrC16()
   1.195 +	{
   1.196 +	TPtrC16 retPtr;
   1.197 +	// TRAP and ignore the Error code as its non leaving method
   1.198 +	TRAPD(errCode, retPtr.Set(ReadTPtrC16L ()));
   1.199 +    UNUSED_VAR(errCode);
   1.200 +	return retPtr;
   1.201 +	}
   1.202 +
   1.203 +TPtrC16 TResourceReader::ReadTPtrC16L()
   1.204 +	{
   1.205 +	return Impl()->ReadTPtrC16L();
   1.206 +	}
   1.207 +
   1.208 +/** Interprets the data within the specified resource buffer as an array of leading 
   1.209 +byte count data and constructs an 8 bit non modifiable pointer descriptor 
   1.210 +to represent an element within this array.
   1.211 +
   1.212 +The function sets the buffer containing the resource data and sets the current 
   1.213 +position to the start of this buffer. Any buffer set by a previous call to 
   1.214 +SetBuffer() etc, is lost.
   1.215 +
   1.216 +The buffer is expected to contain an array of data elements preceded by a 
   1.217 +TInt16 value defining the number of elements within that array.
   1.218 +
   1.219 +Each element of the array is interpreted as:
   1.220 +
   1.221 +a byte value defining the number of 8 bit text characters or the length of 
   1.222 +binary data (the resource string/binary data length is limited to 255 characters max)
   1.223 +
   1.224 +followed by:
   1.225 +
   1.226 +the 8 bit text characters or binary data.
   1.227 +
   1.228 +If the value of the leading byte is zero, calling Length() on the returned 
   1.229 +TPtrC8 returns zero.
   1.230 +
   1.231 +The current position within the resource buffer is updated. If the resulting 
   1.232 +position lies beyond the end of the resource buffer, then the function raises 
   1.233 +a BAFL 4 panic.
   1.234 +
   1.235 +Use this explicit 8 bit variant when the resource contains binary data, If 
   1.236 +the resource contains text, then use the build independent variant ReadTPtrC(TInt,const TDesC8*).
   1.237 +
   1.238 +@param aIndex The position of the element within the array. This value is 
   1.239 +relative to zero.
   1.240 +@param aBuffer The buffer containing the resource data.
   1.241 +@return An 8-bit non modifiable pointer descriptor representing the data following 
   1.242 +the leading byte count of the element at the specified position within the 
   1.243 +array. */
   1.244 +EXPORT_C TPtrC8 TResourceReader::ReadTPtrC8(TInt aIndex,const TDesC8* aBuffer)
   1.245 +    {
   1.246 +	TPtrC8 retPtr;
   1.247 +	// TRAP and ignore the Error code as its non leaving method
   1.248 +	TRAPD(errCode, retPtr.Set(ReadTPtrC8L(aIndex, aBuffer)));
   1.249 +    UNUSED_VAR(errCode);
   1.250 +	return retPtr;
   1.251 +    }
   1.252 +
   1.253 +TPtrC8 TResourceReader::ReadTPtrC8L(TInt aIndex,const TDesC8* aBuffer)
   1.254 +    {
   1.255 +	CreateImpl();
   1.256 +	return Impl()->ReadTPtrC8L(aIndex,aBuffer);
   1.257 +    }
   1.258 +
   1.259 +/** Interprets the data within the specified resource buffer as an array of leading 
   1.260 +byte count data and constructs a 16 bit non modifiable pointer descriptor 
   1.261 +to represent an element within this array.
   1.262 +
   1.263 +The function sets the buffer containing the resource data and sets the current 
   1.264 +position to the start of this buffer. Any buffer set by a previous call to 
   1.265 +SetBuffer() etc., is lost.
   1.266 +
   1.267 +The buffer is expected to contain an array of data elements preceded by a 
   1.268 +TInt16 value defining the number of elements within that array.
   1.269 +
   1.270 +Each element of the array is interpreted as:
   1.271 +
   1.272 +a byte value defining the number of 8 bit text characters or the length of 
   1.273 +binary data (the resource string/binary data length is limited to 255 characters max)
   1.274 +
   1.275 +followed by:
   1.276 +
   1.277 +the 16 bit text characters.
   1.278 +
   1.279 +If the value of the leading byte is zero, calling Length() on the returned 
   1.280 +TPtrC16 returns zero.
   1.281 +
   1.282 +The current position within the resource buffer is updated. If the resulting 
   1.283 +position lies beyond the end of the resource buffer, then the function raises 
   1.284 +a BAFL 4 panic.
   1.285 +
   1.286 +Do not use this explicit 16-bit variant when the resource contains binary 
   1.287 +data; use the explicit 8-bit variant instead. If the resource contains text, 
   1.288 +use the build independent variant ReadTPtrC(TInt,const TDesC8*).
   1.289 +
   1.290 +@param aIndex The position of the element within the array. This value is 
   1.291 +relative to zero.
   1.292 +@param aBuffer The buffer containing the resource data.
   1.293 +@return A 16-bit non modifiable pointer descriptor representing the data following 
   1.294 +the leading byte count of the element at position within the array */
   1.295 +EXPORT_C TPtrC16 TResourceReader::ReadTPtrC16(TInt aIndex,const TDesC8* aBuffer)
   1.296 +    {
   1.297 +	TPtrC16 retPtr;
   1.298 +	// TRAP and ignore the Error code as its non leaving method
   1.299 +	TRAPD(errCode, retPtr.Set(ReadTPtrC16L(aIndex, aBuffer)));
   1.300 +    UNUSED_VAR(errCode);
   1.301 +	return retPtr;
   1.302 +    }
   1.303 +
   1.304 +TPtrC16 TResourceReader::ReadTPtrC16L(TInt aIndex,const TDesC8* aBuffer)
   1.305 +    {
   1.306 +	CreateImpl();
   1.307 +	return Impl()->ReadTPtrC16L(aIndex,aBuffer);
   1.308 +    }
   1.309 +
   1.310 +/** Interprets the data at the current buffer position as an array of leading byte 
   1.311 +count data and constructs a flat array of 8 bit descriptors.
   1.312 +
   1.313 +Each descriptor in the descriptor array corresponds to an element of the resource 
   1.314 +array.
   1.315 +
   1.316 +At the current buffer position, the buffer is expected to contain an array 
   1.317 +of data elements preceded by a TInt16 value defining the number of elements 
   1.318 +within that array.
   1.319 +
   1.320 +Each element of the array is interpreted as:
   1.321 +
   1.322 +a byte value defining the number of 8 bit text characters or the length of 
   1.323 +binary data (the resource string/binary data length is limited to 255 characters max)
   1.324 +
   1.325 +followed by:
   1.326 +
   1.327 +the text characters or binary data.
   1.328 +
   1.329 +The current position within the resource buffer is updated. If the resulting 
   1.330 +position lies beyond the end of the resource buffer, then the function raises 
   1.331 +a BAFL 4 panic.
   1.332 +
   1.333 +Use this explicit 8-bit variant when the resource contains binary data. If 
   1.334 +the elements of the resource array contain text, use the build independent 
   1.335 +variant of ReadDesCArrayL().
   1.336 +
   1.337 +@return A pointer to an 8-bit variant flat descriptor array. */
   1.338 +EXPORT_C CDesC8ArrayFlat* TResourceReader::ReadDesC8ArrayL()
   1.339 +    {
   1.340 +	return Impl()->ReadDesC8ArrayL();
   1.341 +    }
   1.342 +
   1.343 +/** Interprets the data at the current buffer position as an array of leading byte 
   1.344 +count data and constructs a flat array of 16 bit descriptors.
   1.345 +
   1.346 +Each descriptor in the descriptor array corresponds to an element of the resource 
   1.347 +array.
   1.348 +
   1.349 +At the current buffer position, the buffer is expected to contain an array 
   1.350 +of data elements preceded by a TInt16 value defining the number of elements 
   1.351 +within that array.
   1.352 +
   1.353 +Each element of the array is interpreted as:
   1.354 +
   1.355 +a byte value defining the number of 8 bit text characters or the length of 
   1.356 +binary data (the resource string/binary data length is limited to 255 characters max)
   1.357 +
   1.358 +followed by:
   1.359 +
   1.360 +the 16 bit text characters.
   1.361 +
   1.362 +The current position within the resource buffer is updated. If the resulting 
   1.363 +position lies beyond the end of the resource buffer, then the function raises 
   1.364 +a BAFL 4 panic.
   1.365 +
   1.366 +Do not use this explicit 16-bit variant when the resource contains binary 
   1.367 +data; use the explicit 8-bit variant instead. If the resource contains text, 
   1.368 +use the build independent variant ReadDesCArrayL().
   1.369 +
   1.370 +@return A pointer to a 16-bit variant flat descriptor array. */
   1.371 +EXPORT_C CDesC16ArrayFlat* TResourceReader::ReadDesC16ArrayL()
   1.372 +    {
   1.373 +	return Impl()->ReadDesC16ArrayL();
   1.374 +    }
   1.375 +
   1.376 +/** Interprets the data at the current buffer position as a TInt8 type and returns 
   1.377 +the value as a TInt.
   1.378 +
   1.379 +The current position within the resource buffer is updated. If the resulting 
   1.380 +position lies beyond the end of the resource buffer, then the function raises 
   1.381 +a BAFL 4 panic.
   1.382 +
   1.383 +In general, a TInt8 corresponds to a BYTE type in a resource STRUCT declaration.
   1.384 +
   1.385 +Note that in Symbian OS, a TInt is at least as big as a TInt8.
   1.386 +
   1.387 +@return The TInt8 value taken from the resource buffer. */
   1.388 +EXPORT_C TInt TResourceReader::ReadInt8()
   1.389 +    {
   1.390 +	TInt retInt=0;
   1.391 +	// TRAP and ignore the Error code as its non leaving method
   1.392 +	TRAPD(errCode, retInt=ReadInt8L());
   1.393 +    UNUSED_VAR(errCode);
   1.394 +	return retInt;
   1.395 +    }
   1.396 +
   1.397 +TInt TResourceReader::ReadInt8L()
   1.398 +    {
   1.399 +	return Impl()->ReadInt8L();
   1.400 +    }
   1.401 +
   1.402 +/** Interprets the data at the current buffer position as a TUint8 type and returns 
   1.403 +the value as a TUint.
   1.404 +
   1.405 +The current position within the resource buffer is updated. If the resulting 
   1.406 +position lies beyond the end of the resource buffer, then the function raises 
   1.407 +a BAFL 4 panic.
   1.408 +
   1.409 +In general, a TUint8 corresponds to a BYTE type in a resource STRUCT declaration.
   1.410 +
   1.411 +Note that in Symbian OS, a TUint is at least as big as a TUint8.
   1.412 +
   1.413 +@return The TUint8 value taken from the resource buffer. */
   1.414 +EXPORT_C TUint TResourceReader::ReadUint8()
   1.415 +    {
   1.416 +	TUint retInt=0;
   1.417 +	// TRAP and ignore the Error code as its non leaving method
   1.418 +	TRAPD(errCode, retInt=ReadUint8L());
   1.419 +    UNUSED_VAR(errCode);
   1.420 +	return retInt;
   1.421 +    }
   1.422 +
   1.423 +TUint TResourceReader::ReadUint8L()
   1.424 +    {
   1.425 +	return Impl()->ReadUint8L();
   1.426 +    }
   1.427 +
   1.428 +/** Interprets the data at the current buffer position as a TInt16 type and returns 
   1.429 +the value as a TInt.
   1.430 +
   1.431 +The current position within the resource buffer is updated. If the resulting 
   1.432 +position lies beyond the end of the resource buffer, then the function raises 
   1.433 +a BAFL 4 panic.
   1.434 +
   1.435 +In general, a TInt16 corresponds to a WORD type in a resource STRUCT declaration.
   1.436 +
   1.437 +Note that in Symbian OS, a TInt is at least as big as a TInt16.
   1.438 +
   1.439 +@return The TInt16 value taken from the resource buffer. */
   1.440 +EXPORT_C TInt TResourceReader::ReadInt16()
   1.441 +    {
   1.442 +	TInt retInt=0;
   1.443 +	// TRAP and ignore the Error code as its non leaving method
   1.444 +	TRAPD(errCode, retInt=ReadInt16L());
   1.445 +    UNUSED_VAR(errCode);
   1.446 +	return retInt;
   1.447 +    }
   1.448 +
   1.449 +TInt TResourceReader::ReadInt16L()
   1.450 +    {
   1.451 +	return Impl()->ReadInt16L();
   1.452 +    }
   1.453 +
   1.454 +/** Interprets the data at the current buffer position as a TUint16 type and returns 
   1.455 +the value as a TUint.
   1.456 +
   1.457 +The current position within the resource buffer is updated. If the resulting 
   1.458 +position lies beyond the end of the resource buffer, then the function raises 
   1.459 +a BAFL 4 panic.
   1.460 +
   1.461 +In general, a TUint16 corresponds to a WORD type in a resource STRUCT declaration.
   1.462 +
   1.463 +Note that in Symbian OS, a TUint is at least as big as a TUint16.
   1.464 +
   1.465 +@return The TUint16 value taken from the resource buffer. */
   1.466 +EXPORT_C TUint TResourceReader::ReadUint16()
   1.467 +    {
   1.468 +	TUint retInt=0;
   1.469 +	// TRAP and ignore the Error code as its non leaving method
   1.470 +	TRAPD(errCode, retInt=ReadUint16L());
   1.471 +    UNUSED_VAR(errCode);
   1.472 +	return retInt;
   1.473 +    }
   1.474 +
   1.475 +TUint TResourceReader::ReadUint16L()
   1.476 +    {
   1.477 +	return Impl()->ReadUint16L();
   1.478 +    }
   1.479 +
   1.480 +/** Interprets the data at the current buffer position as a TInt32 type and returns 
   1.481 +the value as a TInt.
   1.482 +
   1.483 +The current position within the resource buffer is updated. If the resulting 
   1.484 +position lies beyond the end of the resource buffer, then the function raises 
   1.485 +a BAFL 4 panic.
   1.486 +
   1.487 +In general, a TInt32 corresponds to a LONG type in a resource STRUCT declaration.
   1.488 +
   1.489 +Note that in Symbian OS, TInt and TInt32 are the same size.
   1.490 +
   1.491 +@return The TInt32 value taken from the resource buffer. */
   1.492 +EXPORT_C TInt TResourceReader::ReadInt32()
   1.493 +    {
   1.494 +	TInt retInt=0;
   1.495 +	// TRAP and ignore the Error code as its non leaving method
   1.496 +	TRAPD(errCode, retInt=ReadInt32L());
   1.497 +    UNUSED_VAR(errCode);
   1.498 +	return retInt;
   1.499 +    }
   1.500 +
   1.501 +TInt TResourceReader::ReadInt32L()
   1.502 +    {
   1.503 +	return Impl()->ReadInt32L();
   1.504 +    }
   1.505 +
   1.506 +/** Interprets the data at the current buffer position as a TUint32 type and returns 
   1.507 +the value as a TUint.
   1.508 +
   1.509 +The current position within the resource buffer is updated. If the resulting 
   1.510 +position lies beyond the end of the resource buffer, then the function raises 
   1.511 +a BAFL 4 panic.
   1.512 +
   1.513 +In general, a TUint32 corresponds to a LONG type in a resource STRUCT declaration.
   1.514 +
   1.515 +Note that in Symbian OS a TUint is the same size as a TUint32.
   1.516 +
   1.517 +@return The TUint32 value taken from the resource buffer. */
   1.518 +EXPORT_C TUint TResourceReader::ReadUint32()
   1.519 +    {
   1.520 +	TUint retInt=0;
   1.521 +	// TRAP and ignore the Error code as its non leaving method
   1.522 +	TRAPD(errCode, retInt=ReadUint32L());
   1.523 +    UNUSED_VAR(errCode);
   1.524 +	return retInt;
   1.525 +    }
   1.526 +
   1.527 +TUint TResourceReader::ReadUint32L()
   1.528 +    {
   1.529 +	return Impl()->ReadUint32L();
   1.530 +    }
   1.531 +
   1.532 +/** Interprets the data at the current buffer position as a TReal64 type and returns 
   1.533 +the value as a TReal64.
   1.534 +
   1.535 +The current position within the resource buffer is updated. If the resulting 
   1.536 +position lies beyond the end of the resource buffer, then the function raises 
   1.537 +a BAFL 4 panic.
   1.538 +
   1.539 +In general, a TReal64 corresponds to a DOUBLE type in a resource STRUCT declaration.
   1.540 +
   1.541 +@return The TReal64 value taken from the resource buffer. */
   1.542 +EXPORT_C TReal64 TResourceReader::ReadReal64() __SOFTFP
   1.543 +    {
   1.544 +	TReal64 retReal=0;
   1.545 +	// TRAP and ignore the Error code as its non leaving method
   1.546 +	TRAPD(errCode, retReal=ReadReal64L());
   1.547 +    UNUSED_VAR(errCode);
   1.548 +	return retReal;
   1.549 +    }
   1.550 +
   1.551 +TReal64 TResourceReader::ReadReal64L() __SOFTFP
   1.552 +    {
   1.553 +	return Impl()->ReadReal64L();
   1.554 +    }
   1.555 +
   1.556 +/** Copies a specified length of data from the resource buffer, starting at the 
   1.557 +current position within the buffer, into the location pointed to by a specified 
   1.558 +pointer. No assumption is made about the type of data at being read.
   1.559 +
   1.560 +The current position within the resource buffer is updated. If the resulting 
   1.561 +position lies beyond the end of the resource buffer, then the function raises 
   1.562 +a BAFL 4 panic.
   1.563 +
   1.564 +@param aPtr A pointer to the target location for data copied from the resource 
   1.565 +buffer.
   1.566 +@param aLength The length of data to be copied from the resource buffer. */
   1.567 +EXPORT_C void TResourceReader::Read(TAny* aPtr,TInt aLength)
   1.568 +    {
   1.569 +	// TRAP and ignore the Error code as its non leaving method
   1.570 +	TRAPD(errCode, Impl()->ReadL(aPtr,aLength));
   1.571 +    UNUSED_VAR(errCode);
   1.572 +    }
   1.573 +
   1.574 +/** Moves the current buffer position backwards by the specified amount.
   1.575 +
   1.576 +If the resulting position lies before the start of the resource buffer, then 
   1.577 +the function raises a BAFL 5 panic.
   1.578 +
   1.579 +@param aLength The length by which the current position is to be moved backward. */
   1.580 +EXPORT_C void TResourceReader::Rewind(TInt aLength)
   1.581 +    {
   1.582 +	// TRAP and ignore the Error code as its non leaving method
   1.583 +	TRAPD(errCode, Impl()->RewindL(aLength));
   1.584 +    UNUSED_VAR(errCode);
   1.585 +    }
   1.586 +
   1.587 +/** Moves the current buffer position forwards by the specified amount.
   1.588 +
   1.589 +If the resulting position lies beyond the end of the resource buffer, then 
   1.590 +the function raises a BAFL 4 panic.
   1.591 +
   1.592 +@param aLength The length by which the current position is to be advanced. */
   1.593 +EXPORT_C void TResourceReader::Advance(TInt aLength)
   1.594 +	{
   1.595 +	// TRAP and ignore the Error code as its non leaving method
   1.596 +	TRAPD(errCode, Impl()->AdvanceL(aLength));
   1.597 +    UNUSED_VAR(errCode);
   1.598 +	}
   1.599 +
   1.600 +/** Placement new operator is used TResourceReaderImpl instance to be created.
   1.601 +TResourceReaderImpl instance default behaviour - it will panic when there is a problem.
   1.602 +
   1.603 +@internalComponent */
   1.604 +void TResourceReader::CreateImpl()
   1.605 +	{
   1.606 +	new (iImpl) TResourceReaderImpl;
   1.607 +	}
   1.608 +
   1.609 +/** Placement new operator is used TResourceReaderImpl instance to be created.
   1.610 +TResourceReaderImpl instance default behaviour - it will panic when there is a problem.
   1.611 +
   1.612 +@internalComponent */
   1.613 +TResourceReaderImpl* TResourceReader::Impl()
   1.614 +	{
   1.615 +	return reinterpret_cast <TResourceReaderImpl*> (iImpl);
   1.616 +	}
   1.617 +
   1.618 +/** The method returns a const pointer to TResourceReader implementation.
   1.619 +
   1.620 +@internalComponent */
   1.621 +const TResourceReaderImpl* TResourceReader::Impl() const
   1.622 +	{
   1.623 +	return reinterpret_cast <const TResourceReaderImpl*> (iImpl);
   1.624 +	}
   1.625 +