os/ossrv/lowlevellibsandfws/apputils/src/BaRsc2.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) 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
//
sl@0
    15
sl@0
    16
#include <barsc2.h>
sl@0
    17
#include "BaRscImpl.h"
sl@0
    18
#include "BaAssert.h"
sl@0
    19
sl@0
    20
/** Creates CResourceFile instance.
sl@0
    21
@param aFs Handle to a file server session.
sl@0
    22
@param aName File to open as a resource file.
sl@0
    23
@param aFileOffset The resource file section offset from the beginning of the file.
sl@0
    24
@param aFileSize The resource file section size.
sl@0
    25
@leave KErrCorrupt if the file is corrupted.
sl@0
    26
@leave KErrNoMemory if there is not enough memory for the object. */
sl@0
    27
EXPORT_C CResourceFile* CResourceFile::NewL(RFs& aFs, const TDesC& aName, 
sl@0
    28
											TUint aFileOffset, TInt aFileSize)
sl@0
    29
	{
sl@0
    30
	CResourceFile* self = CResourceFile::NewLC(aFs, aName, aFileOffset, aFileSize);
sl@0
    31
	CleanupStack::Pop(self);
sl@0
    32
	return self;
sl@0
    33
	}
sl@0
    34
sl@0
    35
/** Creates CResourceFile instance.
sl@0
    36
@param aRscFileBuffer a buffer containing one entire resource file
sl@0
    37
@return a CResourceFile instance corresponding to the rsc file passed
sl@0
    38
through the file buffer
sl@0
    39
@leave KErrCorrupt if the file buffer is corrupted.
sl@0
    40
@leave KErrNoMemory if there is not enough memory for the object. */
sl@0
    41
EXPORT_C CResourceFile* CResourceFile::NewL(const TDesC8& aRscFileBuffer)
sl@0
    42
	{
sl@0
    43
	CResourceFile* self = new (ELeave) CResourceFile;
sl@0
    44
	CleanupStack::PushL(self);
sl@0
    45
	self->ConstructL(aRscFileBuffer);
sl@0
    46
	CleanupStack::Pop(self);
sl@0
    47
	return self;
sl@0
    48
	}
sl@0
    49
sl@0
    50
/** Creates CResourceFile instance.
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
@param aFileOffset The resource file section offset from the beginning of the file.
sl@0
    54
@param aFileSize The resource file section size.
sl@0
    55
@leave KErrCorrupt if the file is corrupted.
sl@0
    56
@leave KErrNoMemory if there is not enough memory for the object. */
sl@0
    57
EXPORT_C CResourceFile* CResourceFile::NewLC(RFs& aFs, const TDesC& aName, 
sl@0
    58
											 TUint aFileOffset, TInt aFileSize)
sl@0
    59
	{
sl@0
    60
	CResourceFile* self = new (ELeave) CResourceFile;
sl@0
    61
	CleanupStack::PushL(self);
sl@0
    62
	self->ConstructL(aFs, aName, aFileOffset, aFileSize);
sl@0
    63
	return self;
sl@0
    64
	}
sl@0
    65
sl@0
    66
/** Frees the resources, allocated by the instance.*/
sl@0
    67
EXPORT_C CResourceFile::~CResourceFile()
sl@0
    68
	{
sl@0
    69
	RResourceFileImpl* impl = Impl();
sl@0
    70
	impl->Close();
sl@0
    71
	//RResourceFileImpl doesn't have a user defined destructor.
sl@0
    72
	//All resources deallocation must be done in the RResourceFileImpl::Close() method.
sl@0
    73
	}
sl@0
    74
sl@0
    75
/** Returns this resource file's UIDs.
sl@0
    76
sl@0
    77
@return The UIDs of the loaded resource file. */
sl@0
    78
EXPORT_C TUidType CResourceFile::UidType() const
sl@0
    79
	{
sl@0
    80
	return Impl()->UidType();
sl@0
    81
	}
sl@0
    82
sl@0
    83
/** Reads a resource specified by resource id into the specified descriptor.
sl@0
    84
sl@0
    85
The descriptor must be long enough to contain the entire resource
sl@0
    86
sl@0
    87
The search for the resource uses the following algorithm:
sl@0
    88
sl@0
    89
A resource id in the range 1 to 4095 is looked up in this resource file. The 
sl@0
    90
function leaves if there is no matching resource.
sl@0
    91
sl@0
    92
If the resource id is greater than 4095, then the most significant 20 bits 
sl@0
    93
of the resource id is treated as an offset and the least significant 12 bits 
sl@0
    94
is treated as the real resource id. If the offset matches the offset value 
sl@0
    95
defined for this file, then the resource is looked up in this resource file 
sl@0
    96
using the real resource id (i.e. the least significant 12 bits). If the offset 
sl@0
    97
does not match, then the function leaves.
sl@0
    98
sl@0
    99
Note, do not call this function until a call to ConfirmSignatureL() has completed 
sl@0
   100
successfully.
sl@0
   101
sl@0
   102
@param aDes On return, contains the resource that has been read.
sl@0
   103
The function leaves if the descriptor is not long enough to contain the entire resource.
sl@0
   104
@param aResourceId The numeric id of the resource to be read. The function 
sl@0
   105
leaves if this resource id is not in this resource file.
sl@0
   106
@leave The function leaves if this resource id is not in this
sl@0
   107
resource file or the file is corrupted. */
sl@0
   108
EXPORT_C void CResourceFile::ReadL(TDes8 &aDes,TInt aResourceId) const
sl@0
   109
	{
sl@0
   110
	Impl()->ReadL(aDes, aResourceId);
sl@0
   111
	}
sl@0
   112
sl@0
   113
/** Reads a resource into a heap descriptor and returns a pointer to that descriptor.
sl@0
   114
sl@0
   115
A heap descriptor of appropriate length is allocated for the resource. Ownership 
sl@0
   116
of the heap descriptor passes to the caller who must destroy it when it is 
sl@0
   117
no longer needed.
sl@0
   118
sl@0
   119
The search for the resource uses the following algorithm:
sl@0
   120
sl@0
   121
A resource id in the range 1 to 4095 is looked up in this resource file. The 
sl@0
   122
function leaves if there is no matching resource.
sl@0
   123
sl@0
   124
If the resource id is greater than 4095, then the most significant 20 bits 
sl@0
   125
of the resource id is treated as an offset and the least significant 12 bits 
sl@0
   126
is treated as the real resource id. If the offset matches the offset value 
sl@0
   127
defined for this file, then the resource is looked up in this resource file 
sl@0
   128
using the real resource id (i.e. the least significant 12 bits). If the offset 
sl@0
   129
does not match, then the function leaves.
sl@0
   130
sl@0
   131
Note, do not call this function until a call to ConfirmSignatureL() has completed 
sl@0
   132
successfully.
sl@0
   133
sl@0
   134
@param aResourceId The numeric id of the resource to be read.
sl@0
   135
@return Pointer to a heap descriptor containing the resource.
sl@0
   136
@leave  The function leaves if this resource id is not in this
sl@0
   137
resource file or the file is corrupted.
sl@0
   138
@see RResourceFile::Offset() */
sl@0
   139
EXPORT_C HBufC8* CResourceFile::AllocReadL(TInt aResourceId) const
sl@0
   140
	{
sl@0
   141
	HBufC8* resource = AllocReadLC(aResourceId);
sl@0
   142
	CleanupStack::Pop(resource);
sl@0
   143
	return resource;
sl@0
   144
	}
sl@0
   145
sl@0
   146
/** Reads a resource into a heap descriptor, returns a pointer to that descriptor 
sl@0
   147
and pushes the pointer onto the cleanup stack.
sl@0
   148
sl@0
   149
A heap descriptor of appropriate length is allocated for the resource. Ownership 
sl@0
   150
of the heap descriptor passes to the caller who must destroy it and pop its 
sl@0
   151
pointer off the cleanup stack when it is no longer needed.
sl@0
   152
sl@0
   153
The search for the resource uses the following algorithm:
sl@0
   154
sl@0
   155
A resource id in the range 1 to 4095 is looked up in this resource file. The 
sl@0
   156
function leaves if there is no matching resource.
sl@0
   157
sl@0
   158
If the resource id is greater than 4095, then the most significant 20 bits 
sl@0
   159
of the resource id is treated as an offset and the least significant 12 bits 
sl@0
   160
is treated as the real resource id. If the offset matches the offset value 
sl@0
   161
defined for this file, then the resource is looked up in this resource file 
sl@0
   162
using the real resource id (i.e. the least significant 12 bits). If the offset 
sl@0
   163
does not match, then the function leaves.
sl@0
   164
sl@0
   165
Note, do not call this function until a call to ConfirmSignatureL() has completed 
sl@0
   166
successfully.
sl@0
   167
sl@0
   168
@param aResourceId The numeric id of the resource to be read.
sl@0
   169
@return Pointer to a heap descriptor containing the resource.
sl@0
   170
@leave The function leaves if this resource id is not in this
sl@0
   171
resource file or the file is corrupted.
sl@0
   172
@see RResourceFile::Offset() */
sl@0
   173
EXPORT_C HBufC8* CResourceFile::AllocReadLC(TInt aResourceId) const
sl@0
   174
	{
sl@0
   175
	return Impl()->AllocReadLC(aResourceId);
sl@0
   176
	}
sl@0
   177
sl@0
   178
/** Initialises the offset value from the first resource.
sl@0
   179
sl@0
   180
The function assumes that the first resource in the file consists of
sl@0
   181
two 32-bit integers. The first integer contains the version number and
sl@0
   182
the second is a self-referencing link whose value is the offset for
sl@0
   183
the resources in the file, plus 1.This function must be called before
sl@0
   184
calling Offset(), AllocReadL(), AllocReadLC() or ReadL().
sl@0
   185
sl@0
   186
@param aSignature This argument value is not used by the function.
sl@0
   187
@leave The function leaves if this resource id is not in this
sl@0
   188
resource file or the file is corrupted. */
sl@0
   189
EXPORT_C void CResourceFile::ConfirmSignatureL(TInt aSignature)
sl@0
   190
	{
sl@0
   191
	Impl()->ConfirmSignatureL(aSignature);
sl@0
   192
	}
sl@0
   193
sl@0
   194
/** Initialises the offset value from the first resource.
sl@0
   195
sl@0
   196
The function tests to catch cases where the first resource is not an RSS_SIGNATURE.
sl@0
   197
It assumes that the first resource in the file consists of
sl@0
   198
two 32-bit integers. The first integer contains the version number and
sl@0
   199
the second is a self-referencing link whose value is the offset for
sl@0
   200
the resources in the file, plus 1.This function must be called before
sl@0
   201
calling Offset(), AllocReadL(), AllocReadLC() or ReadL().
sl@0
   202
@leave The function leaves if this resource id is not in this
sl@0
   203
resource file or the file is corrupted. */
sl@0
   204
EXPORT_C void CResourceFile::ConfirmSignatureL()
sl@0
   205
	{
sl@0
   206
	Impl()->ConfirmSignatureL();
sl@0
   207
	}
sl@0
   208
sl@0
   209
/** Returns this resource file's version number.
sl@0
   210
sl@0
   211
The function assumes that the first resource in the file consists of two 32-bit integers. 
sl@0
   212
The first integer contains the version number.
sl@0
   213
@return The version number.
sl@0
   214
@leave KErrCorrupt - the file is corrupted.
sl@0
   215
@see RResourceFile::ConfirmSignatureL() */
sl@0
   216
EXPORT_C TInt CResourceFile::SignatureL() const
sl@0
   217
	{
sl@0
   218
	return Impl()->SignatureL();
sl@0
   219
	}
sl@0
   220
sl@0
   221
/** Tests whether the resource file owns the specified resource id.
sl@0
   222
The resource file owns the resource id if the most significant 20 bits of 
sl@0
   223
the resource id are zero or match the offset value as returned from a call 
sl@0
   224
to the Offset() member function or if the resource id is not out of range.
sl@0
   225
@param aResourceId The resource id to test.
sl@0
   226
@return True, if the resource file owns the id, false otherwise.
sl@0
   227
@leave KErrCorrupt - the file is corrupted. Some other error codes are possible. */
sl@0
   228
EXPORT_C TBool CResourceFile::OwnsResourceIdL(TInt aResourceId) const
sl@0
   229
	{
sl@0
   230
	return Impl()->OwnsResourceIdL(aResourceId);
sl@0
   231
	}
sl@0
   232
sl@0
   233
/** Returns the offset value defined for this resource file.
sl@0
   234
sl@0
   235
This function must not be called until a call to ConfirmSignatureL()
sl@0
   236
has completed successfully, otherwise the value returned by this 
sl@0
   237
function may be meaningless.
sl@0
   238
@return The offset value defined for this resource file. */
sl@0
   239
EXPORT_C TInt CResourceFile::Offset() const
sl@0
   240
	{
sl@0
   241
	return Impl()->Offset(); 
sl@0
   242
	}
sl@0
   243
sl@0
   244
/**
sl@0
   245
@internalComponent
sl@0
   246
Default constructor.
sl@0
   247
Initializes in place the implementation object.
sl@0
   248
*/
sl@0
   249
CResourceFile::CResourceFile()
sl@0
   250
	{
sl@0
   251
	//Creating the implementation instance with a placement new operator.
sl@0
   252
	new (iImpl) RResourceFileImpl;
sl@0
   253
	}
sl@0
   254
sl@0
   255
/** @internalComponent
sl@0
   256
@param aFs Handle to a file server session.
sl@0
   257
@param aName File to open as a resource file.
sl@0
   258
@param aFileOffset The resource file section offset from the beginning of the file.
sl@0
   259
@param aFileSize The resource file section size.
sl@0
   260
@leave KErrCorrupt if the file is corrupted.
sl@0
   261
@leave KErrNoMemory if there is not enough memory for the object. */
sl@0
   262
void CResourceFile::ConstructL(RFs& aFs, const TDesC& aName, 
sl@0
   263
								TUint aFileOffset, TInt aFileSize)
sl@0
   264
	{
sl@0
   265
	TBaAssert assertObj(TBaAssert::ELeave);
sl@0
   266
	Impl()->OpenL(aFs, aName, assertObj, aFileOffset, aFileSize);
sl@0
   267
	}
sl@0
   268
sl@0
   269
/** @internalComponent
sl@0
   270
@param aRscFileBuffer a buffer containing a full rsc file
sl@0
   271
@leave KErrCorrupt if the file buffer is corrupted.
sl@0
   272
@leave KErrNoMemory if there is not enough memory for the object. */
sl@0
   273
void CResourceFile::ConstructL(const TDesC8& aRscFileBuffer)
sl@0
   274
	{
sl@0
   275
	TBaAssert assertObj(TBaAssert::ELeave);
sl@0
   276
	Impl()->OpenL(aRscFileBuffer,assertObj);
sl@0
   277
	}
sl@0
   278
sl@0
   279
/** @internalComponent
sl@0
   280
@return Non-const pointer to the implementation. */
sl@0
   281
RResourceFileImpl* CResourceFile::Impl()
sl@0
   282
	{
sl@0
   283
	return reinterpret_cast <RResourceFileImpl*> (iImpl);
sl@0
   284
	}
sl@0
   285
sl@0
   286
/** @internalComponent
sl@0
   287
@return Const pointer to the implementation. */
sl@0
   288
const RResourceFileImpl* CResourceFile::Impl() const
sl@0
   289
	{
sl@0
   290
	return reinterpret_cast <const RResourceFileImpl*> (iImpl);
sl@0
   291
	}
sl@0
   292