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