Update contrib.
1 // Copyright (c) 1998-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.
19 Constructs the RMemReadStream object and prepares the stream hosted
20 in the specified plain memory location for reading.
22 @param aPtr The start address for the area of memory that will be
23 the source of this stream.
24 @param aLength The length of the area of memory.
26 @see RMemReadStream::Open
28 EXPORT_C RMemReadStream::RMemReadStream(const TAny* aPtr,TInt aLength)
34 Open a stream that reads from a pointer of any type.
36 To close the stream and free its resources call Close()
38 @param aPtr The start address for the area of memory that will be
39 the source of this stream.
40 @param aLength The length of the area of memory.
43 @see RReadStream::Attach
45 EXPORT_C void RMemReadStream::Open(const TAny* aPtr,TInt aLength)
47 iSource.Set((TUint8*)aPtr,(TUint8*)aPtr+aLength,iSource.ERead);
48 RReadStream::Attach(&iSource);
52 Constructs the RMemWriteStream object and prepares a stream to be hosted
53 in the specified memory location (described by the TAny aPtr argument)
54 for writing using the Open() function.
56 @param aPtr The start address for the area of memory that is the sink of
58 @param aMaxLength The maximum length of the area of memory.
60 @see RMemWriteStream::Open
62 EXPORT_C RMemWriteStream::RMemWriteStream(TAny* aPtr,TInt aMaxLength)
64 Open(aPtr,aMaxLength);
68 Prepares a stream for writing.
70 When streaming takes place any existing data in the memory location will
71 be replaced. Note that the length of memory must be big enough to accommodate
72 the expected streamed data otherwise the subsequent streaming operation will
73 leave with KErrOverFlow.
75 To close the stream and free its resources call Close()
77 @param aPtr The start address for the area of memory that is the sink of
79 @param aMaxLength The maximum length of the area of memory.
82 @see RWriteStream::Attach
84 EXPORT_C void RMemWriteStream::Open(TAny* aPtr,TInt aMaxLength)
86 iSink.Set((TUint8*)aPtr,(TUint8*)aPtr+aMaxLength,iSink.EWrite);
87 RWriteStream::Attach(&iSink);
91 Constructs the RDesReadStream object and prepares the stream hosted
92 by the specified descriptor for reading.
94 @param aDes The descriptor that will be the source of this stream.
96 @see RDesReadStream::Open
98 EXPORT_C RDesReadStream::RDesReadStream(const TDesC8& aDes)
104 Open a stream that reads from a descriptor.
106 To close the stream and free its resources call Close()
108 @param aDes The descriptor that will be the source of this stream.
111 @see RReadStream::Attach
113 EXPORT_C void RDesReadStream::Open(const TDesC8& aDes)
115 TUint8* ptr=(TUint8*)aDes.Ptr();
116 iSource.Set(ptr,ptr+aDes.Length(),iSource.ERead);
117 RReadStream::Attach(&iSource);
121 Constructs the RDesWriteStream object and prepares a stream to be
122 hosted by the specified 8-bit descriptor for writing using the Open()
126 @param aDes The descriptor hosting the stream.
128 @see RDesWriteStream::Open
130 EXPORT_C RDesWriteStream::RDesWriteStream(TDes8& aDes)
136 Prepares a stream for writing.
138 When streaming takes place, any existing data in the descriptor will
139 be replaced. Note that the maximum length of the descriptor must be
140 big enough to accommodate the expected streamed data, otherwise the
141 subsequent streaming operation will leave with KErrOverFlow.
143 A subsequent call to CommitL() sets the length of the descriptor.
145 To close the stream and free its resources call Close()
147 @param aDes The descriptor that will be the sink of this stream.
150 @see RWriteStream::Attach
152 EXPORT_C void RDesWriteStream::Open(TDes8& aDes)
155 iSink.Set(aDes,iSink.EWrite);
156 RWriteStream::Attach(&iSink);
160 Constructs the RBufReadStream object and opens the stream hosted by the
161 specified dynamic buffer for reading using the Open() method.
163 @param aBuf The dynamic buffer that will be the source of this stream.
164 @param aPos The offset within the dynamic buffer where the stream starts.
166 @see RBufReadStream::Open
168 EXPORT_C RBufReadStream::RBufReadStream(const CBufBase& aBuf,TInt aPos)
174 Prepares the stream hosted by the specified dynamic buffer for reading.
176 To close the stream and free its resources call Close()
178 @param aBuf The dynamic buffer that will be the source of this stream.
179 @param aPos The offset within the dynamic buffer where the stream starts.
182 @see RReadStream::Attach
184 EXPORT_C void RBufReadStream::Open(const CBufBase& aBuf,TInt aPos)
186 iSource.Set((CBufBase&)aBuf,aPos,iSource.ERead);
187 RReadStream::Attach(&iSource);
191 Constructs the RBufWriteStream object and opens a stream that writes to
192 the specified dynamic buffer using the Open() function.
194 @param aBuf The dynamic buffer hosting the stream.
195 @param aPos The offset within the dynamic buffer where the stream is to
196 start. Defaults to zero, if not explicitly specified. The value cannot
197 be greater than the current size of the buffer, otherwise a E32USER-CBase 5
198 panic will be raised when streaming starts.
200 @see RBufWriteStream::Open
202 EXPORT_C RBufWriteStream::RBufWriteStream(CBufBase& aBuf,TInt aPos)
208 Open a stream that writes to the dynamic buffer specified in the aBuf argument.
210 To close the stream and free its resources call Close()
212 @param aBuf The dynamic buffer hosting the stream.
213 @param aPos The offset within the dynamic buffer where the stream is to
214 start. Defaults to zero, if not explicitly specified. The value cannot
215 be greater than the current size of the buffer, otherwise a E32USER-CBase 5
216 panic will be raised when streaming starts.
219 @see RWriteStream::Attach
221 EXPORT_C void RBufWriteStream::Open(CBufBase& aBuf,TInt aPos)
223 iSink.Set(aBuf,aPos,iSink.EWrite);
224 RWriteStream::Attach(&iSink);
228 Open a stream that writes into the dynamic buffer specified in the aBuf argument
231 @param aBuf The dynamic buffer hosting the stream.
232 @param aPos The offset within the dynamic buffer where the stream is to
233 start. Defaults to zero, if not explicitly specified. The value cannot
234 be greater than the current size of the buffer, otherwise a E32USER-CBase 5
235 panic will be raised when streaming starts.
238 @see TBufBuf::ETruncate
239 @see RWriteStream::Attach
241 EXPORT_C void RBufWriteStream::Truncate(CBufBase& aBuf,TInt aPos)
243 iSink.Set(aBuf,aPos,iSink.ETruncate);
244 RWriteStream::Attach(&iSink);
248 Open a stream that writes into the dynamic buffer specified in the aBuf argument
251 @param aBuf The dynamic buffer hosting the stream.
252 @param aPos The offset within the dynamic buffer where the stream is to
253 start. Defaults to zero, if not explicitly specified. The value cannot
254 be greater than the current size of the buffer, otherwise a E32USER-CBase 5
255 panic will be raised when streaming starts.
258 @see TBufBuf::EInsert
259 @see RWriteStream::Attach
261 EXPORT_C void RBufWriteStream::Insert(CBufBase& aBuf,TInt aPos)
263 iSink.Set(aBuf,aPos,iSink.EInsert);
264 RWriteStream::Attach(&iSink);