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 "US_STD.H"
|
sl@0
|
17 |
|
sl@0
|
18 |
EXPORT_C void RReadStream::Release()
|
sl@0
|
19 |
/** Frees resources before abandoning the stream.
|
sl@0
|
20 |
|
sl@0
|
21 |
Note that, if a cleanup item for the stream was placed on the cleanup stack
|
sl@0
|
22 |
when the stream was opened by a call to OpenLC(), then this function need
|
sl@0
|
23 |
not be called explicitly; clean up is implicitly done by CleanupStack::PopAndDestroy(). */
|
sl@0
|
24 |
{
|
sl@0
|
25 |
if (iSrc==NULL)
|
sl@0
|
26 |
return;
|
sl@0
|
27 |
//
|
sl@0
|
28 |
iSrc->Release();
|
sl@0
|
29 |
iSrc=NULL;
|
sl@0
|
30 |
}
|
sl@0
|
31 |
|
sl@0
|
32 |
EXPORT_C void RReadStream::PushL()
|
sl@0
|
33 |
/** Puts a cleanup item for this read stream object onto the cleanup stack. This
|
sl@0
|
34 |
allows allocated resources to be cleaned up if a subsequent leave occurs. */
|
sl@0
|
35 |
{
|
sl@0
|
36 |
CleanupReleasePushL(*this);
|
sl@0
|
37 |
}
|
sl@0
|
38 |
|
sl@0
|
39 |
EXPORT_C void RReadStream::ReadL(TDes8& aDes)
|
sl@0
|
40 |
/** Reads sufficient data from this stream to fill the specified 8 bit descriptor up to its maximum length.
|
sl@0
|
41 |
No other information is read from this read stream.
|
sl@0
|
42 |
|
sl@0
|
43 |
@param aDes A reference to a modifiable descriptor which is to receive the data read from this stream. Passing the build
|
sl@0
|
44 |
independent type TDes& allows the compiler to choose the appropriate ReadL() variant (i.e the 8 bit or the 16 bit) at build time.*/
|
sl@0
|
45 |
{
|
sl@0
|
46 |
ReadL(aDes,aDes.MaxLength());
|
sl@0
|
47 |
}
|
sl@0
|
48 |
|
sl@0
|
49 |
EXPORT_C void RReadStream::ReadL(TDes8& aDes,TInt aLength)
|
sl@0
|
50 |
/** Reads data of specified length from this stream into the specified 8 bit descriptor. No other information is read
|
sl@0
|
51 |
from this stream.
|
sl@0
|
52 |
|
sl@0
|
53 |
@param aDes A reference to a modifiable type descriptor which is to receive the data read from this stream.
|
sl@0
|
54 |
Passing the build independent type TDes& allows the compiler to choose the appropriate ReadL() variant (i.e the 8 bit
|
sl@0
|
55 |
or the 16 bit) at build time.
|
sl@0
|
56 |
@param aLength The length of data to be read from this stream. This value must be non-negative and must not be greater than the maximum length of the descriptor otherwise the function raises a USER 11 panic.*/
|
sl@0
|
57 |
{
|
sl@0
|
58 |
__ASSERT_DEBUG(aLength<=aDes.MaxLength(),Panic(EStreamReadBeyondEnd));
|
sl@0
|
59 |
aDes.SetLength(aLength);
|
sl@0
|
60 |
ReadL((TUint8*)aDes.Ptr(),aLength);
|
sl@0
|
61 |
}
|
sl@0
|
62 |
|
sl@0
|
63 |
EXPORT_C void RReadStream::ReadL(TDes8& aDes,TChar aDelim)
|
sl@0
|
64 |
/** Reads data from this stream into the 8 bit descriptor, until either the specified delimiter is encountered or the descriptor is filled to its maximum length.
|
sl@0
|
65 |
The resulting data in aDes always includes the delimiter aDelim, if aDes is large enough.
|
sl@0
|
66 |
|
sl@0
|
67 |
@param aDes A reference to a modifiable type descriptor which is to receive the data read from this stream. Passing
|
sl@0
|
68 |
the build independent type TDes& allows the compiler to choose the appropriate ReadL() variant (i.e the 8 bit or the 16 bit) at build time.
|
sl@0
|
69 |
@param aDelim The delimiter marking the end of the data in the stream.*/
|
sl@0
|
70 |
|
sl@0
|
71 |
{
|
sl@0
|
72 |
__ASSERT_DEBUG(iSrc!=NULL,Panic(EStreamNotOpen));
|
sl@0
|
73 |
TUint8* ptr=(TUint8*)aDes.Ptr();
|
sl@0
|
74 |
TDelimitedInput8 input(ptr,aDes.MaxLength(),aDelim);
|
sl@0
|
75 |
do
|
sl@0
|
76 |
{
|
sl@0
|
77 |
iSrc->ReadL(input);
|
sl@0
|
78 |
} while (!input.Done());
|
sl@0
|
79 |
aDes.SetLength(input.Ptr()-ptr);
|
sl@0
|
80 |
}
|
sl@0
|
81 |
|
sl@0
|
82 |
EXPORT_C void RReadStream::ReadL(TUint8* aPtr,TInt aLength)
|
sl@0
|
83 |
/** Reads data of specified length from this stream into the location defined by the specified TUint8 pointer.
|
sl@0
|
84 |
|
sl@0
|
85 |
@param aPtr The target location for the streamed in data.
|
sl@0
|
86 |
@param aLength The length of data to be streamed in.*/
|
sl@0
|
87 |
{
|
sl@0
|
88 |
__ASSERT_DEBUG(aLength>=0,Panic(EStreamReadLengthNegative));
|
sl@0
|
89 |
if (aLength==0)
|
sl@0
|
90 |
return;
|
sl@0
|
91 |
//
|
sl@0
|
92 |
__ASSERT_DEBUG(iSrc!=NULL,Panic(EStreamNotOpen));
|
sl@0
|
93 |
TInt len=iSrc->ReadL(aPtr,aLength);
|
sl@0
|
94 |
__ASSERT_DEBUG(len>=0&&len<=aLength,Panic(EStreamReadInBreach));
|
sl@0
|
95 |
if (len<aLength)
|
sl@0
|
96 |
__LEAVE(KErrEof);
|
sl@0
|
97 |
}
|
sl@0
|
98 |
|
sl@0
|
99 |
EXPORT_C void RReadStream::ReadL(TInt aLength)
|
sl@0
|
100 |
/** Discards data of specified length read from this stream.
|
sl@0
|
101 |
|
sl@0
|
102 |
@param aLength The length of data to be discarded from this read stream.*/
|
sl@0
|
103 |
{
|
sl@0
|
104 |
__ASSERT_DEBUG(aLength>=0,Panic(EStreamReadLengthNegative));
|
sl@0
|
105 |
if (aLength==0)
|
sl@0
|
106 |
return;
|
sl@0
|
107 |
//
|
sl@0
|
108 |
__ASSERT_DEBUG(iSrc!=NULL,Panic(EStreamNotOpen));
|
sl@0
|
109 |
TNullInput input;
|
sl@0
|
110 |
TInt len=iSrc->ReadL(input,aLength);
|
sl@0
|
111 |
__ASSERT_DEBUG(len>=0&&len<=aLength,Panic(EStreamReadInBreach));
|
sl@0
|
112 |
if (len<aLength)
|
sl@0
|
113 |
__LEAVE(KErrEof);
|
sl@0
|
114 |
}
|
sl@0
|
115 |
|
sl@0
|
116 |
EXPORT_C void RReadStream::ReadL(TDes16& aDes)
|
sl@0
|
117 |
/** Reads sufficient data from this stream to fill the specified 16 bit descriptor up to its maximum length.
|
sl@0
|
118 |
No other information is read from this read stream.
|
sl@0
|
119 |
|
sl@0
|
120 |
@param aDes A reference to a modifiable type descriptor which is to receive the data read from this stream. Passing
|
sl@0
|
121 |
the build independent type TDes& allows the compiler to choose the appropriate ReadL() variant (i.e the 8 bit or the 16
|
sl@0
|
122 |
bit) at build time.*/
|
sl@0
|
123 |
{
|
sl@0
|
124 |
ReadL(aDes,aDes.MaxLength());
|
sl@0
|
125 |
}
|
sl@0
|
126 |
|
sl@0
|
127 |
EXPORT_C void RReadStream::ReadL(TDes16& aDes,TInt aLength)
|
sl@0
|
128 |
/** Reads data of specified length from this stream into the specified 16 bit descriptor. No other information is read from this stream.
|
sl@0
|
129 |
|
sl@0
|
130 |
@param aDes A reference to a modifiable type descriptor which is to receive the data read from this stream. Passing the
|
sl@0
|
131 |
build independent type TDes& allows the compiler to choose the appropriate ReadL() variant (i.e the 8 bit or the 16 bit)
|
sl@0
|
132 |
at build time.
|
sl@0
|
133 |
@param aLength The length of data to be read from this stream. This value must be non-negative and must not be greater
|
sl@0
|
134 |
than the maximum length of the descriptor otherwise the function raises a USER 11 panic.*/
|
sl@0
|
135 |
{
|
sl@0
|
136 |
__ASSERT_DEBUG(aLength<=aDes.MaxLength(),Panic(EStreamReadBeyondEnd));
|
sl@0
|
137 |
aDes.SetLength(aLength);
|
sl@0
|
138 |
ReadL((TUint16*)aDes.Ptr(),aLength);
|
sl@0
|
139 |
}
|
sl@0
|
140 |
|
sl@0
|
141 |
EXPORT_C void RReadStream::ReadL(TDes16& aDes,TChar aDelim)
|
sl@0
|
142 |
/** Reads data from this stream into the 16 bit descriptor, until either the specified delimiter is encountered or
|
sl@0
|
143 |
the descriptor is filled to its maximum length.
|
sl@0
|
144 |
The resulting data in aDes always includes the delimiter aDelim, if aDes is large enough.
|
sl@0
|
145 |
|
sl@0
|
146 |
@param aDes A reference to a modifiable type descriptor which is to receive the data read from this stream. Passing
|
sl@0
|
147 |
the build independent type TDes& allows the compiler to choose the appropriate ReadL() variant (i.e the 8 bit or the 16 bit) at build time.
|
sl@0
|
148 |
@param aDelim The delimiter marking the end of the data in the stream.*/
|
sl@0
|
149 |
{
|
sl@0
|
150 |
__ASSERT_DEBUG(iSrc!=NULL,Panic(EStreamNotOpen));
|
sl@0
|
151 |
TUint16* ptr=(TUint16*)aDes.Ptr();
|
sl@0
|
152 |
TDelimitedInput16 input(ptr,aDes.MaxLength(),aDelim);
|
sl@0
|
153 |
do
|
sl@0
|
154 |
{
|
sl@0
|
155 |
iSrc->ReadL(input);
|
sl@0
|
156 |
} while (!input.Done());
|
sl@0
|
157 |
aDes.SetLength(input.Ptr()-ptr);
|
sl@0
|
158 |
}
|
sl@0
|
159 |
|
sl@0
|
160 |
EXPORT_C void RReadStream::ReadL(TUint16* aPtr,TInt aLength)
|
sl@0
|
161 |
/** Reads data of specified length from this stream into the specified 16 bit descriptor.
|
sl@0
|
162 |
No other information is read from this stream.
|
sl@0
|
163 |
|
sl@0
|
164 |
@param aDes A reference to a modifiable type descriptor which is to receive the data read from this stream. Passing the build independent type TDes& allows the compiler to choose the appropriate ReadL() variant (i.e the 8 bit or the 16 bit) at build time.
|
sl@0
|
165 |
@param aLength The length of data to be read from this stream. This value must be non-negative and must not be greater than the maximum length of the descriptor otherwise the function raises a USER 11 panic.*/
|
sl@0
|
166 |
{
|
sl@0
|
167 |
__ASSERT_DEBUG(aLength>=0,Panic(EStreamReadLengthNegative));
|
sl@0
|
168 |
ReadL((TUint8*)aPtr,aLength<<1); // platform dependency
|
sl@0
|
169 |
}
|
sl@0
|
170 |
|
sl@0
|
171 |
EXPORT_C TInt8 RReadStream::ReadInt8L()
|
sl@0
|
172 |
/** Internalises a TInt8 value The function reads an 8Â bit value from this stream
|
sl@0
|
173 |
and interprets it as a TInt8.
|
sl@0
|
174 |
|
sl@0
|
175 |
@return The 8 bit value read from this stream. */
|
sl@0
|
176 |
{
|
sl@0
|
177 |
TInt8 val;
|
sl@0
|
178 |
ReadL((TUint8*)&val,1); // platform dependency
|
sl@0
|
179 |
return val;
|
sl@0
|
180 |
}
|
sl@0
|
181 |
|
sl@0
|
182 |
EXPORT_C TInt16 RReadStream::ReadInt16L()
|
sl@0
|
183 |
/** Internalises a TInt16 value. The function reads a 16Â bit value from this stream
|
sl@0
|
184 |
and interprets it as a TInt16.
|
sl@0
|
185 |
|
sl@0
|
186 |
@return The 16 bit value read from this stream. */
|
sl@0
|
187 |
{
|
sl@0
|
188 |
TInt16 val;
|
sl@0
|
189 |
ReadL((TUint8*)&val,2); // platform dependency
|
sl@0
|
190 |
return val;
|
sl@0
|
191 |
}
|
sl@0
|
192 |
|
sl@0
|
193 |
EXPORT_C TInt32 RReadStream::ReadInt32L()
|
sl@0
|
194 |
/** Internalises a TInt32 value. The function reads a 32Â bit value from this stream
|
sl@0
|
195 |
and interprets it as a TInt32.
|
sl@0
|
196 |
|
sl@0
|
197 |
@return The 32Â bit value read from this stream. */
|
sl@0
|
198 |
{
|
sl@0
|
199 |
TInt32 val;
|
sl@0
|
200 |
ReadL((TUint8*)&val,4); // platform dependency
|
sl@0
|
201 |
return val;
|
sl@0
|
202 |
}
|
sl@0
|
203 |
|
sl@0
|
204 |
EXPORT_C TUint8 RReadStream::ReadUint8L()
|
sl@0
|
205 |
/** Internalises a TUint8 value. The function reads an 8Â bit value from this stream
|
sl@0
|
206 |
and interprets it as a TUint8.
|
sl@0
|
207 |
|
sl@0
|
208 |
@return The 8Â bit value read from this stream. */
|
sl@0
|
209 |
{
|
sl@0
|
210 |
TUint8 val;
|
sl@0
|
211 |
ReadL(&val,1);
|
sl@0
|
212 |
return val;
|
sl@0
|
213 |
}
|
sl@0
|
214 |
|
sl@0
|
215 |
EXPORT_C TUint16 RReadStream::ReadUint16L()
|
sl@0
|
216 |
/** Internalises a TUint16 value. The function reads a 16Â bit value from this
|
sl@0
|
217 |
stream and interprets it as a TUint16.
|
sl@0
|
218 |
|
sl@0
|
219 |
@return The 16Â bit value read from this stream. */
|
sl@0
|
220 |
{
|
sl@0
|
221 |
TUint16 val;
|
sl@0
|
222 |
ReadL((TUint8*)&val,2); // platform dependency
|
sl@0
|
223 |
return val;
|
sl@0
|
224 |
}
|
sl@0
|
225 |
|
sl@0
|
226 |
EXPORT_C TUint32 RReadStream::ReadUint32L()
|
sl@0
|
227 |
/** Internalises a TUint32 value. The function reads a 32Â bit value from this
|
sl@0
|
228 |
stream and interprets it as a TUint32.
|
sl@0
|
229 |
|
sl@0
|
230 |
@return The 32Â bit value read from this stream. */
|
sl@0
|
231 |
{
|
sl@0
|
232 |
TUint32 val;
|
sl@0
|
233 |
ReadL((TUint8*)&val,4); // platform dependency
|
sl@0
|
234 |
return val;
|
sl@0
|
235 |
}
|
sl@0
|
236 |
|
sl@0
|
237 |
EXPORT_C TReal32 RReadStream::ReadReal32L() __SOFTFP
|
sl@0
|
238 |
/** Internalises a TReal32 value. The function reads a 32Â bit value from this
|
sl@0
|
239 |
stream and interprets it as a TReal32.
|
sl@0
|
240 |
|
sl@0
|
241 |
@return The 32Â bit value read from this read stream. */
|
sl@0
|
242 |
{
|
sl@0
|
243 |
TReal32 val;
|
sl@0
|
244 |
ReadL((TUint8*)&val,4); // platform dependency
|
sl@0
|
245 |
return val;
|
sl@0
|
246 |
}
|
sl@0
|
247 |
|
sl@0
|
248 |
EXPORT_C TReal64 RReadStream::ReadReal64L() __SOFTFP
|
sl@0
|
249 |
/** Internalises a TReal64 value. The function reads a 64Â bit value from this
|
sl@0
|
250 |
stream and interprets it as a TReal64.
|
sl@0
|
251 |
|
sl@0
|
252 |
@return The 64 bit value read from this stream. */
|
sl@0
|
253 |
{
|
sl@0
|
254 |
#if defined(__DOUBLE_WORDS_SWAPPED__)
|
sl@0
|
255 |
union {TReal64 val;TUint32 buf[3];} u; // platform dependency
|
sl@0
|
256 |
ReadL((TUint8*)&u.buf[1],8);
|
sl@0
|
257 |
u.buf[0]=u.buf[2];
|
sl@0
|
258 |
return u.val;
|
sl@0
|
259 |
#else
|
sl@0
|
260 |
TReal64 val;
|
sl@0
|
261 |
ReadL((TUint8*)&val,8); // platform dependency
|
sl@0
|
262 |
return val;
|
sl@0
|
263 |
#endif
|
sl@0
|
264 |
}
|
sl@0
|
265 |
|
sl@0
|
266 |
EXPORT_C void RWriteStream::Close()
|
sl@0
|
267 |
/** Commits data to the stream before freeing resources used by the stream. This
|
sl@0
|
268 |
ensures that any buffered data is written to the stream.
|
sl@0
|
269 |
|
sl@0
|
270 |
Note that the function cannot leave. Any errors arising from the attempt to
|
sl@0
|
271 |
commit data to the stream are ignored. */
|
sl@0
|
272 |
{
|
sl@0
|
273 |
if (iSnk==NULL)
|
sl@0
|
274 |
return;
|
sl@0
|
275 |
//
|
sl@0
|
276 |
iSnk->Close();
|
sl@0
|
277 |
iSnk=NULL;
|
sl@0
|
278 |
}
|
sl@0
|
279 |
|
sl@0
|
280 |
EXPORT_C void RWriteStream::Release()
|
sl@0
|
281 |
/** Frees resources before abandoning the stream. The function is called after
|
sl@0
|
282 |
data has been committed to the stream.
|
sl@0
|
283 |
|
sl@0
|
284 |
Note that if a cleanup item for the stream was placed on the cleanup stack
|
sl@0
|
285 |
when the stream was opened (e.g by a call to RStoreWriteStreamss CreateLC(),
|
sl@0
|
286 |
OpenLC(), ReplaceLC() or RDictionaryStores AssignLC() etc), then this function
|
sl@0
|
287 |
need not be called explicitly; clean up is implicitly done by CleanupStack::PopAndDestroy(). */
|
sl@0
|
288 |
{
|
sl@0
|
289 |
if (iSnk==NULL)
|
sl@0
|
290 |
return;
|
sl@0
|
291 |
//
|
sl@0
|
292 |
iSnk->Release();
|
sl@0
|
293 |
iSnk=NULL;
|
sl@0
|
294 |
}
|
sl@0
|
295 |
|
sl@0
|
296 |
EXPORT_C void RWriteStream::CommitL()
|
sl@0
|
297 |
/** Ensures that any buffered data is written to the stream. Once committed, it
|
sl@0
|
298 |
is not possible to roll back the newly written data. */
|
sl@0
|
299 |
{
|
sl@0
|
300 |
if (iSnk==NULL)
|
sl@0
|
301 |
return;
|
sl@0
|
302 |
//
|
sl@0
|
303 |
iSnk->SynchL();
|
sl@0
|
304 |
}
|
sl@0
|
305 |
|
sl@0
|
306 |
EXPORT_C void RWriteStream::PushL()
|
sl@0
|
307 |
/** Puts a cleanup item for this write stream object onto the cleanup stack. This
|
sl@0
|
308 |
allows allocated resources to be cleaned up if a subsequent leave occurs. */
|
sl@0
|
309 |
{
|
sl@0
|
310 |
CleanupReleasePushL(*this);
|
sl@0
|
311 |
}
|
sl@0
|
312 |
|
sl@0
|
313 |
EXPORT_C void RWriteStream::WriteL(const TDesC8& aDes)
|
sl@0
|
314 |
/** Writes the content of the 8 bit descriptor to the stream. No other information
|
sl@0
|
315 |
is written to this write stream.
|
sl@0
|
316 |
|
sl@0
|
317 |
@param aDes A reference to a descriptor. Passing the build independent type
|
sl@0
|
318 |
TDesC& allows the compiler to choose the appropriate WriteL() variant (i.e
|
sl@0
|
319 |
the 8 bit or the 16 bit) at build time. */
|
sl@0
|
320 |
{
|
sl@0
|
321 |
WriteL(aDes.Ptr(),aDes.Length());
|
sl@0
|
322 |
}
|
sl@0
|
323 |
|
sl@0
|
324 |
EXPORT_C void RWriteStream::WriteL(const TDesC8& aDes,TInt aLength)
|
sl@0
|
325 |
/** Writes data of the specified length from the 8 bit descriptor to the stream.
|
sl@0
|
326 |
No other information is written to this write stream.
|
sl@0
|
327 |
|
sl@0
|
328 |
@param aDes A reference to a descriptor. Passing the build independent type
|
sl@0
|
329 |
TDesC& allows the compiler to choose the appropriate WriteL() variant (i.e
|
sl@0
|
330 |
the 8 bit or the 16 bit) at build time.
|
sl@0
|
331 |
@param aLength The length of data to be written to this stream. */
|
sl@0
|
332 |
|
sl@0
|
333 |
{
|
sl@0
|
334 |
__ASSERT_DEBUG(aLength<=aDes.Length(),Panic(EStreamWriteBeyondEnd));
|
sl@0
|
335 |
WriteL(aDes.Ptr(),aLength);
|
sl@0
|
336 |
}
|
sl@0
|
337 |
|
sl@0
|
338 |
EXPORT_C void RWriteStream::WriteL(const TUint8* aPtr,TInt aLength)
|
sl@0
|
339 |
/** Writes 8 bit data of the specified length from the specified location to this
|
sl@0
|
340 |
write stream.
|
sl@0
|
341 |
|
sl@0
|
342 |
@param aPtr The location from where data is to be streamed out.
|
sl@0
|
343 |
@param aLength The length of data to be streamed out. */
|
sl@0
|
344 |
|
sl@0
|
345 |
{
|
sl@0
|
346 |
__ASSERT_DEBUG(aLength>=0,Panic(EStreamWriteLengthNegative));
|
sl@0
|
347 |
if (aLength==0)
|
sl@0
|
348 |
return;
|
sl@0
|
349 |
//
|
sl@0
|
350 |
__ASSERT_DEBUG(iSnk!=NULL,Panic(EStreamNotOpen));
|
sl@0
|
351 |
iSnk->WriteL(aPtr,aLength);
|
sl@0
|
352 |
}
|
sl@0
|
353 |
|
sl@0
|
354 |
EXPORT_C void RWriteStream::WriteL(RReadStream &aStream)
|
sl@0
|
355 |
/** Writes the content of the specified read stream to this write stream.
|
sl@0
|
356 |
|
sl@0
|
357 |
@param aStream A reference to a read stream which is to be written to this
|
sl@0
|
358 |
stream. */
|
sl@0
|
359 |
|
sl@0
|
360 |
{
|
sl@0
|
361 |
__ASSERT_DEBUG(iSnk!=NULL,Panic(EStreamNotOpen));
|
sl@0
|
362 |
TSourceOutput output(aStream.iSrc);
|
sl@0
|
363 |
iSnk->WriteL(output);
|
sl@0
|
364 |
}
|
sl@0
|
365 |
|
sl@0
|
366 |
EXPORT_C void RWriteStream::WriteL(RReadStream& aStream,TInt aLength)
|
sl@0
|
367 |
/** Writes data of the specified length from the specified read stream to this
|
sl@0
|
368 |
stream.
|
sl@0
|
369 |
|
sl@0
|
370 |
@param aStream A reference to a read stream part of whose content is to be
|
sl@0
|
371 |
written to this stream.
|
sl@0
|
372 |
@param aLength The length of data from the read stream to be written to this
|
sl@0
|
373 |
write stream. */
|
sl@0
|
374 |
|
sl@0
|
375 |
{
|
sl@0
|
376 |
__ASSERT_DEBUG(aLength>=0,Panic(EStreamWriteLengthNegative));
|
sl@0
|
377 |
if (aLength==0)
|
sl@0
|
378 |
return;
|
sl@0
|
379 |
//
|
sl@0
|
380 |
__ASSERT_DEBUG(iSnk!=NULL,Panic(EStreamNotOpen));
|
sl@0
|
381 |
TSourceOutput output(aStream.iSrc);
|
sl@0
|
382 |
TInt len=iSnk->WriteL(output,aLength);
|
sl@0
|
383 |
__ASSERT_DEBUG(len>=0&&len<=aLength,Panic(EStreamReadInBreach));
|
sl@0
|
384 |
if (len<aLength)
|
sl@0
|
385 |
__LEAVE(KErrEof);
|
sl@0
|
386 |
}
|
sl@0
|
387 |
|
sl@0
|
388 |
EXPORT_C void RWriteStream::WriteL(const TDesC16& aDes)
|
sl@0
|
389 |
/** Writes the content of the 16 bit descriptor to the stream. No other information
|
sl@0
|
390 |
is written to this write stream.
|
sl@0
|
391 |
|
sl@0
|
392 |
@param aDes A reference to a descriptor. Passing the build independent type
|
sl@0
|
393 |
TDesC& allows the compiler to choose the appropriate WriteL() variant (i.e
|
sl@0
|
394 |
the 8 bit or the 16 bit) at build time. */
|
sl@0
|
395 |
|
sl@0
|
396 |
{
|
sl@0
|
397 |
WriteL(aDes.Ptr(),aDes.Length());
|
sl@0
|
398 |
}
|
sl@0
|
399 |
|
sl@0
|
400 |
EXPORT_C void RWriteStream::WriteL(const TDesC16& aDes,TInt aLength)
|
sl@0
|
401 |
/** Writes data of the specified length from the 16 bit descriptor to the stream.
|
sl@0
|
402 |
No other information is written to this write stream.
|
sl@0
|
403 |
|
sl@0
|
404 |
@param aDes A reference to a descriptor. Passing the build independent type
|
sl@0
|
405 |
TDesC& allows the compiler to choose the appropriate WriteL() variant (i.e
|
sl@0
|
406 |
the 8 bit or the 16 bit) at build time.
|
sl@0
|
407 |
@param aLength The length of data to be written to this stream. */
|
sl@0
|
408 |
|
sl@0
|
409 |
{
|
sl@0
|
410 |
__ASSERT_DEBUG(aLength<=aDes.Length(),Panic(EStreamWriteBeyondEnd));
|
sl@0
|
411 |
WriteL(aDes.Ptr(),aLength);
|
sl@0
|
412 |
}
|
sl@0
|
413 |
|
sl@0
|
414 |
EXPORT_C void RWriteStream::WriteL(const TUint16* aPtr,TInt aLength)
|
sl@0
|
415 |
/** Writes 16 bit data of the specified length from the specified location to this
|
sl@0
|
416 |
write stream.
|
sl@0
|
417 |
|
sl@0
|
418 |
@param aPtr The location from where data is to be streamed out.
|
sl@0
|
419 |
@param aLength The length of data to be streamed out. */
|
sl@0
|
420 |
|
sl@0
|
421 |
{
|
sl@0
|
422 |
__ASSERT_DEBUG(aLength>=0,Panic(EStreamWriteLengthNegative));
|
sl@0
|
423 |
WriteL((const TUint8*)aPtr,aLength<<1); // platform dependency
|
sl@0
|
424 |
}
|
sl@0
|
425 |
|
sl@0
|
426 |
EXPORT_C void RWriteStream::WriteInt8L(TInt aValue)
|
sl@0
|
427 |
/** Writes a TInt value as an 8Â bit value to this stream.
|
sl@0
|
428 |
|
sl@0
|
429 |
@param aValue The value to be written to this stream. */
|
sl@0
|
430 |
|
sl@0
|
431 |
{
|
sl@0
|
432 |
WriteL((const TUint8*)&aValue,1); // platform dependency
|
sl@0
|
433 |
}
|
sl@0
|
434 |
|
sl@0
|
435 |
EXPORT_C void RWriteStream::WriteInt16L(TInt aValue)
|
sl@0
|
436 |
/** Writes a TInt value as a 16Â bit value to this stream.
|
sl@0
|
437 |
|
sl@0
|
438 |
@param aValue The value to be written to this stream. */
|
sl@0
|
439 |
{
|
sl@0
|
440 |
WriteL((const TUint8*)&aValue,2); // platform dependency
|
sl@0
|
441 |
}
|
sl@0
|
442 |
|
sl@0
|
443 |
EXPORT_C void RWriteStream::WriteInt32L(TInt32 aValue)
|
sl@0
|
444 |
/** Writes a TInt32 value as a 32 bit value to this stream.
|
sl@0
|
445 |
|
sl@0
|
446 |
@param aValue The value to be written to this stream. */
|
sl@0
|
447 |
|
sl@0
|
448 |
{
|
sl@0
|
449 |
WriteL((const TUint8*)&aValue,4); // platform dependency
|
sl@0
|
450 |
}
|
sl@0
|
451 |
|
sl@0
|
452 |
EXPORT_C void RWriteStream::WriteUint8L(TUint aValue)
|
sl@0
|
453 |
/** Writes a TUint value as an 8 bit value to this stream.
|
sl@0
|
454 |
|
sl@0
|
455 |
@param aValue The value to be written to this stream. */
|
sl@0
|
456 |
{
|
sl@0
|
457 |
WriteL((const TUint8*)&aValue,1); // platform dependency
|
sl@0
|
458 |
}
|
sl@0
|
459 |
|
sl@0
|
460 |
EXPORT_C void RWriteStream::WriteUint16L(TUint aValue)
|
sl@0
|
461 |
/** Writes a TUint value as a 16 bit value to this stream.
|
sl@0
|
462 |
|
sl@0
|
463 |
@param aValue The value to be written to this stream. */
|
sl@0
|
464 |
|
sl@0
|
465 |
{
|
sl@0
|
466 |
WriteL((const TUint8*)&aValue,2); // platform dependency
|
sl@0
|
467 |
}
|
sl@0
|
468 |
|
sl@0
|
469 |
EXPORT_C void RWriteStream::WriteUint32L(TUint32 aValue)
|
sl@0
|
470 |
/** Writes a TUint32 value as a 32 bit value to this stream.
|
sl@0
|
471 |
|
sl@0
|
472 |
@param aValue The value to be written to this stream. */
|
sl@0
|
473 |
{
|
sl@0
|
474 |
WriteL((const TUint8*)&aValue,4); // platform dependency
|
sl@0
|
475 |
}
|
sl@0
|
476 |
|
sl@0
|
477 |
EXPORT_C void RWriteStream::WriteReal32L(TReal aValue) __SOFTFP
|
sl@0
|
478 |
/** Writes a TReal value as a 32 bit value to this stream.
|
sl@0
|
479 |
|
sl@0
|
480 |
@param aValue The value to be written to this stream. */
|
sl@0
|
481 |
|
sl@0
|
482 |
{
|
sl@0
|
483 |
TReal32 val=TReal32(aValue);
|
sl@0
|
484 |
WriteL((const TUint8*)&val,4); // platform dependency
|
sl@0
|
485 |
}
|
sl@0
|
486 |
|
sl@0
|
487 |
EXPORT_C void RWriteStream::WriteReal64L(TReal64 aValue) __SOFTFP
|
sl@0
|
488 |
/** Writes a TReal64 value as a 64 bit value to this stream.
|
sl@0
|
489 |
|
sl@0
|
490 |
@param aValue The value to be written to this stream. */
|
sl@0
|
491 |
{
|
sl@0
|
492 |
#if defined(__DOUBLE_WORDS_SWAPPED__)
|
sl@0
|
493 |
union {TReal64 val;TUint32 buf[3];} u; // platform dependency
|
sl@0
|
494 |
u.val=aValue;
|
sl@0
|
495 |
u.buf[2]=u.buf[0];
|
sl@0
|
496 |
WriteL((const TUint8*)&u.buf[1],8);
|
sl@0
|
497 |
#else
|
sl@0
|
498 |
WriteL((const TUint8*)&aValue,8); // platform dependency
|
sl@0
|
499 |
#endif
|
sl@0
|
500 |
}
|
sl@0
|
501 |
|
sl@0
|
502 |
EXPORT_C void RWriteStream::WriteRefL(TStreamRef aRef)
|
sl@0
|
503 |
//
|
sl@0
|
504 |
// Interpret and write aRef to this stream.
|
sl@0
|
505 |
//
|
sl@0
|
506 |
{
|
sl@0
|
507 |
__ASSERT_DEBUG(iSnk!=NULL,Panic(EStreamNotOpen));
|
sl@0
|
508 |
__ASSERT_DEBUG(iExterL!=NULL,Panic(EStreamDoesNotUnderstand));
|
sl@0
|
509 |
(*iExterL)(aRef,*this);
|
sl@0
|
510 |
}
|
sl@0
|
511 |
|