sl@0
|
1 |
// Copyright (c) 2003-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 __BARSCIMPL_H__
|
sl@0
|
17 |
#define __BARSCIMPL_H__
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <e32std.h>
|
sl@0
|
20 |
#include <f32file.h>
|
sl@0
|
21 |
|
sl@0
|
22 |
//Forward declarations
|
sl@0
|
23 |
struct SDictionaryCompressionData;
|
sl@0
|
24 |
class RDictionaryCompressionBitStream;
|
sl@0
|
25 |
class TBaAssert;
|
sl@0
|
26 |
|
sl@0
|
27 |
/** Accesses a resource file and reads the resource data into a buffer.
|
sl@0
|
28 |
|
sl@0
|
29 |
It is the implementation class for RResourceFile and CResourceFile classes.
|
sl@0
|
30 |
|
sl@0
|
31 |
Because of BC reasons, the size of RResourceFileImpl must be the same as
|
sl@0
|
32 |
the size of RResourceFile class.
|
sl@0
|
33 |
|
sl@0
|
34 |
It is expected that all resources deallocation must be done in Close() method.
|
sl@0
|
35 |
(BC reasons - RResourceFile reserves enough space for the RResourceFileImpl
|
sl@0
|
36 |
instance and uses placement new operator to create it. But RResourceFile doesn't have a
|
sl@0
|
37 |
destructor, so there is no predictable way how the RResourceFileImpl
|
sl@0
|
38 |
destructor might be called, even if the class has user defined destructor).
|
sl@0
|
39 |
|
sl@0
|
40 |
Expected behaviour when assignment operator or copy constructor is called:
|
sl@0
|
41 |
The class doesn't have assignment operator and copy constructor, so the compiler generated
|
sl@0
|
42 |
ones will be used. The heap buffers used by the source class instance will be shared with the
|
sl@0
|
43 |
destination class instance.
|
sl@0
|
44 |
|
sl@0
|
45 |
Methods panic/leave behaviour: "L" methods panics/leave behaviour depends on iAssertObj
|
sl@0
|
46 |
member (iExtra data member actually). If iAssertObj internal state is TBaAssert::EPanic -
|
sl@0
|
47 |
"L" methods will panic, otherwise they will leave if something goes wrong.
|
sl@0
|
48 |
|
sl@0
|
49 |
@internalComponent
|
sl@0
|
50 |
@see RResourceFile
|
sl@0
|
51 |
@see CResourceFile */
|
sl@0
|
52 |
class RResourceFileImpl
|
sl@0
|
53 |
{
|
sl@0
|
54 |
public:
|
sl@0
|
55 |
RResourceFileImpl();
|
sl@0
|
56 |
~RResourceFileImpl();
|
sl@0
|
57 |
void OpenL(
|
sl@0
|
58 |
RFs& aFs,
|
sl@0
|
59 |
const TDesC& aName,
|
sl@0
|
60 |
const TBaAssert& aAssert,
|
sl@0
|
61 |
TUint aFileOffset = 0,
|
sl@0
|
62 |
TInt aFileSize = 0);
|
sl@0
|
63 |
void OpenL(const TDesC8& aRscArchive,const TBaAssert& aAssert);
|
sl@0
|
64 |
void Close();
|
sl@0
|
65 |
TUidType UidType() const;
|
sl@0
|
66 |
void ReadL(TDes8 &aDes, TInt aResourceId) const;
|
sl@0
|
67 |
HBufC8 *AllocReadLC(TInt aResourceId) const;
|
sl@0
|
68 |
void ConfirmSignatureL(TInt aSignature);
|
sl@0
|
69 |
void ConfirmSignatureL();
|
sl@0
|
70 |
TInt SignatureL() const;
|
sl@0
|
71 |
TBool OwnsResourceIdL(TInt aResourceId) const;
|
sl@0
|
72 |
TInt Offset() const;
|
sl@0
|
73 |
private:
|
sl@0
|
74 |
struct SSigRecord
|
sl@0
|
75 |
{
|
sl@0
|
76 |
TInt signature;
|
sl@0
|
77 |
TInt offset;
|
sl@0
|
78 |
};
|
sl@0
|
79 |
enum
|
sl@0
|
80 |
{
|
sl@0
|
81 |
EFlagIsRomFile =0x80000000,
|
sl@0
|
82 |
EFlagPotentiallyContainsCompressedUnicode =0x40000000,
|
sl@0
|
83 |
EFlagDictionaryCompressed =0x20000000,
|
sl@0
|
84 |
EFlagThirdUidIsOffset =0x10000000,
|
sl@0
|
85 |
EFlagGenerate_RSS_SIGNATURE_ForFirstUserResource =0x08000000,
|
sl@0
|
86 |
EFlagFirstResourceIsGeneratedBitArrayOfResourcesContainingCompressedUnicode =0x04000000,
|
sl@0
|
87 |
EFlagCalypsoFileFormat =0x02000000,
|
sl@0
|
88 |
EFlagIsBufferRscFile =0x01000000,
|
sl@0
|
89 |
EAllFlags =0xff000000
|
sl@0
|
90 |
};
|
sl@0
|
91 |
enum
|
sl@0
|
92 |
{
|
sl@0
|
93 |
EOffsetBits =0xfffff000,
|
sl@0
|
94 |
EIdBits =0x00000fff
|
sl@0
|
95 |
};
|
sl@0
|
96 |
class TExtra;
|
sl@0
|
97 |
private:
|
sl@0
|
98 |
void ReadL(TInt aPos,TDes8& aDes,TInt aLength) const;
|
sl@0
|
99 |
SSigRecord FirstRecordL() const;
|
sl@0
|
100 |
|
sl@0
|
101 |
void AppendDecompressedUnicodeL(TDes8& aBuffer,const TDesC8& aCompressedUnicode) const;
|
sl@0
|
102 |
HBufC8* DecompressUnicodeL(
|
sl@0
|
103 |
const TDesC8& aDictionaryDecompressedResourceData,
|
sl@0
|
104 |
TInt aSizeOfLargestResourceWhenCompletelyUncompressed) const;
|
sl@0
|
105 |
HBufC8* DictionaryDecompressedResourceDataLC(
|
sl@0
|
106 |
TInt aResourceIndex,
|
sl@0
|
107 |
TUint aFlags,
|
sl@0
|
108 |
const SDictionaryCompressionData& aDictionaryCompressionData,
|
sl@0
|
109 |
const TDesC16& aIndex) const;
|
sl@0
|
110 |
void AppendDictionaryCompressionBitStreamL(
|
sl@0
|
111 |
RArray<RDictionaryCompressionBitStream>& aStackOfDictionaryCompressionBitStreams,
|
sl@0
|
112 |
TUint aFlags,
|
sl@0
|
113 |
const SDictionaryCompressionData& aDictionaryCompressionData,
|
sl@0
|
114 |
TInt aStartOfBitData,
|
sl@0
|
115 |
TInt aStartOfIndex,
|
sl@0
|
116 |
TInt aIndexEntry) const;
|
sl@0
|
117 |
TInt LittleEndianTwoByteIntegerL(const TDesC8& aBuffer,TInt aIndexOfFirstByte) const;
|
sl@0
|
118 |
void ReadL(TUint aFlags,TInt aPos,TDes8& aDes,TInt aLength) const;
|
sl@0
|
119 |
void ReadHeaderAndResourceIndexL();
|
sl@0
|
120 |
|
sl@0
|
121 |
private:
|
sl@0
|
122 |
TAny* iFile; // either an RFile*, or a const TUint8* pointing into ROM
|
sl@0
|
123 |
TInt iSizeOfLargestResourceWhenCompletelyUncompressed;
|
sl@0
|
124 |
//basically an array of (unsigned) 16-bit file-positions -
|
sl@0
|
125 |
//this is only used for non-dictionary-compressed resource files
|
sl@0
|
126 |
HBufC16* iIndex;
|
sl@0
|
127 |
//the position of this member in the class is exposed because RResourceFile::Offset() is
|
sl@0
|
128 |
//an inline function accessing "iOffset". RResourceFileImpl is an implementation class for
|
sl@0
|
129 |
//RResourceFile class. The "iOffset" offset from the beginning of the class must be exactly
|
sl@0
|
130 |
//12 bytes.
|
sl@0
|
131 |
TInt iOffset;
|
sl@0
|
132 |
TExtra* iExtra;
|
sl@0
|
133 |
TUint iFlagsAndNumberOfResources;
|
sl@0
|
134 |
};
|
sl@0
|
135 |
|
sl@0
|
136 |
#endif//__BARSCIMPL_H__
|