Update contrib.
1 // Copyright (c) 1997-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 __BARSREAD_H__
17 #define __BARSREAD_H__
22 class TResourceReaderImpl;
25 Interprets resource data read from a resource file.
27 To use an instance of this class, pass the buffer containing the resource
28 data to it by calling SetBuffer().
30 The buffer containing the resource data is created by RResourceFile::AllocReadLC() or
31 RResourceFile::AllocReadL() which reads the specified resource into it.
33 The current position within the buffer is always maintained and any request
34 for data is always supplied from the current position. The current position
37 @see TResourceReader::SetBuffer()
38 @see RResourceFile::AllocReadL()
39 @see RResourceFile::AllocReadLC()
46 IMPORT_C void SetBuffer(const TDesC8* aBuffer);
47 IMPORT_C const TAny* Ptr();
49 // Read counted strings into allocated buffer
50 inline HBufC* ReadHBufCL();
51 IMPORT_C HBufC8* ReadHBufC8L();
52 IMPORT_C HBufC16* ReadHBufC16L();
54 // Build pointer from a counted string
55 inline TPtrC ReadTPtrC();
56 IMPORT_C TPtrC8 ReadTPtrC8();
57 IMPORT_C TPtrC16 ReadTPtrC16();
59 // Build pointer from a counted string in an array of counted strings,
60 // also setting the buffer to be used.
61 inline TPtrC ReadTPtrC(TInt aIndex,const TDesC8* aBuffer);
62 IMPORT_C TPtrC8 ReadTPtrC8(TInt aIndex,const TDesC8* aBuffer);
63 IMPORT_C TPtrC16 ReadTPtrC16(TInt aIndex,const TDesC8* aBuffer);
65 // Build an array of strings from a resource array
66 inline CDesCArrayFlat* ReadDesCArrayL();
67 IMPORT_C CDesC8ArrayFlat* ReadDesC8ArrayL();
68 IMPORT_C CDesC16ArrayFlat* ReadDesC16ArrayL();
70 IMPORT_C TInt ReadInt8();
71 IMPORT_C TUint ReadUint8();
72 IMPORT_C TInt ReadInt16();
73 IMPORT_C TUint ReadUint16();
74 IMPORT_C TInt ReadInt32();
75 IMPORT_C TUint ReadUint32();
76 IMPORT_C TReal64 ReadReal64() __SOFTFP;
78 IMPORT_C void Read(TAny* aPtr,TInt aLength);
79 IMPORT_C void Rewind(TInt aLength);
80 IMPORT_C void Advance(TInt aLength);
84 TResourceReaderImpl* Impl();
85 const TResourceReaderImpl* Impl() const;
88 TPtrC16 ReadTPtrC16L();
89 TPtrC8 ReadTPtrC8L(TInt aIndex,const TDesC8* aBuffer);
90 TPtrC16 ReadTPtrC16L(TInt aIndex,const TDesC8* aBuffer);
97 TReal64 ReadReal64L() __SOFTFP;
104 TUint8 iImpl[KRsReaderSize];
107 #if defined(_UNICODE)
110 Interprets the data at the current buffer position as leading byte count data
111 and constructs a build independent heap descriptor containing a copy of this
114 The data is interpreted as:
116 a byte value defining the number of text characters or the length of binary
121 the text characters or binary data. This resource data is interpreted as either
122 8-bit or 16-bit, depending on the build.
124 If the value of the leading byte is zero, the function assumes that no data
125 follows the leading byte and returns a NULL pointer.
127 The current position within the resource buffer is updated. If the resulting
128 position lies beyond the end of the resource buffer, then the function raises
131 Use this build independent variant when the resource contains text. If the
132 resource contains binary data, use the explicit 8-bit variant ReadHBufC8L().
134 @return A pointer to the heap descriptor containing a copy of the data following
135 the leading byte count at the current position within the resource buffer.
136 The pointer can be NULL.
138 inline HBufC* TResourceReader::ReadHBufCL()
140 return ReadHBufC16L();
144 Interprets the data at the current buffer position as leading byte count data
145 and constructs a non modifiable pointer descriptor to represent this data.
147 The data is interpreted as:
149 a byte value defining the number of text characters or the length of binary
154 the text characters or binary data. This resource data is interpreted as either
155 8-bit or 16-bit, depending on the build.
157 If the value of the leading byte is zero, calling Length() on the returned
160 The current position within the resource buffer is updated. If the resulting
161 position lies beyond the end of the resource buffer, then the function raises
164 Use this build independent variant when the resource contains text. If the
165 resource contains binary data, use the explicit 8-bit variant ReadTPtrC8().
167 @return A non modifiable pointer descriptor representing the data following
168 the leading byte count at the current position within the resource buffer.
170 inline TPtrC TResourceReader::ReadTPtrC()
172 return ReadTPtrC16();
176 Interprets the data within the specified resource buffer as an array of leading
177 byte count data and constructs a non modifiable pointer descriptor to represent
178 an element within this array.
180 The function sets the buffer containing the resource data and sets the current
181 position to the start of this buffer. Any buffer set by a previous call to
182 SetBuffer() etc, is lost.
184 The buffer is expected to contain an array of data elements preceded by a
185 TInt16 value defining the number of elements within that array.
187 Each element of the array is interpreted as:
189 a byte value defining the number of text characters or the length of binary
194 the text characters or binary data. This resource data is interpreted as either
195 8-bit or 16-bit, depending on the build.
197 If the value of the leading byte is zero, calling Length() on the returned
200 The current position within the resource buffer is updated. If the resulting
201 position lies beyond the end of the resource buffer, then the function raises
204 Use this build independent variant when the elements contain text. If the
205 elements contain binary data, use the explicit 8-bit variant ReadTPtrC8(TInt,const TDesC8*).
207 @param aIndex The position of the element within the array. This value is
209 @param aBuffer The buffer containing the resource data.
210 @return A non modifiable pointer descriptor representing the data following
211 the leading byte count of the element at the specified position within the
214 inline TPtrC TResourceReader::ReadTPtrC(TInt aIndex,const TDesC8* aBuffer)
216 return ReadTPtrC16(aIndex, aBuffer);
220 Interprets the data at the current buffer position as an array of leading byte
221 count data and constructs a build independent flat array of descriptors.
223 Each descriptor in the descriptor array corresponds to an element of the resource
226 At the current buffer position, the buffer is expected to contain an array
227 of data elements preceded by a TInt16 value defining the number of elements
230 Each element of the array is interpreted as:
232 a byte value defining the number of text characters or the length of binary
237 the text characters or binary data. This resource data is interpreted as either
238 8-bit or 16-bit, depending on the build.
240 The current position within the resource buffer is updated. If the resulting
241 position lies beyond the end of the resource buffer, then the function raises
244 Use this build independent variant when the elements contain text. If the
245 elements contain binary data, use the explicit 8-bit variant ReadDesC8ArrayL().
247 @return A pointer to a build independent flat descriptor array.
249 inline CDesCArrayFlat* TResourceReader::ReadDesCArrayL()
251 return ReadDesC16ArrayL();
254 #else // defined(_UNICODE)
256 inline HBufC* TResourceReader::ReadHBufCL()
258 return ReadHBufC8L();
261 inline TPtrC TResourceReader::ReadTPtrC()
266 inline TPtrC TResourceReader::ReadTPtrC(TInt aIndex,const TDesC8* aBuffer)
268 return ReadTPtrC8(aIndex, aBuffer);
271 inline CDesCArrayFlat* TResourceReader::ReadDesCArrayL()
273 return ReadDesC8ArrayL();
276 #endif// defined(_UNICODE)
280 #endif//__BARSREAD_H__