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