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 |
// Resource reader
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#include <barsc2.h>
|
sl@0
|
19 |
#include <barsread2.h>
|
sl@0
|
20 |
#include "BaRsReadImpl.h"
|
sl@0
|
21 |
|
sl@0
|
22 |
/** It creates the implementation in place - iImpl array,
|
sl@0
|
23 |
and sets the default leave/panic behaviour of the object -
|
sl@0
|
24 |
the object "L" methods will leave if something goes wrong.
|
sl@0
|
25 |
*/
|
sl@0
|
26 |
EXPORT_C RResourceReader::RResourceReader() :
|
sl@0
|
27 |
iRscBuffer(NULL)
|
sl@0
|
28 |
{
|
sl@0
|
29 |
new (iImpl) TResourceReaderImpl;
|
sl@0
|
30 |
TBaAssert assertObj(TBaAssert::ELeave);
|
sl@0
|
31 |
Impl()->SetAssertObj(assertObj);
|
sl@0
|
32 |
}
|
sl@0
|
33 |
|
sl@0
|
34 |
/** The method calls RResourceReader::Close() method to release
|
sl@0
|
35 |
allocated by the instance resources.
|
sl@0
|
36 |
*/
|
sl@0
|
37 |
EXPORT_C RResourceReader::~RResourceReader()
|
sl@0
|
38 |
{
|
sl@0
|
39 |
Close();
|
sl@0
|
40 |
}
|
sl@0
|
41 |
|
sl@0
|
42 |
/**
|
sl@0
|
43 |
Sets the buffer containing the resource data.
|
sl@0
|
44 |
|
sl@0
|
45 |
The current position within the buffer is set to the start of the buffer so
|
sl@0
|
46 |
that subsequent calls to the interpreting functions, for example ReadInt8(),
|
sl@0
|
47 |
start at the beginning of this buffer.
|
sl@0
|
48 |
@param aRscFile A pointer to the CResourceFile object, used as a resource data supplier.
|
sl@0
|
49 |
@param aResourceId The numeric id of the resource to be read.
|
sl@0
|
50 |
@panic 0 If aRscFile is NULL.
|
sl@0
|
51 |
*/
|
sl@0
|
52 |
EXPORT_C void RResourceReader::OpenL(const CResourceFile* aRscFile, TInt aResourceId)
|
sl@0
|
53 |
{
|
sl@0
|
54 |
OpenLC(aRscFile, aResourceId);
|
sl@0
|
55 |
CleanupStack::Pop(this);
|
sl@0
|
56 |
}
|
sl@0
|
57 |
|
sl@0
|
58 |
/**
|
sl@0
|
59 |
Sets the buffer containing the resource data.
|
sl@0
|
60 |
|
sl@0
|
61 |
The current position within the buffer is set to the start of the buffer so
|
sl@0
|
62 |
that subsequent calls to the interpreting functions, for example ReadInt8(),
|
sl@0
|
63 |
start at the beginning of this buffer.
|
sl@0
|
64 |
|
sl@0
|
65 |
A pointer to current RResourceReader instance is placed into the cleanup stack.
|
sl@0
|
66 |
|
sl@0
|
67 |
@param aRscFile A pointer to the CResourceFile object, used as a resource data supplier.
|
sl@0
|
68 |
@param aResourceId Numeric id of the resource to be read.
|
sl@0
|
69 |
@panic 0 If aRscFile is NULL.
|
sl@0
|
70 |
*/
|
sl@0
|
71 |
EXPORT_C void RResourceReader::OpenLC(const CResourceFile* aRscFile, TInt aResourceId)
|
sl@0
|
72 |
{
|
sl@0
|
73 |
__ASSERT_DEBUG(aRscFile, User::Invariant());
|
sl@0
|
74 |
Close();
|
sl@0
|
75 |
iRscBuffer = aRscFile->AllocReadL(aResourceId);
|
sl@0
|
76 |
Impl()->SetBuffer(iRscBuffer);
|
sl@0
|
77 |
CleanupClosePushL(*this);
|
sl@0
|
78 |
}
|
sl@0
|
79 |
|
sl@0
|
80 |
/**
|
sl@0
|
81 |
Sets the buffer containing the resource data.
|
sl@0
|
82 |
|
sl@0
|
83 |
The current position within the buffer is set to the start of the buffer so
|
sl@0
|
84 |
that subsequent calls to the interpreting functions, for example ReadInt8(),
|
sl@0
|
85 |
start at the beginning of this buffer.
|
sl@0
|
86 |
|
sl@0
|
87 |
@param aRscData A reference to an 8 bit descriptor containing or representing resource data.
|
sl@0
|
88 |
*/
|
sl@0
|
89 |
EXPORT_C void RResourceReader::OpenL(const TDesC8& aRscData)
|
sl@0
|
90 |
{
|
sl@0
|
91 |
OpenLC(aRscData);
|
sl@0
|
92 |
CleanupStack::Pop(this);
|
sl@0
|
93 |
}
|
sl@0
|
94 |
|
sl@0
|
95 |
/**
|
sl@0
|
96 |
Sets the buffer containing the resource data.
|
sl@0
|
97 |
|
sl@0
|
98 |
The current position within the buffer is set to the start of the buffer so
|
sl@0
|
99 |
that subsequent calls to the interpreting functions, for example ReadInt8(),
|
sl@0
|
100 |
start at the beginning of this buffer.
|
sl@0
|
101 |
|
sl@0
|
102 |
A pointer to current RResourceReader instance is placed into the cleanup stack.
|
sl@0
|
103 |
|
sl@0
|
104 |
@param aRscData A reference to an 8 bit descriptor containing or representing resource data.
|
sl@0
|
105 |
*/
|
sl@0
|
106 |
EXPORT_C void RResourceReader::OpenLC(const TDesC8& aRscData)
|
sl@0
|
107 |
{
|
sl@0
|
108 |
Close();
|
sl@0
|
109 |
CleanupClosePushL(*this);
|
sl@0
|
110 |
iRscBuffer = aRscData.AllocL();
|
sl@0
|
111 |
Impl()->SetBuffer(iRscBuffer);
|
sl@0
|
112 |
}
|
sl@0
|
113 |
|
sl@0
|
114 |
/**
|
sl@0
|
115 |
Destroys the buffer containing the resource data.
|
sl@0
|
116 |
|
sl@0
|
117 |
Open() method should be called if you want to set
|
sl@0
|
118 |
the buffer and current position again.
|
sl@0
|
119 |
|
sl@0
|
120 |
If a one or more copies of the same RResourceReader object exist - they share the same
|
sl@0
|
121 |
resource data buffer. So destroying the RResourceReader object you will destroy the
|
sl@0
|
122 |
shared resource data buffer.
|
sl@0
|
123 |
|
sl@0
|
124 |
@post Buffer pointer is set to NULL.
|
sl@0
|
125 |
@post Buffer current position pointer is set to NULL.
|
sl@0
|
126 |
*/
|
sl@0
|
127 |
EXPORT_C void RResourceReader::Close()
|
sl@0
|
128 |
{
|
sl@0
|
129 |
delete iRscBuffer;
|
sl@0
|
130 |
iRscBuffer = NULL;
|
sl@0
|
131 |
Impl()->ResetBuffer();
|
sl@0
|
132 |
}
|
sl@0
|
133 |
|
sl@0
|
134 |
/** Interprets the data at the current buffer position as leading byte count data
|
sl@0
|
135 |
and constructs an 8 bit heap descriptor containing a copy of this data.
|
sl@0
|
136 |
|
sl@0
|
137 |
The data is interpreted as:
|
sl@0
|
138 |
|
sl@0
|
139 |
a byte value defining the number of 8 bit text characters or the length of
|
sl@0
|
140 |
binary data (the resource string/binary data length is limited to 255 characters max)
|
sl@0
|
141 |
|
sl@0
|
142 |
followed by:
|
sl@0
|
143 |
|
sl@0
|
144 |
the 8 bit text characters or binary data.
|
sl@0
|
145 |
|
sl@0
|
146 |
If the value of the leading byte is zero, the function assumes that no data
|
sl@0
|
147 |
follows the leading byte and returns a NULL pointer.
|
sl@0
|
148 |
|
sl@0
|
149 |
The current position within the resource buffer is updated.
|
sl@0
|
150 |
|
sl@0
|
151 |
Use this explicit 8Â bit variant when the resource contains binary data. If
|
sl@0
|
152 |
the resource contains text, then use the build independent variant ReadHBufCL().
|
sl@0
|
153 |
|
sl@0
|
154 |
In general, this type of resource data corresponds to one of the following:
|
sl@0
|
155 |
|
sl@0
|
156 |
a LTEXT type in a resource STRUCT declaration.
|
sl@0
|
157 |
|
sl@0
|
158 |
a variable length array within a STRUCT declaration which includes the LEN
|
sl@0
|
159 |
BYTE keywords.
|
sl@0
|
160 |
|
sl@0
|
161 |
@pre Open() is called to initialize RResourceReader data members.
|
sl@0
|
162 |
@return Pointer to the 8Â bit heap descriptor containing a copy of the data
|
sl@0
|
163 |
following the leading byte count at the current position within the resource
|
sl@0
|
164 |
buffer. The pointer can be NULL.
|
sl@0
|
165 |
@post Current buffer position is updated.
|
sl@0
|
166 |
@leave KErrEof The new buffer position is beyond the buffer end. */
|
sl@0
|
167 |
EXPORT_C HBufC8* RResourceReader::ReadHBufC8L()
|
sl@0
|
168 |
{
|
sl@0
|
169 |
return Impl()->ReadHBufC8L();
|
sl@0
|
170 |
}
|
sl@0
|
171 |
|
sl@0
|
172 |
/** Interprets the data at the current buffer position as leading byte count data
|
sl@0
|
173 |
and constructs a 16 bit heap descriptor containing a copy of this data.
|
sl@0
|
174 |
|
sl@0
|
175 |
The data is interpreted as:
|
sl@0
|
176 |
|
sl@0
|
177 |
a byte value defining the number of 16 bit text characters
|
sl@0
|
178 |
(the resource string/binary data length is limited to 255 characters max)
|
sl@0
|
179 |
|
sl@0
|
180 |
followed by:
|
sl@0
|
181 |
|
sl@0
|
182 |
the 16 bit text characters.
|
sl@0
|
183 |
|
sl@0
|
184 |
If the value of the leading byte is zero, the function assumes that no data
|
sl@0
|
185 |
follows the leading byte and returns a NULL pointer.
|
sl@0
|
186 |
|
sl@0
|
187 |
The current position within the resource buffer is updated.
|
sl@0
|
188 |
|
sl@0
|
189 |
Do not use this explicit 16Â bit variant when the resource contains binary
|
sl@0
|
190 |
data; use the explicit 8Â bit variant instead. If the resource contains text,
|
sl@0
|
191 |
use the build independent variant ReadHBufCL().
|
sl@0
|
192 |
|
sl@0
|
193 |
@pre Open() is called to initialize RResourceReader data members.
|
sl@0
|
194 |
@return Pointer to the 16Â bit heap descriptor containing a copy of the
|
sl@0
|
195 |
data following the leading byte count at the current position within the resource
|
sl@0
|
196 |
buffer. The pointer can be NULL.
|
sl@0
|
197 |
@post Current buffer position is updated.
|
sl@0
|
198 |
@leave KErrCorrupt The new buffer position is beyond the buffer end. */
|
sl@0
|
199 |
EXPORT_C HBufC16* RResourceReader::ReadHBufC16L()
|
sl@0
|
200 |
{
|
sl@0
|
201 |
return Impl()->ReadHBufC16L();
|
sl@0
|
202 |
}
|
sl@0
|
203 |
|
sl@0
|
204 |
/** Interprets the data at the current buffer position as leading byte count data
|
sl@0
|
205 |
and constructs an 8 bit non modifiable pointer descriptor to represent this
|
sl@0
|
206 |
data.
|
sl@0
|
207 |
|
sl@0
|
208 |
The data is interpreted as:
|
sl@0
|
209 |
|
sl@0
|
210 |
a byte value defining the number of text characters or the length of binary
|
sl@0
|
211 |
data (the resource string/binary data length is limited to 255 characters max)
|
sl@0
|
212 |
|
sl@0
|
213 |
followed by:
|
sl@0
|
214 |
|
sl@0
|
215 |
the 8 bit text characters or binary data.
|
sl@0
|
216 |
|
sl@0
|
217 |
If the value of the leading byte is zero, calling Length() on the returned
|
sl@0
|
218 |
TPtrC8 returns zero.
|
sl@0
|
219 |
|
sl@0
|
220 |
The current position within the resource buffer is updated.
|
sl@0
|
221 |
|
sl@0
|
222 |
Use this explicit 8Â bit variant when the resource contains binary data. If
|
sl@0
|
223 |
the resource contains text, then use the build independent variant ReadTPtrC().
|
sl@0
|
224 |
|
sl@0
|
225 |
In general, this type of resource data corresponds to one of the following:
|
sl@0
|
226 |
|
sl@0
|
227 |
a LTEXT type in a resource STRUCT declaration.
|
sl@0
|
228 |
|
sl@0
|
229 |
a variable length array within a STRUCT declaration which includes the LEN
|
sl@0
|
230 |
BYTE keywords.
|
sl@0
|
231 |
|
sl@0
|
232 |
@pre Open() is called to initialize RResourceReader data members.
|
sl@0
|
233 |
@return 8bit non modifiable pointer descriptor representing
|
sl@0
|
234 |
the data following the leading byte count at the
|
sl@0
|
235 |
current position within the resource buffer.
|
sl@0
|
236 |
@post Current buffer position is updated.
|
sl@0
|
237 |
@leave KErrEof The new buffer position is beyond the buffer end. */
|
sl@0
|
238 |
EXPORT_C TPtrC8 RResourceReader::ReadTPtrC8L()
|
sl@0
|
239 |
{
|
sl@0
|
240 |
return Impl()->ReadTPtrC8L();
|
sl@0
|
241 |
}
|
sl@0
|
242 |
|
sl@0
|
243 |
/** Interprets the data at the current buffer position as leading byte count data
|
sl@0
|
244 |
and constructs a 16 bit non modifiable pointer descriptor to represent this
|
sl@0
|
245 |
data.
|
sl@0
|
246 |
|
sl@0
|
247 |
The data is interpreted as:
|
sl@0
|
248 |
|
sl@0
|
249 |
a byte value defining the number of 16 bit text characters
|
sl@0
|
250 |
(the resource string/binary data length is limited to 255 characters max)
|
sl@0
|
251 |
|
sl@0
|
252 |
followed by:
|
sl@0
|
253 |
|
sl@0
|
254 |
the 16 bit text characters.
|
sl@0
|
255 |
|
sl@0
|
256 |
If the value of the leading byte is zero, calling Length() on the returned
|
sl@0
|
257 |
TPtrC16 returns zero.
|
sl@0
|
258 |
|
sl@0
|
259 |
The current position within the resource buffer is updated.
|
sl@0
|
260 |
|
sl@0
|
261 |
Do not use this explicit 16Â bit variant when the resource contains binary
|
sl@0
|
262 |
data; use the explicit 8Â bit variant instead. If the resource contains text,
|
sl@0
|
263 |
use the build independent variant ReadTPtrC().
|
sl@0
|
264 |
|
sl@0
|
265 |
@pre Open() is called to initialize RResourceReader data members.
|
sl@0
|
266 |
@return 16 bit non modifiable pointer descriptor representing
|
sl@0
|
267 |
the data following the leading byte count at the
|
sl@0
|
268 |
current position within the resource buffer.
|
sl@0
|
269 |
@post Current buffer position is updated.
|
sl@0
|
270 |
@leave KErrCorrupt The new buffer position is beyond the buffer end. */
|
sl@0
|
271 |
EXPORT_C TPtrC16 RResourceReader::ReadTPtrC16L()
|
sl@0
|
272 |
{
|
sl@0
|
273 |
return Impl()->ReadTPtrC16L();
|
sl@0
|
274 |
}
|
sl@0
|
275 |
|
sl@0
|
276 |
/** Interprets the data at the current buffer position as an array of leading byte
|
sl@0
|
277 |
count data and constructs a flat array of 8 bit descriptors.
|
sl@0
|
278 |
|
sl@0
|
279 |
Each descriptor in the descriptor array corresponds to an element of the resource
|
sl@0
|
280 |
array.
|
sl@0
|
281 |
|
sl@0
|
282 |
At the current buffer position, the buffer is expected to contain an array
|
sl@0
|
283 |
of data elements preceded by a TInt16 value defining the number of elements
|
sl@0
|
284 |
within that array.
|
sl@0
|
285 |
|
sl@0
|
286 |
Each element of the array is interpreted as:
|
sl@0
|
287 |
|
sl@0
|
288 |
a byte value defining the number of 8 bit text characters or the length of
|
sl@0
|
289 |
binary data (the resource string/binary data length is limited to 255 characters max)
|
sl@0
|
290 |
|
sl@0
|
291 |
followed by:
|
sl@0
|
292 |
|
sl@0
|
293 |
the text characters or binary data.
|
sl@0
|
294 |
|
sl@0
|
295 |
The current position within the resource buffer is updated.
|
sl@0
|
296 |
|
sl@0
|
297 |
Use this explicit 8Â bit variant when the resource contains binary data. If
|
sl@0
|
298 |
the elements of the resource array contain text, use the build independent
|
sl@0
|
299 |
variant of ReadDesCArrayL().
|
sl@0
|
300 |
|
sl@0
|
301 |
@pre Open() is called to initialize RResourceReader data members.
|
sl@0
|
302 |
@return Pointer to an 8bit variant flat descriptor array.
|
sl@0
|
303 |
@post Current buffer position is updated.
|
sl@0
|
304 |
@leave KErrEof The new buffer position is beyond the buffer end. */
|
sl@0
|
305 |
EXPORT_C CDesC8ArrayFlat* RResourceReader::ReadDesC8ArrayL()
|
sl@0
|
306 |
{
|
sl@0
|
307 |
return Impl()->ReadDesC8ArrayL();
|
sl@0
|
308 |
}
|
sl@0
|
309 |
|
sl@0
|
310 |
/** Interprets the data at the current buffer position as an array of leading byte
|
sl@0
|
311 |
count data and constructs a flat array of 16 bit descriptors.
|
sl@0
|
312 |
|
sl@0
|
313 |
Each descriptor in the descriptor array corresponds to an element of the resource
|
sl@0
|
314 |
array.
|
sl@0
|
315 |
|
sl@0
|
316 |
At the current buffer position, the buffer is expected to contain an array
|
sl@0
|
317 |
of data elements preceded by a TInt16 value defining the number of elements
|
sl@0
|
318 |
within that array.
|
sl@0
|
319 |
|
sl@0
|
320 |
Each element of the array is interpreted as:
|
sl@0
|
321 |
|
sl@0
|
322 |
a byte value defining the number of 8 bit text characters or the length of
|
sl@0
|
323 |
binary data (the resource string/binary data length is limited to 255 characters max)
|
sl@0
|
324 |
|
sl@0
|
325 |
followed by:
|
sl@0
|
326 |
|
sl@0
|
327 |
the 16 bit text characters.
|
sl@0
|
328 |
|
sl@0
|
329 |
The current position within the resource buffer is updated.
|
sl@0
|
330 |
|
sl@0
|
331 |
Do not use this explicit 16Â bit variant when the resource contains binary
|
sl@0
|
332 |
data; use the explicit 8Â bit variant instead. If the resource contains text,
|
sl@0
|
333 |
use the build independent variant ReadDesCArrayL().
|
sl@0
|
334 |
|
sl@0
|
335 |
@pre Open() is called to initialize RResourceReader data members.
|
sl@0
|
336 |
@return Pointer to a 16bit variant flat descriptor array.
|
sl@0
|
337 |
@post Current buffer position is updated.
|
sl@0
|
338 |
@leave KErrEof The new buffer position is beyond the buffer end. */
|
sl@0
|
339 |
EXPORT_C CDesC16ArrayFlat* RResourceReader::ReadDesC16ArrayL()
|
sl@0
|
340 |
{
|
sl@0
|
341 |
return Impl()->ReadDesC16ArrayL();
|
sl@0
|
342 |
}
|
sl@0
|
343 |
|
sl@0
|
344 |
/** Interprets the data at the current buffer position as a TInt8 type and returns
|
sl@0
|
345 |
the value as a TInt.
|
sl@0
|
346 |
|
sl@0
|
347 |
The current position within the resource buffer is updated.
|
sl@0
|
348 |
|
sl@0
|
349 |
In general, a TInt8 corresponds to a BYTE type in a resource STRUCT declaration.
|
sl@0
|
350 |
|
sl@0
|
351 |
Note that in Symbian OS, a TInt is at least as big as a TInt8.
|
sl@0
|
352 |
|
sl@0
|
353 |
@pre Open() is called to initialize RResourceReader data members.
|
sl@0
|
354 |
@return The TInt8 value taken from the resource buffer.
|
sl@0
|
355 |
@post Current buffer position is updated.
|
sl@0
|
356 |
@leave KErrEof The new buffer position is beyond the buffer end. */
|
sl@0
|
357 |
EXPORT_C TInt RResourceReader::ReadInt8L()
|
sl@0
|
358 |
{
|
sl@0
|
359 |
return Impl()->ReadInt8L();
|
sl@0
|
360 |
}
|
sl@0
|
361 |
|
sl@0
|
362 |
/** Interprets the data at the current buffer position as a TUint8 type and returns
|
sl@0
|
363 |
the value as a TUint.
|
sl@0
|
364 |
|
sl@0
|
365 |
The current position within the resource buffer is updated.
|
sl@0
|
366 |
|
sl@0
|
367 |
In general, a TUint8 corresponds to a BYTE type in a resource STRUCT declaration.
|
sl@0
|
368 |
|
sl@0
|
369 |
Note that in Symbian OS, a TUint is at least as big as a TUint8.
|
sl@0
|
370 |
|
sl@0
|
371 |
@pre Open() is called to initialize RResourceReader data members.
|
sl@0
|
372 |
@return The TUint8 value taken from the resource buffer.
|
sl@0
|
373 |
@post Current buffer position is updated.
|
sl@0
|
374 |
@leave KErrEof The new buffer position is beyond the buffer end. */
|
sl@0
|
375 |
EXPORT_C TUint RResourceReader::ReadUint8L()
|
sl@0
|
376 |
{
|
sl@0
|
377 |
return Impl()->ReadUint8L();
|
sl@0
|
378 |
}
|
sl@0
|
379 |
|
sl@0
|
380 |
/** Interprets the data at the current buffer position as a TInt16 type and returns
|
sl@0
|
381 |
the value as a TInt.
|
sl@0
|
382 |
|
sl@0
|
383 |
The current position within the resource buffer is updated.
|
sl@0
|
384 |
|
sl@0
|
385 |
In general, a TInt16 corresponds to a WORD type in a resource STRUCT declaration.
|
sl@0
|
386 |
|
sl@0
|
387 |
Note that in Symbian OS, a TInt is at least as big as a TInt16.
|
sl@0
|
388 |
|
sl@0
|
389 |
@pre Open() is called to initialize RResourceReader data members.
|
sl@0
|
390 |
@return The TInt16 value taken from the resource buffer.
|
sl@0
|
391 |
@post Current buffer position is updated.
|
sl@0
|
392 |
@leave KErrEof The new buffer position is beyond the buffer end. */
|
sl@0
|
393 |
EXPORT_C TInt RResourceReader::ReadInt16L()
|
sl@0
|
394 |
{
|
sl@0
|
395 |
return Impl()->ReadInt16L();
|
sl@0
|
396 |
}
|
sl@0
|
397 |
|
sl@0
|
398 |
/** Interprets the data at the current buffer position as a TUint16 type and returns
|
sl@0
|
399 |
the value as a TUint.
|
sl@0
|
400 |
|
sl@0
|
401 |
The current position within the resource buffer is updated.
|
sl@0
|
402 |
|
sl@0
|
403 |
In general, a TUint16 corresponds to a WORD type in a resource STRUCT declaration.
|
sl@0
|
404 |
|
sl@0
|
405 |
Note that in Symbian OS, a TUint is at least as big as a TUint16.
|
sl@0
|
406 |
|
sl@0
|
407 |
@pre Open() is called to initialize RResourceReader data members.
|
sl@0
|
408 |
@return The TUint16 value taken from the resource buffer.
|
sl@0
|
409 |
@post Current buffer position is updated.
|
sl@0
|
410 |
@leave KErrEof The new buffer position is beyond the buffer end. */
|
sl@0
|
411 |
EXPORT_C TUint RResourceReader::ReadUint16L()
|
sl@0
|
412 |
{
|
sl@0
|
413 |
return Impl()->ReadUint16L();
|
sl@0
|
414 |
}
|
sl@0
|
415 |
|
sl@0
|
416 |
/** Interprets the data at the current buffer position as a TInt32 type and returns
|
sl@0
|
417 |
the value as a TInt.
|
sl@0
|
418 |
|
sl@0
|
419 |
The current position within the resource buffer is updated.
|
sl@0
|
420 |
|
sl@0
|
421 |
In general, a TInt32 corresponds to a LONG type in a resource STRUCT declaration.
|
sl@0
|
422 |
|
sl@0
|
423 |
Note that in Symbian OS, TInt and TInt32 are the same size.
|
sl@0
|
424 |
|
sl@0
|
425 |
@pre Open() is called to initialize RResourceReader data members.
|
sl@0
|
426 |
@return The TInt32 value taken from the resource buffer.
|
sl@0
|
427 |
@post Current buffer position is updated.
|
sl@0
|
428 |
@leave KErrEof The new buffer position is beyond the buffer end. */
|
sl@0
|
429 |
EXPORT_C TInt RResourceReader::ReadInt32L()
|
sl@0
|
430 |
{
|
sl@0
|
431 |
return Impl()->ReadInt32L();
|
sl@0
|
432 |
}
|
sl@0
|
433 |
|
sl@0
|
434 |
/** Interprets the data at the current buffer position as a TUint32 type and returns
|
sl@0
|
435 |
the value as a TUint.
|
sl@0
|
436 |
|
sl@0
|
437 |
The current position within the resource buffer is updated.
|
sl@0
|
438 |
|
sl@0
|
439 |
In general, a TUint32 corresponds to a LONG type in a resource STRUCT declaration.
|
sl@0
|
440 |
|
sl@0
|
441 |
Note that in Symbian OS a TUint is the same size as a TUint32.
|
sl@0
|
442 |
|
sl@0
|
443 |
@pre Open() is called to initialize RResourceReader data members.
|
sl@0
|
444 |
@return The TUint32 value taken from the resource buffer.
|
sl@0
|
445 |
@post Current buffer position is updated.
|
sl@0
|
446 |
@leave KErrEof The new buffer position is beyond the buffer end. */
|
sl@0
|
447 |
EXPORT_C TUint RResourceReader::ReadUint32L()
|
sl@0
|
448 |
{
|
sl@0
|
449 |
return Impl()->ReadUint32L();
|
sl@0
|
450 |
}
|
sl@0
|
451 |
|
sl@0
|
452 |
/** Interprets the data at the current buffer position as a TReal64 type and returns
|
sl@0
|
453 |
the value as a TReal64.
|
sl@0
|
454 |
|
sl@0
|
455 |
The current position within the resource buffer is updated.
|
sl@0
|
456 |
|
sl@0
|
457 |
In general, a TReal64 corresponds to a DOUBLE type in a resource STRUCT declaration.
|
sl@0
|
458 |
|
sl@0
|
459 |
@pre Open() is called to initialize RResourceReader data members.
|
sl@0
|
460 |
@return The TReal64 value taken from the resource buffer.
|
sl@0
|
461 |
@post Current buffer position is updated.
|
sl@0
|
462 |
@leave KErrEof The new buffer position is beyond the buffer end. */
|
sl@0
|
463 |
EXPORT_C TReal64 RResourceReader::ReadReal64L() __SOFTFP
|
sl@0
|
464 |
{
|
sl@0
|
465 |
return Impl()->ReadReal64L();
|
sl@0
|
466 |
}
|
sl@0
|
467 |
|
sl@0
|
468 |
/** Copies a specified length of data from the resource buffer, starting at the
|
sl@0
|
469 |
current position within the buffer, into the location pointed to by a specified
|
sl@0
|
470 |
pointer. No assumption is made about the type of data at being read.
|
sl@0
|
471 |
|
sl@0
|
472 |
The current position within the resource buffer is updated.
|
sl@0
|
473 |
|
sl@0
|
474 |
@pre Open() is called to initialize RResourceReader data members.
|
sl@0
|
475 |
@param aPtr Pointer to the target location for data copied from the resource buffer.
|
sl@0
|
476 |
@param aLength The length of data to be copied from the resource buffer.
|
sl@0
|
477 |
@post Current buffer position is updated.
|
sl@0
|
478 |
@leave KErrEof The new buffer position is beyond the buffer end. */
|
sl@0
|
479 |
EXPORT_C void RResourceReader::ReadL(TAny* aPtr,TInt aLength)
|
sl@0
|
480 |
{
|
sl@0
|
481 |
Impl()->ReadL(aPtr,aLength);
|
sl@0
|
482 |
}
|
sl@0
|
483 |
|
sl@0
|
484 |
/** Moves the current buffer position backwards by the specified amount.
|
sl@0
|
485 |
|
sl@0
|
486 |
@pre Open() is called to initialize RResourceReader data members.
|
sl@0
|
487 |
@param aLength The length by which the current position is to be moved backward.
|
sl@0
|
488 |
@post Current buffer position is updated.
|
sl@0
|
489 |
@leave KErrArgument The resulting position lies before the start of the resource. */
|
sl@0
|
490 |
EXPORT_C void RResourceReader::RewindL(TInt aLength)
|
sl@0
|
491 |
{
|
sl@0
|
492 |
Impl()->RewindL(aLength);
|
sl@0
|
493 |
}
|
sl@0
|
494 |
|
sl@0
|
495 |
/** Moves the current buffer position forwards by the specified amount.
|
sl@0
|
496 |
If the resulting position lies beyond the end of the resource buffer,
|
sl@0
|
497 |
then the function leaves with KErrEof code.
|
sl@0
|
498 |
|
sl@0
|
499 |
@pre Open() is called to initialize RResourceReader data members.
|
sl@0
|
500 |
@param aLength The length by which the current position is to be advanced.
|
sl@0
|
501 |
@post Current buffer position is updated.
|
sl@0
|
502 |
@leave KErrEof The resulting position lies beyond the end of the resource buffer. */
|
sl@0
|
503 |
EXPORT_C void RResourceReader::AdvanceL(TInt aLength)
|
sl@0
|
504 |
{
|
sl@0
|
505 |
Impl()->AdvanceL(aLength);
|
sl@0
|
506 |
}
|
sl@0
|
507 |
|
sl@0
|
508 |
#if defined(_UNICODE)
|
sl@0
|
509 |
/** Interprets the data at the current buffer position as leading byte count data
|
sl@0
|
510 |
and constructs a build independent heap descriptor containing a copy of this
|
sl@0
|
511 |
data.
|
sl@0
|
512 |
|
sl@0
|
513 |
The data is interpreted as:
|
sl@0
|
514 |
|
sl@0
|
515 |
a byte value defining the number of text characters or the length of binary
|
sl@0
|
516 |
data (the resource string/binary data length is limited to 255 characters max)
|
sl@0
|
517 |
|
sl@0
|
518 |
followed by:
|
sl@0
|
519 |
|
sl@0
|
520 |
the text characters or binary data. This resource data is interpreted as either
|
sl@0
|
521 |
8Â bit or 16Â bit, depending on the build.
|
sl@0
|
522 |
|
sl@0
|
523 |
If the value of the leading byte is zero, the function assumes that no data
|
sl@0
|
524 |
follows the leading byte and returns a NULL pointer.
|
sl@0
|
525 |
|
sl@0
|
526 |
The current position within the resource buffer is updated.
|
sl@0
|
527 |
|
sl@0
|
528 |
Use this build independent variant when the resource contains text. If the
|
sl@0
|
529 |
resource contains binary data, use the explicit 8Â bit variant ReadHBufC8L().
|
sl@0
|
530 |
|
sl@0
|
531 |
@pre Open() is called to initialize RResourceReader data members.
|
sl@0
|
532 |
@return Pointer to the heap descriptor containing a copy of
|
sl@0
|
533 |
the data following the leading byte count at the
|
sl@0
|
534 |
current position within the resource buffer. The
|
sl@0
|
535 |
pointer can be NULL.
|
sl@0
|
536 |
@post Current buffer position is updated.
|
sl@0
|
537 |
@leave KErrCorrupt The resulting position lies beyond the end of the resource buffer. */
|
sl@0
|
538 |
EXPORT_C HBufC* RResourceReader::ReadHBufCL()
|
sl@0
|
539 |
{
|
sl@0
|
540 |
return ReadHBufC16L();
|
sl@0
|
541 |
}
|
sl@0
|
542 |
|
sl@0
|
543 |
/** Interprets the data at the current buffer position as leading byte count data
|
sl@0
|
544 |
and constructs a non modifiable pointer descriptor to represent this data.
|
sl@0
|
545 |
|
sl@0
|
546 |
The data is interpreted as:
|
sl@0
|
547 |
|
sl@0
|
548 |
a byte value defining the number of text characters or the length of binary
|
sl@0
|
549 |
data (the resource string/binary data length is limited to 255 characters max)
|
sl@0
|
550 |
|
sl@0
|
551 |
followed by:
|
sl@0
|
552 |
|
sl@0
|
553 |
the text characters or binary data. This resource data is interpreted as either
|
sl@0
|
554 |
8Â bit or 16Â bit, depending on the build.
|
sl@0
|
555 |
|
sl@0
|
556 |
If the value of the leading byte is zero, calling Length() on the returned
|
sl@0
|
557 |
TPtrC returns zero.
|
sl@0
|
558 |
|
sl@0
|
559 |
The current position within the resource buffer is updated.
|
sl@0
|
560 |
|
sl@0
|
561 |
Use this build independent variant when the resource contains text. If the
|
sl@0
|
562 |
resource contains binary data, use the explicit 8Â bit variant ReadTPtrC8().
|
sl@0
|
563 |
|
sl@0
|
564 |
@pre Open() is called to initialize RResourceReader data members.
|
sl@0
|
565 |
@return Non modifiable pointer descriptor representing the
|
sl@0
|
566 |
data following the leading byte count of the element
|
sl@0
|
567 |
at the specified position within the array.
|
sl@0
|
568 |
@post Current buffer position is updated.
|
sl@0
|
569 |
@leave KErrCorrupt The resulting position lies beyond the end of the resource buffer. */
|
sl@0
|
570 |
EXPORT_C TPtrC RResourceReader::ReadTPtrCL()
|
sl@0
|
571 |
{
|
sl@0
|
572 |
return ReadTPtrC16L();
|
sl@0
|
573 |
}
|
sl@0
|
574 |
|
sl@0
|
575 |
/** Interprets the data at the current buffer position as an array of leading byte
|
sl@0
|
576 |
count data and constructs a build independent flat array of descriptors.
|
sl@0
|
577 |
|
sl@0
|
578 |
Each descriptor in the descriptor array corresponds to an element of the resource
|
sl@0
|
579 |
array.
|
sl@0
|
580 |
|
sl@0
|
581 |
At the current buffer position, the buffer is expected to contain an array
|
sl@0
|
582 |
of data elements preceded by a TInt16 value defining the number of elements
|
sl@0
|
583 |
within that array.
|
sl@0
|
584 |
|
sl@0
|
585 |
Each element of the array is interpreted as:
|
sl@0
|
586 |
|
sl@0
|
587 |
a byte value defining the number of text characters or the length of binary
|
sl@0
|
588 |
data (the resource string/binary data length is limited to 255 characters max)
|
sl@0
|
589 |
|
sl@0
|
590 |
followed by:
|
sl@0
|
591 |
|
sl@0
|
592 |
the text characters or binary data. This resource data is interpreted as either
|
sl@0
|
593 |
8Â bit or 16Â bit, depending on the build.
|
sl@0
|
594 |
|
sl@0
|
595 |
The current position within the resource buffer is updated.
|
sl@0
|
596 |
|
sl@0
|
597 |
Use this build independent variant when the elements contain text. If the
|
sl@0
|
598 |
elements contain binary data, use the explicit 8Â bit variant ReadDesC8ArrayL().
|
sl@0
|
599 |
|
sl@0
|
600 |
@pre Open() is called to initialize RResourceReader data members.
|
sl@0
|
601 |
@return Pointer to a build independent flat descriptor array.
|
sl@0
|
602 |
@post Current buffer position is updated.
|
sl@0
|
603 |
@leave KErrEof The resulting position lies beyond the end of the resource buffer. */
|
sl@0
|
604 |
EXPORT_C CDesCArrayFlat* RResourceReader::ReadDesCArrayL()
|
sl@0
|
605 |
{
|
sl@0
|
606 |
return ReadDesC16ArrayL();
|
sl@0
|
607 |
}
|
sl@0
|
608 |
|
sl@0
|
609 |
#else //if defined(_UNICODE)
|
sl@0
|
610 |
|
sl@0
|
611 |
EXPORT_C HBufC* RResourceReader::ReadHBufCL()
|
sl@0
|
612 |
{
|
sl@0
|
613 |
return ReadHBufC8L();
|
sl@0
|
614 |
}
|
sl@0
|
615 |
|
sl@0
|
616 |
EXPORT_C TPtrC RResourceReader::ReadTPtrCL()
|
sl@0
|
617 |
{
|
sl@0
|
618 |
return ReadTPtrC8L();
|
sl@0
|
619 |
}
|
sl@0
|
620 |
|
sl@0
|
621 |
EXPORT_C CDesCArrayFlat* RResourceReader::ReadDesCArrayL()
|
sl@0
|
622 |
{
|
sl@0
|
623 |
return ReadDesC8ArrayL();
|
sl@0
|
624 |
}
|
sl@0
|
625 |
|
sl@0
|
626 |
#endif //if defined(_UNICODE)
|
sl@0
|
627 |
|
sl@0
|
628 |
/** @internalComponent
|
sl@0
|
629 |
@return Non-const pointer to the implementation object. */
|
sl@0
|
630 |
TResourceReaderImpl* RResourceReader::Impl()
|
sl@0
|
631 |
{
|
sl@0
|
632 |
return reinterpret_cast <TResourceReaderImpl*> (iImpl);
|
sl@0
|
633 |
}
|
sl@0
|
634 |
|
sl@0
|
635 |
/** @internalComponent
|
sl@0
|
636 |
@return Const pointer to the implementation object. */
|
sl@0
|
637 |
const TResourceReaderImpl* RResourceReader::Impl() const
|
sl@0
|
638 |
{
|
sl@0
|
639 |
return reinterpret_cast <const TResourceReaderImpl*> (iImpl);
|
sl@0
|
640 |
}
|
sl@0
|
641 |
|