os/ossrv/lowlevellibsandfws/apputils/src/BARSREAD.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// Resource reader
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#include <barsread.h>
sl@0
    19
#include "BaRsReadImpl.h"
sl@0
    20
sl@0
    21
#define UNUSED_VAR(a) a = a
sl@0
    22
sl@0
    23
/** Sets the buffer containing the resource data.
sl@0
    24
sl@0
    25
The current position within the buffer is set to the start of the buffer so 
sl@0
    26
that subsequent calls to the interpreting functions, for example ReadInt8(), 
sl@0
    27
start at the beginning of this buffer.
sl@0
    28
sl@0
    29
@param aBuffer A pointer to an 8-bit non-modifiable descriptor containing 
sl@0
    30
or representing resource data. */
sl@0
    31
EXPORT_C void TResourceReader::SetBuffer(const TDesC8* aBuffer)
sl@0
    32
	{
sl@0
    33
	CreateImpl();
sl@0
    34
	Impl()->SetBuffer(aBuffer);
sl@0
    35
	}
sl@0
    36
sl@0
    37
/** Returns the current position within the resource buffer. 
sl@0
    38
sl@0
    39
The function makes no assumption about the type of data in the buffer at the 
sl@0
    40
current position.
sl@0
    41
sl@0
    42
@return A pointer to the current position within the resource buffer. */
sl@0
    43
EXPORT_C const TAny* TResourceReader::Ptr()
sl@0
    44
    {
sl@0
    45
	return Impl()->Ptr();
sl@0
    46
    }
sl@0
    47
sl@0
    48
/** Interprets the data at the current buffer position as leading byte count data 
sl@0
    49
and constructs an 8 bit heap descriptor containing a copy of this data.
sl@0
    50
sl@0
    51
The data is interpreted as:
sl@0
    52
sl@0
    53
a byte value defining the number of 8 bit text characters or the length of 
sl@0
    54
binary data (the resource string/binary data length is limited to 255 characters max)
sl@0
    55
sl@0
    56
followed by:
sl@0
    57
sl@0
    58
the 8 bit text characters or binary data.
sl@0
    59
sl@0
    60
If the value of the leading byte is zero, the function assumes that no data 
sl@0
    61
follows the leading byte and returns a NULL pointer.
sl@0
    62
sl@0
    63
The current position within the resource buffer is updated. If the resulting 
sl@0
    64
position lies beyond the end of the resource buffer, then the function raises 
sl@0
    65
a BAFL 4 panic.
sl@0
    66
sl@0
    67
Use this explicit 8-bit variant when the resource contains binary data. If 
sl@0
    68
the resource contains text, then use the build independent variant ReadHBufCL().
sl@0
    69
sl@0
    70
In general, this type of resource data corresponds to one of the following:
sl@0
    71
sl@0
    72
a LTEXT type in a resource STRUCT declaration.
sl@0
    73
sl@0
    74
a variable length array within a STRUCT declaration which includes the LEN 
sl@0
    75
BYTE keywords.
sl@0
    76
sl@0
    77
@return A pointer to the 8-bit heap descriptor containing a copy of the data 
sl@0
    78
following the leading byte count at the current position within the resource 
sl@0
    79
buffer. The pointer can be NULL. */
sl@0
    80
EXPORT_C HBufC8* TResourceReader::ReadHBufC8L()
sl@0
    81
	{
sl@0
    82
	return Impl()->ReadHBufC8L();
sl@0
    83
	}
sl@0
    84
sl@0
    85
/** Interprets the data at the current buffer position as leading byte count data 
sl@0
    86
and constructs a 16 bit heap descriptor containing a copy of this data.
sl@0
    87
sl@0
    88
The data is interpreted as:
sl@0
    89
sl@0
    90
a byte value defining the number of 16 bit text characters
sl@0
    91
(the resource string/binary data length is limited to 255 characters max)
sl@0
    92
sl@0
    93
followed by:
sl@0
    94
sl@0
    95
the 16 bit text characters.
sl@0
    96
sl@0
    97
If the value of the leading byte is zero, the function assumes that no data 
sl@0
    98
follows the leading byte and returns a NULL pointer.
sl@0
    99
sl@0
   100
The current position within the resource buffer is updated. If the resulting 
sl@0
   101
position lies beyond the end of the resource buffer, then the function raises 
sl@0
   102
a BAFL 4 panic.
sl@0
   103
sl@0
   104
Do not use this explicit 16-bit variant when the resource contains binary 
sl@0
   105
data; use the explicit 8-bit variant instead. If the resource contains text, 
sl@0
   106
use the build independent variant ReadHBufCL().
sl@0
   107
sl@0
   108
@return A pointer to the 16-bit heap descriptor containing a copy of the 
sl@0
   109
data following the leading byte count at the current position within the resource 
sl@0
   110
buffer. The pointer can be NULL. */
sl@0
   111
EXPORT_C HBufC16* TResourceReader::ReadHBufC16L()
sl@0
   112
	{
sl@0
   113
	return Impl()->ReadHBufC16L();
sl@0
   114
	}
sl@0
   115
sl@0
   116
/** Interprets the data at the current buffer position as leading byte count data 
sl@0
   117
and constructs an 8 bit non modifiable pointer descriptor to represent this 
sl@0
   118
data.
sl@0
   119
sl@0
   120
The data is interpreted as:
sl@0
   121
sl@0
   122
a byte value defining the number of text characters or the length of binary 
sl@0
   123
data (the resource string/binary data length is limited to 255 characters max)
sl@0
   124
sl@0
   125
followed by:
sl@0
   126
sl@0
   127
the 8 bit text characters or binary data.
sl@0
   128
sl@0
   129
If the value of the leading byte is zero, calling Length() on the returned 
sl@0
   130
TPtrC8 returns zero.
sl@0
   131
sl@0
   132
The current position within the resource buffer is updated. If the resulting 
sl@0
   133
position lies beyond the end of the resource buffer, then the function raises 
sl@0
   134
a BAFL 4 panic.
sl@0
   135
sl@0
   136
Use this explicit 8-bit variant when the resource contains binary data. If 
sl@0
   137
the resource contains text, then use the build independent variant ReadTPtrC().
sl@0
   138
sl@0
   139
In general, this type of resource data corresponds to one of the following:
sl@0
   140
sl@0
   141
a LTEXT type in a resource STRUCT declaration.
sl@0
   142
sl@0
   143
a variable length array within a STRUCT declaration which includes the LEN 
sl@0
   144
BYTE keywords.
sl@0
   145
sl@0
   146
@return An 8-bit non modifiable pointer descriptor representing the data 
sl@0
   147
following the leading byte count at the current position within the resource 
sl@0
   148
buffer. */
sl@0
   149
EXPORT_C TPtrC8 TResourceReader::ReadTPtrC8()
sl@0
   150
	{
sl@0
   151
	TPtrC8 retPtr;
sl@0
   152
	// TRAP and ignore the Error code as its non leaving method
sl@0
   153
	TRAPD(errCode, retPtr.Set(ReadTPtrC8L ()));
sl@0
   154
    UNUSED_VAR(errCode);
sl@0
   155
	return retPtr;
sl@0
   156
	}
sl@0
   157
sl@0
   158
TPtrC8 TResourceReader::ReadTPtrC8L()
sl@0
   159
	{
sl@0
   160
	return Impl()->ReadTPtrC8L();
sl@0
   161
	}
sl@0
   162
sl@0
   163
sl@0
   164
/** Interprets the data at the current buffer position as leading byte count data 
sl@0
   165
and constructs a 16 bit non modifiable pointer descriptor to represent this 
sl@0
   166
data.
sl@0
   167
sl@0
   168
The data is interpreted as:
sl@0
   169
sl@0
   170
a byte value defining the number of 16 bit text characters
sl@0
   171
(the resource string/binary data length is limited to 255 characters max)
sl@0
   172
sl@0
   173
followed by:
sl@0
   174
sl@0
   175
the 16 bit text characters.
sl@0
   176
sl@0
   177
If the value of the leading byte is zero, calling Length() on the returned 
sl@0
   178
TPtrC16 returns zero.
sl@0
   179
sl@0
   180
The current position within the resource buffer is updated. If the resulting 
sl@0
   181
position lies beyond the end of the resource buffer, then the function raises 
sl@0
   182
a BAFL 4 panic.
sl@0
   183
sl@0
   184
Do not use this explicit 16-bit variant when the resource contains binary 
sl@0
   185
data; use the explicit 8-bit variant instead. If the resource contains text, 
sl@0
   186
use the build independent variant ReadTPtrC().
sl@0
   187
sl@0
   188
@return A 16-bit non modifiable pointer descriptor representing the data 
sl@0
   189
following the leading byte count at the current position within the resource 
sl@0
   190
buffer. */
sl@0
   191
EXPORT_C TPtrC16 TResourceReader::ReadTPtrC16()
sl@0
   192
	{
sl@0
   193
	TPtrC16 retPtr;
sl@0
   194
	// TRAP and ignore the Error code as its non leaving method
sl@0
   195
	TRAPD(errCode, retPtr.Set(ReadTPtrC16L ()));
sl@0
   196
    UNUSED_VAR(errCode);
sl@0
   197
	return retPtr;
sl@0
   198
	}
sl@0
   199
sl@0
   200
TPtrC16 TResourceReader::ReadTPtrC16L()
sl@0
   201
	{
sl@0
   202
	return Impl()->ReadTPtrC16L();
sl@0
   203
	}
sl@0
   204
sl@0
   205
/** Interprets the data within the specified resource buffer as an array of leading 
sl@0
   206
byte count data and constructs an 8 bit non modifiable pointer descriptor 
sl@0
   207
to represent an element within this array.
sl@0
   208
sl@0
   209
The function sets the buffer containing the resource data and sets the current 
sl@0
   210
position to the start of this buffer. Any buffer set by a previous call to 
sl@0
   211
SetBuffer() etc, is lost.
sl@0
   212
sl@0
   213
The buffer is expected to contain an array of data elements preceded by a 
sl@0
   214
TInt16 value defining the number of elements within that array.
sl@0
   215
sl@0
   216
Each element of the array is interpreted as:
sl@0
   217
sl@0
   218
a byte value defining the number of 8 bit text characters or the length of 
sl@0
   219
binary data (the resource string/binary data length is limited to 255 characters max)
sl@0
   220
sl@0
   221
followed by:
sl@0
   222
sl@0
   223
the 8 bit text characters or binary data.
sl@0
   224
sl@0
   225
If the value of the leading byte is zero, calling Length() on the returned 
sl@0
   226
TPtrC8 returns zero.
sl@0
   227
sl@0
   228
The current position within the resource buffer is updated. If the resulting 
sl@0
   229
position lies beyond the end of the resource buffer, then the function raises 
sl@0
   230
a BAFL 4 panic.
sl@0
   231
sl@0
   232
Use this explicit 8 bit variant when the resource contains binary data, If 
sl@0
   233
the resource contains text, then use the build independent variant ReadTPtrC(TInt,const TDesC8*).
sl@0
   234
sl@0
   235
@param aIndex The position of the element within the array. This value is 
sl@0
   236
relative to zero.
sl@0
   237
@param aBuffer The buffer containing the resource data.
sl@0
   238
@return An 8-bit non modifiable pointer descriptor representing the data following 
sl@0
   239
the leading byte count of the element at the specified position within the 
sl@0
   240
array. */
sl@0
   241
EXPORT_C TPtrC8 TResourceReader::ReadTPtrC8(TInt aIndex,const TDesC8* aBuffer)
sl@0
   242
    {
sl@0
   243
	TPtrC8 retPtr;
sl@0
   244
	// TRAP and ignore the Error code as its non leaving method
sl@0
   245
	TRAPD(errCode, retPtr.Set(ReadTPtrC8L(aIndex, aBuffer)));
sl@0
   246
    UNUSED_VAR(errCode);
sl@0
   247
	return retPtr;
sl@0
   248
    }
sl@0
   249
sl@0
   250
TPtrC8 TResourceReader::ReadTPtrC8L(TInt aIndex,const TDesC8* aBuffer)
sl@0
   251
    {
sl@0
   252
	CreateImpl();
sl@0
   253
	return Impl()->ReadTPtrC8L(aIndex,aBuffer);
sl@0
   254
    }
sl@0
   255
sl@0
   256
/** Interprets the data within the specified resource buffer as an array of leading 
sl@0
   257
byte count data and constructs a 16 bit non modifiable pointer descriptor 
sl@0
   258
to represent an element within this array.
sl@0
   259
sl@0
   260
The function sets the buffer containing the resource data and sets the current 
sl@0
   261
position to the start of this buffer. Any buffer set by a previous call to 
sl@0
   262
SetBuffer() etc., is lost.
sl@0
   263
sl@0
   264
The buffer is expected to contain an array of data elements preceded by a 
sl@0
   265
TInt16 value defining the number of elements within that array.
sl@0
   266
sl@0
   267
Each element of the array is interpreted as:
sl@0
   268
sl@0
   269
a byte value defining the number of 8 bit text characters or the length of 
sl@0
   270
binary data (the resource string/binary data length is limited to 255 characters max)
sl@0
   271
sl@0
   272
followed by:
sl@0
   273
sl@0
   274
the 16 bit text characters.
sl@0
   275
sl@0
   276
If the value of the leading byte is zero, calling Length() on the returned 
sl@0
   277
TPtrC16 returns zero.
sl@0
   278
sl@0
   279
The current position within the resource buffer is updated. If the resulting 
sl@0
   280
position lies beyond the end of the resource buffer, then the function raises 
sl@0
   281
a BAFL 4 panic.
sl@0
   282
sl@0
   283
Do not use this explicit 16-bit variant when the resource contains binary 
sl@0
   284
data; use the explicit 8-bit variant instead. If the resource contains text, 
sl@0
   285
use the build independent variant ReadTPtrC(TInt,const TDesC8*).
sl@0
   286
sl@0
   287
@param aIndex The position of the element within the array. This value is 
sl@0
   288
relative to zero.
sl@0
   289
@param aBuffer The buffer containing the resource data.
sl@0
   290
@return A 16-bit non modifiable pointer descriptor representing the data following 
sl@0
   291
the leading byte count of the element at position within the array */
sl@0
   292
EXPORT_C TPtrC16 TResourceReader::ReadTPtrC16(TInt aIndex,const TDesC8* aBuffer)
sl@0
   293
    {
sl@0
   294
	TPtrC16 retPtr;
sl@0
   295
	// TRAP and ignore the Error code as its non leaving method
sl@0
   296
	TRAPD(errCode, retPtr.Set(ReadTPtrC16L(aIndex, aBuffer)));
sl@0
   297
    UNUSED_VAR(errCode);
sl@0
   298
	return retPtr;
sl@0
   299
    }
sl@0
   300
sl@0
   301
TPtrC16 TResourceReader::ReadTPtrC16L(TInt aIndex,const TDesC8* aBuffer)
sl@0
   302
    {
sl@0
   303
	CreateImpl();
sl@0
   304
	return Impl()->ReadTPtrC16L(aIndex,aBuffer);
sl@0
   305
    }
sl@0
   306
sl@0
   307
/** Interprets the data at the current buffer position as an array of leading byte 
sl@0
   308
count data and constructs a flat array of 8 bit descriptors.
sl@0
   309
sl@0
   310
Each descriptor in the descriptor array corresponds to an element of the resource 
sl@0
   311
array.
sl@0
   312
sl@0
   313
At the current buffer position, the buffer is expected to contain an array 
sl@0
   314
of data elements preceded by a TInt16 value defining the number of elements 
sl@0
   315
within that array.
sl@0
   316
sl@0
   317
Each element of the array is interpreted as:
sl@0
   318
sl@0
   319
a byte value defining the number of 8 bit text characters or the length of 
sl@0
   320
binary data (the resource string/binary data length is limited to 255 characters max)
sl@0
   321
sl@0
   322
followed by:
sl@0
   323
sl@0
   324
the text characters or binary data.
sl@0
   325
sl@0
   326
The current position within the resource buffer is updated. If the resulting 
sl@0
   327
position lies beyond the end of the resource buffer, then the function raises 
sl@0
   328
a BAFL 4 panic.
sl@0
   329
sl@0
   330
Use this explicit 8-bit variant when the resource contains binary data. If 
sl@0
   331
the elements of the resource array contain text, use the build independent 
sl@0
   332
variant of ReadDesCArrayL().
sl@0
   333
sl@0
   334
@return A pointer to an 8-bit variant flat descriptor array. */
sl@0
   335
EXPORT_C CDesC8ArrayFlat* TResourceReader::ReadDesC8ArrayL()
sl@0
   336
    {
sl@0
   337
	return Impl()->ReadDesC8ArrayL();
sl@0
   338
    }
sl@0
   339
sl@0
   340
/** Interprets the data at the current buffer position as an array of leading byte 
sl@0
   341
count data and constructs a flat array of 16 bit descriptors.
sl@0
   342
sl@0
   343
Each descriptor in the descriptor array corresponds to an element of the resource 
sl@0
   344
array.
sl@0
   345
sl@0
   346
At the current buffer position, the buffer is expected to contain an array 
sl@0
   347
of data elements preceded by a TInt16 value defining the number of elements 
sl@0
   348
within that array.
sl@0
   349
sl@0
   350
Each element of the array is interpreted as:
sl@0
   351
sl@0
   352
a byte value defining the number of 8 bit text characters or the length of 
sl@0
   353
binary data (the resource string/binary data length is limited to 255 characters max)
sl@0
   354
sl@0
   355
followed by:
sl@0
   356
sl@0
   357
the 16 bit text characters.
sl@0
   358
sl@0
   359
The current position within the resource buffer is updated. If the resulting 
sl@0
   360
position lies beyond the end of the resource buffer, then the function raises 
sl@0
   361
a BAFL 4 panic.
sl@0
   362
sl@0
   363
Do not use this explicit 16-bit variant when the resource contains binary 
sl@0
   364
data; use the explicit 8-bit variant instead. If the resource contains text, 
sl@0
   365
use the build independent variant ReadDesCArrayL().
sl@0
   366
sl@0
   367
@return A pointer to a 16-bit variant flat descriptor array. */
sl@0
   368
EXPORT_C CDesC16ArrayFlat* TResourceReader::ReadDesC16ArrayL()
sl@0
   369
    {
sl@0
   370
	return Impl()->ReadDesC16ArrayL();
sl@0
   371
    }
sl@0
   372
sl@0
   373
/** Interprets the data at the current buffer position as a TInt8 type and returns 
sl@0
   374
the value as a TInt.
sl@0
   375
sl@0
   376
The current position within the resource buffer is updated. If the resulting 
sl@0
   377
position lies beyond the end of the resource buffer, then the function raises 
sl@0
   378
a BAFL 4 panic.
sl@0
   379
sl@0
   380
In general, a TInt8 corresponds to a BYTE type in a resource STRUCT declaration.
sl@0
   381
sl@0
   382
Note that in Symbian OS, a TInt is at least as big as a TInt8.
sl@0
   383
sl@0
   384
@return The TInt8 value taken from the resource buffer. */
sl@0
   385
EXPORT_C TInt TResourceReader::ReadInt8()
sl@0
   386
    {
sl@0
   387
	TInt retInt=0;
sl@0
   388
	// TRAP and ignore the Error code as its non leaving method
sl@0
   389
	TRAPD(errCode, retInt=ReadInt8L());
sl@0
   390
    UNUSED_VAR(errCode);
sl@0
   391
	return retInt;
sl@0
   392
    }
sl@0
   393
sl@0
   394
TInt TResourceReader::ReadInt8L()
sl@0
   395
    {
sl@0
   396
	return Impl()->ReadInt8L();
sl@0
   397
    }
sl@0
   398
sl@0
   399
/** Interprets the data at the current buffer position as a TUint8 type and returns 
sl@0
   400
the value as a TUint.
sl@0
   401
sl@0
   402
The current position within the resource buffer is updated. If the resulting 
sl@0
   403
position lies beyond the end of the resource buffer, then the function raises 
sl@0
   404
a BAFL 4 panic.
sl@0
   405
sl@0
   406
In general, a TUint8 corresponds to a BYTE type in a resource STRUCT declaration.
sl@0
   407
sl@0
   408
Note that in Symbian OS, a TUint is at least as big as a TUint8.
sl@0
   409
sl@0
   410
@return The TUint8 value taken from the resource buffer. */
sl@0
   411
EXPORT_C TUint TResourceReader::ReadUint8()
sl@0
   412
    {
sl@0
   413
	TUint retInt=0;
sl@0
   414
	// TRAP and ignore the Error code as its non leaving method
sl@0
   415
	TRAPD(errCode, retInt=ReadUint8L());
sl@0
   416
    UNUSED_VAR(errCode);
sl@0
   417
	return retInt;
sl@0
   418
    }
sl@0
   419
sl@0
   420
TUint TResourceReader::ReadUint8L()
sl@0
   421
    {
sl@0
   422
	return Impl()->ReadUint8L();
sl@0
   423
    }
sl@0
   424
sl@0
   425
/** Interprets the data at the current buffer position as a TInt16 type and returns 
sl@0
   426
the value as a TInt.
sl@0
   427
sl@0
   428
The current position within the resource buffer is updated. If the resulting 
sl@0
   429
position lies beyond the end of the resource buffer, then the function raises 
sl@0
   430
a BAFL 4 panic.
sl@0
   431
sl@0
   432
In general, a TInt16 corresponds to a WORD type in a resource STRUCT declaration.
sl@0
   433
sl@0
   434
Note that in Symbian OS, a TInt is at least as big as a TInt16.
sl@0
   435
sl@0
   436
@return The TInt16 value taken from the resource buffer. */
sl@0
   437
EXPORT_C TInt TResourceReader::ReadInt16()
sl@0
   438
    {
sl@0
   439
	TInt retInt=0;
sl@0
   440
	// TRAP and ignore the Error code as its non leaving method
sl@0
   441
	TRAPD(errCode, retInt=ReadInt16L());
sl@0
   442
    UNUSED_VAR(errCode);
sl@0
   443
	return retInt;
sl@0
   444
    }
sl@0
   445
sl@0
   446
TInt TResourceReader::ReadInt16L()
sl@0
   447
    {
sl@0
   448
	return Impl()->ReadInt16L();
sl@0
   449
    }
sl@0
   450
sl@0
   451
/** Interprets the data at the current buffer position as a TUint16 type and returns 
sl@0
   452
the value as a TUint.
sl@0
   453
sl@0
   454
The current position within the resource buffer is updated. If the resulting 
sl@0
   455
position lies beyond the end of the resource buffer, then the function raises 
sl@0
   456
a BAFL 4 panic.
sl@0
   457
sl@0
   458
In general, a TUint16 corresponds to a WORD type in a resource STRUCT declaration.
sl@0
   459
sl@0
   460
Note that in Symbian OS, a TUint is at least as big as a TUint16.
sl@0
   461
sl@0
   462
@return The TUint16 value taken from the resource buffer. */
sl@0
   463
EXPORT_C TUint TResourceReader::ReadUint16()
sl@0
   464
    {
sl@0
   465
	TUint retInt=0;
sl@0
   466
	// TRAP and ignore the Error code as its non leaving method
sl@0
   467
	TRAPD(errCode, retInt=ReadUint16L());
sl@0
   468
    UNUSED_VAR(errCode);
sl@0
   469
	return retInt;
sl@0
   470
    }
sl@0
   471
sl@0
   472
TUint TResourceReader::ReadUint16L()
sl@0
   473
    {
sl@0
   474
	return Impl()->ReadUint16L();
sl@0
   475
    }
sl@0
   476
sl@0
   477
/** Interprets the data at the current buffer position as a TInt32 type and returns 
sl@0
   478
the value as a TInt.
sl@0
   479
sl@0
   480
The current position within the resource buffer is updated. If the resulting 
sl@0
   481
position lies beyond the end of the resource buffer, then the function raises 
sl@0
   482
a BAFL 4 panic.
sl@0
   483
sl@0
   484
In general, a TInt32 corresponds to a LONG type in a resource STRUCT declaration.
sl@0
   485
sl@0
   486
Note that in Symbian OS, TInt and TInt32 are the same size.
sl@0
   487
sl@0
   488
@return The TInt32 value taken from the resource buffer. */
sl@0
   489
EXPORT_C TInt TResourceReader::ReadInt32()
sl@0
   490
    {
sl@0
   491
	TInt retInt=0;
sl@0
   492
	// TRAP and ignore the Error code as its non leaving method
sl@0
   493
	TRAPD(errCode, retInt=ReadInt32L());
sl@0
   494
    UNUSED_VAR(errCode);
sl@0
   495
	return retInt;
sl@0
   496
    }
sl@0
   497
sl@0
   498
TInt TResourceReader::ReadInt32L()
sl@0
   499
    {
sl@0
   500
	return Impl()->ReadInt32L();
sl@0
   501
    }
sl@0
   502
sl@0
   503
/** Interprets the data at the current buffer position as a TUint32 type and returns 
sl@0
   504
the value as a TUint.
sl@0
   505
sl@0
   506
The current position within the resource buffer is updated. If the resulting 
sl@0
   507
position lies beyond the end of the resource buffer, then the function raises 
sl@0
   508
a BAFL 4 panic.
sl@0
   509
sl@0
   510
In general, a TUint32 corresponds to a LONG type in a resource STRUCT declaration.
sl@0
   511
sl@0
   512
Note that in Symbian OS a TUint is the same size as a TUint32.
sl@0
   513
sl@0
   514
@return The TUint32 value taken from the resource buffer. */
sl@0
   515
EXPORT_C TUint TResourceReader::ReadUint32()
sl@0
   516
    {
sl@0
   517
	TUint retInt=0;
sl@0
   518
	// TRAP and ignore the Error code as its non leaving method
sl@0
   519
	TRAPD(errCode, retInt=ReadUint32L());
sl@0
   520
    UNUSED_VAR(errCode);
sl@0
   521
	return retInt;
sl@0
   522
    }
sl@0
   523
sl@0
   524
TUint TResourceReader::ReadUint32L()
sl@0
   525
    {
sl@0
   526
	return Impl()->ReadUint32L();
sl@0
   527
    }
sl@0
   528
sl@0
   529
/** Interprets the data at the current buffer position as a TReal64 type and returns 
sl@0
   530
the value as a TReal64.
sl@0
   531
sl@0
   532
The current position within the resource buffer is updated. If the resulting 
sl@0
   533
position lies beyond the end of the resource buffer, then the function raises 
sl@0
   534
a BAFL 4 panic.
sl@0
   535
sl@0
   536
In general, a TReal64 corresponds to a DOUBLE type in a resource STRUCT declaration.
sl@0
   537
sl@0
   538
@return The TReal64 value taken from the resource buffer. */
sl@0
   539
EXPORT_C TReal64 TResourceReader::ReadReal64() __SOFTFP
sl@0
   540
    {
sl@0
   541
	TReal64 retReal=0;
sl@0
   542
	// TRAP and ignore the Error code as its non leaving method
sl@0
   543
	TRAPD(errCode, retReal=ReadReal64L());
sl@0
   544
    UNUSED_VAR(errCode);
sl@0
   545
	return retReal;
sl@0
   546
    }
sl@0
   547
sl@0
   548
TReal64 TResourceReader::ReadReal64L() __SOFTFP
sl@0
   549
    {
sl@0
   550
	return Impl()->ReadReal64L();
sl@0
   551
    }
sl@0
   552
sl@0
   553
/** Copies a specified length of data from the resource buffer, starting at the 
sl@0
   554
current position within the buffer, into the location pointed to by a specified 
sl@0
   555
pointer. No assumption is made about the type of data at being read.
sl@0
   556
sl@0
   557
The current position within the resource buffer is updated. If the resulting 
sl@0
   558
position lies beyond the end of the resource buffer, then the function raises 
sl@0
   559
a BAFL 4 panic.
sl@0
   560
sl@0
   561
@param aPtr A pointer to the target location for data copied from the resource 
sl@0
   562
buffer.
sl@0
   563
@param aLength The length of data to be copied from the resource buffer. */
sl@0
   564
EXPORT_C void TResourceReader::Read(TAny* aPtr,TInt aLength)
sl@0
   565
    {
sl@0
   566
	// TRAP and ignore the Error code as its non leaving method
sl@0
   567
	TRAPD(errCode, Impl()->ReadL(aPtr,aLength));
sl@0
   568
    UNUSED_VAR(errCode);
sl@0
   569
    }
sl@0
   570
sl@0
   571
/** Moves the current buffer position backwards by the specified amount.
sl@0
   572
sl@0
   573
If the resulting position lies before the start of the resource buffer, then 
sl@0
   574
the function raises a BAFL 5 panic.
sl@0
   575
sl@0
   576
@param aLength The length by which the current position is to be moved backward. */
sl@0
   577
EXPORT_C void TResourceReader::Rewind(TInt aLength)
sl@0
   578
    {
sl@0
   579
	// TRAP and ignore the Error code as its non leaving method
sl@0
   580
	TRAPD(errCode, Impl()->RewindL(aLength));
sl@0
   581
    UNUSED_VAR(errCode);
sl@0
   582
    }
sl@0
   583
sl@0
   584
/** Moves the current buffer position forwards by the specified amount.
sl@0
   585
sl@0
   586
If the resulting position lies beyond the end of the resource buffer, then 
sl@0
   587
the function raises a BAFL 4 panic.
sl@0
   588
sl@0
   589
@param aLength The length by which the current position is to be advanced. */
sl@0
   590
EXPORT_C void TResourceReader::Advance(TInt aLength)
sl@0
   591
	{
sl@0
   592
	// TRAP and ignore the Error code as its non leaving method
sl@0
   593
	TRAPD(errCode, Impl()->AdvanceL(aLength));
sl@0
   594
    UNUSED_VAR(errCode);
sl@0
   595
	}
sl@0
   596
sl@0
   597
/** Placement new operator is used TResourceReaderImpl instance to be created.
sl@0
   598
TResourceReaderImpl instance default behaviour - it will panic when there is a problem.
sl@0
   599
sl@0
   600
@internalComponent */
sl@0
   601
void TResourceReader::CreateImpl()
sl@0
   602
	{
sl@0
   603
	new (iImpl) TResourceReaderImpl;
sl@0
   604
	}
sl@0
   605
sl@0
   606
/** Placement new operator is used TResourceReaderImpl instance to be created.
sl@0
   607
TResourceReaderImpl instance default behaviour - it will panic when there is a problem.
sl@0
   608
sl@0
   609
@internalComponent */
sl@0
   610
TResourceReaderImpl* TResourceReader::Impl()
sl@0
   611
	{
sl@0
   612
	return reinterpret_cast <TResourceReaderImpl*> (iImpl);
sl@0
   613
	}
sl@0
   614
sl@0
   615
/** The method returns a const pointer to TResourceReader implementation.
sl@0
   616
sl@0
   617
@internalComponent */
sl@0
   618
const TResourceReaderImpl* TResourceReader::Impl() const
sl@0
   619
	{
sl@0
   620
	return reinterpret_cast <const TResourceReaderImpl*> (iImpl);
sl@0
   621
	}
sl@0
   622