sl@0
|
1 |
// Copyright (c) 1997-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 __BARSREAD_H__
|
sl@0
|
17 |
#define __BARSREAD_H__
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <e32std.h>
|
sl@0
|
20 |
#include <badesca.h>
|
sl@0
|
21 |
|
sl@0
|
22 |
class TResourceReaderImpl;
|
sl@0
|
23 |
|
sl@0
|
24 |
/**
|
sl@0
|
25 |
Interprets resource data read from a resource file.
|
sl@0
|
26 |
|
sl@0
|
27 |
To use an instance of this class, pass the buffer containing the resource
|
sl@0
|
28 |
data to it by calling SetBuffer().
|
sl@0
|
29 |
|
sl@0
|
30 |
The buffer containing the resource data is created by RResourceFile::AllocReadLC() or
|
sl@0
|
31 |
RResourceFile::AllocReadL() which reads the specified resource into it.
|
sl@0
|
32 |
|
sl@0
|
33 |
The current position within the buffer is always maintained and any request
|
sl@0
|
34 |
for data is always supplied from the current position. The current position
|
sl@0
|
35 |
is always updated .
|
sl@0
|
36 |
|
sl@0
|
37 |
@see TResourceReader::SetBuffer()
|
sl@0
|
38 |
@see RResourceFile::AllocReadL()
|
sl@0
|
39 |
@see RResourceFile::AllocReadLC()
|
sl@0
|
40 |
@publishedAll
|
sl@0
|
41 |
@released
|
sl@0
|
42 |
*/
|
sl@0
|
43 |
class TResourceReader
|
sl@0
|
44 |
{
|
sl@0
|
45 |
public:
|
sl@0
|
46 |
IMPORT_C void SetBuffer(const TDesC8* aBuffer);
|
sl@0
|
47 |
IMPORT_C const TAny* Ptr();
|
sl@0
|
48 |
|
sl@0
|
49 |
// Read counted strings into allocated buffer
|
sl@0
|
50 |
inline HBufC* ReadHBufCL();
|
sl@0
|
51 |
IMPORT_C HBufC8* ReadHBufC8L();
|
sl@0
|
52 |
IMPORT_C HBufC16* ReadHBufC16L();
|
sl@0
|
53 |
|
sl@0
|
54 |
// Build pointer from a counted string
|
sl@0
|
55 |
inline TPtrC ReadTPtrC();
|
sl@0
|
56 |
IMPORT_C TPtrC8 ReadTPtrC8();
|
sl@0
|
57 |
IMPORT_C TPtrC16 ReadTPtrC16();
|
sl@0
|
58 |
|
sl@0
|
59 |
// Build pointer from a counted string in an array of counted strings,
|
sl@0
|
60 |
// also setting the buffer to be used.
|
sl@0
|
61 |
inline TPtrC ReadTPtrC(TInt aIndex,const TDesC8* aBuffer);
|
sl@0
|
62 |
IMPORT_C TPtrC8 ReadTPtrC8(TInt aIndex,const TDesC8* aBuffer);
|
sl@0
|
63 |
IMPORT_C TPtrC16 ReadTPtrC16(TInt aIndex,const TDesC8* aBuffer);
|
sl@0
|
64 |
|
sl@0
|
65 |
// Build an array of strings from a resource array
|
sl@0
|
66 |
inline CDesCArrayFlat* ReadDesCArrayL();
|
sl@0
|
67 |
IMPORT_C CDesC8ArrayFlat* ReadDesC8ArrayL();
|
sl@0
|
68 |
IMPORT_C CDesC16ArrayFlat* ReadDesC16ArrayL();
|
sl@0
|
69 |
|
sl@0
|
70 |
IMPORT_C TInt ReadInt8();
|
sl@0
|
71 |
IMPORT_C TUint ReadUint8();
|
sl@0
|
72 |
IMPORT_C TInt ReadInt16();
|
sl@0
|
73 |
IMPORT_C TUint ReadUint16();
|
sl@0
|
74 |
IMPORT_C TInt ReadInt32();
|
sl@0
|
75 |
IMPORT_C TUint ReadUint32();
|
sl@0
|
76 |
IMPORT_C TReal64 ReadReal64() __SOFTFP;
|
sl@0
|
77 |
|
sl@0
|
78 |
IMPORT_C void Read(TAny* aPtr,TInt aLength);
|
sl@0
|
79 |
IMPORT_C void Rewind(TInt aLength);
|
sl@0
|
80 |
IMPORT_C void Advance(TInt aLength);
|
sl@0
|
81 |
|
sl@0
|
82 |
private:
|
sl@0
|
83 |
void CreateImpl();
|
sl@0
|
84 |
TResourceReaderImpl* Impl();
|
sl@0
|
85 |
const TResourceReaderImpl* Impl() const;
|
sl@0
|
86 |
|
sl@0
|
87 |
TPtrC8 ReadTPtrC8L();
|
sl@0
|
88 |
TPtrC16 ReadTPtrC16L();
|
sl@0
|
89 |
TPtrC8 ReadTPtrC8L(TInt aIndex,const TDesC8* aBuffer);
|
sl@0
|
90 |
TPtrC16 ReadTPtrC16L(TInt aIndex,const TDesC8* aBuffer);
|
sl@0
|
91 |
TInt ReadInt8L();
|
sl@0
|
92 |
TUint ReadUint8L();
|
sl@0
|
93 |
TInt ReadInt16L();
|
sl@0
|
94 |
TUint ReadUint16L();
|
sl@0
|
95 |
TInt ReadInt32L();
|
sl@0
|
96 |
TUint ReadUint32L();
|
sl@0
|
97 |
TReal64 ReadReal64L() __SOFTFP;
|
sl@0
|
98 |
|
sl@0
|
99 |
private:
|
sl@0
|
100 |
enum
|
sl@0
|
101 |
{
|
sl@0
|
102 |
KRsReaderSize = 12
|
sl@0
|
103 |
};
|
sl@0
|
104 |
TUint8 iImpl[KRsReaderSize];
|
sl@0
|
105 |
};
|
sl@0
|
106 |
|
sl@0
|
107 |
#if defined(_UNICODE)
|
sl@0
|
108 |
|
sl@0
|
109 |
/**
|
sl@0
|
110 |
Interprets the data at the current buffer position as leading byte count data
|
sl@0
|
111 |
and constructs a build independent heap descriptor containing a copy of this
|
sl@0
|
112 |
data.
|
sl@0
|
113 |
|
sl@0
|
114 |
The data is interpreted as:
|
sl@0
|
115 |
|
sl@0
|
116 |
a byte value defining the number of text characters or the length of binary
|
sl@0
|
117 |
data
|
sl@0
|
118 |
|
sl@0
|
119 |
followed by:
|
sl@0
|
120 |
|
sl@0
|
121 |
the text characters or binary data. This resource data is interpreted as either
|
sl@0
|
122 |
8-bit or 16-bit, depending on the build.
|
sl@0
|
123 |
|
sl@0
|
124 |
If the value of the leading byte is zero, the function assumes that no data
|
sl@0
|
125 |
follows the leading byte and returns a NULL pointer.
|
sl@0
|
126 |
|
sl@0
|
127 |
The current position within the resource buffer is updated. If the resulting
|
sl@0
|
128 |
position lies beyond the end of the resource buffer, then the function raises
|
sl@0
|
129 |
a BAFL 4 panic.
|
sl@0
|
130 |
|
sl@0
|
131 |
Use this build independent variant when the resource contains text. If the
|
sl@0
|
132 |
resource contains binary data, use the explicit 8-bit variant ReadHBufC8L().
|
sl@0
|
133 |
|
sl@0
|
134 |
@return A pointer to the heap descriptor containing a copy of the data following
|
sl@0
|
135 |
the leading byte count at the current position within the resource buffer.
|
sl@0
|
136 |
The pointer can be NULL.
|
sl@0
|
137 |
*/
|
sl@0
|
138 |
inline HBufC* TResourceReader::ReadHBufCL()
|
sl@0
|
139 |
{
|
sl@0
|
140 |
return ReadHBufC16L();
|
sl@0
|
141 |
}
|
sl@0
|
142 |
|
sl@0
|
143 |
/**
|
sl@0
|
144 |
Interprets the data at the current buffer position as leading byte count data
|
sl@0
|
145 |
and constructs a non modifiable pointer descriptor to represent this data.
|
sl@0
|
146 |
|
sl@0
|
147 |
The data is interpreted as:
|
sl@0
|
148 |
|
sl@0
|
149 |
a byte value defining the number of text characters or the length of binary
|
sl@0
|
150 |
data
|
sl@0
|
151 |
|
sl@0
|
152 |
followed by:
|
sl@0
|
153 |
|
sl@0
|
154 |
the text characters or binary data. This resource data is interpreted as either
|
sl@0
|
155 |
8-bit or 16-bit, depending on the build.
|
sl@0
|
156 |
|
sl@0
|
157 |
If the value of the leading byte is zero, calling Length() on the returned
|
sl@0
|
158 |
TPtrC returns zero.
|
sl@0
|
159 |
|
sl@0
|
160 |
The current position within the resource buffer is updated. If the resulting
|
sl@0
|
161 |
position lies beyond the end of the resource buffer, then the function raises
|
sl@0
|
162 |
a BAFL 4 panic.
|
sl@0
|
163 |
|
sl@0
|
164 |
Use this build independent variant when the resource contains text. If the
|
sl@0
|
165 |
resource contains binary data, use the explicit 8-bit variant ReadTPtrC8().
|
sl@0
|
166 |
|
sl@0
|
167 |
@return A non modifiable pointer descriptor representing the data following
|
sl@0
|
168 |
the leading byte count at the current position within the resource buffer.
|
sl@0
|
169 |
*/
|
sl@0
|
170 |
inline TPtrC TResourceReader::ReadTPtrC()
|
sl@0
|
171 |
{
|
sl@0
|
172 |
return ReadTPtrC16();
|
sl@0
|
173 |
}
|
sl@0
|
174 |
|
sl@0
|
175 |
/**
|
sl@0
|
176 |
Interprets the data within the specified resource buffer as an array of leading
|
sl@0
|
177 |
byte count data and constructs a non modifiable pointer descriptor to represent
|
sl@0
|
178 |
an element within this array.
|
sl@0
|
179 |
|
sl@0
|
180 |
The function sets the buffer containing the resource data and sets the current
|
sl@0
|
181 |
position to the start of this buffer. Any buffer set by a previous call to
|
sl@0
|
182 |
SetBuffer() etc, is lost.
|
sl@0
|
183 |
|
sl@0
|
184 |
The buffer is expected to contain an array of data elements preceded by a
|
sl@0
|
185 |
TInt16 value defining the number of elements within that array.
|
sl@0
|
186 |
|
sl@0
|
187 |
Each element of the array is interpreted as:
|
sl@0
|
188 |
|
sl@0
|
189 |
a byte value defining the number of text characters or the length of binary
|
sl@0
|
190 |
data
|
sl@0
|
191 |
|
sl@0
|
192 |
followed by:
|
sl@0
|
193 |
|
sl@0
|
194 |
the text characters or binary data. This resource data is interpreted as either
|
sl@0
|
195 |
8-bit or 16-bit, depending on the build.
|
sl@0
|
196 |
|
sl@0
|
197 |
If the value of the leading byte is zero, calling Length() on the returned
|
sl@0
|
198 |
TPtrC returns zero.
|
sl@0
|
199 |
|
sl@0
|
200 |
The current position within the resource buffer is updated. If the resulting
|
sl@0
|
201 |
position lies beyond the end of the resource buffer, then the function raises
|
sl@0
|
202 |
a BAFL 4 panic.
|
sl@0
|
203 |
|
sl@0
|
204 |
Use this build independent variant when the elements contain text. If the
|
sl@0
|
205 |
elements contain binary data, use the explicit 8-bit variant ReadTPtrC8(TInt,const TDesC8*).
|
sl@0
|
206 |
|
sl@0
|
207 |
@param aIndex The position of the element within the array. This value is
|
sl@0
|
208 |
relative to zero.
|
sl@0
|
209 |
@param aBuffer The buffer containing the resource data.
|
sl@0
|
210 |
@return A non modifiable pointer descriptor representing the data following
|
sl@0
|
211 |
the leading byte count of the element at the specified position within the
|
sl@0
|
212 |
array.
|
sl@0
|
213 |
*/
|
sl@0
|
214 |
inline TPtrC TResourceReader::ReadTPtrC(TInt aIndex,const TDesC8* aBuffer)
|
sl@0
|
215 |
{
|
sl@0
|
216 |
return ReadTPtrC16(aIndex, aBuffer);
|
sl@0
|
217 |
}
|
sl@0
|
218 |
|
sl@0
|
219 |
/**
|
sl@0
|
220 |
Interprets the data at the current buffer position as an array of leading byte
|
sl@0
|
221 |
count data and constructs a build independent flat array of descriptors.
|
sl@0
|
222 |
|
sl@0
|
223 |
Each descriptor in the descriptor array corresponds to an element of the resource
|
sl@0
|
224 |
array.
|
sl@0
|
225 |
|
sl@0
|
226 |
At the current buffer position, the buffer is expected to contain an array
|
sl@0
|
227 |
of data elements preceded by a TInt16 value defining the number of elements
|
sl@0
|
228 |
within that array.
|
sl@0
|
229 |
|
sl@0
|
230 |
Each element of the array is interpreted as:
|
sl@0
|
231 |
|
sl@0
|
232 |
a byte value defining the number of text characters or the length of binary
|
sl@0
|
233 |
data
|
sl@0
|
234 |
|
sl@0
|
235 |
followed by:
|
sl@0
|
236 |
|
sl@0
|
237 |
the text characters or binary data. This resource data is interpreted as either
|
sl@0
|
238 |
8-bit or 16-bit, depending on the build.
|
sl@0
|
239 |
|
sl@0
|
240 |
The current position within the resource buffer is updated. If the resulting
|
sl@0
|
241 |
position lies beyond the end of the resource buffer, then the function raises
|
sl@0
|
242 |
a BAFL 4 panic.
|
sl@0
|
243 |
|
sl@0
|
244 |
Use this build independent variant when the elements contain text. If the
|
sl@0
|
245 |
elements contain binary data, use the explicit 8-bit variant ReadDesC8ArrayL().
|
sl@0
|
246 |
|
sl@0
|
247 |
@return A pointer to a build independent flat descriptor array.
|
sl@0
|
248 |
*/
|
sl@0
|
249 |
inline CDesCArrayFlat* TResourceReader::ReadDesCArrayL()
|
sl@0
|
250 |
{
|
sl@0
|
251 |
return ReadDesC16ArrayL();
|
sl@0
|
252 |
}
|
sl@0
|
253 |
|
sl@0
|
254 |
#else // defined(_UNICODE)
|
sl@0
|
255 |
|
sl@0
|
256 |
inline HBufC* TResourceReader::ReadHBufCL()
|
sl@0
|
257 |
{
|
sl@0
|
258 |
return ReadHBufC8L();
|
sl@0
|
259 |
}
|
sl@0
|
260 |
|
sl@0
|
261 |
inline TPtrC TResourceReader::ReadTPtrC()
|
sl@0
|
262 |
{
|
sl@0
|
263 |
return ReadTPtrC8();
|
sl@0
|
264 |
}
|
sl@0
|
265 |
|
sl@0
|
266 |
inline TPtrC TResourceReader::ReadTPtrC(TInt aIndex,const TDesC8* aBuffer)
|
sl@0
|
267 |
{
|
sl@0
|
268 |
return ReadTPtrC8(aIndex, aBuffer);
|
sl@0
|
269 |
}
|
sl@0
|
270 |
|
sl@0
|
271 |
inline CDesCArrayFlat* TResourceReader::ReadDesCArrayL()
|
sl@0
|
272 |
{
|
sl@0
|
273 |
return ReadDesC8ArrayL();
|
sl@0
|
274 |
}
|
sl@0
|
275 |
|
sl@0
|
276 |
#endif// defined(_UNICODE)
|
sl@0
|
277 |
|
sl@0
|
278 |
|
sl@0
|
279 |
|
sl@0
|
280 |
#endif//__BARSREAD_H__
|