os/ossrv/lowlevellibsandfws/apputils/src/BARSC.CPP
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
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
//
sl@0
    15
sl@0
    16
#include <barsc.h>
sl@0
    17
#include "BaRscImpl.h"
sl@0
    18
#include "BaAssert.h"
sl@0
    19
#include "BaCompileAssert.h"
sl@0
    20
sl@0
    21
#define UNUSED_VAR(a) a = a
sl@0
    22
sl@0
    23
/** Constructs a default resource file object. */
sl@0
    24
EXPORT_C RResourceFile::RResourceFile()
sl@0
    25
	{
sl@0
    26
	COMPILE_TIME_ASSERT(sizeof(RResourceFile)==sizeof(RResourceFileImpl));
sl@0
    27
	//Creating the implementation instance with a placement new operator.
sl@0
    28
	//All RResourceFileImpl resources deallocation must be done in its Close() method.
sl@0
    29
	//There are some special requirements about RResourceFileImpl implementation:
sl@0
    30
	//  - it must be the same size as the RResourceFile implementation;
sl@0
    31
	//  - the offset of iOffset data member must be the same as the offset
sl@0
    32
	//    of iOffset data member of RResourceFile class before the changes - 
sl@0
    33
	//    make the class using RResourceFileImpl;
sl@0
    34
	new (iImpl) RResourceFileImpl;
sl@0
    35
	}
sl@0
    36
sl@0
    37
/** Closes the resource file reader.
sl@0
    38
This function is called after finishing reading all resources. */
sl@0
    39
EXPORT_C void RResourceFile::Close()
sl@0
    40
	{
sl@0
    41
	Impl()->Close();
sl@0
    42
	}
sl@0
    43
sl@0
    44
/** Opens the resource file reader.
sl@0
    45
sl@0
    46
The resource file reader must be opened before reading resources or
sl@0
    47
checking the signature of the resource file. This function initially
sl@0
    48
closes the resource-file object if it is currently open. If a leave
sl@0
    49
occurs during the function, the object is reverted to its closed state.
sl@0
    50
sl@0
    51
@param aFs Handle to a file server session.
sl@0
    52
@param aName File to open as a resource file
sl@0
    53
@leave The function leaves if the named file cannot be opened or the header 
sl@0
    54
record at the beginning of the file cannot be read. 
sl@0
    55
@panic If the file is corrupted - the method will panic in debug mode.
sl@0
    56
@see TBafPanic for panic codes. */
sl@0
    57
EXPORT_C void RResourceFile::OpenL(RFs &aFs,const TDesC &aName)
sl@0
    58
	{
sl@0
    59
	DoOpenL(aFs, aName, 0, 0);
sl@0
    60
	}
sl@0
    61
sl@0
    62
/** Opens the resource file reader.
sl@0
    63
sl@0
    64
The resource file reader must be opened before reading resources or
sl@0
    65
checking the signature of the resource file. This function initially
sl@0
    66
closes the resource-file object if it is currently open. If a leave
sl@0
    67
occurs during the function, the object is reverted to its closed state.
sl@0
    68
sl@0
    69
@param aFs Handle to a file server session
sl@0
    70
@param aName File to open as a resource file
sl@0
    71
@param aFileOffset Resource file section offset from the beginning of the file.
sl@0
    72
@param aFileSize Resource file section size.
sl@0
    73
@leave Function leaves if the named file cannot be opened or the header 
sl@0
    74
record at the beginning of the file cannot be read. 
sl@0
    75
@panic If the file is corrupted - the method will panic in debug mode.
sl@0
    76
@see TBafPanic for panic codes. */
sl@0
    77
EXPORT_C void RResourceFile::OpenL(RFs& aFs, const TDesC& aName, TUint aFileOffset, TInt aFileSize)
sl@0
    78
	{
sl@0
    79
	DoOpenL(aFs, aName, aFileOffset, aFileSize);
sl@0
    80
	}
sl@0
    81
sl@0
    82
/** 
sl@0
    83
Retrieve the UID tuple of the opened resource file.
sl@0
    84
sl@0
    85
@pre OpenL() has been called successfully.
sl@0
    86
@return The UIDs of the loaded resource file.
sl@0
    87
@panic If the file is not opened or class data members initialization fails - 
sl@0
    88
the method will panic always.
sl@0
    89
@see TBafPanic for panic codes. */
sl@0
    90
EXPORT_C TUidType RResourceFile::UidType() const
sl@0
    91
	{
sl@0
    92
	return Impl()->UidType();
sl@0
    93
	}
sl@0
    94
sl@0
    95
/** Reads a resource specified by resource id into the specified descriptor.
sl@0
    96
sl@0
    97
The descriptor must be long enough to contain the entire resource
sl@0
    98
sl@0
    99
The search for the resource uses the following algorithm:
sl@0
   100
sl@0
   101
A resource id in the range 1 to 4095 is looked up in this resource file. The 
sl@0
   102
function leaves if there is no matching resource.
sl@0
   103
sl@0
   104
If the resource id is greater than 4095, then the most significant 20 bits 
sl@0
   105
of the resource id is treated as an offset and the least significant 12 bits 
sl@0
   106
is treated as the real resource id. If the offset matches the offset value 
sl@0
   107
defined for this file, then the resource is looked up in this resource file 
sl@0
   108
using the real resource id (i.e. the least significant 12 bits). If the offset 
sl@0
   109
does not match, then the function leaves.
sl@0
   110
sl@0
   111
Note, do not call this function until a call to ConfirmSignatureL() has completed 
sl@0
   112
successfully.
sl@0
   113
sl@0
   114
@param aDes On return, contains the resource that has been read.
sl@0
   115
The function leaves if the descriptor is not long enough to contain the entire resource.
sl@0
   116
@param aResourceId The numeric id of the resource to be read.
sl@0
   117
@leave The function leaves if this resource id is not in this
sl@0
   118
resource file.
sl@0
   119
@panic If the file is corrupted - the method will panic in debug mode.
sl@0
   120
@see TBafPanic for panic codes. */
sl@0
   121
EXPORT_C void RResourceFile::ReadL(TDes8 &aDes,TInt aResourceId) const
sl@0
   122
	{
sl@0
   123
	Impl()->ReadL(aDes, aResourceId);
sl@0
   124
	}
sl@0
   125
sl@0
   126
/** Reads a resource into a heap descriptor, returns a pointer to that descriptor 
sl@0
   127
and pushes the pointer onto the cleanup stack.
sl@0
   128
sl@0
   129
A heap descriptor of appropriate length is allocated for the resource. Ownership 
sl@0
   130
of the heap descriptor passes to the caller who must destroy it and pop its 
sl@0
   131
pointer off the cleanup stack when it is no longer needed.
sl@0
   132
sl@0
   133
The search for the resource uses the following algorithm:
sl@0
   134
sl@0
   135
A resource id in the range 1 to 4095 is looked up in this resource file. The 
sl@0
   136
function leaves if there is no matching resource.
sl@0
   137
sl@0
   138
If the resource id is greater than 4095, then the most significant 20 bits 
sl@0
   139
of the resource id is treated as an offset and the least significant 12 bits 
sl@0
   140
is treated as the real resource id. If the offset matches the offset value 
sl@0
   141
defined for this file, then the resource is looked up in this resource file 
sl@0
   142
using the real resource id (i.e. the least significant 12 bits). If the offset 
sl@0
   143
does not match, then the function leaves.
sl@0
   144
sl@0
   145
Note, do not call this function until a call to ConfirmSignatureL() has completed 
sl@0
   146
successfully.
sl@0
   147
sl@0
   148
@param aResourceId The numeric id of the resource to be read.
sl@0
   149
@return Pointer to a heap descriptor containing the resource.
sl@0
   150
@leave KErrNotFound - there is no resource with aResourceId in the file.
sl@0
   151
@panic If the file is corrupted - the method will panic in debug mode.
sl@0
   152
@see RResourceFile::Offset()
sl@0
   153
@see TBafPanic for panic codes. */
sl@0
   154
EXPORT_C HBufC8* RResourceFile::AllocReadLC(TInt aResourceId) const
sl@0
   155
	{
sl@0
   156
	return Impl()->AllocReadLC(aResourceId);
sl@0
   157
	}
sl@0
   158
sl@0
   159
/** Reads a resource into a heap descriptor and returns a pointer to that descriptor.
sl@0
   160
sl@0
   161
A heap descriptor of appropriate length is allocated for the resource. Ownership 
sl@0
   162
of the heap descriptor passes to the caller who must destroy it when it is 
sl@0
   163
no longer needed.
sl@0
   164
sl@0
   165
The search for the resource uses the following algorithm:
sl@0
   166
sl@0
   167
A resource id in the range 1 to 4095 is looked up in this resource file. The 
sl@0
   168
function leaves if there is no matching resource.
sl@0
   169
sl@0
   170
If the resource id is greater than 4095, then the most significant 20 bits 
sl@0
   171
of the resource id is treated as an offset and the least significant 12 bits 
sl@0
   172
is treated as the real resource id. If the offset matches the offset value 
sl@0
   173
defined for this file, then the resource is looked up in this resource file 
sl@0
   174
using the real resource id (i.e. the least significant 12 bits). If the offset 
sl@0
   175
does not match, then the function leaves.
sl@0
   176
sl@0
   177
Note, do not call this function until a call to ConfirmSignatureL() has completed 
sl@0
   178
successfully.
sl@0
   179
sl@0
   180
@param aResourceId The numeric id of the resource to be read.
sl@0
   181
@return Pointer to an 8 bit heap descriptor containing the resource.
sl@0
   182
@leave KErrNotFound - there is no resource with aResourceId in the file.
sl@0
   183
@panic If the file is corrupted - the method will panic in debug mode. 
sl@0
   184
@see RResourceFile::Offset()
sl@0
   185
@see TBafPanic for panic codes. */
sl@0
   186
EXPORT_C HBufC8* RResourceFile::AllocReadL(TInt aResourceId) const
sl@0
   187
	{
sl@0
   188
	HBufC8* resource = AllocReadLC(aResourceId);
sl@0
   189
	CleanupStack::Pop(resource);
sl@0
   190
	return resource;
sl@0
   191
	}
sl@0
   192
sl@0
   193
/** Initialises the offset value from the first resource.
sl@0
   194
sl@0
   195
The function assumes that the first resource in the file consists of
sl@0
   196
two 32-bit integers. The first integer contains the version number and
sl@0
   197
the second is a self-referencing link whose value is the offset for
sl@0
   198
the resources in the file, plus 1.This function must be called before
sl@0
   199
calling Offset(), AllocReadL(), AllocReadLC() or ReadL().
sl@0
   200
sl@0
   201
@param aSignature This argument value is not used by the function.
sl@0
   202
@leave KErrCorrupt - wrong size of the first resource in the file.
sl@0
   203
Probably the file is corrupted.
sl@0
   204
@panic If the file is corrupted - the method will panic in debug mode.
sl@0
   205
@see TBafPanic for panic codes. */
sl@0
   206
EXPORT_C void RResourceFile::ConfirmSignatureL(TInt aSignature)
sl@0
   207
    {
sl@0
   208
	Impl()->ConfirmSignatureL(aSignature);
sl@0
   209
    }
sl@0
   210
sl@0
   211
/** Initialises the offset value from the first resource.
sl@0
   212
sl@0
   213
The function tests to catch cases where the first resource is not an RSS_SIGNATURE.
sl@0
   214
It assumes that the first resource in the file consists of
sl@0
   215
two 32-bit integers. The first integer contains the version number and
sl@0
   216
the second is a self-referencing link whose value is the offset for
sl@0
   217
the resources in the file, plus 1.This function must be called before
sl@0
   218
calling Offset(), AllocReadL(), AllocReadLC() or ReadL().
sl@0
   219
sl@0
   220
@leave KErrCorrupt - wrong size of the first resource in the file.
sl@0
   221
Probably the file is corrupted.
sl@0
   222
@panic If the file is corrupted - the method will panic in debug mode.
sl@0
   223
@see TBafPanic for panic codes. */
sl@0
   224
EXPORT_C void RResourceFile::ConfirmSignatureL()
sl@0
   225
	{
sl@0
   226
	Impl()->ConfirmSignatureL();
sl@0
   227
	}
sl@0
   228
sl@0
   229
/** Returns this resource file's version number.
sl@0
   230
sl@0
   231
The function assumes that the first resource in the file consists of two 32-bit integers. 
sl@0
   232
The first integer contains the version number.
sl@0
   233
sl@0
   234
@return The version number.
sl@0
   235
@leave KErrCorrupt Wrong size of the first resource in the file.
sl@0
   236
Probably the file is corrupted.
sl@0
   237
@panic If the file is corrupted - the method will panic in debug mode. 
sl@0
   238
@see RResourceFile::ConfirmSignatureL()
sl@0
   239
@see TBafPanic for panic codes. */
sl@0
   240
EXPORT_C TInt RResourceFile::SignatureL() const
sl@0
   241
	{
sl@0
   242
	return Impl()->SignatureL();
sl@0
   243
	}
sl@0
   244
sl@0
   245
/** Tests whether the resource file owns the specified resource id.
sl@0
   246
sl@0
   247
The resource file owns the resource id if the most significant 20 bits of 
sl@0
   248
the resource id are zero or match the offset value as returned from a call 
sl@0
   249
to the Offset() member function.
sl@0
   250
@deprecated Interface is deprecated because it is unsafe as it may leave.
sl@0
   251
@see RResourceFile::OwnsResourceIdL
sl@0
   252
@param aResourceId The resource id to test or if the resource id is not out of range.
sl@0
   253
@return True, if the resource file owns the id, false otherwise.
sl@0
   254
*/
sl@0
   255
EXPORT_C TBool RResourceFile::OwnsResourceId(TInt aResourceId) const
sl@0
   256
	{
sl@0
   257
	TBool retCode=EFalse;
sl@0
   258
	TRAPD(errCode, retCode = OwnsResourceIdL (aResourceId));
sl@0
   259
    UNUSED_VAR(errCode);
sl@0
   260
	return retCode;
sl@0
   261
	}
sl@0
   262
sl@0
   263
sl@0
   264
/** Tests whether the resource file owns the specified resource id.
sl@0
   265
sl@0
   266
The resource file owns the resource id if the most significant 20 bits of 
sl@0
   267
the resource id are zero or match the offset value as returned from a call 
sl@0
   268
to the Offset() member function or if the resource id is not out of range.
sl@0
   269
sl@0
   270
@param aResourceId The resource id to test.
sl@0
   271
@return True, if the resource file owns the id, false otherwise.
sl@0
   272
@panic If the file is corrupted - the method will panic in debug mode.
sl@0
   273
@see TBafPanic for panic codes. */
sl@0
   274
EXPORT_C TBool RResourceFile::OwnsResourceIdL(TInt aResourceId) const
sl@0
   275
	{
sl@0
   276
	return Impl()->OwnsResourceIdL(aResourceId);
sl@0
   277
	}
sl@0
   278
sl@0
   279
/** Opens the resource file reader.
sl@0
   280
sl@0
   281
@internalComponent
sl@0
   282
@param aFs Handle to a file server session.
sl@0
   283
@param aName File to open as a resource file.
sl@0
   284
@param aFileOffset Resource file section offset from the beginning of the file.
sl@0
   285
@param aFileSize Resource file section size.
sl@0
   286
@leave The function leaves if the named file cannot be opened or the header 
sl@0
   287
record at the beginning of the file cannot be read. 
sl@0
   288
@panic If the file is corrupted - the method will panic in debug mode.
sl@0
   289
@see TBafPanic for panic codes. */
sl@0
   290
void RResourceFile::DoOpenL(RFs& aFs, const TDesC& aName, TUint aFileOffset, TInt aFileSize)
sl@0
   291
	{
sl@0
   292
	Close();
sl@0
   293
	TBaAssert assertObj(TBaAssert::EPanic);
sl@0
   294
	Impl()->OpenL(aFs, aName, assertObj, aFileOffset, aFileSize);
sl@0
   295
	}
sl@0
   296
sl@0
   297
/** Returns the offset value defined for this resource file.
sl@0
   298
sl@0
   299
This function must not be called until a call to ConfirmSignatureL() has completed successfully, 
sl@0
   300
otherwise the value returned by this function may be meaningless.
sl@0
   301
sl@0
   302
@internalComponent
sl@0
   303
@return The offset value defined for this resource file. */
sl@0
   304
EXPORT_C TInt RResourceFile::Offset2() const
sl@0
   305
	{
sl@0
   306
	return Impl()->Offset();
sl@0
   307
	}
sl@0
   308
sl@0
   309
/** The method returns a pointer to the object implementing resource file reader
sl@0
   310
functionality.
sl@0
   311
sl@0
   312
@internalComponent
sl@0
   313
@return Pointer to the implementation instance. */
sl@0
   314
RResourceFileImpl* RResourceFile::Impl()
sl@0
   315
	{
sl@0
   316
	return reinterpret_cast <RResourceFileImpl*> (iImpl);
sl@0
   317
	}
sl@0
   318
sl@0
   319
/** The method returns a const pointer to the object implementing resource file reader
sl@0
   320
functionality.
sl@0
   321
sl@0
   322
@internalComponent
sl@0
   323
@return Const pointer to the implementation instance. */
sl@0
   324
const RResourceFileImpl* RResourceFile::Impl() const
sl@0
   325
	{
sl@0
   326
	return reinterpret_cast <const RResourceFileImpl*> (iImpl);
sl@0
   327
	}