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 TInt RFrame16Buf::Offset(TStreamPos aBase,TStreamPos aPos)
21 __ASSERT_DEBUG(off>=0,Panic(EStreamPosInvalid));
22 TInt n=off/(KFrameFullLength16+KSizeFrameDes16);
23 // number of full frames from base
24 off-=n<<KShiftFrameDes16;
25 // target offset in frame coordinates
26 TInt over=off-(n<<KShiftFrameLength16)-KFrameFullLength16;
27 // adjust for overshoot into the frame descriptor
28 __ASSERT_DEBUG(over>=-KFrameFullLength16&&over<TInt(KSizeFrameDes16),User::Invariant());
34 TStreamPos RFrame16Buf::Position(TStreamPos aBase,TInt anOffset)
36 return aBase+(anOffset+(anOffset>>KShiftFrameLength16<<KShiftFrameDes16));
39 RFrame16Buf::RFrame16Buf(TStreamPos aBase)
40 : iBase(aBase),iHost(NULL),iExt(KFrameNonexistent16)
42 __ASSERT_DEBUG(aBase>=KStreamBeginning+KSizeFrameDes16,Panic(EStreamPosInvalid));
45 TInt RFrame16Buf::ExtendL(TStreamExchange& aHost,TInt anExtent,TInt aMode)
47 __ASSERT_DEBUG(anExtent>=0,Panic(EStreamExtentNegative));
48 __ASSERT_DEBUG((KMaskFrameType16&aMode)!=EFrameContinuation16,Panic(EStreamTypeInvalid));
49 TFrameDes16 des[2]={0,TFrameDes16(KMaskFrameType16&aMode|KFrameOpen16)};
50 TUint8* ptr=(TUint8*)&des[1];
51 TInt len=KSizeFrameDes16;
52 TStreamPos pos=Position(anExtent);
54 anExtent&=KMaskFrameLength16;
59 anExtent=KFrameFullLength16-anExtent;
60 if (anExtent>KSizeFrameDes16)
70 TStreamMark mark(pos);
71 mark.WriteL(aHost,ptr,len); // platform dependency
73 Set(aHost,off,0,aMode);
77 void RFrame16Buf::OpenL(TStreamExchange& aHost,TInt anOffset,TInt aMode)
79 __ASSERT_DEBUG(anOffset>=0,Panic(EStreamOffsetNegative));
80 __ASSERT_DEBUG((KMaskFrameType16&aMode)!=EFrameContinuation16,Panic(EStreamTypeInvalid));
81 TStreamMark mark(Position(anOffset)-KSizeFrameDes16);
83 TInt frame=mark.ReadL(aHost,&des,KSizeFrameDes16);
84 // platform dependency
86 __ASSERT_DEBUG(frame>=0&&frame<=KSizeFrameDes16,Panic(EStreamReadInBreach));
87 if (frame<KSizeFrameDes16)
91 if ((frame^aMode)&KMaskFrameType16)
94 TInt in=anOffset&KMaskFrameLength16;
95 frame&=KMaskFrameLength16;
96 if (frame==KFrameOpen16)
97 frame=KFrameFullLength16-in;
98 if (in+frame>KFrameFullLength16)
101 Set(aHost,anOffset,anOffset+frame,aMode);
104 void RFrame16Buf::Set(TStreamExchange& aHost,TInt anOffset,TInt anExtent,TInt aMode)
106 __ASSERT_DEBUG(anOffset>=0||anOffset==anExtent,Panic(EStreamOffsetNegative));
107 __ASSERT_DEBUG(anExtent>=0||anOffset==anExtent,Panic(EStreamExtentNegative));
116 TStreamPos start=Position(anOffset);
125 lim=(anOffset&~KMaskFrameLength16)+KFrameFullLength16;
126 if (anExtent>0&&lim>anExtent)
129 iRAvail=iWAvail=lim-anOffset;
134 void RFrame16Buf::CommitL()
136 __ASSERT_DEBUG(!IsCommitted(),Panic(EStreamCommitted));
137 TInt ext=Host().SizeL()-Base().Offset();
139 __LEAVE(KErrCorrupt);
141 TInt n=ext/(KFrameFullLength16+KSizeFrameDes16);
142 // number of full frames from base
143 ext-=n<<KShiftFrameDes16;
144 // end in frame coordinates
147 { // committing an empty stream
148 iOff=iExt=KFrameNonexistent16;
152 TInt frame=ext-(n<<KShiftFrameLength16);
153 // size of final frame (remainder of the division above)
154 __ASSERT_DEBUG(frame>=0&&frame<KFrameFullLength16+KSizeFrameDes16,User::Invariant());
155 if (ext<off||frame==0||frame>KFrameFullLength16)
156 __LEAVE(KErrCorrupt); // bad offset, empty frame or partial frame descriptor
158 if (frame<KFrameFullLength16)
161 if ((off^ext)&~KMaskFrameLength16)
162 { // in a different frame from the one we started in
163 off=ext&~KMaskFrameLength16;
164 des=TFrameDes16(EFrameContinuation16|frame);
168 frame-=off&KMaskFrameLength16;
169 __ASSERT_DEBUG(frame>0&&frame<KFrameFullLength16,User::Invariant());
170 des=TFrameDes16(iMode&KMaskFrameType16|frame);
172 TStreamMark mark(Position(off)-KSizeFrameDes16);
173 mark.WriteL(Host(),&des,KSizeFrameDes16);
174 mark.Withdraw(Host());
179 void RFrame16Buf::DoRelease()
183 iRMark.Withdraw(*iHost);
184 iWMark.Withdraw(*iHost);
186 iExt=KFrameNonexistent16;
190 void RFrame16Buf::DoSynchL()
198 TInt RFrame16Buf::DoReadL(TAny* aPtr,TInt aMaxLength)
200 __ASSERT_DEBUG(aMaxLength>=0,Panic(EStreamReadLengthNegative));
201 __ASSERT_DEBUG(aMaxLength>0,Panic(EStreamReadNoTransfer));
202 TInt left=aMaxLength;
205 goto underflow; // we'd used up the whole frame
209 __ASSERT_DEBUG(left>0&&avail>0,User::Invariant());
211 TInt len=iRMark.ReadL(Host(),aPtr,Min(left,avail));
212 __ASSERT_DEBUG(len>=0&&len<=left&&len<=avail,Panic(EStreamReadInBreach));
216 return aMaxLength; // that's it
218 aPtr=(TUint8*)aPtr+len;
221 { // we've run out of host
222 if ((Extent()&KMaskFrameLength16)==KFrameOpen16)
223 break; // all's well, provided we're open-ended
225 iRMark.Withdraw(Host());
226 __LEAVE(KErrCorrupt);
232 return aMaxLength-left;
235 TInt RFrame16Buf::DoReadL(TDes8& aDes,TInt aMaxLength,TRequestStatus& aStatus)
237 // Read up to aMaxLength bytes asynchronously.
240 //#pragma message( __FILE__ " : 'RFrame16Buf::DoReadL(TDes8&,TInt,TRequestStatus&)' not implemented" )
241 __ASSERT_DEBUG(aMaxLength<=aDes.MaxLength(),Panic(EStreamReadBeyondEnd));
242 aDes.SetLength(DoReadL((TUint8*)aDes.Ptr(),aMaxLength));
243 TRequestStatus* stat=&aStatus;
244 User::RequestComplete(stat,KErrNone);
248 TStreamTransfer RFrame16Buf::DoReadL(MStreamInput& anInput,TStreamTransfer aTransfer)
250 __ASSERT_DEBUG(aTransfer>0,Panic(EStreamReadNoTransfer));
253 TInt len=iRMark.ReadL(Host(),anInput,aTransfer[iRAvail]);
258 return anInput.ReadFromL(*this,aTransfer);
263 void RFrame16Buf::DoWriteL(const TAny* aPtr,TInt aLength)
265 __ASSERT_DEBUG(aLength>=0,Panic(EStreamWriteLengthNegative));
266 __ASSERT_DEBUG(aLength>0,Panic(EStreamWriteNoTransfer));
269 goto overflow; // we'd used up the whole frame
273 __ASSERT_DEBUG(aLength>0&&avail>0,User::Invariant());
275 TInt len=Min(aLength,avail);
276 iWMark.WriteL(Host(),aPtr,len);
280 return; // won't worry about the next frame just yet
282 aPtr=(TUint8*)aPtr+len;
290 TInt RFrame16Buf::DoWriteL(const TDesC8& aDes,TInt aMaxLength,TRequestStatus& aStatus)
292 // Write up to aMaxLength bytes asynchronously.
295 //#pragma message( __FILE__ " : 'RFrame16Buf::DoWriteL(const TDesC8&,TInt,TRequestStatus&)' not implemented" )
296 __ASSERT_DEBUG(aMaxLength<=aDes.Length(),Panic(EStreamWriteBeyondEnd));
297 DoWriteL(aDes.Ptr(),aMaxLength);
298 TRequestStatus* stat=&aStatus;
299 User::RequestComplete(stat,KErrNone);
303 TStreamTransfer RFrame16Buf::DoWriteL(MStreamOutput& anOutput,TStreamTransfer aTransfer)
305 __ASSERT_DEBUG(aTransfer>0,Panic(EStreamWriteNoTransfer));
308 TInt len=iWMark.WriteL(Host(),anOutput,aTransfer[iWAvail]);
313 return anOutput.WriteToL(*this,aTransfer);
318 TStreamPos RFrame16Buf::DoSeekL(TMark aMark,TStreamLocation aLocation,TInt anOffset)
320 // Position the mark(s) indicated by aMark at anOffset from aLocation.
325 case EStreamBeginning:
330 anOffset+=iRLim-iRAvail;
333 __ASSERT_ALWAYS(aMark==EWrite,Panic(EStreamMarkInvalid));
334 anOffset+=iWLim-iWAvail;
341 Panic(EStreamLocationInvalid);
345 if (anOffset<Offset())
350 else if (anOffset>=0&&!ReachL(anOffset))
352 __ASSERT_DEBUG(Extent()!=0,User::Invariant());
357 if (aMark&&anOffset>=0)
359 __ASSERT_ALWAYS(!(aMark&~(ERead|EWrite)),Panic(EStreamMarkInvalid));
360 TInt in=anOffset&KMaskFrameLength16;
361 TInt off=anOffset-in;
362 __ASSERT_DEBUG(Extent()==0||anOffset<=Extent(),User::Invariant());
363 if (in==0&&off>Offset()&&(Extent()==0||off==Extent()))
364 { // positioning at the start of a frame that may not exist
365 in=KFrameFullLength16;
368 TStreamPos pos=Base()+(off+(off>>KShiftFrameLength16<<KShiftFrameDes16))+in;
369 TInt lim=off+KFrameFullLength16;
370 if (Extent()>0&&lim>Extent())
372 TInt left=lim-anOffset;
373 __ASSERT_DEBUG(left>=0&&left<=KFrameFullLength16,User::Invariant());
378 iRMark.SeekL(Host(),pos);
385 iWMark.SeekL(Host(),pos);
391 return TStreamPos(anOffset-Offset());
394 TInt RFrame16Buf::UnderflowL()
396 __ASSERT_DEBUG(iRAvail==0,User::Invariant());
397 if ((iRLim&KMaskFrameLength16)!=KFrameOpen16)
399 __ASSERT_DEBUG(iExt==iRLim,User::Invariant());
400 return 0; // we've used up the closing, partial frame
403 __ASSERT_DEBUG(iRLim>0&&(iExt>0&&iRLim<=iExt||iExt==0),User::Invariant());
404 // let's see if there's a continuation frame
406 TInt frame=iRMark.ReadL(Host(),&des,KSizeFrameDes16);
407 // platform dependency
408 __ASSERT_DEBUG(frame>=0&&frame<=KSizeFrameDes16,Panic(EStreamReadInBreach));
409 if (frame==KSizeFrameDes16)
412 if ((frame&KMaskFrameType16)==EFrameContinuation16)
413 { // we have a continuation frame, prepare ourselves for it
414 frame&=KMaskFrameLength16;
415 if (frame==KFrameOpen16)
416 frame=KFrameFullLength16;
424 iRMark.SeekL(Host(),-KSizeFrameDes16);
428 if (frame>0||iRLim<iExt)
429 { // we'd definitely seen a continuation frame here before
430 iRMark.Withdraw(Host());
431 __LEAVE(KErrCorrupt);
436 void RFrame16Buf::OverflowL()
438 __ASSERT_DEBUG(iWAvail==0,User::Invariant());
439 if ((iWLim&KMaskFrameLength16)!=KFrameOpen16)
440 { // filled the closing, partial frame
441 __ASSERT_DEBUG(iExt==iWLim,User::Invariant());
443 iWMark.Withdraw(Host());
444 __LEAVE(KErrOverflow);
447 __ASSERT_DEBUG(iWLim>0&&(iExt>0&&iWLim<=iExt||iExt==0),User::Invariant());
449 { // let's see if this carries on
451 TInt frame=iWMark.ReadL(Host(),&des,KSizeFrameDes16);
452 // platform dependency
453 __ASSERT_DEBUG(frame>=0&&frame<=KSizeFrameDes16,Panic(EStreamReadInBreach));
455 iExt=0; // end-of-host, let's start extending
458 if (frame==KSizeFrameDes16)
461 if ((frame&KMaskFrameType16)==EFrameContinuation16)
462 { // there's more, set up for the next frame
463 frame&=KMaskFrameLength16;
464 if (frame==KFrameOpen16)
465 frame=KFrameFullLength16;
473 iWMark.Withdraw(Host());
474 __LEAVE(KErrCorrupt);
478 __ASSERT_DEBUG(iWLim<iExt||iExt==0,User::Invariant());
479 // calculate the frame descriptor to be written
480 TInt frame=iExt&KMaskFrameLength16;
481 if (iWLim<iExt-frame)
483 TFrameDes16 des=TFrameDes16(EFrameContinuation16|frame);
484 if (frame==KFrameOpen16)
485 frame=KFrameFullLength16;
486 iWMark.WriteL(Host(),&des,KSizeFrameDes16);
487 // platform dependency
492 TBool RFrame16Buf::ReachL(TInt anOffset)
497 TStreamMark mark(Base());
498 TInt frame=(iExt+(iExt>>KShiftFrameLength16<<KShiftFrameDes16))-KSizeFrameDes16;
499 while (iExt<anOffset)
501 if ((iExt&KMaskFrameLength16)!=KFrameOpen16)
503 mark.Withdraw(Host());
508 mark.SeekL(Host(),EStreamMark,frame);
509 frame=mark.ReadL(Host(),&des,KSizeFrameDes16);
510 // platform dependency
511 __ASSERT_DEBUG(frame>=0&&frame<=KSizeFrameDes16,Panic(EStreamReadInBreach));
512 if (frame==KSizeFrameDes16)
515 if ((frame&KMaskFrameType16)==EFrameContinuation16)
516 { // we have a continuation frame, boost upper
517 frame&=KMaskFrameLength16;
518 if (frame==KFrameOpen16)
519 frame=KFrameFullLength16;
526 mark.Withdraw(Host());
528 __LEAVE(KErrCorrupt);
532 mark.Withdraw(Host());
536 TInt RFrame16Buf::EndL()
538 TInt ext=Host().SizeL()-Base().Offset();
540 __LEAVE(KErrCorrupt);
542 TInt n=ext/(KFrameFullLength16+KSizeFrameDes16);
543 // number of full frames from base
544 ext-=n<<KShiftFrameDes16;
545 // end in frame coordinates
546 TInt frame=ext-(n<<KShiftFrameLength16);
547 // size of final frame (remainder of the division above)
548 __ASSERT_DEBUG(frame>=0&&frame<KFrameFullLength16+KSizeFrameDes16,User::Invariant());
549 if (ext<Offset()||frame>KFrameFullLength16)
550 __LEAVE(KErrCorrupt); // bad offset or partial frame descriptor
554 __ASSERT_DEBUG(Extent()!=0,User::Invariant());