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 |
#ifndef __BAARCHIVEIMPL_H__
|
sl@0
|
17 |
#define __BAARCHIVEIMPL_H__
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <e32std.h>
|
sl@0
|
20 |
#include <f32file.h>
|
sl@0
|
21 |
|
sl@0
|
22 |
//Some useful constant
|
sl@0
|
23 |
const TUid KSpiFileUid={0x10205C2B};
|
sl@0
|
24 |
const TUint KSpiFirstRscOffset=32;
|
sl@0
|
25 |
|
sl@0
|
26 |
//Forward declarations
|
sl@0
|
27 |
class CResourceFile;
|
sl@0
|
28 |
|
sl@0
|
29 |
/**
|
sl@0
|
30 |
Internal class to store the RSC name and the pointer to data
|
sl@0
|
31 |
@internalComponent
|
sl@0
|
32 |
*/
|
sl@0
|
33 |
NONSHARABLE_CLASS(TRscEntry)
|
sl@0
|
34 |
{
|
sl@0
|
35 |
public:
|
sl@0
|
36 |
TRscEntry(){}
|
sl@0
|
37 |
public:
|
sl@0
|
38 |
TPtrC8 iRscName;
|
sl@0
|
39 |
TPtrC8 iRscData;
|
sl@0
|
40 |
#ifdef __BASPITEST__
|
sl@0
|
41 |
//used for testing purpose to check file association of each resource entry
|
sl@0
|
42 |
TPtrC iFileNamePtr;
|
sl@0
|
43 |
#endif
|
sl@0
|
44 |
};
|
sl@0
|
45 |
|
sl@0
|
46 |
/** Accesses a resource file and reads the resource data into a buffer.
|
sl@0
|
47 |
It is the implementation class for RResourceArchive
|
sl@0
|
48 |
@internalComponent
|
sl@0
|
49 |
@see RResourceArchive
|
sl@0
|
50 |
*/
|
sl@0
|
51 |
NONSHARABLE_CLASS(CResourceArchiveImpl) : public CBase
|
sl@0
|
52 |
{
|
sl@0
|
53 |
friend class RStaticPluginInfoTest;
|
sl@0
|
54 |
public:
|
sl@0
|
55 |
static CResourceArchiveImpl* NewL(RFs& aFs,const TDesC& aName);
|
sl@0
|
56 |
static CResourceArchiveImpl* NewL(RFs& aFs,const TDesC& aPath,const TDesC& aPattern);
|
sl@0
|
57 |
~CResourceArchiveImpl();
|
sl@0
|
58 |
CResourceFile* NextL(HBufC*& aRscFileName);
|
sl@0
|
59 |
void Reset();
|
sl@0
|
60 |
TUid Type();
|
sl@0
|
61 |
TBool NextResourceExist() const;
|
sl@0
|
62 |
|
sl@0
|
63 |
private:
|
sl@0
|
64 |
void ConstructL(RFs& aFs,const TDesC& aName);
|
sl@0
|
65 |
void ConstructL(RFs& aFs,const TDesC& aPath,const TDesC& aPattern);
|
sl@0
|
66 |
//helper functions
|
sl@0
|
67 |
void OpenFileL(RFs& aFs,const TDesC& aName,TPtr8& aBufferPtr);
|
sl@0
|
68 |
void ValidateHeaderL(TPtr8& aBufferPtr);
|
sl@0
|
69 |
void ProcessEntryL(TPtr8& aBufferPtr,RArray<TPtrC8>& aHiddenList);
|
sl@0
|
70 |
CResourceArchiveImpl();
|
sl@0
|
71 |
|
sl@0
|
72 |
//determine the order in which entry is inserted
|
sl@0
|
73 |
static TInt EntryOrder(const TRscEntry& aSource,const TRscEntry& aTarget)
|
sl@0
|
74 |
{
|
sl@0
|
75 |
return (aSource.iRscName.CompareF(aTarget.iRscName));
|
sl@0
|
76 |
}
|
sl@0
|
77 |
|
sl@0
|
78 |
//determine the matching criteria for TPtrC8
|
sl@0
|
79 |
static TBool MatchDescriptor(const TPtrC8& aSource,const TPtrC8& aTarget)
|
sl@0
|
80 |
{
|
sl@0
|
81 |
if (aSource.CompareF(aTarget)==0)
|
sl@0
|
82 |
return ETrue;
|
sl@0
|
83 |
return EFalse;
|
sl@0
|
84 |
}
|
sl@0
|
85 |
TInt32 LittleEndianFourByteInteger(const TDesC8& aBuffer,TInt aIndexOfFirstByte) const;
|
sl@0
|
86 |
private:
|
sl@0
|
87 |
//current rsc entry index to iRscList
|
sl@0
|
88 |
TInt iCurrentIndex;
|
sl@0
|
89 |
//type of spi file
|
sl@0
|
90 |
TUid iSpiFileType;
|
sl@0
|
91 |
//combined array of resources
|
sl@0
|
92 |
RArray<TRscEntry> iRscList;
|
sl@0
|
93 |
//list of all opened archive buffer
|
sl@0
|
94 |
RPointerArray<HBufC8> iSpiBufferArray;
|
sl@0
|
95 |
//list of all opened RChunk buffer
|
sl@0
|
96 |
RPointerArray<RChunk> iSpiChunkBufferArray;
|
sl@0
|
97 |
|
sl@0
|
98 |
#ifdef __BASPITEST__
|
sl@0
|
99 |
//used for testing purpose to check file association of each resource entry
|
sl@0
|
100 |
RArray<TFileName> iSpiFileNameArray;
|
sl@0
|
101 |
#endif
|
sl@0
|
102 |
};
|
sl@0
|
103 |
|
sl@0
|
104 |
#endif//__BAARCHIVEIMPL_H_
|