os/ossrv/lowlevellibsandfws/apputils/src/BaRsReadImpl.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) 2003-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 "BaRsReadImpl.h"
sl@0
    19
#include "BaCompileAssert.h"
sl@0
    20
sl@0
    21
/** @internalComponent
sl@0
    22
An error will be issued at compile time if the class size is not KRsReaderImplSize. */
sl@0
    23
TResourceReaderImpl::TResourceReaderImpl() :
sl@0
    24
    iBuffer(NULL),
sl@0
    25
    iCurrentPtr(NULL)
sl@0
    26
	{
sl@0
    27
	//TResourceReaderImpl size. It should be 12 because of the BC reasons.
sl@0
    28
	//12 is the size of TResourceReader class.
sl@0
    29
	enum
sl@0
    30
		{
sl@0
    31
		KRsReaderImplSize = 12
sl@0
    32
		};
sl@0
    33
	COMPILE_TIME_ASSERT(sizeof(TResourceReaderImpl) == KRsReaderImplSize);
sl@0
    34
	}
sl@0
    35
sl@0
    36
/** Sets the buffer containing the resource data.
sl@0
    37
sl@0
    38
The current position within the buffer is set to the start of the buffer so 
sl@0
    39
that subsequent calls to the interpreting functions, for example ReadInt8(), 
sl@0
    40
start at the beginning of this buffer.
sl@0
    41
sl@0
    42
@internalComponent
sl@0
    43
@param aBuffer Pointer to an 8 bit non-modifiable descriptor containing 
sl@0
    44
or representing resource data.
sl@0
    45
@param aResourceId The numeric id of the resource to be read.
sl@0
    46
@post Buffer pointer is initialized.
sl@0
    47
@post Buffer current position pointer is initialized. */
sl@0
    48
void TResourceReaderImpl::SetBuffer(const TDesC8* aBuffer)
sl@0
    49
	{
sl@0
    50
	iBuffer=aBuffer;
sl@0
    51
	iCurrentPtr=iBuffer->Ptr();
sl@0
    52
	}
sl@0
    53
sl@0
    54
/** Sets the buffer and current position to NULL.
sl@0
    55
@internalComponent
sl@0
    56
@post Buffer pointer is set to NULL.
sl@0
    57
@post Buffer current position pointer is set to NULL. */
sl@0
    58
void TResourceReaderImpl::ResetBuffer()
sl@0
    59
	{
sl@0
    60
	iBuffer=NULL;
sl@0
    61
	iCurrentPtr=NULL;
sl@0
    62
	}
sl@0
    63
sl@0
    64
/** Returns the current position within the resource buffer. 
sl@0
    65
sl@0
    66
The function makes no assumption about the type of data in the buffer at the 
sl@0
    67
current position.
sl@0
    68
sl@0
    69
@internalComponent
sl@0
    70
@return A pointer to the current position within the resource buffer. */
sl@0
    71
const TAny* TResourceReaderImpl::Ptr()
sl@0
    72
    {
sl@0
    73
    return(iCurrentPtr);
sl@0
    74
    }
sl@0
    75
sl@0
    76
/** Updates iCurrentPtr with a new value.
sl@0
    77
sl@0
    78
@internalComponent
sl@0
    79
@pre iBuffer is not NULL.
sl@0
    80
@pre aPtr is not NULL.
sl@0
    81
@param aPtr The new value of iCurrentPtr.
sl@0
    82
@post iCurrentPtr is updated.
sl@0
    83
@panic BAFL 4 The new iCurrentPtr points beyond the buffer end.
sl@0
    84
@panic BAFL 70 iBuffer is NULL. DEBUG build only.
sl@0
    85
@panic BAFL 71 aPtr is NULL. DEBUG build only.
sl@0
    86
@leave KErrOff The new iCurrentPtr points beyond the buffer end. */
sl@0
    87
void TResourceReaderImpl::MovePtrL(const TUint8* aPtr)
sl@0
    88
    {
sl@0
    89
	__ASSERT_DEBUG(iBuffer != NULL, Panic(EBafPanicNullPtr1));
sl@0
    90
	__ASSERT_DEBUG(aPtr != NULL, Panic(EBafPanicNullPtr2));
sl@0
    91
	iAssertObj.AssertRelL(aPtr<=(iBuffer->Ptr()+iBuffer->Length()), EBafPanicResourceReaderEndExceeded);
sl@0
    92
    iCurrentPtr=aPtr;
sl@0
    93
    }
sl@0
    94
sl@0
    95
/** Interprets the data at the current buffer position as leading byte count data 
sl@0
    96
and constructs an 8 bit heap descriptor containing a copy of this data.
sl@0
    97
sl@0
    98
The data is interpreted as:
sl@0
    99
sl@0
   100
a byte value defining the number of 8 bit text characters or the length of 
sl@0
   101
binary data (the resource string/binary data length is limited to 255 characters max)
sl@0
   102
sl@0
   103
followed by:
sl@0
   104
sl@0
   105
the 8 bit text characters or binary data.
sl@0
   106
sl@0
   107
If the value of the leading byte is zero, the function assumes that no data 
sl@0
   108
follows the leading byte and returns a NULL pointer.
sl@0
   109
sl@0
   110
The current position within the resource buffer is updated.
sl@0
   111
sl@0
   112
Use this explicit 8 bit variant when the resource contains binary data. If 
sl@0
   113
the resource contains text, then use the build independent variant ReadHBufCL().
sl@0
   114
sl@0
   115
In general, this type of resource data corresponds to one of the following:
sl@0
   116
sl@0
   117
a LTEXT type in a resource STRUCT declaration.
sl@0
   118
sl@0
   119
a variable length array within a STRUCT declaration which includes the LEN 
sl@0
   120
BYTE keywords.
sl@0
   121
sl@0
   122
@internalComponent
sl@0
   123
@pre The same as for ReadTPtrC8L().
sl@0
   124
@return Pointer to the 8 bit heap descriptor containing a
sl@0
   125
copy of the data following the leading byte count at
sl@0
   126
the current position within the resource buffer. The
sl@0
   127
pointer can be NULL.
sl@0
   128
@post iCurrentPtr is updated.
sl@0
   129
@panic The same as ReadTPtrC8L().
sl@0
   130
@leave The same as ReadTPtrC8L().
sl@0
   131
@see ReadTPtrC8L() */
sl@0
   132
HBufC8* TResourceReaderImpl::ReadHBufC8L()
sl@0
   133
	{
sl@0
   134
	const TPtrC8 data(ReadTPtrC8L());
sl@0
   135
	return (data.Length()==0)? NULL: data.AllocL();
sl@0
   136
	}
sl@0
   137
sl@0
   138
/** Interprets the data at the current buffer position as leading byte count data 
sl@0
   139
and constructs a 16 bit heap descriptor containing a copy of this data.
sl@0
   140
sl@0
   141
The data is interpreted as:
sl@0
   142
sl@0
   143
a byte value defining the number of 16 bit text characters
sl@0
   144
(the resource string/binary data length is limited to 255 characters max)
sl@0
   145
sl@0
   146
followed by:
sl@0
   147
sl@0
   148
the 16 bit text characters.
sl@0
   149
sl@0
   150
If the value of the leading byte is zero, the function assumes that no data 
sl@0
   151
follows the leading byte and returns a NULL pointer.
sl@0
   152
sl@0
   153
The current position within the resource buffer is updated.
sl@0
   154
sl@0
   155
Do not use this explicit 16 bit variant when the resource contains binary 
sl@0
   156
data; use the explicit 8 bit variant instead. If the resource contains text, 
sl@0
   157
use the build independent variant ReadHBufCL().
sl@0
   158
sl@0
   159
@internalComponent
sl@0
   160
@pre The same as for ReadTPtrC16L().
sl@0
   161
@return Pointer to the 16bit heap descriptor containing a
sl@0
   162
copy of the data following the leading byte count at
sl@0
   163
the current position within the resource buffer. The
sl@0
   164
pointer can be NULL.
sl@0
   165
@post iCurrentPtr is updated.
sl@0
   166
@panic The same as ReadTPtrC16L().
sl@0
   167
@leave The same as ReadTPtrC16L(). 
sl@0
   168
@see ReadTPtrC16L() */
sl@0
   169
HBufC16* TResourceReaderImpl::ReadHBufC16L()
sl@0
   170
	{
sl@0
   171
	const TPtrC16 data(ReadTPtrC16L());
sl@0
   172
	return (data.Length()==0)? NULL: data.AllocL();
sl@0
   173
	}
sl@0
   174
sl@0
   175
/** Interprets the data at the current buffer position as leading byte count data 
sl@0
   176
and constructs an 8 bit non modifiable pointer descriptor to represent this 
sl@0
   177
data.
sl@0
   178
sl@0
   179
The data is interpreted as:
sl@0
   180
sl@0
   181
a byte value defining the number of text characters or the length of binary 
sl@0
   182
data (the resource string/binary data length is limited to 255 characters max)
sl@0
   183
sl@0
   184
followed by:
sl@0
   185
sl@0
   186
the 8 bit text characters or binary data.
sl@0
   187
sl@0
   188
If the value of the leading byte is zero, calling Length() on the returned 
sl@0
   189
TPtrC8 returns zero.
sl@0
   190
sl@0
   191
The current position within the resource buffer is updated.
sl@0
   192
sl@0
   193
Use this explicit 8 bit variant when the resource contains binary data. If 
sl@0
   194
the resource contains text, then use the build independent variant ReadTPtrC().
sl@0
   195
sl@0
   196
In general, this type of resource data corresponds to one of the following:
sl@0
   197
sl@0
   198
a LTEXT type in a resource STRUCT declaration.
sl@0
   199
sl@0
   200
a variable length array within a STRUCT declaration which includes the LEN 
sl@0
   201
BYTE keywords.
sl@0
   202
sl@0
   203
@internalComponent
sl@0
   204
@pre iCurrentPtr != NULL.
sl@0
   205
@pre The same as MovePtrL(const TUint8* aPtr).
sl@0
   206
@return 8bit non modifiable pointer descriptor representing
sl@0
   207
the data following the leading byte count at the
sl@0
   208
current position within the resource buffer.
sl@0
   209
@post iCurrentPtr is updated.
sl@0
   210
@panic BAFL 72 iCurrentPtr is NULL. DEBUG build only.
sl@0
   211
@panic The same as MovePtrL(const TUint8* aPtr).
sl@0
   212
@leave The same as MovePtrL(const TUint8* aPtr).
sl@0
   213
@see MovePtrL(const TUint8* aPtr) */
sl@0
   214
TPtrC8 TResourceReaderImpl::ReadTPtrC8L()
sl@0
   215
	{
sl@0
   216
	__ASSERT_DEBUG(iCurrentPtr != NULL, Panic(EBafPanicNullPtr3));
sl@0
   217
	const TUint8* currentPtr=iCurrentPtr;//TUint8 pointer is used, which means that the 
sl@0
   218
	//resource string length is limited to 255 characters max.
sl@0
   219
	const TInt strLen=*currentPtr;
sl@0
   220
	++currentPtr;
sl@0
   221
	MovePtrL(currentPtr+strLen);
sl@0
   222
	return TPtrC8(currentPtr,strLen);
sl@0
   223
	}
sl@0
   224
sl@0
   225
/** Interprets the data at the current buffer position as leading byte count data 
sl@0
   226
and constructs a 16 bit non modifiable pointer descriptor to represent this 
sl@0
   227
data.
sl@0
   228
sl@0
   229
The data is interpreted as:
sl@0
   230
sl@0
   231
a byte value defining the number of 16 bit text characters 
sl@0
   232
(the resource string/binary data length is limited to 255 characters max)
sl@0
   233
sl@0
   234
followed by:
sl@0
   235
sl@0
   236
the 16 bit text characters.
sl@0
   237
sl@0
   238
If the value of the leading byte is zero, calling Length() on the returned 
sl@0
   239
TPtrC16 returns zero.
sl@0
   240
sl@0
   241
The current position within the resource buffer is updated.
sl@0
   242
sl@0
   243
Do not use this explicit 16 bit variant when the resource contains binary 
sl@0
   244
data; use the explicit 8 bit variant instead. If the resource contains text, 
sl@0
   245
use the build independent variant ReadTPtrC().
sl@0
   246
sl@0
   247
@internalComponent
sl@0
   248
@pre iCurrentPtr != NULL.
sl@0
   249
@pre The same as MovePtrL(const TUint8* aPtr).
sl@0
   250
@return Pointer to an 8bit variant flat descriptor array.
sl@0
   251
@post iCurrentPtr is updated.
sl@0
   252
@panic BAFL 73 iCurrentPtr is NULL. DEBUG build only.
sl@0
   253
@panic BAFL 15 The resource is a unicode string and it is not properly aligned. DEBUG build only.
sl@0
   254
@panic The same as MovePtrL(const TUint8* aPtr).
sl@0
   255
@leave KErrCorrupt The resource is a unicode string and it is not properly aligned.
sl@0
   256
@leave The same as MovePtrL(const TUint8* aPtr).
sl@0
   257
@see MovePtrL(const TUint8* aPtr) */
sl@0
   258
TPtrC16 TResourceReaderImpl::ReadTPtrC16L()
sl@0
   259
	{
sl@0
   260
	__ASSERT_DEBUG(iCurrentPtr != NULL, Panic(EBafPanicNullPtr4));
sl@0
   261
	const TUint8* currentPtr=iCurrentPtr;//TUint8 pointer is used, which means that the 
sl@0
   262
	//resource string length is limited to 255 characters max.
sl@0
   263
	const TInt unicodeLength=*currentPtr;
sl@0
   264
	++currentPtr;
sl@0
   265
	if (unicodeLength!=0)
sl@0
   266
		{
sl@0
   267
		if (REINTERPRET_CAST(TUint,currentPtr)&0x1)
sl@0
   268
			{
sl@0
   269
			// The resource compiler puts out a padding byte (arbitrarily 0xab)
sl@0
   270
			// to ensure the alignment of Unicode strings within each resource.
sl@0
   271
			iAssertObj.AssertDebL(*currentPtr==0xab, EBafPanicUnicodeTextPaddingError);
sl@0
   272
			++currentPtr;
sl@0
   273
			}
sl@0
   274
		}
sl@0
   275
	const TPtrC16 unicode(REINTERPRET_CAST(const TText16*,(unicodeLength==0)? NULL: currentPtr),unicodeLength);
sl@0
   276
	currentPtr+=unicodeLength*sizeof(TText16);
sl@0
   277
	MovePtrL(currentPtr);
sl@0
   278
	return unicode;
sl@0
   279
	}
sl@0
   280
sl@0
   281
/** Interprets the data within the specified resource buffer as an array of leading 
sl@0
   282
byte count data and constructs an 8 bit non modifiable pointer descriptor 
sl@0
   283
to represent an element within this array.
sl@0
   284
sl@0
   285
The function sets the buffer containing the resource data and sets the current 
sl@0
   286
position to the start of this buffer. Any buffer set by a previous call to 
sl@0
   287
SetBuffer() etc, is lost.
sl@0
   288
sl@0
   289
The buffer is expected to contain an array of data elements preceded by a 
sl@0
   290
TInt16 value defining the number of elements within that array.
sl@0
   291
sl@0
   292
Each element of the array is interpreted as:
sl@0
   293
sl@0
   294
a byte value defining the number of 8 bit text characters or the length of 
sl@0
   295
binary data (the resource string/binary data length is limited to 255 characters max)
sl@0
   296
sl@0
   297
followed by:
sl@0
   298
sl@0
   299
the 8 bit text characters or binary data.
sl@0
   300
sl@0
   301
If the value of the leading byte is zero, calling Length() on the returned 
sl@0
   302
TPtrC8 returns zero.
sl@0
   303
sl@0
   304
The current position within the resource buffer is updated.
sl@0
   305
sl@0
   306
Use this explicit 8 bit variant when the resource contains binary data, If 
sl@0
   307
the resource contains text, then use the build independent variant ReadTPtrC(TInt,const TDesC8*).
sl@0
   308
sl@0
   309
@internalComponent
sl@0
   310
@pre aBuffer != NULL. 
sl@0
   311
@pre The same as MovePtrL(const TUint8* aPtr).
sl@0
   312
@param aIndex Position of the element within the array. This
sl@0
   313
value is relative to zero.
sl@0
   314
@param aBuffer Buffer containing the resource data.
sl@0
   315
@return 8bit non modifiable pointer descriptor representing
sl@0
   316
the data following the leading byte count at the
sl@0
   317
current position within the resource buffer.
sl@0
   318
@post iBuffer is initialized with aBuffer.
sl@0
   319
@post The same as MovePtrL(const TUint8* aPtr).
sl@0
   320
@panic BAFL 4 aIndex is greater or equal than the string length. DEBUG build only.
sl@0
   321
@panic The same as MovePtrL(const TUint8* aPtr).
sl@0
   322
@leave The same as MovePtrL(const TUint8* aPtr).
sl@0
   323
@see MovePtrL(const TUint8* aPtr) */
sl@0
   324
TPtrC8 TResourceReaderImpl::ReadTPtrC8L(TInt aIndex,const TDesC8* aBuffer)
sl@0
   325
    { // implementation could be made more efficient if desired
sl@0
   326
	SetBuffer(aBuffer);
sl@0
   327
	TInt count=ReadInt16L();
sl@0
   328
//
sl@0
   329
	__ASSERT_DEBUG(aIndex<count,Panic(EBafPanicResourceReaderEndExceeded));
sl@0
   330
	if (aIndex>=count)
sl@0
   331
		return TPtrC8();
sl@0
   332
//
sl@0
   333
	const TUint8* ptr=iCurrentPtr;
sl@0
   334
	while (--aIndex>=0)
sl@0
   335
		ptr+=1+*ptr;
sl@0
   336
	MovePtrL(ptr);
sl@0
   337
	return ReadTPtrC8L();
sl@0
   338
    }
sl@0
   339
sl@0
   340
/** Interprets the data within the specified resource buffer as an array of leading 
sl@0
   341
byte count data and constructs a 16 bit non modifiable pointer descriptor 
sl@0
   342
to represent an element within this array.
sl@0
   343
sl@0
   344
The function sets the buffer containing the resource data and sets the current 
sl@0
   345
position to the start of this buffer. Any buffer set by a previous call to 
sl@0
   346
SetBuffer() etc., is lost.
sl@0
   347
sl@0
   348
The buffer is expected to contain an array of data elements preceded by a 
sl@0
   349
TInt16 value defining the number of elements within that array.
sl@0
   350
sl@0
   351
Each element of the array is interpreted as:
sl@0
   352
sl@0
   353
a byte value defining the number of 8 bit text characters or the length of 
sl@0
   354
binary data (the resource string/binary data length is limited to 255 characters max)
sl@0
   355
sl@0
   356
followed by:
sl@0
   357
sl@0
   358
the 16 bit text characters.
sl@0
   359
sl@0
   360
If the value of the leading byte is zero, calling Length() on the returned 
sl@0
   361
TPtrC16 returns zero.
sl@0
   362
sl@0
   363
The current position within the resource buffer is updated.
sl@0
   364
sl@0
   365
Do not use this explicit 16 bit variant when the resource contains binary 
sl@0
   366
data; use the explicit 8 bit variant instead. If the resource contains text, 
sl@0
   367
use the build independent variant ReadTPtrC(TInt,const TDesC8*).
sl@0
   368
sl@0
   369
@internalComponent
sl@0
   370
@pre aBuffer != NULL.
sl@0
   371
@pre The same as ReadTPtrC16L().
sl@0
   372
@param aIndex The position of the element within the array. This
sl@0
   373
value is relative to zero.
sl@0
   374
@param aBuffer The buffer containing the resource data.
sl@0
   375
@return 16bit non modifiable pointer descriptor representing
sl@0
   376
the data following the leading byte count of the
sl@0
   377
element at position within the array
sl@0
   378
@post iBuffer is initialized with aBuffer.
sl@0
   379
@post The same as ReadTPtrC16L().
sl@0
   380
@panic BAFL 4 aIndex is greater or equal than the string length.
sl@0
   381
@panic The same as ReadTPtrC16L().
sl@0
   382
@leave KErrOff aIndex is grater or equal than the string length.
sl@0
   383
@leave The same as ReadTPtrC16L(). 
sl@0
   384
@see ReadTPtrC16L()*/
sl@0
   385
TPtrC16 TResourceReaderImpl::ReadTPtrC16L(TInt aIndex,const TDesC8* aBuffer)
sl@0
   386
    { // implementation could be made more efficient if desired
sl@0
   387
	SetBuffer(aBuffer);
sl@0
   388
	const TInt count=ReadInt16L();
sl@0
   389
	iAssertObj.AssertRelL(aIndex<count,EBafPanicResourceReaderEndExceeded);
sl@0
   390
	for (TInt i=0; i<aIndex; ++i)
sl@0
   391
		{
sl@0
   392
		ReadTPtrC16L();
sl@0
   393
		}
sl@0
   394
	return ReadTPtrC16L();
sl@0
   395
    }
sl@0
   396
sl@0
   397
/** Interprets the data at the current buffer position as an array of leading byte 
sl@0
   398
count data and constructs a flat array of 8 bit descriptors.
sl@0
   399
sl@0
   400
Each descriptor in the descriptor array corresponds to an element of the resource 
sl@0
   401
array.
sl@0
   402
sl@0
   403
At the current buffer position, the buffer is expected to contain an array 
sl@0
   404
of data elements preceded by a TInt16 value defining the number of elements 
sl@0
   405
within that array.
sl@0
   406
sl@0
   407
Each element of the array is interpreted as:
sl@0
   408
sl@0
   409
a byte value defining the number of 8 bit text characters or the length of 
sl@0
   410
binary data (the resource string/binary data length is limited to 255 characters max)
sl@0
   411
sl@0
   412
followed by:
sl@0
   413
sl@0
   414
the text characters or binary data.
sl@0
   415
sl@0
   416
The current position within the resource buffer is updated.
sl@0
   417
sl@0
   418
Use this explicit 8 bit variant when the resource contains binary data. If 
sl@0
   419
the elements of the resource array contain text, use the build independent 
sl@0
   420
variant of ReadDesCArrayL().
sl@0
   421
sl@0
   422
@internalComponent
sl@0
   423
@pre The same as ReadTPtrC8L().
sl@0
   424
@return Pointer to an 8bit variant flat descriptor array.
sl@0
   425
@post The same as ReadTPtrC8L().
sl@0
   426
@panic The same as ReadTPtrC8L().
sl@0
   427
@leave The same as ReadTPtrC8L().
sl@0
   428
@leave KErrNoMemory There is not enough memory
sl@0
   429
for the resulting buffer.
sl@0
   430
@see ReadTPtrC8L() */
sl@0
   431
CDesC8ArrayFlat* TResourceReaderImpl::ReadDesC8ArrayL()
sl@0
   432
    {
sl@0
   433
	TInt count=ReadInt16L();
sl@0
   434
	CDesC8ArrayFlat* array=new(ELeave) CDesC8ArrayFlat(count);
sl@0
   435
    CleanupStack::PushL(array);
sl@0
   436
	while (--count>=0)
sl@0
   437
		array->AppendL(ReadTPtrC8L());
sl@0
   438
    CleanupStack::Pop();
sl@0
   439
	return(array);
sl@0
   440
    }
sl@0
   441
sl@0
   442
/** Interprets the data at the current buffer position as an array of leading byte 
sl@0
   443
count data and constructs a flat array of 16 bit descriptors.
sl@0
   444
sl@0
   445
Each descriptor in the descriptor array corresponds to an element of the resource 
sl@0
   446
array.
sl@0
   447
sl@0
   448
At the current buffer position, the buffer is expected to contain an array 
sl@0
   449
of data elements preceded by a TInt16 value defining the number of elements 
sl@0
   450
within that array.
sl@0
   451
sl@0
   452
Each element of the array is interpreted as:
sl@0
   453
sl@0
   454
a byte value defining the number of 8 bit text characters or the length of 
sl@0
   455
binary data (the resource string/binary data length is limited to 255 characters max)
sl@0
   456
sl@0
   457
followed by:
sl@0
   458
sl@0
   459
the 16 bit text characters.
sl@0
   460
sl@0
   461
The current position within the resource buffer is updated.
sl@0
   462
sl@0
   463
Do not use this explicit 16 bit variant when the resource contains binary 
sl@0
   464
data; use the explicit 8 bit variant instead. If the resource contains text, 
sl@0
   465
use the build independent variant ReadDesCArrayL().
sl@0
   466
sl@0
   467
@internalComponent
sl@0
   468
@pre The same as ReadTPtrC16L().
sl@0
   469
@return Pointer to a 16bit variant flat descriptor array.
sl@0
   470
@post The same as ReadTPtrC16L().
sl@0
   471
@panic The same as ReadTPtrC16L().
sl@0
   472
@leave The same as ReadTPtrC16L().
sl@0
   473
@leave KErrNoMemory There is not enough memory
sl@0
   474
for the resulting buffer. 
sl@0
   475
@see ReadTPtrC16L() */
sl@0
   476
CDesC16ArrayFlat* TResourceReaderImpl::ReadDesC16ArrayL()
sl@0
   477
    {
sl@0
   478
	TInt count=ReadInt16L();
sl@0
   479
	CDesC16ArrayFlat* array=new(ELeave) CDesC16ArrayFlat(count);
sl@0
   480
    CleanupStack::PushL(array);
sl@0
   481
	while (--count>=0)
sl@0
   482
		array->AppendL(ReadTPtrC16L());
sl@0
   483
    CleanupStack::Pop();
sl@0
   484
	return(array);
sl@0
   485
    }
sl@0
   486
sl@0
   487
/** Interprets the data at the current buffer position as a TInt8 type and returns 
sl@0
   488
the value as a TInt.
sl@0
   489
sl@0
   490
The current position within the resource buffer is updated.
sl@0
   491
sl@0
   492
In general, a TInt8 corresponds to a BYTE type in a resource STRUCT declaration.
sl@0
   493
sl@0
   494
Note that in Symbian OS, a TInt is at least as big as a TInt8.
sl@0
   495
sl@0
   496
@internalComponent
sl@0
   497
@pre iCurrentPtr != NULL.
sl@0
   498
@pre The same as MovePtrL(const TUint8* aPtr).
sl@0
   499
@return The TInt8 value taken from the resource buffer.
sl@0
   500
@post The same as MovePtrL(const TUint8* aPtr).
sl@0
   501
@leave The same as MovePtrL(const TUint8* aPtr).
sl@0
   502
@panic The same as MovePtrL(const TUint8* aPtr).
sl@0
   503
@panic BAFL 74 iCurrentPtr is NULL. DEBUG build only.
sl@0
   504
@see MovePtrL(const TUint8* aPtr) */
sl@0
   505
TInt TResourceReaderImpl::ReadInt8L()
sl@0
   506
    {
sl@0
   507
	__ASSERT_DEBUG(iCurrentPtr != NULL, Panic(EBafPanicNullPtr5));
sl@0
   508
    const TUint8* currentPtr=iCurrentPtr;
sl@0
   509
    MovePtrL(currentPtr+sizeof(TInt8));
sl@0
   510
    return(*(TInt8*)currentPtr);
sl@0
   511
    }
sl@0
   512
sl@0
   513
/** Interprets the data at the current buffer position as a TUint8 type and returns 
sl@0
   514
the value as a TUint.
sl@0
   515
sl@0
   516
The current position within the resource buffer is updated.
sl@0
   517
sl@0
   518
In general, a TUint8 corresponds to a BYTE type in a resource STRUCT declaration.
sl@0
   519
sl@0
   520
Note that in Symbian OS, a TUint is at least as big as a TUint8.
sl@0
   521
sl@0
   522
@internalComponent
sl@0
   523
@pre iCurrentPtr != NULL.
sl@0
   524
@pre The same as MovePtrL(const TUint8* aPtr).
sl@0
   525
@return The TUint8 value taken from the resource buffer.
sl@0
   526
@post The same as MovePtrL(const TUint8* aPtr).
sl@0
   527
@leave The same as MovePtrL(const TUint8* aPtr).
sl@0
   528
@panic The same as MovePtrL(const TUint8* aPtr).
sl@0
   529
@panic BAFL 75 iCurrentPtr is NULL. DEBUG build only. 
sl@0
   530
@see MovePtrL(const TUint8* aPtr) */
sl@0
   531
TUint TResourceReaderImpl::ReadUint8L()
sl@0
   532
    {
sl@0
   533
	__ASSERT_DEBUG(iCurrentPtr != NULL, Panic(EBafPanicNullPtr6));
sl@0
   534
    const TUint8* currentPtr=iCurrentPtr;
sl@0
   535
    MovePtrL(currentPtr+sizeof(TUint8));
sl@0
   536
    return(*(TUint8*)currentPtr);
sl@0
   537
    }
sl@0
   538
sl@0
   539
/** Interprets the data at the current buffer position as a TInt16 type and returns 
sl@0
   540
the value as a TInt.
sl@0
   541
sl@0
   542
The current position within the resource buffer is updated.
sl@0
   543
sl@0
   544
In general, a TInt16 corresponds to a WORD type in a resource STRUCT declaration.
sl@0
   545
sl@0
   546
Note that in Symbian OS, a TInt is at least as big as a TInt16.
sl@0
   547
sl@0
   548
@internalComponent
sl@0
   549
@pre iCurrentPtr != NULL.
sl@0
   550
@pre The same as MovePtrL(const TUint8* aPtr).
sl@0
   551
@return The TInt16 value taken from the resource buffer.
sl@0
   552
@post The same as MovePtrL(const TUint8* aPtr).
sl@0
   553
@leave The same as MovePtrL(const TUint8* aPtr).
sl@0
   554
@panic The same as MovePtrL(const TUint8* aPtr).
sl@0
   555
@panic BAFL 76 iCurrentPtr is NULL. DEBUG build only.
sl@0
   556
@see MovePtrL(const TUint8* aPtr) */
sl@0
   557
TInt TResourceReaderImpl::ReadInt16L()
sl@0
   558
    {
sl@0
   559
	__ASSERT_DEBUG(iCurrentPtr != NULL, Panic(EBafPanicNullPtr7));
sl@0
   560
    if (((TUint)iCurrentPtr)%2)
sl@0
   561
        {
sl@0
   562
        TInt16 ret;
sl@0
   563
        ReadL(&ret,sizeof(ret));
sl@0
   564
        return(ret);
sl@0
   565
        }
sl@0
   566
    const TUint8* currentPtr=iCurrentPtr;
sl@0
   567
    MovePtrL(currentPtr+sizeof(TInt16));
sl@0
   568
    return(*(TInt16*)currentPtr);
sl@0
   569
    }
sl@0
   570
sl@0
   571
/** Interprets the data at the current buffer position as a TUint16 type and returns 
sl@0
   572
the value as a TUint.
sl@0
   573
sl@0
   574
The current position within the resource buffer is updated.
sl@0
   575
sl@0
   576
In general, a TUint16 corresponds to a WORD type in a resource STRUCT declaration.
sl@0
   577
sl@0
   578
Note that in Symbian OS, a TUint is at least as big as a TUint16.
sl@0
   579
sl@0
   580
@internalComponent
sl@0
   581
@pre iCurrentPtr != NULL.
sl@0
   582
@pre The same as MovePtrL(const TUint8* aPtr).
sl@0
   583
@return The TUint16 value taken from the resource buffer.
sl@0
   584
@post The same as MovePtrL(const TUint8* aPtr).
sl@0
   585
@leave The same as MovePtrL(const TUint8* aPtr).
sl@0
   586
@panic The same as MovePtrL(const TUint8* aPtr).
sl@0
   587
@panic BAFL 77 iCurrentPtr is NULL. DEBUG build only.
sl@0
   588
@see MovePtrL(const TUint8* aPtr) */
sl@0
   589
TUint TResourceReaderImpl::ReadUint16L()
sl@0
   590
    {
sl@0
   591
	__ASSERT_DEBUG(iCurrentPtr != NULL, Panic(EBafPanicNullPtr8));
sl@0
   592
    if (((TUint)iCurrentPtr)%2)
sl@0
   593
        {
sl@0
   594
        TUint16 ret;
sl@0
   595
        ReadL(&ret,sizeof(ret));
sl@0
   596
        return(ret);
sl@0
   597
        }
sl@0
   598
    const TUint8* currentPtr=iCurrentPtr;
sl@0
   599
    MovePtrL(currentPtr+sizeof(TUint16));
sl@0
   600
    return(*(TUint16*)currentPtr);
sl@0
   601
    }
sl@0
   602
sl@0
   603
/** Interprets the data at the current buffer position as a TInt32 type and returns 
sl@0
   604
the value as a TInt.
sl@0
   605
sl@0
   606
The current position within the resource buffer is updated.
sl@0
   607
sl@0
   608
In general, a TInt32 corresponds to a LONG type in a resource STRUCT declaration.
sl@0
   609
sl@0
   610
Note that in Symbian OS, TInt and TInt32 are the same size.
sl@0
   611
sl@0
   612
@internalComponent
sl@0
   613
@pre iCurrentPtr != NULL.
sl@0
   614
@pre The same as MovePtrL(const TUint8* aPtr).
sl@0
   615
@return The TInt32 value taken from the resource buffer.
sl@0
   616
@post The same as MovePtrL(const TUint8* aPtr).
sl@0
   617
@leave The same as MovePtrL(const TUint8* aPtr).
sl@0
   618
@panic The same as MovePtrL(const TUint8* aPtr).
sl@0
   619
@panic BAFL 78 iCurrentPtr is NULL. DEBUG build only.
sl@0
   620
@see MovePtrL(const TUint8* aPtr) */
sl@0
   621
TInt TResourceReaderImpl::ReadInt32L()
sl@0
   622
    {
sl@0
   623
	__ASSERT_DEBUG(iCurrentPtr != NULL, Panic(EBafPanicNullPtr9));
sl@0
   624
    if (((TUint)iCurrentPtr)%4)
sl@0
   625
        {
sl@0
   626
        TInt32 ret;
sl@0
   627
        ReadL(&ret,sizeof(ret));
sl@0
   628
        return(ret);
sl@0
   629
        }
sl@0
   630
    const TUint8* currentPtr=iCurrentPtr;
sl@0
   631
    MovePtrL(currentPtr+sizeof(TInt32));
sl@0
   632
	return(*(TInt32*)currentPtr);
sl@0
   633
    }
sl@0
   634
sl@0
   635
/** Interprets the data at the current buffer position as a TUint32 type and returns 
sl@0
   636
the value as a TUint.
sl@0
   637
sl@0
   638
The current position within the resource buffer is updated.
sl@0
   639
sl@0
   640
In general, a TUint32 corresponds to a LONG type in a resource STRUCT declaration.
sl@0
   641
sl@0
   642
Note that in Symbian OS a TUint is the same size as a TUint32.
sl@0
   643
sl@0
   644
@internalComponent
sl@0
   645
@pre iCurrentPtr != NULL.
sl@0
   646
@pre The same as MovePtrL(const TUint8* aPtr).
sl@0
   647
@return The TUint32 value taken from the resource buffer.
sl@0
   648
@post The same as MovePtrL(const TUint8* aPtr).
sl@0
   649
@leave The same as MovePtrL(const TUint8* aPtr).
sl@0
   650
@panic The same as MovePtrL(const TUint8* aPtr).
sl@0
   651
@panic BAFL 79 iCurrentPtr is NULL. DEBUG build only.
sl@0
   652
@see MovePtrL(const TUint8* aPtr) */
sl@0
   653
TUint TResourceReaderImpl::ReadUint32L()
sl@0
   654
    {
sl@0
   655
	__ASSERT_DEBUG(iCurrentPtr != NULL, Panic(EBafPanicNullPtr10));
sl@0
   656
    if (((TUint)iCurrentPtr)%4)
sl@0
   657
        {
sl@0
   658
        TUint32 ret;
sl@0
   659
        ReadL(&ret,sizeof(ret));
sl@0
   660
        return(ret);
sl@0
   661
        }
sl@0
   662
    const TUint8* currentPtr=iCurrentPtr;
sl@0
   663
    MovePtrL(currentPtr+sizeof(TUint32));
sl@0
   664
    return(*(TUint32*)currentPtr);
sl@0
   665
    }
sl@0
   666
sl@0
   667
/** Interprets the data at the current buffer position as a TReal64 type and returns 
sl@0
   668
the value as a TReal64.
sl@0
   669
sl@0
   670
The current position within the resource buffer is updated.
sl@0
   671
sl@0
   672
In general, a TReal64 corresponds to a DOUBLE type in a resource STRUCT declaration.
sl@0
   673
sl@0
   674
@internalComponent
sl@0
   675
@pre The same as ReadUint32L().
sl@0
   676
@return The TReal64 value taken from the resource buffer.
sl@0
   677
@post The same as ReadUint32L().
sl@0
   678
@leave The same as ReadUint32L().
sl@0
   679
@panic The same as ReadUint32L().
sl@0
   680
@see ReadUint32L() */
sl@0
   681
TReal64 TResourceReaderImpl::ReadReal64L() __SOFTFP
sl@0
   682
    {
sl@0
   683
    union
sl@0
   684
        {
sl@0
   685
        TReal64 ret;
sl@0
   686
        TUint32 tmp[2];
sl@0
   687
        };
sl@0
   688
#if defined(__DOUBLE_WORDS_SWAPPED__)
sl@0
   689
    tmp[1]=ReadUint32L();
sl@0
   690
    tmp[0]=ReadUint32L();
sl@0
   691
#else
sl@0
   692
    tmp[0]=ReadUint32L();
sl@0
   693
    tmp[1]=ReadUint32L();
sl@0
   694
#endif
sl@0
   695
    return(ret);
sl@0
   696
    }
sl@0
   697
sl@0
   698
/** Copies a specified length of data from the resource buffer, starting at the 
sl@0
   699
current position within the buffer, into the location pointed to by a specified 
sl@0
   700
pointer. No assumption is made about the type of data at being read.
sl@0
   701
sl@0
   702
The current position within the resource buffer is updated.
sl@0
   703
sl@0
   704
@internalComponent
sl@0
   705
@pre iCurrentPtr != NULL.
sl@0
   706
@pre The same as MovePtrL(const TUint8* aPtr).
sl@0
   707
@param aPtr Pointer to the target location for data copied from the resource buffer.
sl@0
   708
@param  aLength The length of data to be copied from the resource buffer.
sl@0
   709
@post The same as MovePtrL(const TUint8* aPtr).
sl@0
   710
@leave The same as MovePtrL(const TUint8* aPtr).
sl@0
   711
@panic The same as MovePtrL(const TUint8* aPtr).
sl@0
   712
@panic BAFL 80 iCurrentPtr is NULL. DEBUG build only.
sl@0
   713
@see MovePtrL(const TUint8* aPtr) */
sl@0
   714
void TResourceReaderImpl::ReadL(TAny* aPtr,TInt aLength)
sl@0
   715
    {
sl@0
   716
	__ASSERT_DEBUG(iCurrentPtr != NULL, Panic(EBafPanicNullPtr11));
sl@0
   717
    const TUint8* currentPtr=iCurrentPtr;
sl@0
   718
    MovePtrL(currentPtr+aLength);
sl@0
   719
    Mem::Copy(aPtr,currentPtr,aLength);
sl@0
   720
    }
sl@0
   721
sl@0
   722
/** Moves the current buffer position backwards by the specified amount.
sl@0
   723
sl@0
   724
@internalComponent
sl@0
   725
@pre iCurrentPtr != NULL.
sl@0
   726
@param aLength The length by which the current position is to be moved backward.
sl@0
   727
@post iCurrentPtr is updated.
sl@0
   728
@leave @see MovePtrL(const TUint8* aPtr).
sl@0
   729
@panic BAFL 5 If the resulting position lies before the start of the resource.
sl@0
   730
@panic BAFL 81 iCurrentPtr is NULL. DEBUG build only.
sl@0
   731
@leave KErrArgument The resulting position lies before the start of the resource. */
sl@0
   732
void TResourceReaderImpl::RewindL(TInt aLength)
sl@0
   733
    {
sl@0
   734
	__ASSERT_DEBUG(iCurrentPtr != NULL, Panic(EBafPanicNullPtr12));
sl@0
   735
	iAssertObj.AssertRelL(!(aLength>iCurrentPtr-iBuffer->Ptr()),EBafPanicResourceReaderStartExceeded);
sl@0
   736
    iCurrentPtr-=aLength;
sl@0
   737
    }
sl@0
   738
sl@0
   739
/** Moves the current buffer position forwards by the specified amount.
sl@0
   740
sl@0
   741
@internalComponent
sl@0
   742
@pre The same as MovePtrL(const TUint8* aPtr).
sl@0
   743
@param aLength The length by which the current position is to be advanced.
sl@0
   744
@post The same as MovePtrL(const TUint8* aPtr).
sl@0
   745
@leave The same as MovePtrL(const TUint8* aPtr).
sl@0
   746
@panic The same as MovePtrL(const TUint8* aPtr).
sl@0
   747
@panic BAFL 82 iCurrentPtr is NULL. DEBUG build only.
sl@0
   748
@see MovePtrL(const TUint8* aPtr) */
sl@0
   749
void TResourceReaderImpl::AdvanceL(TInt aLength)
sl@0
   750
	{
sl@0
   751
	__ASSERT_DEBUG(iCurrentPtr != NULL, Panic(EBafPanicNullPtr13));
sl@0
   752
	MovePtrL(iCurrentPtr+aLength);
sl@0
   753
	}
sl@0
   754
sl@0
   755
/** The method sets a new iAssertObj. 
sl@0
   756
If some method is called and something goes wrong - the method either
sl@0
   757
will panics or asserts depending on iAssertObj state.
sl@0
   758
sl@0
   759
@internalComponent
sl@0
   760
@param  aAssertObj The assert object.
sl@0
   761
@post iAssertObj is updated. */
sl@0
   762
void TResourceReaderImpl::SetAssertObj(const TBaAssert& aAssertObj)
sl@0
   763
	{
sl@0
   764
	iAssertObj = aAssertObj;
sl@0
   765
	}
sl@0
   766