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.
18 #define UNUSED_VAR(a) a = a
20 EXPORT_C TInt TStreamMark::ReadL(TStreamExchange& aHost,TDes8& aDes,TRequestStatus& aStatus)
22 // Read asynchronously.
25 return aHost.DoReadL(aDes,aDes.MaxLength(),aStatus,*this);
28 EXPORT_C TInt TStreamMark::WriteL(TStreamExchange& aHost,const TDesC8& aDes,TRequestStatus& aStatus)
29 /** Writes data, asynchronously, from the specified descriptor into the shared
32 The maximum number of bytes to be written is the value of the maximum length
35 If the function leaves, then no write request will have been initiated.
37 @param aHost The object that manages shared streaming.
38 @param aDes The source descriptor for the data to be written into the shared
40 @param aStatus The request status that indicates the completion status of this
42 @return The maximum number of bytes to be written, as used in this request.
43 This can be different to the maximum length of the descriptor; this is dependent
44 on the implementation. */
46 return aHost.DoWriteL(aDes,aDes.Length(),aStatus,*this);
49 EXPORT_C MStreamBuf* TStreamExchange::Host()
50 /** Gets a pointer to the stream buffer that acts as the shared host.
52 The function refreshes the active read/write marks and gives the caller exclusive
53 use of the shared host.
55 @return A pointer to a stream buffer that acts as shared host. */
57 __ASSERT_DEBUG((iRMrk==NULL||iRMrk!=iWMrk&&iRMrk->IsTracking(iRMrk))&&(iWMrk==NULL||iWMrk->IsTracking(iWMrk)),User::Invariant());
60 TRAPD(ignore,*iRMrk=Buf().TellL(MStreamBuf::ERead));
66 TRAPD(ignore,*iWMrk=Buf().TellL(MStreamBuf::EWrite));
73 EXPORT_C MStreamBuf* TStreamExchange::HostL()
74 /** Gets a pointer to the stream buffer that acts as the shared host, and leaves
75 if this object is not active.
77 The function refreshes the active read/write marks and gives the caller exclusive
78 use of the shared host.
80 @return A pointer to a stream buffer that acts as shared host.
83 MStreamBuf* host=Host();
85 __LEAVE(KErrNotReady);
89 EXPORT_C void TStreamExchange::Release()
90 /** Releases the reference to the shared host, and drops any active read or write
93 __ASSERT_DEBUG((iRMrk==NULL||iRMrk!=iWMrk&&iRMrk->IsTracking(iRMrk))&&(iWMrk==NULL||iWMrk->IsTracking(iWMrk)),User::Invariant());
99 EXPORT_C TInt TStreamExchange::SizeL() const
100 /** Gets the size of the shared host buffer.
102 @return The size of the shared host buffer. */
104 return BufL().SizeL();
107 EXPORT_C TBool TStreamExchange::RefersTo(const TStreamMark& aMark)
109 // Return whether aMark is referred to.
112 __ASSERT_DEBUG((iRMrk==NULL||iRMrk!=iWMrk&&iRMrk->IsTracking(iRMrk))&&(iWMrk==NULL||iWMrk->IsTracking(iWMrk)),User::Invariant());
113 return iRMrk==aMark||iWMrk==aMark;
116 EXPORT_C void TStreamExchange::Drop(const TStreamMark& aMark)
118 // Drop any reference to aMark.
121 __ASSERT_DEBUG((iRMrk==NULL||iRMrk!=iWMrk&&iRMrk->IsTracking(iRMrk))&&(iWMrk==NULL||iWMrk->IsTracking(iWMrk)),User::Invariant());
124 else if (iWMrk==aMark)
128 EXPORT_C void TStreamExchange::GetL(TStreamMark& aMark)
130 // Refresh and drop any reference to aMark.
133 __ASSERT_DEBUG((iRMrk==NULL||iRMrk!=iWMrk&&iRMrk->IsTracking(iRMrk))&&(iWMrk==NULL||iWMrk->IsTracking(iWMrk)),User::Invariant());
137 aMark=Buf().TellL(MStreamBuf::ERead);
139 else if (iWMrk==aMark)
142 aMark=Buf().TellL(MStreamBuf::EWrite);
146 EXPORT_C TInt TStreamExchange::DoReadL(TAny* aPtr,TInt aMaxLength,TStreamMark& aMark)
148 // Read up to aMaxLength bytes starting at aMark.
151 __ASSERT_DEBUG(iWMrk==NULL||iWMrk!=iRMrk&&iWMrk->IsTracking(iWMrk),User::Invariant());
153 return PrepareAndReadL(aPtr,aMaxLength,aMark);
155 __ASSERT_DEBUG(aMark.IsTracking(iRMrk),User::Invariant());
157 TInt len=Buf().ReadL(aPtr,aMaxLength);
162 EXPORT_C TInt TStreamExchange::DoReadL(TDes8& aDes,TInt aMaxLength,TRequestStatus& aStatus,TStreamMark& aMark)
164 // Read up to aMaxLength bytes asynchronously.
167 __ASSERT_DEBUG(iWMrk==NULL||iWMrk!=iRMrk&&iWMrk->IsTracking(iWMrk),User::Invariant());
169 return PrepareAndReadL(aDes,aMaxLength,aStatus,aMark);
171 __ASSERT_DEBUG(aMark.IsTracking(iRMrk),User::Invariant());
173 TInt len=Buf().ReadL(aDes,aMaxLength,aStatus);
178 EXPORT_C TStreamTransfer TStreamExchange::DoReadL(MStreamInput& anInput,TStreamTransfer aTransfer,TStreamMark& aMark)
180 // Push up to aTransfer bytes into anInput, starting at aMark.
183 __ASSERT_DEBUG(iWMrk==NULL||iWMrk!=iRMrk&&iWMrk->IsTracking(iWMrk),User::Invariant());
185 return PrepareAndReadL(anInput,aTransfer,aMark);
187 __ASSERT_DEBUG(aMark.IsTracking(iRMrk),User::Invariant());
189 TStreamTransfer trans=Buf().ReadL(anInput,aTransfer);
194 EXPORT_C void TStreamExchange::DoWriteL(const TAny* aPtr,TInt aLength,TStreamMark& aMark)
196 // Write aLength bytes starting at aMark.
199 __ASSERT_DEBUG(iRMrk==NULL||iRMrk!=iWMrk&&iRMrk->IsTracking(iRMrk),User::Invariant());
202 __ASSERT_DEBUG(aMark.IsTracking(iWMrk),User::Invariant());
204 Buf().WriteL(aPtr,aLength);
208 PrepareAndWriteL(aPtr,aLength,aMark);
211 EXPORT_C TInt TStreamExchange::DoWriteL(const TDesC8& aDes,TInt aMaxLength,TRequestStatus& aStatus,TStreamMark& aMark)
213 // Write up to aMaxLength bytes asynchronously.
216 __ASSERT_DEBUG(iRMrk==NULL||iRMrk!=iWMrk&&iRMrk->IsTracking(iRMrk),User::Invariant());
218 return PrepareAndWriteL(aDes,aMaxLength,aStatus,aMark);
220 __ASSERT_DEBUG(aMark.IsTracking(iWMrk),User::Invariant());
222 TInt len=Buf().WriteL(aDes,aMaxLength,aStatus);
227 EXPORT_C TStreamTransfer TStreamExchange::DoWriteL(MStreamOutput& anOutput,TStreamTransfer aTransfer,TStreamMark& aMark)
229 // Pull up to aTransfer bytes from anOutput, starting at aMark.
232 __ASSERT_DEBUG(iRMrk==NULL||iRMrk!=iWMrk&&iRMrk->IsTracking(iRMrk),User::Invariant());
234 return PrepareAndWriteL(anOutput,aTransfer,aMark);
236 __ASSERT_DEBUG(aMark.IsTracking(iWMrk),User::Invariant());
238 TStreamTransfer trans=Buf().WriteL(anOutput,aTransfer);
243 EXPORT_C TStreamPos TStreamExchange::DoSeekL(TStreamMark& aMark,TStreamLocation aLocation,TInt anOffset)
245 // Position aMark at anOffset from aLocation.
248 __ASSERT_DEBUG((iRMrk==NULL||iRMrk!=iWMrk&&iRMrk->IsTracking(iRMrk))&&(iWMrk==NULL||iWMrk->IsTracking(iWMrk)),User::Invariant());
252 TStreamPos pos=Buf().SeekL(MStreamBuf::ERead,aLocation,anOffset);
260 TStreamPos pos=Buf().SeekL(MStreamBuf::EWrite,aLocation,anOffset);
265 return MarkSeekL(aMark,aLocation,anOffset);
268 void TStreamExchange::PrepareForReadingL(TStreamMark& aMark)
270 // Prepare the host buffer to start reading at aMark.
273 __ASSERT_DEBUG(iRMrk==NULL||iRMrk->IsTracking(iRMrk),User::Invariant());
277 aMark=Buf().TellL(MStreamBuf::EWrite);
279 else if (aMark.IsEmpty())
280 __LEAVE(KErrNotReady);
284 TRAPD(ignore,*iRMrk=Buf().TellL(MStreamBuf::ERead));
289 TStreamPos pos=aMark.Position();
291 BufL().SeekL(MStreamBuf::ERead,pos);
294 void TStreamExchange::PrepareForWritingL(TStreamMark& aMark)
296 // Prepare the host buffer to start writing at aMark.
299 __ASSERT_DEBUG(iWMrk==NULL||iWMrk->IsTracking(iWMrk),User::Invariant());
303 aMark=Buf().TellL(MStreamBuf::ERead);
305 else if (aMark.IsEmpty())
306 __LEAVE(KErrNotReady);
310 TRAPD(ignore,*iWMrk=Buf().TellL(MStreamBuf::EWrite));
315 TStreamPos pos=aMark.Position();
317 BufL().SeekL(MStreamBuf::EWrite,pos);
320 TInt TStreamExchange::PrepareAndReadL(TAny* aPtr,TInt aMaxLength,TStreamMark& aMark)
322 PrepareForReadingL(aMark);
323 TInt len=Buf().ReadL(aPtr,aMaxLength);
328 TInt TStreamExchange::PrepareAndReadL(TDes8& aDes,TInt aMaxLength,TRequestStatus& aStatus,TStreamMark& aMark)
330 PrepareForReadingL(aMark);
331 TInt len=Buf().ReadL(aDes,aMaxLength,aStatus);
336 TStreamTransfer TStreamExchange::PrepareAndReadL(MStreamInput& anInput,TStreamTransfer aTransfer,TStreamMark& aMark)
338 PrepareForReadingL(aMark);
339 TStreamTransfer trans=Buf().ReadL(anInput,aTransfer);
344 void TStreamExchange::PrepareAndWriteL(const TAny* aPtr,TInt aLength,TStreamMark& aMark)
346 PrepareForWritingL(aMark);
347 Buf().WriteL(aPtr,aLength);
351 TInt TStreamExchange::PrepareAndWriteL(const TDesC8& aDes,TInt aMaxLength,TRequestStatus& aStatus,TStreamMark& aMark)
353 PrepareForWritingL(aMark);
354 TInt len=Buf().WriteL(aDes,aMaxLength,aStatus);
359 TStreamTransfer TStreamExchange::PrepareAndWriteL(MStreamOutput& anOutput,TStreamTransfer aTransfer,TStreamMark& aMark)
361 PrepareForWritingL(aMark);
362 TStreamTransfer trans=Buf().WriteL(anOutput,aTransfer);
367 TStreamPos TStreamExchange::MarkSeekL(TStreamMark& aMark,TStreamLocation aLocation,TInt anOffset)
369 if (aLocation==EStreamMark)
372 __LEAVE(KErrNotReady);
374 aLocation=EStreamBeginning;
375 anOffset+=aMark.Position().Offset();
378 TStreamPos pos=BufL().SeekL(0,aLocation,anOffset);
383 EXPORT_C void TStreamMark::__DbgChkPos(TStreamPos aPos)
385 // Check for a negative position.
388 __ASSERT_ALWAYS(aPos>=KStreamBeginning,Panic(EStreamPosInvalid));