os/ossrv/lowlevellibsandfws/apputils/src/BARSC.CPP
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/apputils/src/BARSC.CPP	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,327 @@
     1.4 +// Copyright (c) 1997-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 <barsc.h>
    1.20 +#include "BaRscImpl.h"
    1.21 +#include "BaAssert.h"
    1.22 +#include "BaCompileAssert.h"
    1.23 +
    1.24 +#define UNUSED_VAR(a) a = a
    1.25 +
    1.26 +/** Constructs a default resource file object. */
    1.27 +EXPORT_C RResourceFile::RResourceFile()
    1.28 +	{
    1.29 +	COMPILE_TIME_ASSERT(sizeof(RResourceFile)==sizeof(RResourceFileImpl));
    1.30 +	//Creating the implementation instance with a placement new operator.
    1.31 +	//All RResourceFileImpl resources deallocation must be done in its Close() method.
    1.32 +	//There are some special requirements about RResourceFileImpl implementation:
    1.33 +	//  - it must be the same size as the RResourceFile implementation;
    1.34 +	//  - the offset of iOffset data member must be the same as the offset
    1.35 +	//    of iOffset data member of RResourceFile class before the changes - 
    1.36 +	//    make the class using RResourceFileImpl;
    1.37 +	new (iImpl) RResourceFileImpl;
    1.38 +	}
    1.39 +
    1.40 +/** Closes the resource file reader.
    1.41 +This function is called after finishing reading all resources. */
    1.42 +EXPORT_C void RResourceFile::Close()
    1.43 +	{
    1.44 +	Impl()->Close();
    1.45 +	}
    1.46 +
    1.47 +/** Opens the resource file reader.
    1.48 +
    1.49 +The resource file reader must be opened before reading resources or
    1.50 +checking the signature of the resource file. This function initially
    1.51 +closes the resource-file object if it is currently open. If a leave
    1.52 +occurs during the function, the object is reverted to its closed state.
    1.53 +
    1.54 +@param aFs Handle to a file server session.
    1.55 +@param aName File to open as a resource file
    1.56 +@leave The function leaves if the named file cannot be opened or the header 
    1.57 +record at the beginning of the file cannot be read. 
    1.58 +@panic If the file is corrupted - the method will panic in debug mode.
    1.59 +@see TBafPanic for panic codes. */
    1.60 +EXPORT_C void RResourceFile::OpenL(RFs &aFs,const TDesC &aName)
    1.61 +	{
    1.62 +	DoOpenL(aFs, aName, 0, 0);
    1.63 +	}
    1.64 +
    1.65 +/** Opens the resource file reader.
    1.66 +
    1.67 +The resource file reader must be opened before reading resources or
    1.68 +checking the signature of the resource file. This function initially
    1.69 +closes the resource-file object if it is currently open. If a leave
    1.70 +occurs during the function, the object is reverted to its closed state.
    1.71 +
    1.72 +@param aFs Handle to a file server session
    1.73 +@param aName File to open as a resource file
    1.74 +@param aFileOffset Resource file section offset from the beginning of the file.
    1.75 +@param aFileSize Resource file section size.
    1.76 +@leave Function leaves if the named file cannot be opened or the header 
    1.77 +record at the beginning of the file cannot be read. 
    1.78 +@panic If the file is corrupted - the method will panic in debug mode.
    1.79 +@see TBafPanic for panic codes. */
    1.80 +EXPORT_C void RResourceFile::OpenL(RFs& aFs, const TDesC& aName, TUint aFileOffset, TInt aFileSize)
    1.81 +	{
    1.82 +	DoOpenL(aFs, aName, aFileOffset, aFileSize);
    1.83 +	}
    1.84 +
    1.85 +/** 
    1.86 +Retrieve the UID tuple of the opened resource file.
    1.87 +
    1.88 +@pre OpenL() has been called successfully.
    1.89 +@return The UIDs of the loaded resource file.
    1.90 +@panic If the file is not opened or class data members initialization fails - 
    1.91 +the method will panic always.
    1.92 +@see TBafPanic for panic codes. */
    1.93 +EXPORT_C TUidType RResourceFile::UidType() const
    1.94 +	{
    1.95 +	return Impl()->UidType();
    1.96 +	}
    1.97 +
    1.98 +/** Reads a resource specified by resource id into the specified descriptor.
    1.99 +
   1.100 +The descriptor must be long enough to contain the entire resource
   1.101 +
   1.102 +The search for the resource uses the following algorithm:
   1.103 +
   1.104 +A resource id in the range 1 to 4095 is looked up in this resource file. The 
   1.105 +function leaves if there is no matching resource.
   1.106 +
   1.107 +If the resource id is greater than 4095, then the most significant 20 bits 
   1.108 +of the resource id is treated as an offset and the least significant 12 bits 
   1.109 +is treated as the real resource id. If the offset matches the offset value 
   1.110 +defined for this file, then the resource is looked up in this resource file 
   1.111 +using the real resource id (i.e. the least significant 12 bits). If the offset 
   1.112 +does not match, then the function leaves.
   1.113 +
   1.114 +Note, do not call this function until a call to ConfirmSignatureL() has completed 
   1.115 +successfully.
   1.116 +
   1.117 +@param aDes On return, contains the resource that has been read.
   1.118 +The function leaves if the descriptor is not long enough to contain the entire resource.
   1.119 +@param aResourceId The numeric id of the resource to be read.
   1.120 +@leave The function leaves if this resource id is not in this
   1.121 +resource file.
   1.122 +@panic If the file is corrupted - the method will panic in debug mode.
   1.123 +@see TBafPanic for panic codes. */
   1.124 +EXPORT_C void RResourceFile::ReadL(TDes8 &aDes,TInt aResourceId) const
   1.125 +	{
   1.126 +	Impl()->ReadL(aDes, aResourceId);
   1.127 +	}
   1.128 +
   1.129 +/** Reads a resource into a heap descriptor, returns a pointer to that descriptor 
   1.130 +and pushes the pointer onto the cleanup stack.
   1.131 +
   1.132 +A heap descriptor of appropriate length is allocated for the resource. Ownership 
   1.133 +of the heap descriptor passes to the caller who must destroy it and pop its 
   1.134 +pointer off the cleanup stack when it is no longer needed.
   1.135 +
   1.136 +The search for the resource uses the following algorithm:
   1.137 +
   1.138 +A resource id in the range 1 to 4095 is looked up in this resource file. The 
   1.139 +function leaves if there is no matching resource.
   1.140 +
   1.141 +If the resource id is greater than 4095, then the most significant 20 bits 
   1.142 +of the resource id is treated as an offset and the least significant 12 bits 
   1.143 +is treated as the real resource id. If the offset matches the offset value 
   1.144 +defined for this file, then the resource is looked up in this resource file 
   1.145 +using the real resource id (i.e. the least significant 12 bits). If the offset 
   1.146 +does not match, then the function leaves.
   1.147 +
   1.148 +Note, do not call this function until a call to ConfirmSignatureL() has completed 
   1.149 +successfully.
   1.150 +
   1.151 +@param aResourceId The numeric id of the resource to be read.
   1.152 +@return Pointer to a heap descriptor containing the resource.
   1.153 +@leave KErrNotFound - there is no resource with aResourceId in the file.
   1.154 +@panic If the file is corrupted - the method will panic in debug mode.
   1.155 +@see RResourceFile::Offset()
   1.156 +@see TBafPanic for panic codes. */
   1.157 +EXPORT_C HBufC8* RResourceFile::AllocReadLC(TInt aResourceId) const
   1.158 +	{
   1.159 +	return Impl()->AllocReadLC(aResourceId);
   1.160 +	}
   1.161 +
   1.162 +/** Reads a resource into a heap descriptor and returns a pointer to that descriptor.
   1.163 +
   1.164 +A heap descriptor of appropriate length is allocated for the resource. Ownership 
   1.165 +of the heap descriptor passes to the caller who must destroy it when it is 
   1.166 +no longer needed.
   1.167 +
   1.168 +The search for the resource uses the following algorithm:
   1.169 +
   1.170 +A resource id in the range 1 to 4095 is looked up in this resource file. The 
   1.171 +function leaves if there is no matching resource.
   1.172 +
   1.173 +If the resource id is greater than 4095, then the most significant 20 bits 
   1.174 +of the resource id is treated as an offset and the least significant 12 bits 
   1.175 +is treated as the real resource id. If the offset matches the offset value 
   1.176 +defined for this file, then the resource is looked up in this resource file 
   1.177 +using the real resource id (i.e. the least significant 12 bits). If the offset 
   1.178 +does not match, then the function leaves.
   1.179 +
   1.180 +Note, do not call this function until a call to ConfirmSignatureL() has completed 
   1.181 +successfully.
   1.182 +
   1.183 +@param aResourceId The numeric id of the resource to be read.
   1.184 +@return Pointer to an 8 bit heap descriptor containing the resource.
   1.185 +@leave KErrNotFound - there is no resource with aResourceId in the file.
   1.186 +@panic If the file is corrupted - the method will panic in debug mode. 
   1.187 +@see RResourceFile::Offset()
   1.188 +@see TBafPanic for panic codes. */
   1.189 +EXPORT_C HBufC8* RResourceFile::AllocReadL(TInt aResourceId) const
   1.190 +	{
   1.191 +	HBufC8* resource = AllocReadLC(aResourceId);
   1.192 +	CleanupStack::Pop(resource);
   1.193 +	return resource;
   1.194 +	}
   1.195 +
   1.196 +/** Initialises the offset value from the first resource.
   1.197 +
   1.198 +The function assumes that the first resource in the file consists of
   1.199 +two 32-bit integers. The first integer contains the version number and
   1.200 +the second is a self-referencing link whose value is the offset for
   1.201 +the resources in the file, plus 1.This function must be called before
   1.202 +calling Offset(), AllocReadL(), AllocReadLC() or ReadL().
   1.203 +
   1.204 +@param aSignature This argument value is not used by the function.
   1.205 +@leave KErrCorrupt - wrong size of the first resource in the file.
   1.206 +Probably the file is corrupted.
   1.207 +@panic If the file is corrupted - the method will panic in debug mode.
   1.208 +@see TBafPanic for panic codes. */
   1.209 +EXPORT_C void RResourceFile::ConfirmSignatureL(TInt aSignature)
   1.210 +    {
   1.211 +	Impl()->ConfirmSignatureL(aSignature);
   1.212 +    }
   1.213 +
   1.214 +/** Initialises the offset value from the first resource.
   1.215 +
   1.216 +The function tests to catch cases where the first resource is not an RSS_SIGNATURE.
   1.217 +It assumes that the first resource in the file consists of
   1.218 +two 32-bit integers. The first integer contains the version number and
   1.219 +the second is a self-referencing link whose value is the offset for
   1.220 +the resources in the file, plus 1.This function must be called before
   1.221 +calling Offset(), AllocReadL(), AllocReadLC() or ReadL().
   1.222 +
   1.223 +@leave KErrCorrupt - wrong size of the first resource in the file.
   1.224 +Probably the file is corrupted.
   1.225 +@panic If the file is corrupted - the method will panic in debug mode.
   1.226 +@see TBafPanic for panic codes. */
   1.227 +EXPORT_C void RResourceFile::ConfirmSignatureL()
   1.228 +	{
   1.229 +	Impl()->ConfirmSignatureL();
   1.230 +	}
   1.231 +
   1.232 +/** Returns this resource file's version number.
   1.233 +
   1.234 +The function assumes that the first resource in the file consists of two 32-bit integers. 
   1.235 +The first integer contains the version number.
   1.236 +
   1.237 +@return The version number.
   1.238 +@leave KErrCorrupt Wrong size of the first resource in the file.
   1.239 +Probably the file is corrupted.
   1.240 +@panic If the file is corrupted - the method will panic in debug mode. 
   1.241 +@see RResourceFile::ConfirmSignatureL()
   1.242 +@see TBafPanic for panic codes. */
   1.243 +EXPORT_C TInt RResourceFile::SignatureL() const
   1.244 +	{
   1.245 +	return Impl()->SignatureL();
   1.246 +	}
   1.247 +
   1.248 +/** Tests whether the resource file owns the specified resource id.
   1.249 +
   1.250 +The resource file owns the resource id if the most significant 20 bits of 
   1.251 +the resource id are zero or match the offset value as returned from a call 
   1.252 +to the Offset() member function.
   1.253 +@deprecated Interface is deprecated because it is unsafe as it may leave.
   1.254 +@see RResourceFile::OwnsResourceIdL
   1.255 +@param aResourceId The resource id to test or if the resource id is not out of range.
   1.256 +@return True, if the resource file owns the id, false otherwise.
   1.257 +*/
   1.258 +EXPORT_C TBool RResourceFile::OwnsResourceId(TInt aResourceId) const
   1.259 +	{
   1.260 +	TBool retCode=EFalse;
   1.261 +	TRAPD(errCode, retCode = OwnsResourceIdL (aResourceId));
   1.262 +    UNUSED_VAR(errCode);
   1.263 +	return retCode;
   1.264 +	}
   1.265 +
   1.266 +
   1.267 +/** Tests whether the resource file owns the specified resource id.
   1.268 +
   1.269 +The resource file owns the resource id if the most significant 20 bits of 
   1.270 +the resource id are zero or match the offset value as returned from a call 
   1.271 +to the Offset() member function or if the resource id is not out of range.
   1.272 +
   1.273 +@param aResourceId The resource id to test.
   1.274 +@return True, if the resource file owns the id, false otherwise.
   1.275 +@panic If the file is corrupted - the method will panic in debug mode.
   1.276 +@see TBafPanic for panic codes. */
   1.277 +EXPORT_C TBool RResourceFile::OwnsResourceIdL(TInt aResourceId) const
   1.278 +	{
   1.279 +	return Impl()->OwnsResourceIdL(aResourceId);
   1.280 +	}
   1.281 +
   1.282 +/** Opens the resource file reader.
   1.283 +
   1.284 +@internalComponent
   1.285 +@param aFs Handle to a file server session.
   1.286 +@param aName File to open as a resource file.
   1.287 +@param aFileOffset Resource file section offset from the beginning of the file.
   1.288 +@param aFileSize Resource file section size.
   1.289 +@leave The function leaves if the named file cannot be opened or the header 
   1.290 +record at the beginning of the file cannot be read. 
   1.291 +@panic If the file is corrupted - the method will panic in debug mode.
   1.292 +@see TBafPanic for panic codes. */
   1.293 +void RResourceFile::DoOpenL(RFs& aFs, const TDesC& aName, TUint aFileOffset, TInt aFileSize)
   1.294 +	{
   1.295 +	Close();
   1.296 +	TBaAssert assertObj(TBaAssert::EPanic);
   1.297 +	Impl()->OpenL(aFs, aName, assertObj, aFileOffset, aFileSize);
   1.298 +	}
   1.299 +
   1.300 +/** Returns the offset value defined for this resource file.
   1.301 +
   1.302 +This function must not be called until a call to ConfirmSignatureL() has completed successfully, 
   1.303 +otherwise the value returned by this function may be meaningless.
   1.304 +
   1.305 +@internalComponent
   1.306 +@return The offset value defined for this resource file. */
   1.307 +EXPORT_C TInt RResourceFile::Offset2() const
   1.308 +	{
   1.309 +	return Impl()->Offset();
   1.310 +	}
   1.311 +
   1.312 +/** The method returns a pointer to the object implementing resource file reader
   1.313 +functionality.
   1.314 +
   1.315 +@internalComponent
   1.316 +@return Pointer to the implementation instance. */
   1.317 +RResourceFileImpl* RResourceFile::Impl()
   1.318 +	{
   1.319 +	return reinterpret_cast <RResourceFileImpl*> (iImpl);
   1.320 +	}
   1.321 +
   1.322 +/** The method returns a const pointer to the object implementing resource file reader
   1.323 +functionality.
   1.324 +
   1.325 +@internalComponent
   1.326 +@return Const pointer to the implementation instance. */
   1.327 +const RResourceFileImpl* RResourceFile::Impl() const
   1.328 +	{
   1.329 +	return reinterpret_cast <const RResourceFileImpl*> (iImpl);
   1.330 +	}