1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/apputils/inc/BARSREAD.H Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,280 @@
1.4 +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +#ifndef __BARSREAD_H__
1.20 +#define __BARSREAD_H__
1.21 +
1.22 +#include <e32std.h>
1.23 +#include <badesca.h>
1.24 +
1.25 +class TResourceReaderImpl;
1.26 +
1.27 +/**
1.28 +Interprets resource data read from a resource file.
1.29 +
1.30 +To use an instance of this class, pass the buffer containing the resource
1.31 +data to it by calling SetBuffer().
1.32 +
1.33 +The buffer containing the resource data is created by RResourceFile::AllocReadLC() or
1.34 +RResourceFile::AllocReadL() which reads the specified resource into it.
1.35 +
1.36 +The current position within the buffer is always maintained and any request
1.37 +for data is always supplied from the current position. The current position
1.38 +is always updated .
1.39 +
1.40 +@see TResourceReader::SetBuffer()
1.41 +@see RResourceFile::AllocReadL()
1.42 +@see RResourceFile::AllocReadLC()
1.43 +@publishedAll
1.44 +@released
1.45 +*/
1.46 +class TResourceReader
1.47 + {
1.48 +public:
1.49 + IMPORT_C void SetBuffer(const TDesC8* aBuffer);
1.50 + IMPORT_C const TAny* Ptr();
1.51 +
1.52 + // Read counted strings into allocated buffer
1.53 + inline HBufC* ReadHBufCL();
1.54 + IMPORT_C HBufC8* ReadHBufC8L();
1.55 + IMPORT_C HBufC16* ReadHBufC16L();
1.56 +
1.57 + // Build pointer from a counted string
1.58 + inline TPtrC ReadTPtrC();
1.59 + IMPORT_C TPtrC8 ReadTPtrC8();
1.60 + IMPORT_C TPtrC16 ReadTPtrC16();
1.61 +
1.62 + // Build pointer from a counted string in an array of counted strings,
1.63 + // also setting the buffer to be used.
1.64 + inline TPtrC ReadTPtrC(TInt aIndex,const TDesC8* aBuffer);
1.65 + IMPORT_C TPtrC8 ReadTPtrC8(TInt aIndex,const TDesC8* aBuffer);
1.66 + IMPORT_C TPtrC16 ReadTPtrC16(TInt aIndex,const TDesC8* aBuffer);
1.67 +
1.68 + // Build an array of strings from a resource array
1.69 + inline CDesCArrayFlat* ReadDesCArrayL();
1.70 + IMPORT_C CDesC8ArrayFlat* ReadDesC8ArrayL();
1.71 + IMPORT_C CDesC16ArrayFlat* ReadDesC16ArrayL();
1.72 +
1.73 + IMPORT_C TInt ReadInt8();
1.74 + IMPORT_C TUint ReadUint8();
1.75 + IMPORT_C TInt ReadInt16();
1.76 + IMPORT_C TUint ReadUint16();
1.77 + IMPORT_C TInt ReadInt32();
1.78 + IMPORT_C TUint ReadUint32();
1.79 + IMPORT_C TReal64 ReadReal64() __SOFTFP;
1.80 +
1.81 + IMPORT_C void Read(TAny* aPtr,TInt aLength);
1.82 + IMPORT_C void Rewind(TInt aLength);
1.83 + IMPORT_C void Advance(TInt aLength);
1.84 +
1.85 +private:
1.86 + void CreateImpl();
1.87 + TResourceReaderImpl* Impl();
1.88 + const TResourceReaderImpl* Impl() const;
1.89 +
1.90 + TPtrC8 ReadTPtrC8L();
1.91 + TPtrC16 ReadTPtrC16L();
1.92 + TPtrC8 ReadTPtrC8L(TInt aIndex,const TDesC8* aBuffer);
1.93 + TPtrC16 ReadTPtrC16L(TInt aIndex,const TDesC8* aBuffer);
1.94 + TInt ReadInt8L();
1.95 + TUint ReadUint8L();
1.96 + TInt ReadInt16L();
1.97 + TUint ReadUint16L();
1.98 + TInt ReadInt32L();
1.99 + TUint ReadUint32L();
1.100 + TReal64 ReadReal64L() __SOFTFP;
1.101 +
1.102 +private:
1.103 + enum
1.104 + {
1.105 + KRsReaderSize = 12
1.106 + };
1.107 + TUint8 iImpl[KRsReaderSize];
1.108 + };
1.109 +
1.110 +#if defined(_UNICODE)
1.111 +
1.112 +/**
1.113 +Interprets the data at the current buffer position as leading byte count data
1.114 +and constructs a build independent heap descriptor containing a copy of this
1.115 +data.
1.116 +
1.117 +The data is interpreted as:
1.118 +
1.119 +a byte value defining the number of text characters or the length of binary
1.120 +data
1.121 +
1.122 +followed by:
1.123 +
1.124 +the text characters or binary data. This resource data is interpreted as either
1.125 +8-bit or 16-bit, depending on the build.
1.126 +
1.127 +If the value of the leading byte is zero, the function assumes that no data
1.128 +follows the leading byte and returns a NULL pointer.
1.129 +
1.130 +The current position within the resource buffer is updated. If the resulting
1.131 +position lies beyond the end of the resource buffer, then the function raises
1.132 +a BAFL 4 panic.
1.133 +
1.134 +Use this build independent variant when the resource contains text. If the
1.135 +resource contains binary data, use the explicit 8-bit variant ReadHBufC8L().
1.136 +
1.137 +@return A pointer to the heap descriptor containing a copy of the data following
1.138 +the leading byte count at the current position within the resource buffer.
1.139 +The pointer can be NULL.
1.140 +*/
1.141 +inline HBufC* TResourceReader::ReadHBufCL()
1.142 + {
1.143 + return ReadHBufC16L();
1.144 + }
1.145 +
1.146 +/**
1.147 +Interprets the data at the current buffer position as leading byte count data
1.148 +and constructs a non modifiable pointer descriptor to represent this data.
1.149 +
1.150 +The data is interpreted as:
1.151 +
1.152 +a byte value defining the number of text characters or the length of binary
1.153 +data
1.154 +
1.155 +followed by:
1.156 +
1.157 +the text characters or binary data. This resource data is interpreted as either
1.158 +8-bit or 16-bit, depending on the build.
1.159 +
1.160 +If the value of the leading byte is zero, calling Length() on the returned
1.161 +TPtrC returns zero.
1.162 +
1.163 +The current position within the resource buffer is updated. If the resulting
1.164 +position lies beyond the end of the resource buffer, then the function raises
1.165 +a BAFL 4 panic.
1.166 +
1.167 +Use this build independent variant when the resource contains text. If the
1.168 +resource contains binary data, use the explicit 8-bit variant ReadTPtrC8().
1.169 +
1.170 +@return A non modifiable pointer descriptor representing the data following
1.171 +the leading byte count at the current position within the resource buffer.
1.172 +*/
1.173 +inline TPtrC TResourceReader::ReadTPtrC()
1.174 + {
1.175 + return ReadTPtrC16();
1.176 + }
1.177 +
1.178 +/**
1.179 +Interprets the data within the specified resource buffer as an array of leading
1.180 +byte count data and constructs a non modifiable pointer descriptor to represent
1.181 +an element within this array.
1.182 +
1.183 +The function sets the buffer containing the resource data and sets the current
1.184 +position to the start of this buffer. Any buffer set by a previous call to
1.185 +SetBuffer() etc, is lost.
1.186 +
1.187 +The buffer is expected to contain an array of data elements preceded by a
1.188 +TInt16 value defining the number of elements within that array.
1.189 +
1.190 +Each element of the array is interpreted as:
1.191 +
1.192 +a byte value defining the number of text characters or the length of binary
1.193 +data
1.194 +
1.195 +followed by:
1.196 +
1.197 +the text characters or binary data. This resource data is interpreted as either
1.198 +8-bit or 16-bit, depending on the build.
1.199 +
1.200 +If the value of the leading byte is zero, calling Length() on the returned
1.201 +TPtrC returns zero.
1.202 +
1.203 +The current position within the resource buffer is updated. If the resulting
1.204 +position lies beyond the end of the resource buffer, then the function raises
1.205 +a BAFL 4 panic.
1.206 +
1.207 +Use this build independent variant when the elements contain text. If the
1.208 +elements contain binary data, use the explicit 8-bit variant ReadTPtrC8(TInt,const TDesC8*).
1.209 +
1.210 +@param aIndex The position of the element within the array. This value is
1.211 +relative to zero.
1.212 +@param aBuffer The buffer containing the resource data.
1.213 +@return A non modifiable pointer descriptor representing the data following
1.214 +the leading byte count of the element at the specified position within the
1.215 +array.
1.216 +*/
1.217 +inline TPtrC TResourceReader::ReadTPtrC(TInt aIndex,const TDesC8* aBuffer)
1.218 + {
1.219 + return ReadTPtrC16(aIndex, aBuffer);
1.220 + }
1.221 +
1.222 +/**
1.223 +Interprets the data at the current buffer position as an array of leading byte
1.224 +count data and constructs a build independent flat array of descriptors.
1.225 +
1.226 +Each descriptor in the descriptor array corresponds to an element of the resource
1.227 +array.
1.228 +
1.229 +At the current buffer position, the buffer is expected to contain an array
1.230 +of data elements preceded by a TInt16 value defining the number of elements
1.231 +within that array.
1.232 +
1.233 +Each element of the array is interpreted as:
1.234 +
1.235 +a byte value defining the number of text characters or the length of binary
1.236 +data
1.237 +
1.238 +followed by:
1.239 +
1.240 +the text characters or binary data. This resource data is interpreted as either
1.241 +8-bit or 16-bit, depending on the build.
1.242 +
1.243 +The current position within the resource buffer is updated. If the resulting
1.244 +position lies beyond the end of the resource buffer, then the function raises
1.245 +a BAFL 4 panic.
1.246 +
1.247 +Use this build independent variant when the elements contain text. If the
1.248 +elements contain binary data, use the explicit 8-bit variant ReadDesC8ArrayL().
1.249 +
1.250 +@return A pointer to a build independent flat descriptor array.
1.251 +*/
1.252 +inline CDesCArrayFlat* TResourceReader::ReadDesCArrayL()
1.253 + {
1.254 + return ReadDesC16ArrayL();
1.255 + }
1.256 +
1.257 +#else // defined(_UNICODE)
1.258 +
1.259 +inline HBufC* TResourceReader::ReadHBufCL()
1.260 + {
1.261 + return ReadHBufC8L();
1.262 + }
1.263 +
1.264 +inline TPtrC TResourceReader::ReadTPtrC()
1.265 + {
1.266 + return ReadTPtrC8();
1.267 + }
1.268 +
1.269 +inline TPtrC TResourceReader::ReadTPtrC(TInt aIndex,const TDesC8* aBuffer)
1.270 + {
1.271 + return ReadTPtrC8(aIndex, aBuffer);
1.272 + }
1.273 +
1.274 +inline CDesCArrayFlat* TResourceReader::ReadDesCArrayL()
1.275 + {
1.276 + return ReadDesC8ArrayL();
1.277 + }
1.278 +
1.279 +#endif// defined(_UNICODE)
1.280 +
1.281 +
1.282 +
1.283 +#endif//__BARSREAD_H__