Update contrib.
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.
16 #ifndef __BAARCHIVEIMPL_H__
17 #define __BAARCHIVEIMPL_H__
22 //Some useful constant
23 const TUid KSpiFileUid={0x10205C2B};
24 const TUint KSpiFirstRscOffset=32;
26 //Forward declarations
30 Internal class to store the RSC name and the pointer to data
33 NONSHARABLE_CLASS(TRscEntry)
41 //used for testing purpose to check file association of each resource entry
46 /** Accesses a resource file and reads the resource data into a buffer.
47 It is the implementation class for RResourceArchive
51 NONSHARABLE_CLASS(CResourceArchiveImpl) : public CBase
53 friend class RStaticPluginInfoTest;
55 static CResourceArchiveImpl* NewL(RFs& aFs,const TDesC& aName);
56 static CResourceArchiveImpl* NewL(RFs& aFs,const TDesC& aPath,const TDesC& aPattern);
57 ~CResourceArchiveImpl();
58 CResourceFile* NextL(HBufC*& aRscFileName);
61 TBool NextResourceExist() const;
64 void ConstructL(RFs& aFs,const TDesC& aName);
65 void ConstructL(RFs& aFs,const TDesC& aPath,const TDesC& aPattern);
67 void OpenFileL(RFs& aFs,const TDesC& aName,TPtr8& aBufferPtr);
68 void ValidateHeaderL(TPtr8& aBufferPtr);
69 void ProcessEntryL(TPtr8& aBufferPtr,RArray<TPtrC8>& aHiddenList);
70 CResourceArchiveImpl();
72 //determine the order in which entry is inserted
73 static TInt EntryOrder(const TRscEntry& aSource,const TRscEntry& aTarget)
75 return (aSource.iRscName.CompareF(aTarget.iRscName));
78 //determine the matching criteria for TPtrC8
79 static TBool MatchDescriptor(const TPtrC8& aSource,const TPtrC8& aTarget)
81 if (aSource.CompareF(aTarget)==0)
85 TInt32 LittleEndianFourByteInteger(const TDesC8& aBuffer,TInt aIndexOfFirstByte) const;
87 //current rsc entry index to iRscList
91 //combined array of resources
92 RArray<TRscEntry> iRscList;
93 //list of all opened archive buffer
94 RPointerArray<HBufC8> iSpiBufferArray;
95 //list of all opened RChunk buffer
96 RPointerArray<RChunk> iSpiChunkBufferArray;
99 //used for testing purpose to check file association of each resource entry
100 RArray<TFileName> iSpiFileNameArray;
104 #endif//__BAARCHIVEIMPL_H_