sl@0
|
1 |
// Copyright (c) 1998-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 |
#include <s32ucmp.h>
|
sl@0
|
17 |
#include "US_STD.H"
|
sl@0
|
18 |
|
sl@0
|
19 |
EXPORT_C void ExternalizeL(TInt64 anInt64,RWriteStream& aStream)
|
sl@0
|
20 |
//
|
sl@0
|
21 |
// Write a 64-bit integer out to aStream.
|
sl@0
|
22 |
//
|
sl@0
|
23 |
{
|
sl@0
|
24 |
aStream.WriteUint32L(I64LOW(anInt64));
|
sl@0
|
25 |
aStream.WriteUint32L(I64HIGH(anInt64));
|
sl@0
|
26 |
}
|
sl@0
|
27 |
|
sl@0
|
28 |
EXPORT_C void InternalizeL(TInt64& anInt64,RReadStream& aStream)
|
sl@0
|
29 |
//
|
sl@0
|
30 |
// Read a 64-bit integer in from aStream.
|
sl@0
|
31 |
//
|
sl@0
|
32 |
{
|
sl@0
|
33 |
TUint low=aStream.ReadUint32L();
|
sl@0
|
34 |
TUint high=aStream.ReadUint32L();
|
sl@0
|
35 |
anInt64 = MAKE_TINT64(high,low);
|
sl@0
|
36 |
}
|
sl@0
|
37 |
|
sl@0
|
38 |
EXPORT_C void ExternalizeL(const TCheckedUid& aUid,RWriteStream& aStream)
|
sl@0
|
39 |
//
|
sl@0
|
40 |
// Write a checked uid type out to aStream.
|
sl@0
|
41 |
//
|
sl@0
|
42 |
{
|
sl@0
|
43 |
aStream.WriteL(aUid.Des());
|
sl@0
|
44 |
}
|
sl@0
|
45 |
|
sl@0
|
46 |
EXPORT_C void InternalizeL(TCheckedUid& aUid,RReadStream& aStream)
|
sl@0
|
47 |
//
|
sl@0
|
48 |
// Read a checked uid type in from aStream.
|
sl@0
|
49 |
//
|
sl@0
|
50 |
{
|
sl@0
|
51 |
TBuf8<sizeof(TCheckedUid)> buf;
|
sl@0
|
52 |
aStream.ReadL(buf);
|
sl@0
|
53 |
aUid.Set(buf);
|
sl@0
|
54 |
}
|
sl@0
|
55 |
|
sl@0
|
56 |
EXPORT_C void ExternalizeL(TPoint aPoint,RWriteStream& aStream)
|
sl@0
|
57 |
//
|
sl@0
|
58 |
// Write a point out to aStream.
|
sl@0
|
59 |
//
|
sl@0
|
60 |
{
|
sl@0
|
61 |
aStream.WriteInt32L(aPoint.iX);
|
sl@0
|
62 |
aStream.WriteInt32L(aPoint.iY);
|
sl@0
|
63 |
}
|
sl@0
|
64 |
|
sl@0
|
65 |
EXPORT_C void ExternalizeL(TSize aSize,RWriteStream& aStream)
|
sl@0
|
66 |
//
|
sl@0
|
67 |
// Write a size out to aStream.
|
sl@0
|
68 |
//
|
sl@0
|
69 |
{
|
sl@0
|
70 |
aStream.WriteInt32L(aSize.iWidth);
|
sl@0
|
71 |
aStream.WriteInt32L(aSize.iHeight);
|
sl@0
|
72 |
}
|
sl@0
|
73 |
|
sl@0
|
74 |
EXPORT_C void ExternalizeL(const TRect& aRect,RWriteStream& aStream)
|
sl@0
|
75 |
//
|
sl@0
|
76 |
// Write a rectangle out to aStream.
|
sl@0
|
77 |
//
|
sl@0
|
78 |
{
|
sl@0
|
79 |
aStream<<aRect.iTl;
|
sl@0
|
80 |
aStream<<aRect.iBr;
|
sl@0
|
81 |
}
|
sl@0
|
82 |
|
sl@0
|
83 |
EXPORT_C void InternalizeL(TPoint& aPoint,RReadStream& aStream)
|
sl@0
|
84 |
//
|
sl@0
|
85 |
// Read a point in from aStream.
|
sl@0
|
86 |
//
|
sl@0
|
87 |
{
|
sl@0
|
88 |
aPoint.iX=aStream.ReadInt32L();
|
sl@0
|
89 |
aPoint.iY=aStream.ReadInt32L();
|
sl@0
|
90 |
}
|
sl@0
|
91 |
|
sl@0
|
92 |
EXPORT_C void InternalizeL(TSize& aSize,RReadStream& aStream)
|
sl@0
|
93 |
//
|
sl@0
|
94 |
// Read a size in from aStream.
|
sl@0
|
95 |
//
|
sl@0
|
96 |
{
|
sl@0
|
97 |
aSize.iWidth=aStream.ReadInt32L();
|
sl@0
|
98 |
aSize.iHeight=aStream.ReadInt32L();
|
sl@0
|
99 |
}
|
sl@0
|
100 |
|
sl@0
|
101 |
EXPORT_C void InternalizeL(TRect& aRect,RReadStream& aStream)
|
sl@0
|
102 |
//
|
sl@0
|
103 |
// Read a rectangle in from aStream.
|
sl@0
|
104 |
//
|
sl@0
|
105 |
{
|
sl@0
|
106 |
aStream>>aRect.iTl;
|
sl@0
|
107 |
aStream>>aRect.iBr;
|
sl@0
|
108 |
}
|
sl@0
|
109 |
|
sl@0
|
110 |
EXPORT_C void ExternalizeL(const TDesC8& aDes8,RWriteStream& aStream)
|
sl@0
|
111 |
//
|
sl@0
|
112 |
// Write an 8-bit descriptor out to aStream.
|
sl@0
|
113 |
//
|
sl@0
|
114 |
{
|
sl@0
|
115 |
TDesHeader header(aDes8);
|
sl@0
|
116 |
aStream<<header;
|
sl@0
|
117 |
aStream.WriteL(aDes8.Ptr(),aDes8.Length());
|
sl@0
|
118 |
}
|
sl@0
|
119 |
|
sl@0
|
120 |
EXPORT_C void ExternalizeL(const TDesC16& aDes16,RWriteStream& aStream)
|
sl@0
|
121 |
//
|
sl@0
|
122 |
// Write a 16-bit descriptor out to aStream.
|
sl@0
|
123 |
//
|
sl@0
|
124 |
{
|
sl@0
|
125 |
TDesHeader header(aDes16);
|
sl@0
|
126 |
aStream << header;
|
sl@0
|
127 |
|
sl@0
|
128 |
#ifdef _UNICODE
|
sl@0
|
129 |
// In the Unicode build, compress the data using the Standard Unicode Compression Scheme.
|
sl@0
|
130 |
TMemoryUnicodeSource source(aDes16.Ptr());
|
sl@0
|
131 |
TUnicodeCompressor compressor;
|
sl@0
|
132 |
compressor.CompressL(aStream,source,KMaxTInt,aDes16.Length());
|
sl@0
|
133 |
|
sl@0
|
134 |
#else
|
sl@0
|
135 |
aStream.WriteL(aDes16.Ptr(),aDes16.Length());
|
sl@0
|
136 |
#endif
|
sl@0
|
137 |
}
|
sl@0
|
138 |
|
sl@0
|
139 |
EXPORT_C void InternalizeL(TDes8& aDes8,RReadStream& aStream)
|
sl@0
|
140 |
//
|
sl@0
|
141 |
// Read an 8-bit descriptor in from aStream.
|
sl@0
|
142 |
//
|
sl@0
|
143 |
{
|
sl@0
|
144 |
TDesInternalizer interL;
|
sl@0
|
145 |
aStream>>interL.Header();
|
sl@0
|
146 |
interL(aDes8,aStream);
|
sl@0
|
147 |
}
|
sl@0
|
148 |
|
sl@0
|
149 |
EXPORT_C void InternalizeL(TDes16& aDes16,RReadStream& aStream)
|
sl@0
|
150 |
//
|
sl@0
|
151 |
// Read a 16-bit descriptor in from aStream.
|
sl@0
|
152 |
//
|
sl@0
|
153 |
{
|
sl@0
|
154 |
TDesInternalizer interL;
|
sl@0
|
155 |
aStream>>interL.Header();
|
sl@0
|
156 |
interL(aDes16,aStream);
|
sl@0
|
157 |
}
|
sl@0
|
158 |
|
sl@0
|
159 |
EXPORT_C HBufC8* HBufC8::NewL(RReadStream& aStream,TInt aMaxLength)
|
sl@0
|
160 |
/**
|
sl@0
|
161 |
Creates, and returns a pointer to, a new 8-bit heap descriptor that has been
|
sl@0
|
162 |
initialised with data from the specified read stream; leaves on failure.
|
sl@0
|
163 |
|
sl@0
|
164 |
Data is assigned to the new descriptor from the specified stream. This variant
|
sl@0
|
165 |
assumes that the stream contains the length of the data followed by the data
|
sl@0
|
166 |
itself.
|
sl@0
|
167 |
|
sl@0
|
168 |
The requested maximum length of the descriptor buffer is the length value taken
|
sl@0
|
169 |
from the stream. Note that the size of the allocated cell, and the resulting
|
sl@0
|
170 |
maximum length of the descriptor, may be larger than requested due to the way
|
sl@0
|
171 |
memory is allocated in Symbian OS. This rounding up effect is also dependent
|
sl@0
|
172 |
on platform and build type.
|
sl@0
|
173 |
|
sl@0
|
174 |
Note that:
|
sl@0
|
175 |
1. To use this variant, project files must also link against estor.lib
|
sl@0
|
176 |
2. The length of the data in the stream is represented by a TCardinality object.
|
sl@0
|
177 |
|
sl@0
|
178 |
@param aStream The stream from which the data length and the data to be
|
sl@0
|
179 |
assigned to the new descriptor, are taken.
|
sl@0
|
180 |
@param aMaxLength The upper limit on the length of data that the descriptor is
|
sl@0
|
181 |
to represent.
|
sl@0
|
182 |
|
sl@0
|
183 |
@return A pointer to the new 8-bit heap descriptor. The function leaves,
|
sl@0
|
184 |
if the new 8-bit heap descriptor cannot be created.
|
sl@0
|
185 |
|
sl@0
|
186 |
@leave KErrOverflow if the length of the data as read from the stream is
|
sl@0
|
187 |
greater than the upper limit as specified by aMaxLength.
|
sl@0
|
188 |
|
sl@0
|
189 |
@panic USER 30, if aMaxLength is negative.
|
sl@0
|
190 |
|
sl@0
|
191 |
@see TCardinality
|
sl@0
|
192 |
*/
|
sl@0
|
193 |
{
|
sl@0
|
194 |
HBufC8* buf8=NewLC(aStream,aMaxLength);
|
sl@0
|
195 |
CleanupStack::Pop();
|
sl@0
|
196 |
return buf8;
|
sl@0
|
197 |
}
|
sl@0
|
198 |
|
sl@0
|
199 |
EXPORT_C HBufC8* HBufC8::NewLC(RReadStream& aStream,TInt aMaxLength)
|
sl@0
|
200 |
/**
|
sl@0
|
201 |
Creates, adds a pointer onto the cleanup stack, and returns a pointer to,
|
sl@0
|
202 |
a new 8-bit heap descriptor that has been initialised with data from the
|
sl@0
|
203 |
specified read stream; leaves on failure.
|
sl@0
|
204 |
|
sl@0
|
205 |
Data is assigned to the new descriptor from the specified stream. This variant
|
sl@0
|
206 |
assumes that the stream contains the length of the data followed by the data
|
sl@0
|
207 |
itself.
|
sl@0
|
208 |
|
sl@0
|
209 |
The requested maximum length of the descriptor buffer is the length value taken
|
sl@0
|
210 |
from the stream. Note that the size of the allocated cell, and the resulting
|
sl@0
|
211 |
maximum length of the descriptor, may be larger than requested due to the way
|
sl@0
|
212 |
memory is allocated in Symbian OS. This rounding up effect is also dependent
|
sl@0
|
213 |
on platform and build type.
|
sl@0
|
214 |
|
sl@0
|
215 |
Note that:
|
sl@0
|
216 |
1. To use this variant, project files must also link against estor.lib
|
sl@0
|
217 |
2. The length of the data in the stream is represented by a TCardinality object.
|
sl@0
|
218 |
|
sl@0
|
219 |
@param aStream The stream from which the data length and the data to be
|
sl@0
|
220 |
assigned to the new descriptor, are taken.
|
sl@0
|
221 |
@param aMaxLength The upper limit on the length of data that the descriptor is
|
sl@0
|
222 |
to represent.
|
sl@0
|
223 |
|
sl@0
|
224 |
@return A pointer to the new 8-bit heap descriptor. The function leaves,
|
sl@0
|
225 |
if the new 8-bit heap descriptor cannot be created.
|
sl@0
|
226 |
|
sl@0
|
227 |
@leave KErrOverflow if the length of the data as read from the stream is
|
sl@0
|
228 |
greater than the upper limit as specified by aMaxLength.
|
sl@0
|
229 |
|
sl@0
|
230 |
@panic USER 30, if aMaxLength is negative.
|
sl@0
|
231 |
|
sl@0
|
232 |
@see TCardinality
|
sl@0
|
233 |
*/
|
sl@0
|
234 |
{
|
sl@0
|
235 |
TDesInternalizer interL;
|
sl@0
|
236 |
aStream>>interL.Header();
|
sl@0
|
237 |
TInt len=interL.Header().Length();
|
sl@0
|
238 |
if (len>aMaxLength)
|
sl@0
|
239 |
__LEAVE(KErrOverflow);
|
sl@0
|
240 |
//
|
sl@0
|
241 |
HBufC8* buf8=NewLC(len);
|
sl@0
|
242 |
TPtr8 ptr8=buf8->Des();
|
sl@0
|
243 |
interL(ptr8,aStream);
|
sl@0
|
244 |
return buf8;
|
sl@0
|
245 |
}
|
sl@0
|
246 |
|
sl@0
|
247 |
EXPORT_C HBufC16* HBufC16::NewL(RReadStream& aStream,TInt aMaxLength)
|
sl@0
|
248 |
/**
|
sl@0
|
249 |
Creates, and returns a pointer to, a new 16-bit heap descriptor that has been
|
sl@0
|
250 |
initialised with data from the specified read stream; leaves on failure.
|
sl@0
|
251 |
|
sl@0
|
252 |
Data is assigned to the new descriptor from the specified stream. This variant
|
sl@0
|
253 |
assumes that the stream contains the length of the data followed by the data
|
sl@0
|
254 |
itself.
|
sl@0
|
255 |
|
sl@0
|
256 |
The requested maximum length of the descriptor buffer is the length value taken
|
sl@0
|
257 |
from the stream. Note that the size of the allocated cell, and the resulting
|
sl@0
|
258 |
maximum length of the descriptor, may be larger than requested due to the way
|
sl@0
|
259 |
memory is allocated in Symbian OS. This rounding up effect is also dependent
|
sl@0
|
260 |
on platform and build type.
|
sl@0
|
261 |
|
sl@0
|
262 |
Note that:
|
sl@0
|
263 |
1. To use this variant, project files must also link against estor.lib
|
sl@0
|
264 |
2. The length of the data in the stream is represented by a TCardinality object.
|
sl@0
|
265 |
|
sl@0
|
266 |
@param aStream The stream from which the data length and the data to be
|
sl@0
|
267 |
assigned to the new descriptor, are taken.
|
sl@0
|
268 |
@param aMaxLength The upper limit on the length of data that the descriptor is
|
sl@0
|
269 |
to represent.
|
sl@0
|
270 |
|
sl@0
|
271 |
@return A pointer to the new 16-bit heap descriptor. The function leaves,
|
sl@0
|
272 |
if the new 16-bit heap descriptor cannot be created.
|
sl@0
|
273 |
|
sl@0
|
274 |
@leave KErrOverflow if the length of the data as read from the stream is
|
sl@0
|
275 |
greater than the upper limit as specified by aMaxLength.
|
sl@0
|
276 |
|
sl@0
|
277 |
@panic USER 18, if aMaxLength is negative.
|
sl@0
|
278 |
|
sl@0
|
279 |
@see TCardinality
|
sl@0
|
280 |
*/
|
sl@0
|
281 |
{
|
sl@0
|
282 |
HBufC16* buf16=NewLC(aStream,aMaxLength);
|
sl@0
|
283 |
CleanupStack::Pop();
|
sl@0
|
284 |
return buf16;
|
sl@0
|
285 |
}
|
sl@0
|
286 |
|
sl@0
|
287 |
EXPORT_C HBufC16* HBufC16::NewLC(RReadStream& aStream,TInt aMaxLength)
|
sl@0
|
288 |
/**
|
sl@0
|
289 |
Creates, adds a pointer onto the cleanup stack, and returns a pointer to,
|
sl@0
|
290 |
a new 16-bit heap descriptor that has been initialised with data from the
|
sl@0
|
291 |
specified read stream; leaves on failure.
|
sl@0
|
292 |
|
sl@0
|
293 |
Data is assigned to the new descriptor from the specified stream. This variant
|
sl@0
|
294 |
assumes that the stream contains the length of the data followed by the data
|
sl@0
|
295 |
itself.
|
sl@0
|
296 |
|
sl@0
|
297 |
The requested maximum length of the descriptor buffer is the length value taken
|
sl@0
|
298 |
from the stream. Note that the size of the allocated cell, and the resulting
|
sl@0
|
299 |
maximum length of the descriptor, may be larger than requested due to the way
|
sl@0
|
300 |
memory is allocated in Symbian OS. This rounding up effect is also dependent
|
sl@0
|
301 |
on platform and build type.
|
sl@0
|
302 |
|
sl@0
|
303 |
Note that:
|
sl@0
|
304 |
1. To use this variant, project files must also link against estor.lib
|
sl@0
|
305 |
2. The length of the data in the stream is represented by a TCardinality object.
|
sl@0
|
306 |
|
sl@0
|
307 |
@param aStream The stream from which the data length and the data to be
|
sl@0
|
308 |
assigned to the new descriptor, are taken.
|
sl@0
|
309 |
@param aMaxLength The upper limit on the length of data that the descriptor is
|
sl@0
|
310 |
to represent.
|
sl@0
|
311 |
|
sl@0
|
312 |
@return A pointer to the new 16-bit heap descriptor. The function leaves,
|
sl@0
|
313 |
if the new 16-bit heap descriptor cannot be created.
|
sl@0
|
314 |
|
sl@0
|
315 |
@leave KErrOverflow if the length of the data as read from the stream is
|
sl@0
|
316 |
greater than the upper limit as specified by aMaxLength.
|
sl@0
|
317 |
|
sl@0
|
318 |
@panic USER 30, if aMaxLength is negative.
|
sl@0
|
319 |
|
sl@0
|
320 |
@see TCardinality
|
sl@0
|
321 |
*/
|
sl@0
|
322 |
{
|
sl@0
|
323 |
TDesInternalizer interL;
|
sl@0
|
324 |
aStream>>interL.Header();
|
sl@0
|
325 |
TInt len=interL.Header().Length();
|
sl@0
|
326 |
if (len>aMaxLength)
|
sl@0
|
327 |
__LEAVE(KErrOverflow);
|
sl@0
|
328 |
//
|
sl@0
|
329 |
HBufC16* buf16=NewLC(len);
|
sl@0
|
330 |
TPtr16 ptr16=buf16->Des();
|
sl@0
|
331 |
interL(ptr16,aStream);
|
sl@0
|
332 |
return buf16;
|
sl@0
|
333 |
}
|
sl@0
|
334 |
|
sl@0
|
335 |
EXPORT_C void ExternalizeL(const CBufBase& aBuf,RWriteStream& aStream)
|
sl@0
|
336 |
//
|
sl@0
|
337 |
// Write a buffer out to aStream.
|
sl@0
|
338 |
//
|
sl@0
|
339 |
{
|
sl@0
|
340 |
TInt size=aBuf.Size();
|
sl@0
|
341 |
aStream<<TCardinality(size);
|
sl@0
|
342 |
TInt pos=0;
|
sl@0
|
343 |
while (size>0)
|
sl@0
|
344 |
{
|
sl@0
|
345 |
TPtr8 seg=((CBufBase&)aBuf).Ptr(pos);
|
sl@0
|
346 |
TInt len=seg.Size();
|
sl@0
|
347 |
aStream.WriteL(seg.Ptr(),len);
|
sl@0
|
348 |
size-=len;
|
sl@0
|
349 |
pos+=len;
|
sl@0
|
350 |
}
|
sl@0
|
351 |
}
|
sl@0
|
352 |
|
sl@0
|
353 |
EXPORT_C void InternalizeL(CBufBase& aBuf,RReadStream& aStream)
|
sl@0
|
354 |
//
|
sl@0
|
355 |
// Read a buffer in from aStream.
|
sl@0
|
356 |
//
|
sl@0
|
357 |
{
|
sl@0
|
358 |
TCardinality card;
|
sl@0
|
359 |
aStream>>card;
|
sl@0
|
360 |
//
|
sl@0
|
361 |
aBuf.ResizeL(TInt(card));
|
sl@0
|
362 |
TInt pos=0;
|
sl@0
|
363 |
for (;;)
|
sl@0
|
364 |
{
|
sl@0
|
365 |
TPtr8 seg=aBuf.Ptr(pos);
|
sl@0
|
366 |
TInt len=seg.Size();
|
sl@0
|
367 |
if (len==0)
|
sl@0
|
368 |
return;
|
sl@0
|
369 |
//
|
sl@0
|
370 |
aStream.ReadL((TUint8*)seg.Ptr(),len);
|
sl@0
|
371 |
pos+=len;
|
sl@0
|
372 |
}
|
sl@0
|
373 |
}
|
sl@0
|
374 |
|
sl@0
|
375 |
EXPORT_C void ArrayExternalizeCountL(TInt aCount,RWriteStream& aStream)
|
sl@0
|
376 |
//
|
sl@0
|
377 |
// Write an array's count out to aStream.
|
sl@0
|
378 |
//
|
sl@0
|
379 |
{
|
sl@0
|
380 |
aStream<<TCardinality(aCount);
|
sl@0
|
381 |
}
|
sl@0
|
382 |
|
sl@0
|
383 |
EXPORT_C void DoExternalizeAllL(const CArrayFixBase& anArray,RWriteStream& aStream,TExternalizer<TAny> anExter)
|
sl@0
|
384 |
//
|
sl@0
|
385 |
// Write an array's contents out to aStream.
|
sl@0
|
386 |
//
|
sl@0
|
387 |
{
|
sl@0
|
388 |
for (TInt i=0,n=anArray.Count();i<n;i++)
|
sl@0
|
389 |
anExter(anArray.At(i),aStream);
|
sl@0
|
390 |
}
|
sl@0
|
391 |
|
sl@0
|
392 |
EXPORT_C TInt ArrayInternalizeCountL(RReadStream& aStream)
|
sl@0
|
393 |
//
|
sl@0
|
394 |
// Read an array's count in from aStream.
|
sl@0
|
395 |
//
|
sl@0
|
396 |
{
|
sl@0
|
397 |
TCardinality card;
|
sl@0
|
398 |
aStream>>card;
|
sl@0
|
399 |
//
|
sl@0
|
400 |
return TInt(card);
|
sl@0
|
401 |
}
|
sl@0
|
402 |
|
sl@0
|
403 |
EXPORT_C void DoInternalizeAllL(CArrayFixBase& anArray,RReadStream& aStream,TInternalizer<TAny> anInter)
|
sl@0
|
404 |
//
|
sl@0
|
405 |
// Read an array's contents in from aStream.
|
sl@0
|
406 |
//
|
sl@0
|
407 |
{
|
sl@0
|
408 |
for (TInt i=0,n=anArray.Count();i<n;i++)
|
sl@0
|
409 |
anInter(anArray.At(i),aStream);
|
sl@0
|
410 |
}
|
sl@0
|
411 |
|