First public contribution.
1 // Copyright (c) 2004-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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
17 #include "BaArchiveImpl.h"
19 /** Constructs a default resource archive reader object. */
20 EXPORT_C RResourceArchive::RResourceArchive()
24 /** Closes the resource archive(SPI) reader.
25 This function is called after finishing reading all resources.
27 EXPORT_C void RResourceArchive::Close()
33 /** Open the resource archive reader
34 @param aFs Handle to a file server session
35 @param aName File to open as a resource archive file
36 @leave The function leaves if the named file cannot be found or the header
37 record at the beggining of the file cannot be read
38 @panic If the file is corrupted - the method will panic in debug mode.
40 EXPORT_C void RResourceArchive::OpenL(RFs& aFs,const TDesC& aName)
42 iArchiveImpl=CResourceArchiveImpl::NewL(aFs,aName);
45 /** Open the resource archive reader, this is usually used in composite
46 rom drive situation where multiple independent rom images are mapped to
47 a single rom drive and each rom image may consist 0..n spi files. Spi files
48 in each rom image are labelled with the rom image id(example ecom-<id>-0.spi)
49 with the id itself indicating the order of mounting/reading of the spi files.
50 RResourceArchive will always mount/read the spi files in ascending order of
51 the rom image id i.e. ecom-2-0.spi is mounted after ecom-1-0.spi and etc.
53 As a result of this mounting order,it is possible to replace a resource
54 inside an spi with the resource with same name from a later mounted spi.
55 It is also possible to specify in an spi file the hiding of resource in
56 another spi file.(See example below)
58 In the presence of localised spi files(ecom-<id>-0.sNN where NN is language code)
59 the spi files will be resolved internally based on existing language downgrade
60 path.(See example below)
62 @param aFs Handle to a file server session
63 @param aSpiPath full path of the folder that contains the spi file
64 @param aSpiName the default spi name without any image id and extension
68 z:\private\10009d8f\ecom-0-0.spi (ROM IMAGE 0)
69 z:\private\10009d8f\ecom-0-1.s02 (ROM IMAGE 0)
70 z:\private\10009d8f\ecom-1-0.spi (ROM IMAGE 1)
71 In this situation the function call to RResourceArchive should be:
72 RResourceArchive::OpenL(RFs,_L("z:\\private\\10009d8f\\"),_L("ecom"));
74 Example of multiple spi files and the visibility of the resource files
75 under two different language downgrade path(DGP):
76 -------------------------------------------------------------------------------
77 | | | |Resource Visibility
78 Ecom-1-0.spi| Ecom-1-0.s02 | Ecom-2-0.spi | Ecom-2-0.s02 |DGP(1) | DGP(2-1)
79 -------------------------------------------------------------------------------
80 A.RSC | A.R02 | B.RSC | Hide D.R02 |A.RSC(1) | A.R02(1)
81 B.RSC | D.R02 | | C.R02 |B.RSC(2) | B.RSC(2)
82 C.RSC | | | |C.RSC(1) | C.R02(2)
83 -------------------------------------------------------------------------------
86 @leave KErrNotFound if there is no single file matching aSpiName in the path
87 KErrCorrupt if the spi file is corrupted
88 @panic EBafPanicBadResourceFileFormat if the spi files that match the pattern
89 do not share a common spi type.
91 EXPORT_C void RResourceArchive::OpenL(RFs& aFs,const TDesC& aSpiPath,const TDesC& aSpiName)
93 iArchiveImpl=CResourceArchiveImpl::NewL(aFs,aSpiPath,aSpiName);
96 /** Creates an instance of CResourceFile which corresponds to the next
97 rsc file in the resource archive file(SPI)
98 @param aRscFileName the rsc file name buffer passed in by client
99 @return CResourceFile pointer of the next resource file in the SPI
100 @return NULL if there is no more resource file to read from the SPI
101 @leave KErrNoMemory if there is not enough memory for the object
102 @panic If the file is corrupted - the method will panic in debug mode
104 EXPORT_C CResourceFile* RResourceArchive::NextL(HBufC*& aRscFileName)
106 return (iArchiveImpl->NextL(aRscFileName));
109 /** Reset the CResourceArchiveIter to start reading the first rsc file
110 from the resourc archive(SPI) file
112 EXPORT_C void RResourceArchive::Reset()
114 iArchiveImpl->Reset();
117 /** Return the type of the resource archive(SPI) file being opened
118 @return the TUid type of the resource archive(SPI) file
120 EXPORT_C TUid RResourceArchive::Type()
122 return iArchiveImpl->Type();
125 /** Look ahead in the resource archive to check whether there is
126 still any resource in the archive to be read
127 @pre RResourceArchive::OpenL must be called beforehand
128 @return boolean indicating whether the next resource exists
130 EXPORT_C TBool RResourceArchive::End()
132 return (!(iArchiveImpl->NextResourceExist()));