os/ossrv/lowlevellibsandfws/apputils/src/BaRsc2.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/apputils/src/BaRsc2.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,292 @@
     1.4 +// Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +#include <barsc2.h>
    1.20 +#include "BaRscImpl.h"
    1.21 +#include "BaAssert.h"
    1.22 +
    1.23 +/** Creates CResourceFile instance.
    1.24 +@param aFs Handle to a file server session.
    1.25 +@param aName File to open as a resource file.
    1.26 +@param aFileOffset The resource file section offset from the beginning of the file.
    1.27 +@param aFileSize The resource file section size.
    1.28 +@leave KErrCorrupt if the file is corrupted.
    1.29 +@leave KErrNoMemory if there is not enough memory for the object. */
    1.30 +EXPORT_C CResourceFile* CResourceFile::NewL(RFs& aFs, const TDesC& aName, 
    1.31 +											TUint aFileOffset, TInt aFileSize)
    1.32 +	{
    1.33 +	CResourceFile* self = CResourceFile::NewLC(aFs, aName, aFileOffset, aFileSize);
    1.34 +	CleanupStack::Pop(self);
    1.35 +	return self;
    1.36 +	}
    1.37 +
    1.38 +/** Creates CResourceFile instance.
    1.39 +@param aRscFileBuffer a buffer containing one entire resource file
    1.40 +@return a CResourceFile instance corresponding to the rsc file passed
    1.41 +through the file buffer
    1.42 +@leave KErrCorrupt if the file buffer is corrupted.
    1.43 +@leave KErrNoMemory if there is not enough memory for the object. */
    1.44 +EXPORT_C CResourceFile* CResourceFile::NewL(const TDesC8& aRscFileBuffer)
    1.45 +	{
    1.46 +	CResourceFile* self = new (ELeave) CResourceFile;
    1.47 +	CleanupStack::PushL(self);
    1.48 +	self->ConstructL(aRscFileBuffer);
    1.49 +	CleanupStack::Pop(self);
    1.50 +	return self;
    1.51 +	}
    1.52 +
    1.53 +/** Creates CResourceFile instance.
    1.54 +@param aFs Handle to a file server session.
    1.55 +@param aName File to open as a resource file.
    1.56 +@param aFileOffset The resource file section offset from the beginning of the file.
    1.57 +@param aFileSize The resource file section size.
    1.58 +@leave KErrCorrupt if the file is corrupted.
    1.59 +@leave KErrNoMemory if there is not enough memory for the object. */
    1.60 +EXPORT_C CResourceFile* CResourceFile::NewLC(RFs& aFs, const TDesC& aName, 
    1.61 +											 TUint aFileOffset, TInt aFileSize)
    1.62 +	{
    1.63 +	CResourceFile* self = new (ELeave) CResourceFile;
    1.64 +	CleanupStack::PushL(self);
    1.65 +	self->ConstructL(aFs, aName, aFileOffset, aFileSize);
    1.66 +	return self;
    1.67 +	}
    1.68 +
    1.69 +/** Frees the resources, allocated by the instance.*/
    1.70 +EXPORT_C CResourceFile::~CResourceFile()
    1.71 +	{
    1.72 +	RResourceFileImpl* impl = Impl();
    1.73 +	impl->Close();
    1.74 +	//RResourceFileImpl doesn't have a user defined destructor.
    1.75 +	//All resources deallocation must be done in the RResourceFileImpl::Close() method.
    1.76 +	}
    1.77 +
    1.78 +/** Returns this resource file's UIDs.
    1.79 +
    1.80 +@return The UIDs of the loaded resource file. */
    1.81 +EXPORT_C TUidType CResourceFile::UidType() const
    1.82 +	{
    1.83 +	return Impl()->UidType();
    1.84 +	}
    1.85 +
    1.86 +/** Reads a resource specified by resource id into the specified descriptor.
    1.87 +
    1.88 +The descriptor must be long enough to contain the entire resource
    1.89 +
    1.90 +The search for the resource uses the following algorithm:
    1.91 +
    1.92 +A resource id in the range 1 to 4095 is looked up in this resource file. The 
    1.93 +function leaves if there is no matching resource.
    1.94 +
    1.95 +If the resource id is greater than 4095, then the most significant 20 bits 
    1.96 +of the resource id is treated as an offset and the least significant 12 bits 
    1.97 +is treated as the real resource id. If the offset matches the offset value 
    1.98 +defined for this file, then the resource is looked up in this resource file 
    1.99 +using the real resource id (i.e. the least significant 12 bits). If the offset 
   1.100 +does not match, then the function leaves.
   1.101 +
   1.102 +Note, do not call this function until a call to ConfirmSignatureL() has completed 
   1.103 +successfully.
   1.104 +
   1.105 +@param aDes On return, contains the resource that has been read.
   1.106 +The function leaves if the descriptor is not long enough to contain the entire resource.
   1.107 +@param aResourceId The numeric id of the resource to be read. The function 
   1.108 +leaves if this resource id is not in this resource file.
   1.109 +@leave The function leaves if this resource id is not in this
   1.110 +resource file or the file is corrupted. */
   1.111 +EXPORT_C void CResourceFile::ReadL(TDes8 &aDes,TInt aResourceId) const
   1.112 +	{
   1.113 +	Impl()->ReadL(aDes, aResourceId);
   1.114 +	}
   1.115 +
   1.116 +/** Reads a resource into a heap descriptor and returns a pointer to that descriptor.
   1.117 +
   1.118 +A heap descriptor of appropriate length is allocated for the resource. Ownership 
   1.119 +of the heap descriptor passes to the caller who must destroy it when it is 
   1.120 +no longer needed.
   1.121 +
   1.122 +The search for the resource uses the following algorithm:
   1.123 +
   1.124 +A resource id in the range 1 to 4095 is looked up in this resource file. The 
   1.125 +function leaves if there is no matching resource.
   1.126 +
   1.127 +If the resource id is greater than 4095, then the most significant 20 bits 
   1.128 +of the resource id is treated as an offset and the least significant 12 bits 
   1.129 +is treated as the real resource id. If the offset matches the offset value 
   1.130 +defined for this file, then the resource is looked up in this resource file 
   1.131 +using the real resource id (i.e. the least significant 12 bits). If the offset 
   1.132 +does not match, then the function leaves.
   1.133 +
   1.134 +Note, do not call this function until a call to ConfirmSignatureL() has completed 
   1.135 +successfully.
   1.136 +
   1.137 +@param aResourceId The numeric id of the resource to be read.
   1.138 +@return Pointer to a heap descriptor containing the resource.
   1.139 +@leave  The function leaves if this resource id is not in this
   1.140 +resource file or the file is corrupted.
   1.141 +@see RResourceFile::Offset() */
   1.142 +EXPORT_C HBufC8* CResourceFile::AllocReadL(TInt aResourceId) const
   1.143 +	{
   1.144 +	HBufC8* resource = AllocReadLC(aResourceId);
   1.145 +	CleanupStack::Pop(resource);
   1.146 +	return resource;
   1.147 +	}
   1.148 +
   1.149 +/** Reads a resource into a heap descriptor, returns a pointer to that descriptor 
   1.150 +and pushes the pointer onto the cleanup stack.
   1.151 +
   1.152 +A heap descriptor of appropriate length is allocated for the resource. Ownership 
   1.153 +of the heap descriptor passes to the caller who must destroy it and pop its 
   1.154 +pointer off the cleanup stack when it is no longer needed.
   1.155 +
   1.156 +The search for the resource uses the following algorithm:
   1.157 +
   1.158 +A resource id in the range 1 to 4095 is looked up in this resource file. The 
   1.159 +function leaves if there is no matching resource.
   1.160 +
   1.161 +If the resource id is greater than 4095, then the most significant 20 bits 
   1.162 +of the resource id is treated as an offset and the least significant 12 bits 
   1.163 +is treated as the real resource id. If the offset matches the offset value 
   1.164 +defined for this file, then the resource is looked up in this resource file 
   1.165 +using the real resource id (i.e. the least significant 12 bits). If the offset 
   1.166 +does not match, then the function leaves.
   1.167 +
   1.168 +Note, do not call this function until a call to ConfirmSignatureL() has completed 
   1.169 +successfully.
   1.170 +
   1.171 +@param aResourceId The numeric id of the resource to be read.
   1.172 +@return Pointer to a heap descriptor containing the resource.
   1.173 +@leave The function leaves if this resource id is not in this
   1.174 +resource file or the file is corrupted.
   1.175 +@see RResourceFile::Offset() */
   1.176 +EXPORT_C HBufC8* CResourceFile::AllocReadLC(TInt aResourceId) const
   1.177 +	{
   1.178 +	return Impl()->AllocReadLC(aResourceId);
   1.179 +	}
   1.180 +
   1.181 +/** Initialises the offset value from the first resource.
   1.182 +
   1.183 +The function assumes that the first resource in the file consists of
   1.184 +two 32-bit integers. The first integer contains the version number and
   1.185 +the second is a self-referencing link whose value is the offset for
   1.186 +the resources in the file, plus 1.This function must be called before
   1.187 +calling Offset(), AllocReadL(), AllocReadLC() or ReadL().
   1.188 +
   1.189 +@param aSignature This argument value is not used by the function.
   1.190 +@leave The function leaves if this resource id is not in this
   1.191 +resource file or the file is corrupted. */
   1.192 +EXPORT_C void CResourceFile::ConfirmSignatureL(TInt aSignature)
   1.193 +	{
   1.194 +	Impl()->ConfirmSignatureL(aSignature);
   1.195 +	}
   1.196 +
   1.197 +/** Initialises the offset value from the first resource.
   1.198 +
   1.199 +The function tests to catch cases where the first resource is not an RSS_SIGNATURE.
   1.200 +It assumes that the first resource in the file consists of
   1.201 +two 32-bit integers. The first integer contains the version number and
   1.202 +the second is a self-referencing link whose value is the offset for
   1.203 +the resources in the file, plus 1.This function must be called before
   1.204 +calling Offset(), AllocReadL(), AllocReadLC() or ReadL().
   1.205 +@leave The function leaves if this resource id is not in this
   1.206 +resource file or the file is corrupted. */
   1.207 +EXPORT_C void CResourceFile::ConfirmSignatureL()
   1.208 +	{
   1.209 +	Impl()->ConfirmSignatureL();
   1.210 +	}
   1.211 +
   1.212 +/** Returns this resource file's version number.
   1.213 +
   1.214 +The function assumes that the first resource in the file consists of two 32-bit integers. 
   1.215 +The first integer contains the version number.
   1.216 +@return The version number.
   1.217 +@leave KErrCorrupt - the file is corrupted.
   1.218 +@see RResourceFile::ConfirmSignatureL() */
   1.219 +EXPORT_C TInt CResourceFile::SignatureL() const
   1.220 +	{
   1.221 +	return Impl()->SignatureL();
   1.222 +	}
   1.223 +
   1.224 +/** Tests whether the resource file owns the specified resource id.
   1.225 +The resource file owns the resource id if the most significant 20 bits of 
   1.226 +the resource id are zero or match the offset value as returned from a call 
   1.227 +to the Offset() member function or if the resource id is not out of range.
   1.228 +@param aResourceId The resource id to test.
   1.229 +@return True, if the resource file owns the id, false otherwise.
   1.230 +@leave KErrCorrupt - the file is corrupted. Some other error codes are possible. */
   1.231 +EXPORT_C TBool CResourceFile::OwnsResourceIdL(TInt aResourceId) const
   1.232 +	{
   1.233 +	return Impl()->OwnsResourceIdL(aResourceId);
   1.234 +	}
   1.235 +
   1.236 +/** Returns the offset value defined for this resource file.
   1.237 +
   1.238 +This function must not be called until a call to ConfirmSignatureL()
   1.239 +has completed successfully, otherwise the value returned by this 
   1.240 +function may be meaningless.
   1.241 +@return The offset value defined for this resource file. */
   1.242 +EXPORT_C TInt CResourceFile::Offset() const
   1.243 +	{
   1.244 +	return Impl()->Offset(); 
   1.245 +	}
   1.246 +
   1.247 +/**
   1.248 +@internalComponent
   1.249 +Default constructor.
   1.250 +Initializes in place the implementation object.
   1.251 +*/
   1.252 +CResourceFile::CResourceFile()
   1.253 +	{
   1.254 +	//Creating the implementation instance with a placement new operator.
   1.255 +	new (iImpl) RResourceFileImpl;
   1.256 +	}
   1.257 +
   1.258 +/** @internalComponent
   1.259 +@param aFs Handle to a file server session.
   1.260 +@param aName File to open as a resource file.
   1.261 +@param aFileOffset The resource file section offset from the beginning of the file.
   1.262 +@param aFileSize The resource file section size.
   1.263 +@leave KErrCorrupt if the file is corrupted.
   1.264 +@leave KErrNoMemory if there is not enough memory for the object. */
   1.265 +void CResourceFile::ConstructL(RFs& aFs, const TDesC& aName, 
   1.266 +								TUint aFileOffset, TInt aFileSize)
   1.267 +	{
   1.268 +	TBaAssert assertObj(TBaAssert::ELeave);
   1.269 +	Impl()->OpenL(aFs, aName, assertObj, aFileOffset, aFileSize);
   1.270 +	}
   1.271 +
   1.272 +/** @internalComponent
   1.273 +@param aRscFileBuffer a buffer containing a full rsc file
   1.274 +@leave KErrCorrupt if the file buffer is corrupted.
   1.275 +@leave KErrNoMemory if there is not enough memory for the object. */
   1.276 +void CResourceFile::ConstructL(const TDesC8& aRscFileBuffer)
   1.277 +	{
   1.278 +	TBaAssert assertObj(TBaAssert::ELeave);
   1.279 +	Impl()->OpenL(aRscFileBuffer,assertObj);
   1.280 +	}
   1.281 +
   1.282 +/** @internalComponent
   1.283 +@return Non-const pointer to the implementation. */
   1.284 +RResourceFileImpl* CResourceFile::Impl()
   1.285 +	{
   1.286 +	return reinterpret_cast <RResourceFileImpl*> (iImpl);
   1.287 +	}
   1.288 +
   1.289 +/** @internalComponent
   1.290 +@return Const pointer to the implementation. */
   1.291 +const RResourceFileImpl* CResourceFile::Impl() const
   1.292 +	{
   1.293 +	return reinterpret_cast <const RResourceFileImpl*> (iImpl);
   1.294 +	}
   1.295 +